/* ================================================================ 
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/drop_variation.html
Copyright (c) 2005-2007 Stu Nicholls. All rights reserved.
This stylesheet and the assocaited (x)html may be modified in any 
way to fit your requirements.
=================================================================== */
 /* common styling */

.countrymenu {
	width: 169px;
	position: relative;
	z-index: 100;
	font-family: Arial, Helvetica, sans-serif;
}

/* yet another hack for IE5.5 and IE 6       NOTE: CODE G CAN'T TEST 5.5 and BELOW !!!!!!    */
* html .countrymenu {
	width: 170px;
	w\idth: 169px;
	margin: 0px 0px -3px 0px;
}

/* remove all the bullets, borders and padding from the default list styling */
.countrymenu ul {
	padding: 0;
	margin: 0;
	list-style-type: none;
}

.countrymenu ul ul {
	width: 168px;
}

/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.countrymenu li {
	float: left;
	width: 169px;
	position: relative;
	background-color: #FFF;
}

/* style the links for the top level */
.countrymenu a, .countrymenu a:visited {
	display: block;
	font-size: 12px;
	text-decoration: none;
	width: 168px;
	height: 21px;
	font-weight: bold;
	color: #b41e29;
	line-height: 1.4em;
	padding-left: 0px;
	text-align: left;
}

/* yet another hack for IE5.5 and IE 6       NOTE: CODE G CAN'T TEST 5.5 and BELOW !!!!!!    */
* html .countrymenu a, * html .countrymenu a:visited {
	width: 168px;
	w\idth: 158px;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.countrymenu ul ul {
	visibility: hidden;
	position: absolute;
	height: 0;
	top: 21px;
	left: 0;
	width: 168px;
	background-color: #FFF;
}

/* yet another hack for IE5.5 and IE 6       NOTE: CODE G CAN'T TEST 5.5 and BELOW !!!!!!    */
* html .countrymenu ul ul {
	top: 20px;
	t\op: 21px;
}

/* style the table so that it takes no part in the layout - required for IE 6 to work */
.countrymenu table {
	position: absolute;
	top: 0px;
	left: 0;
	border-collapse: collapse;
}

/* style the second level links */
.countrymenu ul ul a, .countrymenu ul ul a:visited {
	height: auto;
	padding: 5px 5px 5px 5px;
	width: 158px;
	color:#b41e29; 
	border-left: 1px solid #dc5a28;
	border-right: 1px solid #dc5a28;
}

/* yet another hack for IE5.5 and IE 6       NOTE: CODE G CAN'T TEST 5.5 and BELOW !!!!!!    */
* html .countrymenu ul ul a, * html .countrymenu ul ul a:visited {
	width: 168px;
	w\idth: 158px;
}

/* style the top level hover */
.countrymenu a:hover, .countrymenu ul ul a:hover {
	background-color: #fde17f; 
	color: #b41e29;
}

.countrymenu :hover > a, .countrymenu ul ul :hover > a {
	background-color: #fde17f; 
	color: #b41e29;
}

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

/* style the second level background */
.countrymenu ul ul a.menu_bottom, .countrymenu ul ul a.menu_bottom:visited {
	border-bottom: 1px solid #dc5a28;
}

/* style the second level hover */
.countrymenu ul ul a.menu_bottom:hover {
	border-bottom: 1px solid #dc5a28;
}

.countrymenu ul ul :menu_bottom > a.drop {
	border-bottom: 1px solid #dc5a28;
}

