/* CSS Document */

body {
	font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
	margin: 10px;
	padding: 0;
	color: #000;
	background-image: url(images/tns_mountain_bg.jpg);
	background-repeat: no-repeat;
	background-color: #5394CE;	
	background-color: #000;
	align: center;
}


/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
	font-size: 8pt;
    font-family: sans-serif;
	color: #FFF;
	text-decoration: none;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 0px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}

/* ~~ Styling for your site's links must remain in this order -  including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #FFF;
	text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
	font-size: 8pt;
    font-family: verdana;
}
a:visited {
	color: #FFF;
	text-decoration: none;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
	color: #F5E460;
}
.extra_header {
	background-color: #FFFFFF;
	background-image: url(images/info_background.jpg);
	background-repeat: no-repeat;
	background-size: 810px 155px;
}
		
/* ~~ this container surrounds all other divs giving them their percentage-based width ~~ */
.container {
	width: 70%;
	max-width: 1260px;/* a max-width may be desirable to keep this layout from getting too wide on a large monitor. This keeps line length more readable. IE6 does not respect this declaration. */
	min-width: 810px;
	margin: 0 auto;
	border: thin solid #F00;
	background-color: #000;
	overflow: inherit;
	align: center;
}



/* ~~ These are the columns for the layout. ~~ 

1) Padding is only placed on the top and/or bottom of the divs. The elements within these divs have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.

2) No margin has been given to the columns since they are all floated. If you must add margin, avoid placing it on the side you're floating toward (for example: a right margin on a div set to float right). Many times, padding can be used instead. For divs where this rule must be broken, you should add a "display:inline" declaration to the div's rule to tame a bug where some versions of Internet Explorer double the margin.

3) Since classes can be used multiple times in a document (and an element can also have multiple classes applied), the columns have been assigned class names instead of IDs. For example, two sidebar divs could be stacked if necessary. These can very easily be changed to IDs if that's your preference, as long as you'll only be using them once per document.

4) If you prefer your nav on the right instead of the left, simply float these columns the opposite direction (all right instead of all left) and they'll render in reverse order. There's no need to move the divs around in the HTML source.

*/
.panelContainer {
	clear: both;
	margin-bottom: 5px;	
	border: 0px solid white;	
	background-color: black;
	padding: 2px;
	#width: 430px;
	overflow: hidden;
	}

.panel h2 {
	color: rgb(57,78,121);
	text-shadow: #333;		
}
.panel p {
	color: white;	
}
.sidebar1 {
	float: left;
	width: 202px;
	background-color: #000;
	padding-left: 5px;
	padding-right: 10px;
	border: none;
	height: auto;
	margin-top: 0px;
	margin-bottom: 2px;
	overflow: hidden;
}

.sidebar2 {
	float: right;
	width: 180px !important;
	padding: 0px;
	padding-right:10px;
	padding-bottom: 0px;
	background-color: #000;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 9px;
	color: #FFF;
	border: none;
	height: auto;
	margin-top: 0px;
	margin-bottom: 2px;
	overflow: auto;
}
.content_wide {
	/*float left ruins center content auto width*/
	margin: 0 220px;
	background-color: #C10000;
	/*background-image: url(images/info_background.jpg);*/
	border: thin solid #F00;
	padding-right: 5px;
	padding-bottom: 0px;
	padding-left: 5px;
	#C10000
}
.content {
	float:left;
	width:auto;
	background-color: #FFFFFF;
	#background-image: url(images/info_background.jpg);
		border: thin solid #F00;
	#background-size: 800px 440px;
	padding-right: 5px;
	padding-bottom: 0px;
	padding-left: 5px;
	margin-top: 0px;
	margin-right: 2px;
	margin-bottom: 2px;
	height: auto;
	overflow: visible;
	
}
.content_no_bg {
	/*#position: relative;
	width: 98%;*/
	float: left;
	background-color: #000000;
	border: thin solid #F00;
	padding-right: 5px;
	padding-bottom: 0px;
	padding-left: 5px;
	margin-top: 0px;
	margin-left: 2px;
	margin-right: 20px;
	margin-bottom: 2px;
	height:  auto;
	overflow: visible;
	display: inline-block;
	visibility: inherit;
	z-index: auto;
	left: auto;
	top: auto;
	right: auto;
	bottom: auto;
}



/* ~~The footer ~~ */
.footer {
	color: #FFF;
	padding: 5px;
	margin: 1px 1px 1px 1px;
	background: #AC0000;
	min-width: 800 px;
	min-height: 76px;
	position: relative;/* this gives IE6 hasLayout to properly clear */
	clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
}
.footer_left {
	float: left;
	background-color: #AC0000;
	width:100px;
}
.footer_right {
	float: left;
	background-color: #AC0000;
	position: relative;
	width: 599px;
	overflow: inherit;
}
/* ~~miscellaneous float/clear classes~~ */
.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. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
ul.nav a, ul.nav a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
	display: block; /* this gives the link block properties causing it to fill the whole LI containing it. This causes the entire area to react to a mouse click. */
	text-decoration: none;
	color: #000;
	background-color: #000;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 5px;
	padding-left: 0px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}

[if lte IE 7]>

.content { margin-right: -1px; } /* this 1px negative margin can be placed on any of the columns in this layout with the same corrective effect. */
ul.nav a {
	zoom: 1;
}  /* the zoom property gives IE the hasLayout trigger it needs to correct extra whiltespace between the links */

<![endif]



.logo{
    background-color: #000;
	#margin: 4px 2px 4px 2px;
    padding: 0px;
	border: 0px;
	font-size: 0pt;
	
}
p.header {font-size: 12pt}
p.header {font-family: verdana}
p.header {border: 2px solid #FFFFFF}
p.header {text-align: center}
p.header {color: #ffffff}
p.header {padding: 6px}
p.header {font-weight: bold}
p.header {margin: 5px 0px 0px 0px}
p.header {text-shadow: #333;}

p.header2 {text-align: center}
p.header2 {font-size: 10pt}
p.header2 {text-align: center}
p.header2 {font-family: verdana} 
p.header2 {color: #ffffff}
p.header2 {font-weight: bold}
p.header2 {padding: 3px}
p.header2 {border:  2px solid #ffffff}

p.header3 {border: 1px solid #fff}
p.header3 {font-family: verdana}
p.header3 {color: #ffffff}
p.header3 {line-height: 13pt}
p.header3 {font-size: 10pt}
p.header3 {font-weight: none}
p.header3 {margin: 0px 0px 0px 20px}
p.header3 {text-align: center}
.info_box1{
	margin: 0px;
	background-image: url(images/info_background.jpg);
	padding: 2px;
	background-repeat: no-repeat;
}
p.footer {
	font-size: 9pt;
}
p.footer {font-family: verdana}
p.footer {color: #FFF} 

a {color: #ffffff}
a {text-decoration: underline}

div.box_background {
     background-color: white;
     filter:alpha(opacity=75); /* IE's opacity*/
     opacity: 0.75;
     z-index: 99;
}
.content_arial{
font-size: 9pt;
font-family: arial;
color: #ffffaf;
}
.content_verdana{
font-size: 7pt;
font-family: verdana;
color: #ffffaf;
}

.blackbg{
background: #000000;
}
.red1{
background: #AC0000;
}
.red2{
background: #990000;
}
.red3{
background: #C10000;
}
.text_content {
	font-size: 9pt;
	font-family: verdana;
	color: #DDDDDD;
	
	line-height: 11pt;

	padding: 5px 5px 5px 5px;
}
.tnsplusalign {vertical-align:middle;} 
.text_content_header {
	font-size: 11pt;
	font-family: verdana;
	color: #FFFFFF;
	font-weight: bold;
	vertical-align: top;
	text-align: center;
	
}
.text_content_header2 {
	font-size: 10pt;
	font-family: verdana;
	color: #FFFFFF;
	font-weight: normal;
	vertical-align: top;
	text-align: center;
	
}
.banner_text {
	font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif;
	font-size: 9pt;
	font-weight: normal;
	color: #FFFFFF;
	line-height: 11px;
}
.contact_text { 
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9pt;
	font-weight: normal;
	color: #FFFFFF;
	line-height: 10pt;
}
.news_text {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10pt;
	font-weight: normal;
	color: #000000;
	line-height: 13pt;
	padding: 5px 5px 5px 5px;
	margin: 0px 0px 0px 20px;
	
}
.info_text {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 11pt;
    font-weight: normal;
    color: #000000;
    line-height: 14pt;
    padding: 5px 5px 5px 5px;
    margin: 0px 0px 0px 0px;

}
.header {
	font-size: 10 pt;
	font-family: verdana;
	color: #FFFFFF;
	font-weight: bold;
	vertical-align: top;
	text-align: center;
	}


#menu {
width: 202px;
background-color: #AC0000;
padding: 5px 0px 5px 0px;
}
#menu ul {
border: 1px solid #AC1111; 
list-style: none;
background-color: #AC0000;
margin: 2px;
padding: 1px 0px 2px 5px;
padding_bottom: 10px;
width: 180px;

}
#menu a, #menu h2 {
font: 10pt verdana,sans-serif;
line-height: 12pt,
display: block;

text-decoration: none;
margin: 0;
}
 #menu {
	border-top: 1px solid #e6e6e6;
	border-right: 1px solid #b1b1b1;
	border-bottom: 1px solid #b1b1b1;
	border-left: 1px solid #e6e6e6;
	background-color: #AC00000;
	color: #AC0000;
	line-height: 12pt;
	text-decoration: none;
    }
#menu h2 {
color: #AC0000;
background: #AC0000;
text-transform: uppercase;

}

#menu a {
color: #FFF;
background: #AC0000;
text-decoration: none;
}

#menu a:hover {
color: #E7E118;
background: #AC0000;
}
#menu ul ul ul {
text-decoration: none;
position: absolute;
top: 0;
left: 0;
}
#menu li {
	font: 12pt verdana,sans-serif;
	position: relative;
	text-decoration: none;
	text-align: center;
	
}

#menu ul ul ul {
position: absolute;
top: 0;
left: 100%;
width: 100%;
text-decoration: none;
}
div#menu ul ul
{display: none;}
div#menu ul:hover ul{ 
    display: block; 
    background-color: #AC0000;
	text-decoration: none; 
}

.form_field{
    border: 2px solid #FFFFFF;
    font-size: 9pt;
    color: #333333;
    background-color: #ffff99;
    font-family: Tahoma, Verdana;
    padding: 1px 1px 1px 1px;
    text-decoration: none;
}

.image_border_yellow{
	border: 1px solid #E3BD34;
}

.tabs {
	margin: 0;
	padding: 0;	
	zoom : 1;
}
.tabs li {
	float: left;
	list-style: none;
	padding: 0;
	margin: 0;
}
.tabs a {
	display: block;
	text-decoration: none;
	padding: 3px 5px;
	background-color: rgb(255,0,0);
	margin-right: 10px;
	border: 1px solid rgb(153,153,153);
	margin-bottom: -1px;
}
.tabs .active {
	border-bottom: 1px solid white;
	background-color: #AC0000;
	color: rgb(172,0,0);
	position: relative;
}


.header_logo_layout {
	text-align: center;
	vertical-align: middle;
	/*border: #F00 1px solid;*/
	padding: 10px;
	
}
#horizontal_pad_CSD_logo_list_link {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	text-align: center;
	
}

.header_relative_outer {
	position: relative;
	padding: 5px;
}
#text_image_vert_align {
	vertical-align: baseline;
	text-align: center;
	display: inline;
	line-height: 100px;
}
