/*==============================================================================

	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 =========================*/

.cssmenu {
	position:relative;        /* establish a menu-relative positioning context */
	float:left;                                     /* play nicely with others */
	margin:0;
	padding:0;
	border:0;
	height:2em;                                  /* the menu's overall height */
	width:100%;         /* we always want our menu to fill the available space */
	color: #fff;
	background:#000;
	background-repeat:repeat-x;
	background-image:url(images/h2.png);
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size:1em;         /* this (and also below) sets the menu's font size */
	border-bottom:1px solid black;        /* give us a black border underneath */
}

.cssmenu ul {
	padding:0;
	margin:0;
	border:0;
	list-style-type:none;          /* we don't want to view the list as a list */
	line-height:2em;           /* globally set the menu's item spacing. note */
}                               /* this must be 1.0 or 1.5 or 2.0 for Mozilla */

.cssmenu 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;
	line-height:2em;
	width:auto;
}

.cssmenu 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:1em;        /* this sets the base font size for our entire menu */
	line-height:2em;
}

/*======================== TOP LEVEL MENU DEFINITIONS ========================*/

.cssmenu ul li ul {
	display:none;                  /* initially hide the entire list hierarchy */
	padding:1px;                               /* this is our box border width */
}

.cssmenu ul li a,
.cssmenu ul li a:visited {                    /* unselected top-level menu items */
	display:block;
	float:left;
	text-decoration:none;
	font-weight: bold;
	color: #ccc;
	padding: 0 .5em;
	height:2em;
	line-height:2em;
}

.cssmenu ul li:hover a,
.cssmenu ul li a:hover {                        /* selected top-level menu items */
	background-repeat:repeat-x;
	background-image:url(images/h3.png);
	text-decoration:none;
	font-weight: bold;
	color: #fff;
	zoom:1; /* Must have layout in IE to be visible. Zoom 1 should not change anything */
}

/*======================== 2ND LEVEL MENU DEFINITIONS ========================*/

.cssmenu ul li:hover ul,
.cssmenu ul li a:hover ul {                           /* 2nd level drop-down box */
	display:block;
	position:absolute;
	margin:0;
	top:2em;              /* 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:11.5em;
	color:#ccc;                        /* this sets the unselected-text color */
	/* this sets our menu's effective "border" color */
/*	background-color: black; */
/*    background-image:url(/themes/blogbyblog/images/sort_semi.png);*/
    background-image:url(images/sort_semi.png);

}

.cssmenu ul li:hover ul.cssmenuleftbutton,
.cssmenu ul li a:hover ul.cssmenuleftbutton {/* our first dropdown should not be skewed */
	left:0px;
}

.cssmenu ul li:hover ul li a,
.cssmenu ul li a:hover ul li a {                   /* 2nd level unselected items */
	border:0;
	margin:0;
	padding: 0 .5em;
	height:auto;
	color:#ccc;               /* this sets the unselected drop-down text color */
	background: inherit;       /* this sets the drop-down menu background color */
	background-image: inherit;
	font-weight:bold;
	padding: 0 .5em;
	width:10.5em;
}

.cssmenu ul li:hover ul li:hover a,
.cssmenu ul li a:hover ul li a:hover {                /* 2nd level selected item */
	color:white;
/*	background-color: #600; */
/*	background-image:url(/themes/blogbyblog/images/roed_semi.png);*/
    background-image:url(images/roed_semi.png);
}

