/*
--------------------------------------------------------------------------------
 <> SearchAndSortNav.css
    ---------------
	Controls the visual display of the context search and sort pulldown.
    ----------------------
    Author:  Erik Burns
	Version: April 1, 2008
-------------------------------------------------------------------------------- */
.searchAndSort_wrapper {
	position: relative;
	top: 0;
	right: 0;
	height: 40px;
	width: 629px;
	padding: 0; margin: 0;
	z-index: 10000;
	text-align: left;
	background: #f9f19f url("/skins/proto/images/searchAndSort_bg.gif")
		repeat-x 0 0;
}

/* ------------------------------------------------------------------------------
 :: Search Form
    -----------
    Context Search for VoiceFire Content
/* ------------------------------------------------------------------------------ */
.searchform_wrapper {
	position: absolute;
	top: 7px;
	left: 11px;
	height: 24px;
	width: 245px;
	background: #fff url("/skins/proto/images/searchAndSort_search_bg.gif") no-repeat 0 0;
	z-index: 200;
}

/* Target Safari to replace BumpQ search tool with the Apple native search tool http://tanreisoftware.com/blog/?p=39#safari */
html [xmlns *=""] body:last-child .searchform_wrapper .searchform {
	background: none;
}

/* Target Safari to replace BumpQ search tool with the Apple native search tool http://tanreisoftware.com/blog/?p=39#safari */
html [xmlns *=""] body:last-child .searchform_wrapper .searchform input.text {
	width: 293px;
	float: right;
	top: 0px;
}

.searchform_wrapper .searchform input.text {
	float: left;
	position: relative;
	top: 4px;
	left: 24px;
	padding-left: 3px;
	margin: 0;
	background: transparent;
	border: none;
	height: 17px;
	width: 216px;
	/* Cycloid's Tiny Box Model Hack http://css-discuss.incutio.com/?page=BoxModelHack */
	width: "158px";
	font-size: 90%;
	color: #333;
}

/* Target Firefox since that browser seems to choke a bit when padding is applied to the input element */
html:not ([lang *=""]) .searchform_wrapper .searchform input.text {
	padding-left: 0px;
	text-indent: 3px;
}

/* ------------------------------------------------------------------------------
 :: Sort Menus
    ----------
    Sort Menus for VoiceFire Content
/* ------------------------------------------------------------------------------ */

/* ------------------------------------------------------------------------------
   ... menus layout, titles, and positioning
-------------------------------------------------------------------------------- */
.sort_menus {
	display: block;
	margin: 0;
	padding: 0;
	white-space: nowrap;
	list-style: none;
}

.sort_menus li {
	display: inline;
	float: right;
}

.sort_menus li a {
	display: inline;
	float: right;
	margin: 0;
	padding: 10px 10px 12px 10px;
	background: none;
	text-decoration: none !important;
	color: #000;
	font-size: 110%;
	font-weight: bold;
}

.sort_menus .menu_title {
	position: absolute;
	right: 0px;
	color: #000 !important;
	font-family: Verdana;
	font-size: 110%;
	font-weight: bold;
}

/* ... absolute positions for the menus */
.sort_menus .menu_left { float: right; position: relative; right: 200px; }
.sort_menus .menu_left ul { right: -160px; }
.sort_menus .menu_right { float: right; }

/* ------------------------------------------------------------------------------
   ... the menus themselves
-------------------------------------------------------------------------------- */
.sort_menus li.over ul { visibility: visible; /* turn menu on with mouseOver */ }

.sort_menus ul {
	visibility: hidden;
	position: absolute;
	top: 38px;
	right: 0px;
	width: 300px;
	padding: 0;
	margin: 0;
	border: 1px solid #F9E295;
	list-style: none;
    white-space: normal;
}

.sort_menus ul li {
	margin: 0; padding: 0 !important;
	background: none;
	width: 280px; width: "300px";
	white-space: normal;
	font-size: 125%;
	}

.sort_menus ul li a {
 	display: block;
	width: 280px;
	/* Cycloid's Tiny Box Model Hack http://css-discuss.incutio.com/?page=BoxModelHack */
	width: "300px";
	margin: 0;
	padding: 4px 10px;
	background-color: #FEFAD5 !important;
	color: #000 !important;
	font-size: 110%;
	text-decoration: none;
    white-space: normal;
}

.sort_menus ul li a:hover, .sort_menus ul li a:active, .sort_menus ul li a.selected {
	background: #FDF6AA !important;
}

