/* Start of CMSMS style sheet 'Euroscot - Menu Style' */
/* Start of CMSMS style sheet 'Navigation: CSSMenu - Horizontal mod' */
/* Navigation - Horizontal CSS
----------------------------------------------------- */

/* Horizontal menu for the CMS CSS Menu Module */
/* Modded by Scott McArdle */

/* Fix for Opera 8 */
.clearb { clear: both; }
#menuwrapper { 
   /* Fix for Opera 8 */ 
   /*   overflow: hidden;  */ 
	background: #fff;
	width: 100%;
}

 /* remove inherited sapcing */
#menu_horiz ul {
	padding: 0;
}

#menu_horiz ul li {
	margin-bottom: 0;
	padding-left: 0;
}

/* Set the width of the menu elements at second level. Leaving first level flexible. */
#primary-nav li li { 
	width: 200px; 
}

/* Unless you know what you do, do not touch this */ 
#primary-nav, #primary-nav ul { 
	list-style: none; 
	margin: 0px; 
	padding: 0px; 
	float: right; /* Added to align Menu to right - needs to be tested. */
}
#primary-nav ul { 
	position: absolute; 
	top: auto; 
	display: none; 
}
#primary-nav ul ul { 
	margin-top: 1px;
	margin-left: -1px;
	left: 100%; 
	top: 0px; 
}
	
#primary-nav li { 
	margin-left: -1px;
	float: left; 
}
#primary-nav li li { 
	margin-left: 0px;
	margin-top: -1px;
	float: none; 
	position: relative; 
}

/* Styling the basic appearance of the menu elements */
#primary-nav a { 
	display: block; 
	margin: 0px; 
	padding: 10px 7px 3px 7px; 
	text-decoration: none; 
	color: #bd3632;
}
#primary-nav li a { 
	border-right: 1px solid #eaeaea;
	border-left: 1px solid #eaeaea;
	border-bottom: 1px solid #eaeaea;
	font-size: 11px;
	text-transform: uppercase;
}
#primary-nav li li a { 
	border: 1px solid #eaeaea;
	font-size: 11px;
}	
#primary-nav li li, #primary-nav li li.menuparent { 
   background-color: #ffffff;
}

/* Styling the basic appearance of the active page elements (shows what page in the menu is being displayed) */

#primary-nav a.menuactive { 
   color: #000000; 
}


/* Styling the basic appearance of the menuparents - here styled the same on hover (fixes IE bug)
#primary-nav ul li.menuparent, 
#primary-nav ul li.menuparent:hover, 
#primary-nav ul li.menuparenth { 
} */

/* Styling the basic appearance of the menuparents - here styled the same on hover (fixes IE bug) */
#primary-nav ul li.menuparent { 
   background-color: #ffffff;
}

#primary-nav ul li.menuparent:hover { 
   background-color: #dddddd; 
}


/* Styling the apperance of menu items on hover */

#primary-nav li:hover, 
#primary-nav li.menuh, 
#primary-nav li.menuparenth, 
#primary-nav li.menuactiveh { 
	border-bottom: 5px solid #000;
}

/* The magic - set to work for up to a 3 level menu, but can be increased unlimited */

/* 
just add 
#primary-nav li:hover ul ul, 
#primary-nav li.menuparenth ul ul ul,
for fourth level 
*/
#primary-nav ul, 
#primary-nav li:hover ul, 
#primary-nav li:hover ul ul, 
#primary-nav li.menuparenth ul, 
#primary-nav li.menuparenth ul ul { 
   display: none; 
}

/* add 
#primary-nav ul ul ul li:hover ul, 
#primary-nav ul ul ul li.menuparenth ul,
for fourth level
*/
#primary-nav li:hover ul, 
#primary-nav ul li:hover ul, 
#primary-nav ul ul li:hover ul, 
#primary-nav li.menuparenth ul, 
#primary-nav ul li.menuparenth ul, 
#primary-nav ul ul li.menuparenth ul { 
   display: block; 
}


/* IE Hacks */
#primary-nav li li { 
   float: right; 
   clear: both; 
}
#primary-nav li li a { 
   height: 1%; 
}

/* End of 'Navigation: CSSMenu - Horizontal mod' */

/* Start of CMSMS style sheet 'Navigation: Simple - Vertical mod' */
/* Navigation - Vertical Simple
----------------------------------------------------- */

#menu_vert { 
   list-style: none; 
   margin: 0; 
   padding: 0; 
   width: 100%; 
}

#menu_vert ul { 
   list-style: none; 
   margin: 0 0 0 20px; 
   padding: 0; 
}

#menu_vert li {
   list-style: none;
   margin: 0;
   display: block;
}

 /* remove inherited sapcing */
#menu_vert ul li {
	font: normal 12px/140% "Helvetica Neue", Helvetica, Arial, san-serif;
	margin-bottom: 0;
	padding-left: 0;
}

#menu_vert ul ul li, #menu_vert ul ul ul li {
	font-size: 11px;
}

/* #menu_vert ul ul li {
   border: none;
} */

/** fix stupid ie bug with display:block; **/
* html #menu_vert li a { height: 1%; } 
* html #menu_vert li hr { height: 1%; }
/** end fix **/

/* first level links */
div#menu_vert a {
   background: url(images/euroscot/base/arrow_r_off.gif) no-repeat 0 center; 
   border-bottom: 1px solid #0099ff;
   border-collapse: collapse;
   display: block; /* IE has problems with this, fixed above */
   color: #fff; /* this will be link color for all levels */
   min-height:1em; /* Fixes IE7 whitespace bug */ 
   padding: 5px 0 5px 15px;  /* some air for it */
   text-decoration:none; /* no underline for links */
}

/* next level links, more padding and smaller font */
div#menu_vert ul ul a {
   background: url(images/euroscot/base/arrow_r_off.gif) no-repeat 0 center; 
   padding: 5px 0 5px 15px;
}

/* third level links, more padding */
div#menu_vert ul ul ul a {
   background: url(images/euroscot/base/dash_right.gif) no-repeat 0 center; 
   padding: 5px 10px 5px 15px;
}

/* hover state for all links */
div#menu_vert a:hover {
   color: #000;
}
div#menu_vert a.activeparent:hover {
   color: #000;
}

/* 
active parent, that is the first-level parent 
of a child page that is the current page 
*/
div#menu_vert li a.activeparent {
   background: url(images/euroscot/base/arrow_d_on.gif) no-repeat 0 10px;
   border-bottom: none; 
   color: #000;
}

div#menu_vert li li a.activeparent {
   background: url(images/euroscot/base/arrow_d_on.gif) no-repeat 0 10px;
   border-bottom: none; 
   color: #000;
}

/* div#menu_vert ul ul li a.activeparent {
   background-color: transparent;
   background-position: 1.5em center; 
   color: #000000;
} */


/* 
current pages in the default Menu Manager 
template are unclickable. This is for current page on first level 
*/
div#menu_vert h1 {
	background: #000 url(images/euroscot/base/arrow_d_on.gif) no-repeat 10px 15px;
	border-bottom: none; 
	color: #fff;
	font: normal 15px/140% "Helvetica Neue", Helvetica, Arial, san-serif;
	margin: 0 0 5px 0;  /* as <h3> normally has some margin by default */
	padding: 5px 20px;  /* some air for it */
}
div#menu_vert h1 a {
	color: #fff;
	margin: 0;
	padding: 0;
	padding-left: 0;
	border-bottom: none;
	background: #000 url(none) no-repeat 10px 10px;
}
div#menu_vert h1 a:hover {
   color: #888;
}

div#menu_vert ul h3 {
	background: url(images/euroscot/base/arrow_d_on.gif) no-repeat 0 10px;
	color: #000;
	display: block; 
	font: normal 12px/140% "Helvetica Neue", Helvetica, Arial, san-serif;
	padding: 5px 5px 5px 15px;  /* some air for it */
	margin: 0;  /* as <h3> normally has some margin by default */
   /* border-bottom: 1px solid #cccccc;  */
}

/* 
next level current pages, more padding, 
smaller font and no background color or bottom border 
*/
div#menu_vert ul ul li h3 {
	background: url(images/euroscot/base/arrow_d_on.gif) no-repeat 0 10px;
	color: #000;     
	font: normal 11px/140% "Helvetica Neue", Helvetica, Arial, san-serif;
	padding: 5px 0 5px 15px;
}

div#menu_vert ul ul a {
   background: url(images/euroscot/base/dash_right.gif) no-repeat 0 center; 
   padding: 5px 0 5px 15px;
}


/* current page on third level, more padding */
div#menu_vert ul ul ul h3 {
   background: url(images/euroscot/base/dash_right.gif) no-repeat 0 center; 
   padding: 5px 0 5px 15px;
}

div#menu_vert li.currentpage {
   border-bottom: 1px solid #0099ff; 
   border-collapse: collapse;
}
/* End of 'Navigation: Simple - Vertical mod' */


/* End of 'Euroscot - Menu Style' */

