/*This css file is used by all pages that have the sideNav nav bar*/


body{
	background: #EEE;
	color: #333;
	background: url(../Images/pageGradBG.jpg) repeat-y 50% 0;
	behavior: url(csshover.htc);
	}

div#contentWrapper #content h4 {margin-top: 0;}
/* Styling for floated content*/
div#sidenav{
        float: left;
        width: 170px;
        }
div#content{
        float: right;
        width: 612px;
        margin-left: -170px;
        }    
/******* End float styling *********/

div#contentWrapper #content dl dt {
		margin: 15px 0 0 20px;
		font-weight: bold;
		font-size: 95%;
		}
dt.tourDetails {color: #C12000;}		
div#contentWrapper #content dl dd {margin: 0 20px 0 40px;}		
div#contentWrapper #content h5{
		padding: 10px 20px 10px 20px;
		font-size: 85%;
		}


.imgRHS, .imgLHS {border: 8px solid #D2CDB5;} /*puts solid border around images*/
div#content p.quote {font-size: 90%;}
div#content p.author {
	font-size: 80%;
	margin: 0 10px 10px 0;
	text-align: right;
	font-style: italic;
	}
div#content hr {width: 75%;}
body#highlights div#content h4 {clear: both;}

		
/************The following styles are for pop-out menu only **************/


div#sideNav {
	float: left;
	width: 166px;
	background: red;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 0.8em;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #FFFFFF;

	}
div#sideNav ul {
	margin: 0;
	padding: 0;
	width: 166px;
	background: #FDF9E1;  /*cream colour*/
	font-weight: bold; 
	border: 1px solid #999;
	}
div#sideNav li {
	position: relative;
	list-style: none;
	margin: 0;
	border-bottom: 1px solid #CCC;
	}	
div#sideNav li:hover {
	background: #F7C274; /*(orangey colour)*/ /*sets colour of menu when mouse is hovered over menu item. IE needs csshover.htc to perform this task.*/
	}	
div#sideNav li.submenu {background: url(../Images/submenu.gif) 95% 50% no-repeat;}
div#sideNav li.submenu:hover {background-color: #EDD;} /*allows for setting different colour for menus that have sub-menus*/
div#sideNav li a {
	display: block;
	/*padding: 0.25em 0 0.25em 0.5em; */ /*Orig settings*/
	padding: 4px 0 4px 5px;
	text-decoration: none;
	/*width: 6.5em; /* this sets width for IE only. Other browsers are set to 'auto' below*/
	width: 149px;
	border-left: 12px solid #D2CDB5;
	color: #4B4948;
	}	
div#sideNav li a:hover {color: #C12000;}
		
div#sideNav>ul a {width: auto;} /*IE doesn't understand the "child of a div" part of the selector, so it skips the whole rule*/	
div#sideNav ul ul {
	position: absolute;
	top: -1px; /*if set to "-1px" this counters the mis-alignment of 1px, which is caused by adding the border to "div#nav ul"*/
	left: 166px;
	display: none;
	}
div#sideNav ul.levelOne li.submenu:hover ul.levelTwo {display: block;}



div#sideNav ul.levelTwo {
	width: 47em; /*setting width in EMs allows for resizing if browser text size is increased*/
	white-space: nowrap;
	font-weight: normal;
	background: #F7C274;
	}
div#sideNav ul.levelTwo a {border-left: 0;}
div#sideNav ul.levelTwo li:hover {background: #FDF9E1;}

		