@charset "utf-8";

body {
	background: #E9EBEB url(../images/bg.gif) repeat-x top left;
	background: #000000 url(../images/bg.gif) repeat-x top left;
	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: #000000;
}

 #container { 
	width: 970px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF url(../images/bg_container.gif) repeat-y top left;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	height: 100%;
} 
 #container_1 { 
	width: 970px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF url(../images/bg_container_1.gif) repeat-y top left;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	height: 100%;
}
 #header { 
	width: 970px;
	height: 205px;
	padding: 0px;
} 
 #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 */
}
 #header_l { 
	width: 180px;
	height: 205px;
	padding: 0px;
	float:left;
}
 #header_r { 
	width: 790px;
	height: 205px;
	padding: 0px;
	float:right;
	background: url(../images/bg_header_r.jpg) no-repeat top left;
}
 #header_r_1 { 
	width: 790px;
	height: 205px;
	padding: 0px;
	float:right;
	background: url(../images/bg_header_r_1.jpg) no-repeat top left;
}
 #logo { 
	margin: 8px 0px 0px 10px;
} 
 #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 180px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
}
 #sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 180px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
}
 #sidebar2_ref {
	float: right; /* since this element is floated, a width must be given */
	width: 200px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
}

 #mainContent { 
	margin: 0 200px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the sidebar spaces when the content in each sidebar ends. */
	padding: 0 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	text-align: justify;
} 
 #mainContent_ref { 
	margin: 0 200px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the sidebar spaces when the content in each sidebar ends. */
	padding: 0 10px 10px 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	text-align: justify;
} 
 #footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD;
} 
 #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: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.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;
}

.footer_1 {
	height: 50px; 
	background: #666666 url(../images/bg_footer.gif) repeat-x top left;
	color:#CCCCCC;
	text-align: center;
}
#footer_2 {
	width: 970px;
	color: #CCCCCC;
	text-align: left;
	font-size: 11px;
}

#contacts {
	margin-top: 10px;
	height: 290px;
	padding: 40px 10px 0px 35px;
	font-size: 11px;
	color:#AEAEAE;
	background: url(../images/bg_contacts.gif) no-repeat top left;;
}

#news_menu {
	padding: 10px;
	font-size: 11px;
	color:#CCCCCC;
}

#reference_right {
	padding: 10px;
	font-size: 11px;
	color:#CCCCCC;
}

#news_menu a:Link {
	text-decoration: none;
	color: #CDCDCD;
} 
#news_menu a:Visited {
	text-decoration: none;
	color: #CDCDCD;
} 
#news_menu a:Hover {
	text-decoration: underline;
	color: #CDCDCD;
}
#news_menu .news_date {
	color:#FFFFFF;
	font-size: 10px;
	margin-bottom: 5px;
}
#photo_gallery_l {
	width: 330px;
	padding: 5px 0px 5px 0px;
	/* height: 270px; */
	background: url(../images/bg_player.gif) repeat-y top left;
	text-align: center;
}
#photo_gallery_l h2{
	color:#000000;
	background-color:#FFFFFF;
	padding: 5px;
	font-size: 12px;
	margin: 10px 5px 0px 5px;
}
#photo_gallery_r {
	width: 220px;
	margin: 0px 0px 0px 0px;
	float: right;
	font-size: 10px;
}
#photo_gallery_r img {
	/* border: #CCCCCC 1px solid; */
}

.video_list {
	/* border: #000000 1px solid; */
}

.video_list td {
	font-size: 10px;
	vertical-align: top;
	padding: 5px;
}

#tbl_index {

}

#tbl_index td {
	text-align: justify;
	color: #6E6D6B;
}

#tbl_index .tbl_l {
	padding: 10px 20px 20px 0px;
	background: url(../images/bg_tbl_l.gif) repeat-y top right;
}
#tbl_index .tbl_r {
	padding: 10px 0px 20px 20px;
}

#tbl_index td h1{
	font-size: 18px;
	font-weight: normal;
	color: #FF6600;
	line-height: 1.1em;
	margin: 0px 0px 10px 0px;
	padding: 0px;
	text-align: left;
}

#tbl_index td h2{
	font-size: 18px;
	font-weight: normal;
	color: #FF6600;
	line-height: 1.1em;
	margin: 0px 0px 10px 0px;
	padding: 0px;
	text-align: left;
}

#tbl_index_list {

}
#tbl_index_list td {
	font-size: 11px;
	text-align: left;
	color: #6E6D6B;
	padding: 0px 0px 10px 0px;
}
#tbl_index_list td h3{
	font-size: 12px;
	font-weight: bold;
	text-align: left;
	color: #6E6D6B;
	padding: 0px 0px 10px 0px;
}
#tbl_index_list td p {
	padding: 0px;
	margin: 0px 0px 5px 0px;
}

#tbl_index_list td a {
	color: #FF6600;
}
#tbl_index_list td a:visited {
	color: #FF6600;
}
#tbl_index_list td a:hover {
	color: #FF6600;
}