/*------------------------------------*/
/* WIDGET DROPDOWNS - MLN 10-13-09    */
/*------------------------------------*/

/* ARCHIVES WIDGET --------------------------------*/
/* COLORS FOR ARCHIVES WIDGET
#6AB270	- darker green
		- currently selected item
#CCFFCC	- lighter green
		- header, background and borders
*/

/* main class - do not change! */
.dropdown {
	float:left; 
	padding-right:5px;
}

/* header bar */
.dropdown dt {
	/* width of header bar */
	width: 250px;
	/* height of header bar */
	height: 25px;
	/* border around header */
	border: 2px solid #F4EFE9;
	/* position header text */
	padding: 0px 0px 0px 0px;
	/* bold if desired */
	/*font-weight: bold; */
	/* text color */
	/*color: #666666;*/
	/* cursor type */
	cursor: pointer; 
	/* Background image named in custom_css.php in dropdown_widget_head function. Do not change it here! */
	/*background: url('images/ddheader-archives.jpg');*/
}

/* header bar hover image if desired */
/*.dropdown dt:hover {
	background:url(images/ddheader_over.gif);
}*/

/* dropdown general setup */
.dropdown dd {
	/* note that width will be a little more than header */
	width: 254px; 
	/* color of dropdowns */
	background: #F4EFE9;
	/* do not change these! */
	display: none; 
	position: absolute; 
	overflow: hidden; 
	z-index: 200; 
	opacity: 0;
}

/* dropdown list setup */
.dropdown ul {
	/* note that width will be a little more than header */
	width: 254px; 
	/* general border definition */
	border: 2px solid #F4EFE9;
	/* top border */
	border-top: 1px solid #F4EFE9;
	/* do not change these! */
	list-style: none; 
}

/* do not change this! */
.dropdown li { display: inline; }

/* dropdown items */
.dropdown a, .dropdown a:active, .dropdown a:visited {
	/* font color */
	color: #666666;
	/* underline if desired */
	text-decoration: none; 
	/* background color of item */
	background: #F4EFE9; 
	/* note that width will be a little more than header */
	width: 254px;
	/* padding around text in dropdown */
	padding: 5px; 
	/* do not change this! */
	display: block; 
}

/* dropdown item with cursor over it */
.dropdown a:hover {
	/* background color of item */
	background: #FFFFFF; 
	/* font color */
	color: #666666;
	/* underline if desired */
	text-decoration: none; 
}

/* dropdown item bottom border */
.dropdown .ddunderline { border-bottom:1px solid #F4EFE9; }

/*CATEGORIES WIDGET --------------------------------------*/
/* COLORS FOR CATEGORIES WIDGET 
#CCCCCC	- gray 
		- header, background & borders
#989898	- darker gray
		- selected item
*/

/* main class - do not change! */
.dropdown2 {
	float:left; 
	padding-right:5px;
}

/* header bar */
.dropdown2 dt {
	/* width of header bar */
	width: 250px;
	/* height of header bar */
	height: 25px;
	/* border around header */
	border: 2px solid #F4EFE9;
	/* position header text */
	padding: 0px 0px 0px 0px;
	/* bold if desired */
	/*font-weight: bold; */
	/* text color */
	/*color: #666666;*/
	/* cursor type */
	cursor: pointer; 
	/* Background image named in custom_css.php in dropdown_widget_head function. Do not change it here! */
	/*background: url('images/ddheader-categories.jpg');*/
}

/* header bar hover image if desired */
/*.dropdown dt:hover {
	background:url(images/ddheader_over.gif);
}*/

/* dropdown general setup */
.dropdown2 dd {
	/* note that width will be a little more than header */
	width: 254px; 
	/* color of dropdowns */
	background: #F4EFE9; 
	/* do not change these! */
	display: none; 
	position: absolute; 
	overflow: hidden; 
	z-index: 200; 
	opacity: 0;
}

/* dropdown list setup */
.dropdown2 ul {
	/* note that width will be a little more than header */
	width: 254px; 
	/* general border definition */
	border: 2px solid #F4EFE9;
	/* top border */
	border-top: 1px solid #F4EFE9;
	/* do not change these! */
	list-style: none; 
}

/* do not change this! */
.dropdown2 li { display: inline; }

/* dropdown items */
.dropdown2 a, .dropdown2 a:active, .dropdown2 a:visited {
	/* font color */
	color: #666666;
	/* underline if desired */
	text-decoration: none; 
	/* background color of item */
	background: #F4EFE9; 
	/* note that width will be a little more than header */
	width: 254px;
	/* padding around text in dropdown */
	padding: 5px; 
	/* do not change this! */
	display: block; 
}

/* dropdown item with cursor over it */
.dropdown2 a:hover {
	/* background color of item */
	background: #FFFFFF; 
	/* font color */
	color: #666666;
	/* underline if desired */
	text-decoration: none; 
}

/* dropdown item bottom border */
.dropdown2 .ddunderline2 { border-bottom:1px solid #F4EFE9; }
