@charset "utf-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #666666;
	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: 1000px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	background-image: url(../images/container_bg.jpg);
	background-repeat:repeat-y;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
 #header { 
	background: #DDDDDD;
	background-image:url(../images/header.jpg);
	background-repeat:no-repeat;
	height: 207px;
	padding: 0 10px 0 20px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
} 
 #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 */
}

a img {
border:0;
}

#menubar {
margin:0;
height:27;

}

#submenuIt {
position:relative;
float:left;
height:184px;
width:502px;
background-image:url(../images/submenu_it.jpg);
background-repeat:no-repeat;
}
#submenuIt p {
padding: 60px 10px 5px 35px;
font-size: 12px;
color: white;
}
#submenuHome {
position:relative;
float:left;
height:184px;
width:502px;
background-image:url(../images/submenu_home.jpg);
background-repeat:no-repeat;
}
#submenuHome p {
padding: 60px 10px 5px 35px;
font-size: 12px;
color: white;
}
#submenuAbout {
position:relative;
float:left;
height:184px;
width:502px;
background-image:url(../images/submenu_about.jpg);
background-repeat:no-repeat;
}
#submenuAbout p {
padding: 60px 10px 5px 35px;
font-size: 12px;
color: white;
}
#submenuWiki {
position:relative;
float:left;
height:184px;
width:502px;
background-image:url(../images/submenu_wiki.jpg);
background-repeat:no-repeat;
}
#submenuWiki p {
padding: 60px 10px 5px 35px;
font-size: 12px;
color: white;
}
#submenuLinks {
position:relative;
float:left;
height:184px;
width:502px;
background-image:url(../images/submenu_links.jpg);
background-repeat:no-repeat;
}
#submenuLinks p {
padding: 60px 10px 5px 35px;
font-size: 12px;
color: white;
}
#submenuTv {
position:relative;
float:left;
width: 228px;
height: 184px;
background-image:url(../images/tv_it.jpg);
background-repeat:no-repeat;
}
#submenuTv img{
margin: 0;
}
#submenuRt {
margin: 0;
position:relative;
float:left;
height:184px;
width:270px;
background-image:url(../images/submenu_rt.jpg);
background-repeat:no-repeat;
color:#FFFFFF;

}

 #sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 270px; /* 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 */
	background: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */
	background-image:url(../images/sidebar.jpg);
	background-repeat:repeat-y;
	
}
#sidebar1 h3 {
padding: 10px 40px 0px 25px;
font-size: 14px;
font-weight:bold;
color: #B7610B;
}
#sidebar1 p {
padding: 10px 40px 10px 25px;
font-size: 12px;
color: white;
}
#sidebarBtm {
background-image:url(../images/sidebar_btm.jpg);
background-repeat:no-repeat;
height: 61px;
}
 #mainContent { 
	margin: 0 260px 0 0; /* the right margin on this div element creates the column down the right side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 

.pod{
	border: 1px solid #CCCCCC;
	
	padding: 20px;
	font-size:12px;

	margin: 10px 0;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
}

.pod a {
border:0;

}
.pod b{
	font-weight: bold;
	font-size:14px;
	color:#660000;
}

.pod img {
    float:left;
	margin-bottom: 8px;
    margin-right: 15px;
	border: 1px solid #000;
	}
	
	
	
.footnote{
	font-size:10px;
	color:#660000;
	padding-left:4px;
}	
 #footer {
 background-image:url(../images/footer.jpg);
 background-repeat:no-repeat;
 height:110px;
	 /* this padding matches the left alignment of the elements in the divs that appear above it. */

} 
 #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: 90px 20px 30px 850px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	color:#FFFFFF;
	font-size:12px;
}
.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;
}

a.tt{
    position:relative;
    z-index:24;
    color:#3CA3FF;
	font-weight:bold;
    text-decoration:none;
}
a.tt span{ display: none; }

/*background:; ie hack, something must be changed in a for ie to execute it*/
a.tt:hover{ z-index:9999; color: #aaaaff; background:;}
a.tt:hover span.tooltip{
    display:block;
    position:absolute;
    top:-40px; left:100px;
	padding: 15px 0 0 0;
	width:200px;
	color: #993300;
    text-align: left;
	filter: alpha(opacity:90);
	KHTMLOpacity: 0.90;
	MozOpacity: 0.90;
	opacity: 0.90;
	font-size:9px;
}
a.tt:hover span.top{
	display: block;
	padding: 30px 8px 0;
    background: url(../images/bubble.gif) no-repeat top;
}
a.tt:hover span.middle{ /* different middle bg for stretch */
	display: block;
	padding: 0 8px; 
	background: url(../images/bubble_filler.gif) repeat bottom; 
}
a.tt:hover span.bottom{
	display: block;
	padding:3px 8px 10px;
	color: #548912;
    background: url(../images/bubble.gif) no-repeat bottom;
}


.feedPanel {
padding: 10px 35px 0px 30px;
}