﻿html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}

ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* CLASSES */

button {
	cursor: pointer;
}

.error
{
    color: white;
    
	text-shadow: 1px 1px 5px white;
}

body
{

	height: 100%;
	
	background: #161616 url('../img/body_bg.png');
	color: white;
	
	/*overflow: hidden;*/
	
	
	font-family: Corbel, Verdana, "Bitstream Vera Sans", sans-serif;
    font-size: 75%;
}

a 
{
	color: #AAA;

	text-decoration: none;
	
	border-bottom: 1px solid #AAA;
}

a:hover
{
	border-bottom: 1px solid white;
}


.error
{
	text-align: center;
	
	display: block;
	
	margin-top: 1em;
}

/* HEADER */
.header
{
    width: 252px; 
    height: 103px; 
    
    background: url('../img/logo_big.png') no-repeat center;
}


/* SMALL HEADER */
.smallHeader
{
	border-bottom: 1px solid #4f4f4f;
	
	margin-bottom: 1em;
	
	top: 0px;	
}

.smallHeader > div
{
	height: 36px;
	
	background: rgb(21,21,21); /* Old browsers */
	background: -moz-linear-gradient(top, rgba(21,21,21,1) 0%, rgba(48,48,48,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(21,21,21,1)), color-stop(100%,rgba(48,48,48,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, rgba(21,21,21,1) 0%,rgba(48,48,48,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, rgba(21,21,21,1) 0%,rgba(48,48,48,1) 100%); /* Opera11.10+ */
	background: -ms-linear-gradient(top, rgba(21,21,21,1) 0%,rgba(48,48,48,1) 100%); /* IE10+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#151515', endColorstr='#303030',GradientType=0 ); /* IE6-9 */
	background: linear-gradient(top, rgba(21,21,21,1) 0%,rgba(48,48,48,1) 100%); /* W3C */

	border-bottom: 1px solid #151515;
}

.smallHeader .logo
{
	background: url('../img/logo_small.png') no-repeat;
	
	width: 136px;
	height: 42px;
	
	cursor: pointer;
}

.smallHeader .close
{
	float: right;
	
	margin: 0.5em 0.5em 0 0;
}

.smallHeader.compact
{
	margin-bottom: 0;
}

/* COMMAND BAR */
.commandBar
{
	position: fixed;
	
	bottom: 0;
	left: 0;
	right: 0;
	
	border-top: 1px solid #4f4f4f;
}

.commandBar > div
{
	border-top: 1px solid #151515;
	
	background: rgb(48,48,48); /* Old browsers */
	background: -moz-linear-gradient(top, rgba(48,48,48,1) 0%, rgba(21,21,21,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(48,48,48,1)), color-stop(100%,rgba(21,21,21,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, rgba(48,48,48,1) 0%,rgba(21,21,21,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, rgba(48,48,48,1) 0%,rgba(21,21,21,1) 100%); /* Opera11.10+ */
	background: -ms-linear-gradient(top, rgba(48,48,48,1) 0%,rgba(21,21,21,1) 100%); /* IE10+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#303030', endColorstr='#151515',GradientType=0 ); /* IE6-9 */
	background: linear-gradient(top, rgba(48,48,48,1) 0%,rgba(21,21,21,1) 100%); /* W3C */
	
	padding: 0.5em;
	
	text-align: center;
}

.commandBar input
{
	padding: 0.25em 0.5em;
	
	width: 85%;
}

/* UNIT HEADER */
.unitHeader
{
	background: rgb(53,53,53); /* Old browsers */
	background: -moz-linear-gradient(top, rgba(53,53,53,1) 0%, rgba(77,77,77,1) 49%, rgba(53,53,53,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(53,53,53,1)), color-stop(49%,rgba(77,77,77,1)), color-stop(100%,rgba(53,53,53,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, rgba(53,53,53,1) 0%,rgba(77,77,77,1) 49%,rgba(53,53,53,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, rgba(53,53,53,1) 0%,rgba(77,77,77,1) 49%,rgba(53,53,53,1) 100%); /* Opera11.10+ */
	background: -ms-linear-gradient(top, rgba(53,53,53,1) 0%,rgba(77,77,77,1) 49%,rgba(53,53,53,1) 100%); /* IE10+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#353535', endColorstr='#353535',GradientType=0 ); /* IE6-9 */
	background: linear-gradient(top, rgba(53,53,53,1) 0%,rgba(77,77,77,1) 49%,rgba(53,53,53,1) 100%); /* W3C */					
	
	border-bottom: 1px solid #4f4f4f;
}

.unitHeader > div
{		
	border-bottom: 1px solid #151515;	
}

.unitHeader .name
{
	margin-top: 0.25em;
	margin-right: 150px;
	
	text-shadow: 2px 0 2px black;
	
	cursor: pointer;
}

.unitHeader > div
{
	padding: 0.1em 0.5em;
	
	min-height: 2.0em;
}

.unitHeader .mapButton button
{
	float: right;
}

.unitHeader .mapButton .img
{
	background: url('../img/button_map.png') no-repeat center;
	
	height: 22px;
	width: 22px;
	
	float: right;
}

/* UNIT TABS */
.unitTabs
{
	margin: 0.25em auto;
	
	width: 95%;
}

.unitTabs ul
{
	background: -moz-linear-gradient(top, rgba(21,21,21,0.27) 2%, rgba(42,42,42,0.27) 65%, rgba(53,53,53,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(2%,rgba(21,21,21,0.27)), color-stop(65%,rgba(42,42,42,0.27)), color-stop(100%,rgba(53,53,53,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, rgba(21,21,21,0.27) 2%,rgba(42,42,42,0.27) 65%,rgba(53,53,53,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, rgba(21,21,21,0.27) 2%,rgba(42,42,42,0.27) 65%,rgba(53,53,53,1) 100%); /* Opera11.10+ */
	background: -ms-linear-gradient(top, rgba(21,21,21,0.27) 2%,rgba(42,42,42,0.27) 65%,rgba(53,53,53,1) 100%); /* IE10+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#45151515', endColorstr='#353535',GradientType=0 ); /* IE6-9 */
	background: linear-gradient(top, rgba(21,21,21,0.27) 2%,rgba(42,42,42,0.27) 65%,rgba(53,53,53,1) 100%); /* W3C */	
	
	overflow: auto;
	
	border-bottom: 1px solid #4f4f4f;
	
	border-radius: 0.6em;
}

.unitTabs ul li
{
	color: #AAA;
	
	width: 25%;
	
	float: left;
	
	text-align: center;
	
	padding-top: 40px;
	padding-bottom: 0.5em;
	
	text-shadow: 2px 0 2px black;

	cursor: pointer;	
}

.unitTabs li.selected		
{
	font-weight: bold;
}

.unitTabs li.summary
{
	background: url('../img/unitTabs_summary_36x36.PNG') no-repeat top center;
}

.unitTabs li.summary.selected
{
	background: url('../img/unitTabs_summary_selected_36x36.PNG') no-repeat top center;
}		

.unitTabs li.alerts
{
	background: url('../img/unitTabs_alerts_36x36.PNG') no-repeat top center;
}

.unitTabs li.alerts.selected
{
	background: url('../img/unitTabs_alerts_selected_36x36.PNG') no-repeat top center;
}


.unitTabs li.activity
{
	background: url('../img/unitTabs_activity_36x36.PNG') no-repeat top center;
}

.unitTabs li.activity.selected
{
	background: url('../img/unitTabs_activity_selected_36x36.PNG') no-repeat top center;
}	

.unitTabs li.commands
{
	background: url('../img/unitTabs_commands_36x36.PNG') no-repeat top center;
}

.unitTabs li.commands.selected
{
	background: url('../img/unitTabs_commands_selected_36x36.PNG') no-repeat top center;
}				

.unitTabs li.selected
{
	color: white;
}

/*-v This is for jquery mobile format v-*/
.mapButton {
    font-size: 16px;
}

.itemName 
{
    text-align: center;
    font-size: 17px;
    padding: 8px;
    font-weight: bold;
}
.chkHideInvalidContainer {
    font-size: 16px;      
}
.commandNameTitle {
    text-align: center;
    font-size: 20px;
}

.commandPriority, .commandBodyTitle 
{
    text-align: center;
    font-size: 18px;
}
.SummaryItemTitle
{
    color: #fff;
    font-weight: bold;
    text-align: center;
    font-size: 22px;
    margin-bottom: 3px;
 }
 .SummaryItemBody
{ 
    text-align: center;
    font-size: 18px;
    margin-bottom: 15px;
 }
 
 #lblLastLocationlnk {
     color: #2489CE;
     border-bottom-color: #2489CE;
    font-weight: bold;
 }


/*-^ This is for jquery mobile format ^-*/