@charset "utf-8";
/* CSS Document */
/* This controls everything within the body tags in your HTML */
body {
	background-color:#26354A;/*<---- This is not a websafe color. It will work but not in all browsers I suggest color #036*/
	background-repeat:repeat-y;
	color:#000000;
	margin:0;
}
/*This code removes the border outline on links in firefox*/
a{
	outline:none;
}
/*This is the style of your Header Text. They are numbered out acordingly. (Example: h1= Header 1, h2= Header 2, etc..)*/
h1 { 
	color:#ffba00;
	font-size:36px;
	font-family: "Times New Roman", Times, serif;
}
h2 { 
	color:#FFF;
	font-size:30px;
	font-family: Arial, Helvetica, sans-serif;
}
h3 { 
	color:#C60;
	font-size:36px;
	font-family: "Times New Roman", Times, serif;
}
h4{ 
	color:#333;
	font-size:30px;
	font-family: Arial, Helvetica, sans-serif;
}
/*This is the style for the header text so that it removes all extra spacing cause by h tags*/
h1,h2,h3,h4,h5,h6{
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	display: inline;
}
/*This controls the styles of the navigation and header (Refer to ..inc/nav.php) */ 
#header {
	height:50px;
	width:100%;
	padding:14px;
}
#nav {
	background-image:url(../images/NavBG.png);
	font-family:Tahoma, Geneva, sans-serif;
	font-size:15px;
	font-weight:bold;
	letter-spacing:2px;
	color:#039;
	width:100%;
	height:20px;
	padding:13px;
}
.dividers {
	color:#F90;
}
/*These style the links color and rollover state for the navigation (Refer to ..inc/nav.php)*/
a.nav:link, a.nav:visited{
	color: #039;
	text-decoration:none;
}
a.nav:hover {
	color:#FFF;
	text-decoration:none;
}
/*These styles control the left and right columns that contain your content*/
#container{
	overflow:hidden;
    width:100%;
	background-image:url(../images/BG.png);
}
#content{
	width:400px;
	border-right:450px /* <----- The width of the rail */
	margin-right:-450px; 
	float:left;
}
#rail{
	width:530px;
	padding:15px;
	float:left;
	background-color:#D3DCE6;
}
.redtxt{

color:#00FF00}