blockquote{border-color: #777;}

h1
{ background: transparent;
  color: #6EAB03;
  
}

body, #main, #logo, #logo h1, #left_sidebar, #content, #right_sidebar,
#content
{
	background: #444;
	color: #000000;
	text-align: center;
	
}
 #a:hover
{
background: #ffffff;
}
.entryarea
{
	color: #000000;
	text-align: left;
	margin-left: 9px;
	margin-right: 9px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
}
#menu, #menu li a, .sidebaritem
{ background: #b2d1ef;
  color: #000000;
}

#menu li a:hover, #menu li a#selected, #menu li a#selected:hover
{ background: #1e845b;
  color: #FFFFFF;
  border-color: #B1BCA4;
  
}

.sbilinks li a, .sidebaritem a
{
	color: #1e845b;
	font-weight: bold;
} 

.sbilinks li a:hover, .sidebaritem a:hover
{
  color: #ffffff;
  
} 

#content a
{ background: transparent;
  color: #003399;
}

#footer
{ background: #444;
  color: #EEE;
  border-color: #1e845b;
}

#address, #footer a, #footer a:hover
{ background: transparent;
  color: #EEE;
}

/* Based on Nifty Corners: rounded corners without images */
/* By Alessandro Fulciniti */
/* http://www.html.it/articoli/nifty/index.html */
.rtop, .rbottom{background: #444;}
.rtop .r1, .rtop .r2, .rtop .r3, .rtop .r4,
.rbottom .r1, .rbottom .r2, .rbottom .r3, .rbottom .r4{
	background-color: #ffffff;
}
.column_header {
	width: 194px;
	height: 16px;
	background-color: #d3cfbe;
	background-repeat: no-repeat;
	background-position: bottom;
	padding-top: 2px;
	padding-bottom: 10px;
	background-image: url(column_header_shadow.gif);
	font-size: 14px;
	font-weight: bold;
	color: #1e845b;
	text-align: center;
	text-transform: capitalize;
}
.column_header2 {
	width: 100%;
	height: 16px;
	background-color: #d3cfbe;
	background-repeat: no-repeat;
	background-position: bottom;
	padding-top: 2px;
	padding-bottom: 10px;
	background-image: url(column_header_shadow2.gif);
	font-size: 14px;
	font-weight: bold;
	color: #1e845b;
	text-align: center;
	text-transform: capitalize;
}


/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

.suckerdiv ul{
margin: 0;
padding: 0;
list-style-type: none;
width: 160px; /* Width of Menu Items */
border-bottom: 1px solid #ccc;

}
	
.suckerdiv ul li{
position: relative;
}
	
/*Sub level menu items */
.suckerdiv ul li ul{
position: absolute;
width: 170px; /*sub menu width*/
top: 0;
visibility: hidden;
}

/* Sub level menu links style */
.suckerdiv ul li a{
display: block;
overflow: auto; /*force hasLayout in IE7 */
color: black;
text-decoration: none;
background: #fff;
padding: 1px 5px;
border: 1px solid #ccc;
border-bottom: 0;

}

.suckerdiv ul li a:visited{
color: black;

}

.suckerdiv ul li a:hover{
background-color: yellow;
}

.suckerdiv .subfolderstyle{

}

	
/* Holly Hack for IE \*/
* html .suckerdiv ul li { float: left; height: 1%; }
* html .suckerdiv ul li a { height: 1%; }
/* End */

</style>

<script type="text/javascript">

//SuckerTree Vertical Menu 1.1 (Nov 8th, 06)
//By Dynamic Drive: http://www.dynamicdrive.com/style/

var menuids=["suckertree1"] //Enter id(s) of SuckerTree UL menus, separated by commas

function buildsubmenus(){
for (var i=0; i<menuids.length; i++){
  var ultags=document.getElementById(menuids[i]).getElementsByTagName("ul")
    for (var t=0; t<ultags.length; t++){
    ultags[t].parentNode.getElementsByTagName("a")[0].className="subfolderstyle"
		if (ultags[t].parentNode.parentNode.id==menuids[i]) //if this is a first level submenu
			ultags[t].style.left=ultags[t].parentNode.offsetWidth+"5px" //dynamically position first level submenus to be width of main menu item
		else //else if this is a sub level submenu (ul)
		  ultags[t].style.left=ultags[t-1].getElementsByTagName("a")[0].offsetWidth+"px" //position menu to the right of menu item that activated it
    ultags[t].parentNode.onmouseover=function(){
    this.getElementsByTagName("ul")[0].style.display="block"
    }
    ultags[t].parentNode.onmouseout=function(){
    this.getElementsByTagName("ul")[0].style.display="none"
    }
    }
		for (var t=ultags.length-1; t>-1; t--){ //loop through all sub menus again, and use "display:none" to hide menus (to prevent possible page scrollbars
		ultags[t].style.visibility="visible"
		ultags[t].style.display="none"
		}
  }
}

if (window.addEventListener)
window.addEventListener("load", buildsubmenus, false)
else if (window.attachEvent)
window.attachEvent("onload", buildsubmenus)

</script>

