body {
	margin-left: 0px;
	margin-top: 4px;
	margin-right: 0px;
	margin-bottom: 4px;
	font-family:Verdana, Arial, Helvetica, sans-serif;
}
#main {
/*width:960px;*/
width:980px;
margin:0 auto;
background-color:#FFFFFF;
}
a { 
/*color:#d6a477;*/
color:#C11B17;
text-decoration:none;
font-weight:bold;
}
a:hover {
	text-decoration:underline;
}
#mainbanner {
width:960px;
height:95px;
}
#left {
padding:0px 12px 0px 12px;
width:700px;
float:left;
}
#left li {
	margin-left:20px;
	margin-bottom:5px;
}
#right {
padding:0px 12px 0px 12px;
float:right;
width:205px;
}
#footer {
	width:960px; 
margin:0 auto;
clear:both;
text-align:right;
font-size:10px;
padding:12px;
color:#999999;
}
#footer a{
color:#999999;
text-decoration:none;
}
#footer a:hover {

text-decoration:underline;
color:#000000;
}

body,td,th {
	font-size: 12px;
}


#tagcloud {
border:3px #FF0000 solid;
padding:2px;
text-align:center;
}
#tagcloud a{
text-decoration:none;
color:#000000;
}
#tagcloud a:hover{
text-decoration:underline;
color:#FF0000;
}
h2 {
	font-size: 16px;
	border-top:2px #FF0000 solid;
}



/************** expandable menu start  */
.arrowlistmenu{
width: 180px; /*width of accordion menu*/
margin-bottom:30px;
}

.arrowlistmenu #menuhheader{ /*CSS class for menu headers in general (expanding or not!)*/
font: bold 14px Arial;
color: white;
cursor: hand;
cursor: pointer;
margin-bottom:-10px;
}

.arrowlistmenu .openheader{ /*CSS class to apply to expandable header when it's expanded*/
background-image: url(titlebar-active.png);
}

.arrowlistmenu ul{ /*CSS for UL of each sub menu*/
list-style-type: none;
margin: 0;
padding: 0;
margin-top: 8px; /*bottom spacing between each UL and rest of content*/
}

.arrowlistmenu ul li{
padding-bottom: 2px; /*bottom spacing between menu items*/
}

.arrowlistmenu ul li a{
color: #A70303;
background: url(arrowbullet.png) no-repeat center left; /*custom bullet list image*/
display: block;
padding: 2px 0;
padding-left: 19px; /*link text is indented 19px*/
text-decoration: none;
border-bottom: 1px solid #dadada;
font-size: 90%;
}

.arrowlistmenu ul li a:visited{
color: #A70303;
}

.arrowlistmenu ul li a:hover{ /*hover state CSS*/
color: #A70303;
background-color: #F3F3F3;
}

/** ---end--- **/


/**************** menu coding *****************/
/*==============================================================================

	GRC multi-level script-free pure-CSS menuing system stylesheet.
   This code is hereby placed into the public domain by its author
   Steve Gibson. It may be freely used for any purpose whatsoever.

	Computed Geometries:	with a default 12px font, 1.0em == 12px and
	1px == 0.08333em.
	Thus, our 98px wide Freeware & Research buttons are 8.166666em wide.

==============================================================================*/

 /*========================= TOP OF THE MENU CASCADE =========================*/

#menuh {
	position:relative;        /* establish a menu-relative positioning context */
	float:left;                                     /* play nicely with others */
	margin:0;
	padding:0;
	border:0;
	height:18px;                                  /* the menu's overall height */
	width:100%;         /* we always want our menu to fill the available space */
	background:#f3f3f3;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size:12px;         /* this (and also below) sets the menu's font size */
	border-bottom:1px solid black;        /* give us a black border underneath */
}

#menuh img {
	vertical-align: top;      /* prevent images from being pushed down by text */
}

#menuh ul {
	padding:0;
	margin:0;
	border:0;
	list-style-type:none;          /* we don't want to view the list as a list */
	line-height:1.5em;           /* globally set the menu's item spacing. note */
}                               /* this must be 1.0 or 1.5 or 2.0 for Mozilla */

#menuh li {
	float:left;    /* this creates the side-by-side array of top-level buttons */
	position:relative;    /* create local positioning contexts for each button */
	margin:0;
}

#menuh ul li table {
	margin:-1px 0;              /* IE5 needs -1px top and bottom table margins */
	m\argin:0;               /* re-zero the table margins for everyone but IE5 */
	border-collapse:collapse;      /* IE5 needs this for the sub-menus to work */
	font-size:12px;        /* this sets the base font size for our entire menu */
}


/*======================== TOP LEVEL MENU DEFINITIONS ========================*/

#menuh ul li ul {
	display:none;                  /* initially hide the entire list hierarchy */
	padding:1px;                               /* this is our box border width */
}

#menuh ul li a,
#menuh ul li a:visited {                    /* unselected top-level menu items */
	display:block;
	float:left;
	text-decoration:none;
	height:18px;
}

#menuh ul li:hover a,
#menuh ul li a:hover {                        /* selected top-level menu items */
	border-top:1px solid #000;    /* these 2 lines create the push-in illusion */
	height:16px;
}

/*======================== 2ND LEVEL MENU DEFINITIONS ========================*/

#menuh ul li:hover ul,
#menuh ul li a:hover ul {                           /* 2nd level drop-down box */
	display:block;
	position:absolute;
	margin:0;
	top:18px;              /* place us just up underneath the top-level images */
	left:-1px;       /* left-align our drop-down to the previous button border */
	height:auto;      /* the drop-down height will be determiend by line count */
	width:13.5em;
	color:black;                        /* this sets the unselected-text color */
	background:black;         /* this sets our menu's effective "border" color */
}

#menuh ul li:hover ul.leftbutton,
#menuh ul li a:hover ul.leftbutton {/* our first dropdown should not be skewed */
	left:0px;
}

#menuh ul li:hover ul.skinny,
#menuh ul li a:hover ul.skinny {             /* 2nd level skinny drop-down box */
	width:8.08333em;   /* with a 12px default font, this is 97px width (97/12) */
}

#menuh ul.rightmenu li:hover ul,
#menuh ul.rightmenu li a:hover ul {    /* 2nd level neighborhood drop-down box */
	left:auto;
	right:0;         /* nudge the right menu right to line up under the border */
}

* html #menuh ul.rightmenu li a:hover ul {         /* IE5/6 needs a tweak here */
	right:-1px;
}

#menuh ul li:hover ul li a,
#menuh ul li a:hover ul li a {                   /* 2nd level unselected items */
	border:0;
	margin:0;
	padding:0;
	height:auto;
	color:#000;               /* this sets the unselected drop-down text color */
	background:#d8d8d8;       /* this sets the drop-down menu background color */
	width:13.5em;
}

#menuh ul li:hover ul li:hover a,
#menuh ul li a:hover ul li a:hover {                /* 2nd level selected item */
	color:black;
	background:white;
}

#menuh ul li:hover ul.skinny li a,
#menuh ul li a:hover ul.skinny li a,
#menuh ul li:hover ul.skinny li a:hover,
#menuh ul li a:hover ul.skinny li a:hover {     /* 2nd level un+selected items */
	width:8.08333em;
}

/*======================== 3RD LEVEL MENU DEFINITIONS ========================*/

#menuh ul li:hover ul li ul,
#menuh ul li a:hover ul li a ul {             /* hide inactive 3rd-level menus */
	visibility:hidden;
}
     
#menuh ul li:hover ul li:hover ul,
#menuh ul li a:hover ul li a:hover ul {             /* 3rd level drop-down box */
	visibility:visible;
	position:absolute;
	margin-top:-1px;	      /* bring the top edge of the 3rd level menu up one */
	top:0;
	left:8.08333em;
	width:14em;
}

#menuh ul li:hover ul li:hover ul li a,
#menuh ul li a:hover ul li a:hover ul li a {     /* 3rd level unselected items */
	width:14em;
	background:#d8d8d8;
}

#menuh ul li:hover ul li:hover ul li a:hover,
#menuh ul li a:hover ul li a:hover ul li a:hover {    /* level3 selected items */
	width:14em;
	background:white;
}


/**************** end menu coding *****************/


#left {
	font-size:16pxc;
}
