@charset "utf-8";
/* CSS Document */
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #292929;
	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: #292929;
}
.dm9 #container {
	width: 939px;
	text-align: left;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
} 
.dm9 #header {
	height: 194px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 20px;
	background-color: #DDDDDD;
	background-image: url(../images/design/header_1.png);
} 
.dm9 #navagation {
	height: 25px;
	margin-top: 8px;
	margin-bottom: 10px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #444444;
	text-align: center;
	margin-left: 0px;
	margin-right: 0px;
}
.dm9 #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: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.dm_welcome_format {
	margin-top: 20px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	float: left;
}
#page_brake {
	height: 70px;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: solid;
	border-left-style: none;
	border-top-color: #444444;
	border-right-color: #444444;
	border-bottom-color: #444444;
	border-left-color: #444444;
	margin: 0px;
	padding: 0px;
	color: #FFFFFF;
	font-weight: normal;
}
#page_brake img {
}
#page_gutter {
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 10px;
	padding-left: 0px;
	background-image: url(../images/design/logo_big_gray.png);
	background-repeat: no-repeat;
	background-position: right bottom;
	margin-top: 10px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
}
#page_brake img {
	margin-top: 0px;
	padding-top: 0px;
	margin-right: 0px;
	margin-bottom: -18px;
	margin-left: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
#page_brake h3 {
	font-size: 110%;
	font-weight: normal;
	display: inline;
	margin-top: 0px;
	margin-right: 5px;
	margin-bottom: 0px;
	margin-left: 5px;
	vertical-align: top;
	padding: 0px;
}
#page_brake h4 {
	display: inline;
	color: #C87908;
	font-weight: normal;
	font-size: 110%;
	margin: 0px;
	padding: 0px;
	vertical-align: top;
}
#curent_status {
	float: right;
	padding: 0px;
	margin-top: 10px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	font-size: 80%;
	color: #666666;
	text-align: right;
	display: inline;
}
#curent_status p {
	color: #CCCCCC;
	margin: 0px;
	padding: 0px;
	font-size: 80%;
	display: inline;
}
.dm9 #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 450px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px;
	margin: 0;
}
#sidebar1 p {
	color: #FFFFFF;
	font-size: 85%;
	margin-bottom: 20px;
}
#sidebar1 .sidebar2,  a:link, a:visited, a:active{
	color: #C87908;
	text-decoration: none;
}
#sidebar1  .sidebar2, a:hover  {
	color: #FFFFFF;
	text-decoration: underline;
}
.dm9 #mainContent {
	margin-top: 0;
	margin-right: 0px;
	margin-bottom: 0;
	padding-top: 0;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 0px;
	width: 480px;
	float: right;
	margin-left: 0px;
} 
#mainContent p {
	color: #FFFFFF;
	font-size: 85%;
}
#mainContent  h1 {
	font-size: 110%;
	margin: 0px;
	padding: 0px;
	text-align: right;
}
 h2 {
	font-size: 110%;
	margin: 0px;
	padding: 0px;
	text-align: left;
	border-bottom: 1px solid #666666;
}
#mainContent  h6 {
	text-align: right;
	margin: 0px;
	padding: 0px;
	color: #292929;
}
.dm9 #footer {
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 0px;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-top-color: #444444;
	height: 50px;
	margin: 0px;
	color: #565656;
	font-size: 60%;
} 
#footer p {
	float: left;
	margin: 0px;
	padding: 0px;
}
.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;
}
.uparrow {
display: block;
	float: right;
	
}
.uparrow a {
	display: block;
	height: 10px;
	width: 17px;
	background-image: url(../images/design/uparrow_reg.gif);
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 15px;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	color: #454545;
	text-decoration: none;
}
.uparrow a:hover {
	background-image: url(../images/design/uparrow_hover.gif);
	
	display: block;
	color: #A0A0A0;
}

.table_matrix{
	width: 100px;
	float: none;
	z-index: 5;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	display: inline;
	padding: 0px;
	height: 100px;
	margin: 0px;
	text-align: center;

}
.table_matrix img {
	text-decoration: none;
	border-width: 0px;
	border-style: none;
	z-index: 10;
	margin: 0px;
	padding: 0px;
	width: 100px;
}
.table_matrix a:link {
	opacity: .5;
	filter: alpha(opacity=50);
	text-decoration: none;
	border-width: 0px;
	border-style: none;
	z-index: 10;
	filter: Alpha(Opacity=80%);
	width: 100px;
}
.table_matrix a:visited {
	text-decoration: none;
		border-width: 0px;
	border-style: none;
		z-index: 10;
}
.table_matrix a:hover {
	text-decoration: none;
	border-width: 0px;
	border-style: none;
	z-index: 10;
	width: 100px;
	opacity: 100;
	filter: alpha(opacity=100)
}
.table_matrix a:active {
	text-decoration: none;
		border-width: 0px;
	border-style: none;
		z-index: 10;
}

.sidebar2 {
	color: #FFFFFF;
	font-size: 85%;

}
#sidebar3 {
	color: #FFFFFF;
	font-size: 85%;
	text-align: center;
}

.sidebar2 h1 {
	font-size: 130%;
	color: #292929;
	font-weight: bold;
	margin: 0px;
	padding: 0px;
}
.sidebar2 h5 {
	margin: 0px;
	padding-top: 5px;
	padding-right: 0px;
	padding-bottom: 5px;
	padding-left: 10px;
	
}
.sidebar2 p {
	margin-bottom: 20px;
}
.enter_spacer {
	height:10;
	font-size: 10px;
	line-height: 0px;
}
.center_it {
	text-align: center;
}
.fireblog {
	color: #292929;
	font-weight: bold;
	text-align: center;
	background-color: #C87908;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	margin-top: 10px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.redcolor {
	color: #FFA926;
	font-weight: bold;
	font-size: 110%;
	text-decoration: underline;
}
