@charset "UTF-8";

/* Body Elements */

body  {
	font: 100% Arial, Helvetica, sans-serif;
	background: #fff;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	width:100%;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
}

h1 {
	font-family:Arial, Helvetica, sans-serif;
	text-align:left;
	font-size:18px;
	line-height:1.1em;
	color:#000;
}	

h2 {
	font-family:Arial, Helvetica, sans-serif;
	text-align:left;
	font-size:16px;
	line-height:1em;
	color:#000;
}	

p {
	font-family:Arial, Helvetica, sans-serif;
	text-align:left;
	font-size:11px;
	color:#000;
}	

p3 {
	font-family:Arial, Helvetica, sans-serif;
	text-align:left;
	font-size:8px;
	color:#999999;
}

a {
	font-family: Arial, Helvetica, sans-serif;
	text-decoration: none;
	/* color:#013b94;  Reflex Blue */
	color:#003366; /* Darker Blue */
}

a:link {
	font-family: Arial, Helvetica, sans-serif;
	text-decoration:none;
	color:#003366;
}

a:hover {
	font-family: Arial, Helvetica, sans-serif;
	text-decoration:none;
	color:#c0311a;
}

a:active {
	font-family: Arial, Helvetica, sans-serif;
	text-decoration:none;
	color:#78278b;
}

a:visited {
	font-family: Arial, Helvetica, sans-serif;
	text-decoration:none;
	color:#333366;
}	


/* navigation */

#navbox {
	width: 100%;
	position: fixed;
	top: 0;
	left:0;
	height: 40px;
	background: url(../_images/_graphics/topnavbg.png);
}

.navigation {
	position: relative;
	height: 38px;
    width: 600px;
    padding: 0;
    margin: 0 auto 0 auto;
    overflow: hidden;
}
                
.navigation li {
	float: left;
    list-style: none;
	margin: 0;
	padding: 0;
}

html>body .navigation li { margin: 0 10px;}

.navigation li.back {
	border-bottom: 3px solid #ffffff;
    width: 9px;
    height: 28px;
    z-index: 8;
    position: absolute;
	margin: 0;
	padding: 0;
}

.navigation li a {
	font: bold 12px arial;
    text-decoration: none;
    color: #ffffff;
    outline: none;
    text-align: center;
    top: 12px;
    text-transform: uppercase;
    letter-spacing: 0;
    z-index: 10;
    display: block;
    float: left;
    height: 30px;
    position: relative;
    overflow: hidden;
    margin: auto 8px;
}   

.navigation li a:hover, .navigation li a:active, .navigation li a:visited {border: none; color: #ffffff;}    

#navboxLogo h1 {
	float:left;
	margin:10px;
	}
	
/* Content */	

/* Main Container */

.MainContainer #container { 
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #fff;
	background-image:url(/_images/_graphics/MobileCop_Bottom.png);
	background-position:bottom left;
	background-repeat:no-repeat;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
} 

/* Partner Content */

.MainContainer #PartnerContainer { 
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #fff;
	background-image:url(/_images/_graphics/246PartnerBottom.png);
	background-position:bottom left;
	background-repeat:no-repeat;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
} 


/* Header Styles */

.MainContainer #header { 
	padding: 0 10px 0 10px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	height:80px;;
} 

.MainContainer #header h1 {
	float:left;
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}



/* Left Sidebar */

.MainContainer #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 250px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	min-height:400px;
	/* background: #fff;  the background color will be displayed for the length of the content in the column, but no further */
	/* padding: 15px 10px 15px 20px; */
}

.sidebarCell {
	margin-top:50px;
}

.sidebarCell img {
	margin-left:0px;
	margin-bottom:20px;
}		


/* Main Column */

.MainContainer #mainContent { 
	margin: 0 0 0 325px;  /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 

.mainCell {
	margin-top:100px;
	margin-bottom:10px;
	padding-top:10px;
	padding-bottom:20px;
	width:450px;
	min-height:60px;
	background-image:url(/_images/_graphics/BlueLine.png);
	background-position:bottom left;
	background-repeat:no-repeat;	
}	

.mainIcon {
	float:left;
	margin-right:20px;
	margin-top:5px;
	min-height:200px;
}

.mainText {
	margin-top:0px;
	padding-top:0px;
	
}	

.bottomCell {
	margin-bottom:10px;
	padding-top:10px;
	padding-bottom:30px;
	width:450px;
}	

.bottomIcon {
	float:left;
	margin-right:20px;
	margin-top:5px;
	height:200px;
}

.bottomText {
	margin-top:0px;
	padding-top:0px;
	
}	

.bottomLogos img {
	margin-right:20px;

}

.MainContainer #mainContent h1 { 
	font-family:Arial, Helvetica, sans-serif;
	font-size:16px;
} 

/* Home Page */

.mainCellHome {
	margin-top:100px;
	margin-bottom:10px;
	padding-top:10px;
	padding-bottom:20px;
	width:450px;
	min-height:200px;
	background-image:url(/_images/_graphics/dxCS_HomePageGraphic.png);
	background-position:bottom left;
	background-repeat:no-repeat;	
}	

.mainHomeText {
	margin-left:200px;
}


/* Content Cells */

.contentCell {
	margin-bottom:10px;
	padding-top:10px;
	padding-right:10px;
	width:450px;
	min-height:100px;
	background-image:url(/_images/_graphics/BlueLine.png);
	background-position:bottom left;
	background-repeat:no-repeat	
}	

.cellIcon {
	float:left;
	margin-top:0px;
	margin-right:20px;
	min-height:100px;
}

.cellText {
	margin-top:0px;
	padding-top:0px;
	padding-bottom:10px;

	
}	

.cellTextIcon {
	margin-top:0px;
	margin-left:80px;
	padding-top:0px;
	padding-bottom:10px;
	
}

/* Partner Cells */

.mainCellPartner {
	margin-top:100px;
	margin-bottom:10px;
	padding-top:10px;
	padding-bottom:20px;
	width:450px;
	min-height:60px;
	background-image:url(/_images/_graphics/246Line.png);
	background-position:bottom left;
	background-repeat:no-repeat;	
}	

.contentCellPartner {
	margin-bottom:10px;
	padding-top:10px;
	padding-right:10px;
	width:450px;
	height:auto;
	background-image:url(/_images/_graphics/246Line.png);
	background-position:bottom left;
	background-repeat:no-repeat	
}	

.mainCellHardwarePartner {
	margin-bottom:10px;
	padding-top:10px;
	width:450px;
	height:auto;
}	

.mainCellHardwareText {
}

.mainCellHardwareLogos img {
	margin-right:20px;

}


/* Contact Form */

.contactCell {
	margin-top:100px;
	margin-bottom:10px;
	padding-top:10px;
	padding-bottom:30px;
	width:450px;
	height:auto;
	background-image:url(/_images/_graphics/BlueLine.png);
	background-position:bottom left;
	background-repeat:no-repeat;	
}	

.contactIcon {
	float:left;
	margin-right:20px;
	margin-top:5px;
	height:200px;
}

.contactText {
	margin-top:0px;
	padding-top:0px;
	
}	


/* Footer */

.MainContainer #footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	height:20px;
} 

.MainContainer #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}


/* Bottom Navigation */

#BottomNav { 
} 

#BottomNav p {
	font:Arial, Helvetica, sans-serif;
	font-size:8px;
	text-align:center;
	line-height:4px;
	color:#0000CC;
}



/* Clearing */

.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}

.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}

.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}