@charset "utf-8";
/* ~~ 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.

*/
body {
	/*	~~font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif; ~~*/
	
	color: #000;
	background-color: #F0F0F0;

}
a:link {

	color: #42413C;

}
a:visited {
	color: #722889;

}
.container {

	background-image: url(../Images/FillSide.jpg);

}
.header {
	background-color: #B2B2B2;

}
.header2 {
	background-image: url(../Images/menu_gradient2.png);
	background-repeat: repeat-x;
}

.sidebar1 {
	border-bottom-color: #333333;
	border-left-color: #722889;
	background-color: #DBDBDB;
	border-top-color: #CCC;
}

.content {
	border-right-color: #909090;

	}
.container .content .Temp {
	background-color: #CF0;

}


.insignia {

	background-color: #48484A;
}
.contentInner {

	background-color: #F5F5F5;

	border-right-color: #666;

	border-top-color: #CCC;

	border-bottom-color: #333333;

}
ul.nav li {
	border-bottom-color: #620000;

}
ul.nav a, ul.nav a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */

	background-color: #800000;
	color: #F6EF6F;
}
ul.nav a:hover, ul.nav a:active, ul.nav a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
	background-color: #F6EF6F;
	color: #800000;
}
.footer {

	background-color: #939393;
}


.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. */

	background-color: #676767;
}
#menu {

	background-color: #676767;
}

ul#nav
{
	background-color: #9B9B9B; /*Change this color value for a different background color*/
	background-image: url(../../../Images/menu_gradient2.png);
}

ul#nav li
{
}

ul#nav a
{
}
    
ul#nav span, ul#nav li#current span, ul#nav a:hover span, ul#nav a:active span /*Off state*/
{
	color: #CBC10C;
	background-color: #800000;
	border-right-color: #A40000;
	border-top-color: #F00000;
	border-bottom-color: #8A0000;
}


ul#nav a:hover span,ul#nav a:active span /*Rollover state*/
{
	color: #800000;/*text color rollover state*/
	background-color: #33CCFF;
	border-bottom-color: #666;
	border-top-color: #F8F285;
	border-right-color: #CBC10C;
}

ul#nav li.current span /*Currently selected state*/
{
	color: #000;/*text color current state*/
	background-color: #F5F5F5;
	border-top-color: #CCC;
	border-right-color: #666;
	border-bottom-color: #F8F8F8;
}
ul#nav a:active span /*On click state*/
{ 
	background-image:  url(../img/tab_active.png);
	color: #000;/*text color on click state*/	
}
