@charset "UTF-8";
body  {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 13px;
	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;
	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: #fff;
}
#container { 
	width: 1000px;  /* this will create a container 80% of the browser width */
	background: #fff;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	padding: 0;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
#banner {
	margin: 0;
	padding: 20px;  /* 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. */
	background: #f7931e;
	height: 128px;
}
#header { 
	float: left; 
	padding: 0;
} 
#header h1 {
	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: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	display : block;
	width: 122px;
	height: 128px;
	background: url(assets/common/A1logo.gif) no-repeat 100% 100%;
}
#header a { 
	display:block;
	width:122px;
	height:128px;
	text-indent : -9999px;
}
#nav { 
	float: left;
	position: relative;
	left: 20px;
	top: 22px;
} 
#nav ul { 
	list-style-type:none;
	margin:0;
	padding:0;
} 
#nav li { 
	float:left;
	margin: 0 10px;
	text-align: center;
} 
#nav a { 
	display:block;
	width:72px;
	height:72px;
	text-indent : -9999px;
}
#nav li.tvbut { 
	background: url(assets/buttons/tv.gif) no-repeat center;
}	
#nav li.tvbut a:hover { 
	background: url(assets/buttons/tvOn.gif) no-repeat center;
}	
#nav li.theabut { 
	background: url(assets/buttons/thea.gif) no-repeat center;
}	
#nav li.theabut a:hover { 
	background: url(assets/buttons/theaOn.gif) no-repeat center;
}	
#nav li.servbut { 
	background: url(assets/buttons/servArea.gif) no-repeat center;
}	
#nav li.servbut a:hover { 
	background: url(assets/buttons/servAreaOn.gif) no-repeat center;
}	
#nav li.contbut { 
	background: url(assets/buttons/contUs.gif) no-repeat center;
}	
#nav li.contbut a:hover { 
	background: url(assets/buttons/contUsOn.gif) no-repeat center;
}	

#sidebar1 {
	float: right; 
	width: 420px; /* since this element is floated, a width must be given */
	height: 440px;
	margin-top: -150px;
	margin-right: 8px;
	margin-bottom: 8px;
	padding: 0px; /* top and bottom padding create visual space within this div  */
	background: url(assets/common/mainGraphic.gif) no-repeat  100% 100%;
}
#sidebar1text {
	margin-left: 97px;
	margin-top: 105px;
}
#sidebar1 h2 {
	font-size: 15px;
	color: #ffd64f;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	text-align: left;
	margin-bottom: 0;
}
#sidebar1 ul {
	margin: 0 0 0 -25px;
}
#wrapper {
	width: 100%;
  margin: 0;
  padding: 10px 0 10px 0;
  	background: #0071bc;
} 
#mainContent {
  margin: 0;
  padding: 0 20px;
} 
#mainContent h1 {
margin: 0;
padding: 0;
font-size: 20px;
	color: #ffd64f;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	text-align: left;
}
#mainContent h3 {
margin: 0 0 -10px 0;
padding: 0;
font-size: 13px;
	color: #ffd64f;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	text-align: left;
}
#row2 { 
	width: 1000px;  
	background: #fff;
	margin: 20px 0 0 0; 
	padding: 0;
	text-align: left;
	color: #000;
}  
#row2 h2 {
	font-size: 15px;
	color: #ee252b;
	margin: 0;
	padding: 0;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	text-align: left;
}
#row2left {
	float: left;
	width: 400px;
	margin: 0 0 0 20px;
}
#col1 { 
	float: left;
	width: 250px;  
	background: #fff;
	margin: 0; 
	padding: 0;
	text-align: left;
	color: #000;
} 	
#col2 {
	float: right;
	margin: 0; 
	padding: 0
	width: 200px;
	text-align: left;
}
#row2right { 
	float: right;
	width: 300px;  
	background: #fff;
	margin: 0 20px 0 0; 
	padding: 0;
	text-align: left;
	color: #000;
}  
#row2right p {
	margin: 0;
	padding: 0;
}
#row2right img {
	margin: 5px 0;
	padding: 0;
}
#footer { 
	padding: 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: #fff;
	color: #000;
	border-top: 10px solid #0071bc;
} 
#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: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

/* Miscellaneous classes for reuse */
.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-top: -10px;
	margin-left: 8px;
	margin-right: 20px;
}
.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;
}
.wnorm {
	color: #FFFFFF;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 13px;
	text-align: left;
}
.wsmall {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #FFFFFF;
}
.head {
	font-size: 18px;
	color: #ffd64f;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	text-align: left;
}
.small {
	font-size: 11px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	text-align: left;
}
.verybig {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 20px;
	color: #000;
}
.redhead {
	font-size: 15px;
	color: #ee252b;
	line-height: 150%;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	text-align: left;
}
.navtext {
	margin-top: 30px;
}
.bullets {
	color: #FFFFFF;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 13px;
	list-style-type: disc;
	text-align: left;
}
a:link {
	color: #f7931e;
	text-decoration: underline;
}
a:visited {
	color: #f7931e;
	text-decoration: underline;
}
a:hover {
	color: #ee252b;
	text-decoration: underline;
}
a:active {
	color: #ee252b;
	text-decoration: underline;
}
.ysmall {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #ffd64f;
}
.ynorm {
	color: #ffd64f;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 13px;
	text-align: left;
}
a.y:link {
	color: #ffd64f;
	text-decoration: underline;
}
a.y:visited {
	color: #ffd64f;
	text-decoration: underline;
}
a.y:hover {
	color: #f7931e;
	text-decoration: underline;
}
a.y:active {
	color: #f7931e;
	text-decoration: underline;
}
.ybig {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #ffd64f;
}
.wbigger {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 15px;
	color: #FFFFFF;
}
a.w:link {
	color: #fff;
	text-decoration: underline;
}
a.w:visited {
	color: #fff;
	text-decoration: underline;
}
a.w:hover {
	color: #f7931e;
	text-decoration: underline;
}
a.w:active {
	color: #f7931e;
	text-decoration: underline;
}
.ind {
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 5px;
}
