/* VERTICAL MENU */

.wf_vertical_menu ul{
	padding:0;
	margin: 0;
	list-style-type:none;
}

.wf_vertical_menu a, .wf_vertical_menu a span{
	display:block;
}

/* HORIZONTAL MENU */

.wf_horizontal_menu{
	display:table;
}

.wf_horizontal_menu ul{
	display:table-row;
	list-style-type:none;
	white-space:nowrap;
	width:auto;
}

.wf_horizontal_menu li{
	display:table-cell;
	vertical-align:top;
}

.wf_horizontal_menu a, .wf_horizontal_menu a span {
	display:block;
}

/* ================================================================
This copyright notice must be untouched at all times.

The original version of this stylesheet and the associated (x)html
is available at http://www.cssplay.co.uk/menus/final_drop.html
Copyright (c) 2005-2008 Stu Nicholls. All rights reserved.
This stylesheet and the associated (x)html may be modified in any
way to fit your requirements.
=================================================================== */

/* ================================================================
Wildfire Adaptation of Stu Nichols 'ULTIMATE CSS only drop-down menu'
http://www.cssplay.co.uk/menus/final_drop.html
=================================================================== */
.wf_drop_menu {
	position:relative;
	z-index:100;
}
/* remove all the bullets, borders and padding from the default list styling */
.wf_drop_menu ul {
	padding:0;
	margin:0;
	list-style-type:none;
}

/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.wf_drop_menu li {
	float:left;
	position:relative;
}

/* style the links for the top level */
.wf_drop_menu a, .wf_drop_menu span{
	display:block;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.wf_drop_menu ul ul {
	visibility:hidden;
	position:absolute;
}

/* position the third level flyout menu */
.wf_drop_menu ul ul ul{
	left:170px;
	top:0;
	width:170px;
}
/* position the third level flyout menu for a left flyout */
	.wf_drop_menu ul ul ul.left {
	left:-170px;
}

/* yet another hack for IE5.5 */
* html .wf_drop_menu ul ul a{
	width:170px;
	w\idth:149px;
}

/* style the table so that it takes no ppart in the layout - required for IE to work */
.wf_drop_menu table {
	position:absolute;
	top:0;
	left:0;
}

/* make the second level visible when hover on first level list OR link */
.wf_drop_menu ul li:hover ul, .wf_drop_menu ul a:hover ul{
	visibility:visible;
}
/* keep the third level hidden when you hover on first level list OR link */
.wf_drop_menu ul :hover ul ul{
	visibility:hidden;
}

/* make the third level visible when you hover over second level list OR link */
.wf_drop_menu ul :hover ul :hover ul{
	visibility:visible;
}

/* JQUERY ACCORDIAN MENU*/

ul.accordian-menu, ul.accordian-menu ul {
	list-style-type:none;
	margin: 0;
	padding: 0;
}

ul.accordian-menu a {
	display: block;
	text-decoration: none;
	outline: none;
}

/* PAGINATION */

.wildfire-pagination {
	padding:0;
	display:table;
}

.wildfire-pagination ul {
	display:table-row;
	list-style-type:none;
	white-space:nowrap;
	padding:0;
	width:auto;
	margin:0;
}

.wildfire-pagination li {
	display:table-cell;
}

.wildfire-pagination  a {
	margin:0 3px;
}

.wildfire-pagination-previous a, .wildfire-pagination-next a {
	text-decoration:none;
	display:block;
}

