/* --------------------------------------------------------------
  
   reset.css
   * Resets default browser CSS.
   
-------------------------------------------------------------- */

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, code,
del, dfn, em, q, dl, dt, dd, ol, ul, li,
form, label, caption,
table {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: inherit;
  font-style: inherit;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  vertical-align: baseline;
}
tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  /*border: 0; */
  font-weight: inherit;
  font-style: inherit;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  vertical-align: baseline;
}

img {
  border: none;
  margin: 0;
  padding: 0;
}


html,body {
  height: 100%;
}


body {
  line-height: 1.5;
}

/* Tables still need 'cellspacing="0"' in the markup. */
table { border-collapse: collapse; border-spacing: 0; }
caption, th, td { text-align: left; }
table, td, th { vertical-align: top; }

/* Remove possible quote marks (") from <q>, <blockquote>. */
blockquote:before, blockquote:after, q:before, q:after { content: ""; }
blockquote, q { quotes: "" ""; }

/* Remove annoying border on linked images. */
a img { border: none; background-color:none; text-decoration:none; }
/* --------------------------------------------------------------
   
   typography.css
   * Sets up some sensible default typography.
   
-------------------------------------------------------------- */

/* Default font settings. 
   The font-size percentage is of 16px. (0.75 * 16px = 12px)
   The font-size percentage is of 16px. (0.625 * 16px = 10px)  */
body { 
  font-size: 75%;
  color: #222; 
  background: #fff;
  font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
}


/* Headings
-------------------------------------------------------------- */

h1,h2,h3,h4,h5,h6 { font-weight: normal; color: #111; }

h1 { font-size: 1.5em; margin-top: 0.5em; margin-bottom: 0.3em; }
h2 { font-size: 1.3em; margin-top: 0.5em; padding-bottom: 0.2em; }
h3 { font-size: 1.1em; line-height: 1; margin-bottom: 0.1em; }
h4 { font-size: 1.1em; line-height: 1.25; margin-bottom: 0.1em; }
h5 { font-size: 1em; font-weight: bold; margin-bottom: 0.1em; }
h6 { font-size: 1em; font-weight: bold; }

h1 img, h2 img, h3 img,
h4 img, h5 img, h6 img {
  margin: 0;
}


/* Text elements
-------------------------------------------------------------- */

p           { margin: 0 0 0 0; }
p img.left  { float: left; margin: 1.5em 1.5em 1.5em 0; padding: 0; }
p img.right { float: right; margin: 1.5em 0 1.5em 1.5em; }

a:focus, 
a:hover     { color: #000; }
a           { color: #009; text-decoration: underline; }

blockquote  { margin: 1.5em; color: #666; font-style: italic; }
strong      { font-weight: bold; }
em,dfn      { font-style: italic; }
dfn         { font-weight: bold; }
sup, sub    { line-height: 0; }

abbr, 
acronym     { border-bottom: 1px dotted #666; }
address     { margin: 0 0 1.5em; font-style: italic; }
del         { color:#666; }

pre 				{ margin: 1.5em 0; white-space: pre; }
pre,code,tt { font: 1em 'andale mono', 'lucida console', monospace; line-height: 1.5; }


/* Lists
-------------------------------------------------------------- */

li ul, 
li ol       { margin:0 1.5em; }
ul, ol      { margin: 0 1.5em 1.5em 1.5em; }

ul          { list-style-type: disc; }
ol          { list-style-type: decimal; }

dl          { margin: 0 0 1.5em 0; }
dl dt       { font-weight: bold; }
dd          { margin-left: 1.5em;}


/* Tables
-------------------------------------------------------------- */

table       { margin-bottom: 1.4em; width:100%; }
th          { font-weight: bold; }
thead th 		{ background: #c3d9ff; }
th,td,caption { padding: 4px 10px 4px 5px; }
tr.even td  { background: #E5E5E5;}
tr.odd td   { background: #F1F1F1;}

tfoot       { font-style: italic; }
caption     { background: #eee; }


/* Misc classes
-------------------------------------------------------------- */

.small      { font-size: .8em; margin-bottom: 1.875em; line-height: 1.875em; }
.large      { font-size: 1.2em; line-height: 2.5em; margin-bottom: 1.25em; }
.hide       { display: none; }

.quiet      { color: #666; }
.loud       { color: #000; }
.added      { background:#060; color: #fff; }
.removed    { background:#900; color: #fff; }

.first      { margin-left:0; padding-left:0; }
.last       { margin-right:0; padding-right:0; }
.top        { margin-top:0; padding-top:0; }
.bottom     { margin-bottom:0; padding-bottom:0; }

.right		{ float: right; }
.left		{ float: left; }
.center		{ text-align: center; }


/* -------------------------------------------------------------- 
  
   
-------------------------------------------------------------- */

/* A container should group all your columns. */
.container {
/*  width: 950px;*/
  margin: 0 auto;
}


/* The last column in a row needs this class. */
.last, div.last { margin-right: 0; }


/* Misc classes and elements
-------------------------------------------------------------- */


/* Use this to create a horizontal ruler across a column. */
hr {
  background: #ddd; 
  color: #ddd;
  clear: both; 
  float: none; 
  width: 100%; 
  height: .1em;
  margin: 0 0 1.45em;
  border: none; 
}
hr.space {
  background: #fff;
  color: #fff;
}


/* Clearing floats without extra markup
   Based on How To Clear Floats Without Structural Markup by PiE
   [http://www.positioniseverything.net/easyclearing.html] */

.clearfix:after, .container:after {
    content: "\0020"; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden; 
    overflow:hidden; 
}
.clearfix, .container {display: block;}

/* Regular clearing
   apply to column that should drop below previous ones. */

.clear { clear:both; }
/* --------------------------------------------------------------
   
   forms.css
   * Sets up some default styling for forms
   * Gives you classes to enhance your forms
   
   Usage:
   * For text fields, use class .title or .text
   
-------------------------------------------------------------- */

label       { font-weight: bold; }
/*fieldset    { padding:1.4em; margin: 0 0 1.5em 0; border: 1px solid #ccc; }*/
/*legend      { font-weight: bold; font-size:1.2em; }*/


/* Form fields
-------------------------------------------------------------- */

/*input.text, input.title,
textarea, select {
  margin:5px 0;
  border:1px solid #bbb;
}*/

input.text:focus, input.title:focus,
textarea:focus, select:focus {
  border: 1px solid #FF9900;
}

input.text, 
input.title   { width: 300px; padding:5px; }
input.title   { font-size:1.5em; }
/*textarea      { width: 390px; height: 250px; padding:5px; } */

fieldset {
    background-image    : url('/cms/images/fieldset_bg.jpg');
    background-repeat   : repeat-x;
    background-position : bottom;
	position			: relative;
	overflow			: visible;
	background-color	: #FFFFFF; /*#f2fafd*/
	border				: 1px solid #E0E0E0;
	border-style		: solid;
	margin				: 10px 0 10px 0;
	padding				: 10px;
}

fieldset legend {
	position			: absolute !ie;
	top					: -.5em !ie;
	left				: .5em !ie;
	font-size			: 15px;
    font-weight         : normal;
	color				: #FF9900;
	padding				: 0;
}

input[type=text],input[type=password],
select,textarea {
    border              : 1px solid silver;
}
input[type=submit]{
    border: 1px solid #FF9900;
    background: #E0E0E0 url('/cms/images/fieldset_bg.jpg') repeat-x;

    padding: 5px 10px;
    font-weight: bold;
}
input[type=submit]:hover{
    background: #FF9900;
    color: #FFFFFF;
    cursor: pointer; /* cursor: hand; for IE5 */

}
.form_label_info {
	font-size: 11px;
	color: #888;
}



/* Success, notice and error boxes
-------------------------------------------------------------- */

.error,
.notice, 
.success    { padding: 8px 8px 2px 32px !important; margin-bottom: 1em; border: 2px solid #ddd; min-height: 23px;
 }

.error      { background: #FBE3E4 url('/admin/images/icons/error_msg_icon.gif') no-repeat 10px 10px !important; color: #8a1f11; border-color: #FBC2C4; }
.notice     { background: #FFF6BF url('/admin/images/icons/warning_msg_icon.gif') no-repeat 10px 10px !important; color: #514721; border-color: #FFD324; }
.success    { background: #E6EFC2 url('/admin/images/icons/success_msg_icon.gif') no-repeat 10px 10px !important; color: #264409; border-color: #C6D880; }
.error a    { color: #8a1f11; }
.notice a   { color: #514721; }
.success a  { color: #264409; }
.highlight-box {
	border: 1px solid #FCEFA1;
	color: #363636;
	background: #FBF9EE;
	padding: 5px 5px 2px 5px;
	margin: 1em 0;
}
.highlight {
	border: 1px solid #FCEFA1;
	background: #FBF9EE url('/admin/images/icons/info_12.png') no-repeat 10px 10px;
	color: #363636;
	padding: 5px 5px 2px 30px;
	margin: 1em 0;
}
.highlight a,
.hightlight-box a { color: #000; }
/* 
 * CSS navigation tabs
 */

ul#tabnav { /* general settings */
	text-align: center; /* set to left, right or center */
	margin: 0 0 0 0; /* set margins as desired */
	font: bold 13px tahoma,verdana, arial, sans-serif; /* set font as desired */
	border-bottom: 5px solid black; /* set border COLOR as desired */
	list-style-type: none;
	padding: 10px 10px 5px 10px; /* THIRD number must change with respect to padding-top (X) below */
	background-color: #F3F3F3;
}

ul#tabnav li { /* do not change */
	display: inline;
}

ul#tabnav li.active { /* settings for selected tab */
	border-bottom: 1px solid #000; /* set border color to page background color */
	background-color: #000; /* set background color to match above border color */
}

/*body#tab1 li.tab1 a, body#tab2 li.tab2 a, body#tab3 li.tab3 a, body#tab4 li.tab4 a {  settings for selected tab link */
ul#tabnav li.active a { /* settings for selected tab link */
	background-color: #000; /* set selected tab background color as desired */
	color: #fff; /* set selected tab link color as desired */
	position: relative;
	top: 1px;
	padding-top: 6px; /* must change with respect to padding (X) above and below */
}

ul#tabnav li a { /* settings for all tab links */
	padding: 5px 4px; /* set padding (tab size) as desired; FIRST number must change with respect to padding-top (X) above */
	border: 1px solid #000; /* set border COLOR as desired; usually matches border color specified in #tabnav */
	background-color: #FFF6BF; /* set unselected tab background color as desired */
	color: #666; /* set unselected tab link color as desired */
	margin-right: 0px; /* set additional spacing between tabs as desired */
	text-decoration: none;
	border-bottom: none;
}

ul#tabnav a:hover { /* settings for hover effect */
	background: #fff; /* set desired hover color */
}

/* end CSS navigation tabs *//* Custom classes
-------------------------------------------------------------- */
.hor_balk { color: #E0E0E0; height: 1px; }
.drie_pijltjes {font-size: 9px;	letter-spacing: -1.5pt;}
.inside {
    border: 1px solid #E0E0E0;
    padding: 10px;
}

/* add padding to images in textarea */
#maincontent img,
#middle-content img {
  padding-left: 5px;
  padding-right: 5px;
}

/* Foto(album) css
-------------------------------------------------------------- */
.album-list {}
/*
.album-list:after {display:block; content:"."; clear:both; font-size:0; line-height:0; height:0; overflow:hidden; }
.album-list .album-preview:after {display:block; content:"."; clear:both; font-size:0; line-height:0; height:0; overflow:hidden; }
*/
.album-list .album-preview {padding:10px 0;clear:both}
.album-list .album-foto {width:200px;float:left;}
.album-list .album-box {float:left}
.album-list .album-name {}
.album-list .album-create-date {margin:0 0 10px 0}
.album-list .album-info {}

.foto-list {}
.foto-list .foto-create-date {margin:0 0 10px 0}
.foto-list .foto-info {}
.foto-list .foto-infotext {text-align:center;margin:10px 0;}
.foto-list .foto-infotext {}
.foto-list .foto-grid {}
.foto-list .foto-box {
	display: -moz-inline-box;
	display: inline-block;
	text-align:center;
	margin: 0 10px 10px 0;
	float:left;
}
#middle-content .foto-list .foto-box img,
#middle-content .album-list .album-preview img,
.foto-list .foto-box img {
	padding: 3px;	
	border: 1px solid #AAA;
	background-color:white;
}
#middle-content .foto-list .foto-box img:hover,
#middle-content .album-list .album-preview img:hover,
.foto-list .foto-box img:hover {border: 1px solid #444;}
.foto-container {}




/* correct for banner blocks, while inside #maincontent */
#rightcontent_wrapper img {
  padding:0px;
}

/* editor is wrapped around the fckeditor */
.editor img {
  padding-left: 5px;
  padding-right: 5px;
}

/* Blocks
-------------------------------------------------------------- */

/* common style */
.block {
	overflow: hidden;
}
.block h1 {margin-bottom:5px;}
.block hr {margin:0 0 5px 0;}
.block .more-link {margin: 5px 0 0 0;}
.block .block-item {margin: 0 0 2px 0;}





/* block-specific styles */
.block-news .date {font-weight:bold;}

.block-banner {margin:0 0 10px 0;}
.block.block-banner {text-align:center;background:none; margin: 10px 0 0 0; border:0; padding:0px;}
.block-banner .block-item { margin: 0 0 10px 0; }

.block-slideshow h1 {text-align:center;}
/*
  #slideshow {
    height: 150px;
    text-align:center;
  }
  #sslideshow div {
    position: absolute;
    left: 0;
    right: 0;
  }
  div.slide {
    height: 150px;
  }
 */



/* end Blocks
-------------------------------------------------------------- */



/* share toolbar
-------------------------------------------------------------- */

.share-toolbar {
	border: 1px solid #CCC;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	padding: 7px;
	margin-top: 10px;	
}
.share-toolbar hr {
	margin: 0.5em 0;
}

	.addthis_toolbox { float: left; }
	.comments-summary {	float: right; background: url(/admin/images/icons/comment_16.png) no-repeat; padding-left: 22px;}
	.comments-container { margin-top: 10px; }
		.comment-author { font-weight: bold; }
		.comment-date { font-size: 11px; }
		.comment-content {clear: both;}
	


/* end share toolbar
-------------------------------------------------------------- */


.datatable { border: 1px solid #E0E0E0; }

.datatable th { background: #FFF url('/cms/images/background_licht.jpg') repeat-x bottom;}
datatable tr.even td  { background: #E5E5E5; border-bottom: 1px solid #F1F6FD;}
datatable tr.odd td   { background: #F1F1F1;}



#bottom_info {
	font-size: 10px;
	color: #000000;
	text-align: right;
}

#bottom_info a {
	text-decoration: normal;
	font-weight: normal;
	font-size: 10px;
	color: #000000;
}
#bottom_info a:hover{
	text-decoration: underline;
    background-color: #FFFFFF;
	font-weight: normal;
	font-size: 10px;
	color: #000000;
}

#bottom_info_execute_time {
	font-size: 10px;
	color: #FFFFFF;
	text-align: center;
}
.img_delete {
    border:0;
    cursor: pointer;
    background-image: url('/cms/admin/images/delete.gif');
    background-repeat: no-repeat;
    background-color: transparent;
    width: 12px;
    height: 12px;
}
.img_homepage_active {
    border:0;
    cursor: pointer;
    background-image: url('/cms/admin/images/homepage.gif');
    background-repeat: no-repeat;
    background-color: transparent;
    width: 24px;
    height: 24px;
}
.img_homepage {
    border:0;
    cursor: pointer;
    background-image: url('/cms/admin/images/homepage_trans.gif');
    background-repeat: no-repeat;
    background-color: transparent;
    width: 24px;
    height: 24px;
}

.img_visible_active {
    border:0;
    cursor: pointer;
    background-image: url('/cms/admin/images/ready.gif');
    background-repeat: no-repeat;
    background-color: transparent;
    width: 15px;
    height: 15px;
}
.img_visible {
    border:0;
    cursor: pointer;
    background-image: url('/cms/admin/images/ready_trans.gif');
    background-repeat: no-repeat;
    background-color: transparent;
    width: 15px;
    height: 15px;
}

.img_edit {
    border:0;
    cursor: pointer;
    background-image: url('/cms/admin/images/edit.gif');
    background-repeat: no-repeat;
    background-color: transparent;
    width: 15px;
    height: 15px;
}
.img_preview {
    border:0;
    cursor: pointer;
    background-image: url('/cms/admin/images/preview.gif');
    background-repeat: no-repeat;
    background-color: transparent;
    width: 15px;
    height: 15px;
}
.img_order_mainup {
    border:0;
    cursor: pointer;
    background-image: url('/cms/admin/images/upmain.gif');
    background-repeat: no-repeat;
    background-color: transparent;
    width: 12px;
    height: 12px;
}
.img_order_maindown {
    border:0;
    cursor: pointer;
    background-image: url('/cms/admin/images/downmain.gif');
    background-repeat: no-repeat;
    background-color: transparent;
    width: 12px;
    height: 12px;
}


/* Scroll Bar Master Styling Starts Here */
/* All comments can be freely removed from the css */

/*  scrollgeneric is used for corrective styling of elements, and should not be modified or removed */
.scrollgeneric {line-height: 1px;font-size: 1px;position: absolute;top: 0; left: 0;}

.vscrollerbar {width: 36px;background: #5EC0A7 url(scrollbar.png) -36px 0px repeat-y;}
.vscrollerbarbeg {height: 24px !important;width: 36px;background: url(scrollbar.png) -108px -32px no-repeat;}
.vscrollerbarend {height: 24px;width: 36px;background: url(scrollbar.png) -108px 0px no-repeat;}
.vscrollerbase {width: 36px;background: #D4F6F2 url(scrollbar.png) 0px 0px repeat-y;}
.vscrollerbasebeg {width: 36px;height: 28px !important;background: url(scrollbar.png) -72px -28px no-repeat;}
.vscrollerbaseend {height: 28px;width: 36px;background: url(scrollbar.png)  -72px 0px no-repeat;}
.hscrollerbase {height: 16px; background-color: white;}
.hscrollerbar {height: 16px; background-color: black;}
.vscrollerbar, .hscrollerbar {padding: 28px;z-index: 2;}
.scrollerjogbox {width: 36px;height: 16px;top: auto; left: auto;bottom: 0px; right: 0px;background: #37917A;}

/* Scroll Bar Master Styling Ends Here */


		
	body {
	font-family: Arial, Arial, sans-serif;
	font-size: 10px;
    color: #5F778A;
	background-color: #D8EBE4;
	line-height: 1.3;

            background-image: url('/cms/images/gradient_bg_licht.png');
        background-repeat: repeat-x;
    
}

/*
 * layout declarations
 */
 


#demoBar {
	width:100%;
	text-align:center;
	background: #FFF6BF; color: #514721;
	padding: 2px; 
	margin-bottom: 1px; 
	border: 2px solid #FFD324;
}


/* adds and overrides the standard container */
.container {}

	#top-container {
		padding-top: 22px;
		background: url(/cms/images/shadow-top900.png) center top no-repeat;
	}
	#main-container {
		background: url(/cms/images/shadow-middle900.png) center repeat-y;
	}
	#bottom-container {
		background: url(/cms/images/shadow-bottom900.png) center bottom no-repeat;
		padding-bottom: 23px;
	}

		#top-section, #main-section, #bottom-section {
		border-left: 1px solid #5F778A;
		border-right: 1px solid #5F778A;
	}
	#top-section {
		border-top: 1px solid #5F778A;
	}
	#bottom-section {
		border-bottom: 1px solid #5F778A;
	}


	#top-container {}
	
		#top-section {
			width: 900px;
			margin: 0px auto;	
			height: 100%;		
		}
		
			#header {
				width:900px;
				height:350px;
				margin:0; 
									background: #FFFFFF url('/cms/images/themes/custom/cache/sannevan_header900.png');
								position: relative;
				border-bottom: 0px solid #5F778A;
				overflow:hidden;
			}		

				#header_title {
				  padding: 10px; 
				  background-color: #FFF; 
				  background-image: url('/cms/images/themes/custom/cache/sannevan_header900.png');
				}
				
	#main-container { }
	
		#main-section {
		    border-top: 1px solid #FFFFFF;
			width: 900px;
			margin: 0px auto;
			background-color: #000000;
		    			vertical-align: top;
		    overflow:hidden;			
		}
		
			#sidebar-left {
				float: left;
				width: 0px;
			}
			
				#sidebar-left .block-container {
					border-right: 1px solid #000000;
					margin: 20px 0 10px 0;
											padding: 0 10px;
									}			

				.menu1 {}
				
			#middle-content {
				float: left;
				width: 860px;	
				padding: 20px;
			}
				
				.inside {
					overflow:hidden;
					border: 0px solid #000000;
											padding: 0;
																background: transparent;
					 					
				}
				
			#sidebar-right {
				float: left;
				width: 0px;
			}
			
				#sidebar-right .block-container {
					border-left: 1px solid #000000;
					margin: 20px 0 10px 0;
											padding: 0 10px;
									}			
			
		/* end main-section */
	
	#bottom-container {}
		
		#bottom-section {
			width: 900px;
			margin: 0px auto;
			background-color: #000000;			
		}	
		
			#bottom_bar {
				clear: both;
				width: 900px;
				border-top: 2px solid #000000;
				height: 2px;
				border-bottom: 2px solid #5F778A;
				background-color: #FFFF;
			}

			#bottom_info {
				padding-bottom: 5px;
			}
			

		
		/* end bottom section */		

/* end container */

#bottom_info_execute_time {
	color: transparent;
}	
.album-list .album-box {
	width:660px;
	float:left
}

.block-container {
}


.block-divider {
	margin: 10px 0;
	border-bottom: 1px solid #000000;
}

.block {
	margin: 0;
			background: transparent;
	 
	border: 0px solid #000000; 
			padding: 0;
	}
.block-title { position: relative; }

/*.block-image {
	padding: 0;
	border: 0;
} */
.block-image .block-title {
	padding: 0.2em 0.5em;
}
.block-image .block-content { text-align: center; }
.block-title h3 {
	font-size: 1.2em;
	padding: 0.3em 0;
	margin: 0.2em 0;
}

h1 { 
	font-size: 1.6em; 
	color: #5F778A; 
	padding: 0 0 0.2em 0;
	margin: 0 0 0.5em 0;
	border-bottom: 2px #000000 solid; 
}
h2 { 
	font-weight: bold; 
	font-size: 1.3em; 
	color: #5F778A; 
	padding: 0.5em 0 0.2em 0;  
}
h3 { 
	font-size: 1em; 
	font-weight: bold;
	color: #5F778A; 
	padding: 0.2em 0; 
}


a {
	color: #5F778A;
	text-decoration: underline;
}
a:hover {
	color: #5F778A;
	text-decoration: none;
}

hr {
	color: #5F778A;
	background: #5F778A;
}

input:focus, input:focus,
textarea:focus, select:focus {
  border: 1px solid #5F778A;
  background: lightYellow;
}
input[type=text],input[type=password],
select,textarea {
    border: 1px solid #CCC;
    font-size: 1em;
    padding: 0.2em;
}
input[type=submit],
input[type=reset] {
    border: 1px solid #5F778A;
    background: #FFF url('/cms/images/menuitembg.jpg') repeat-x;

    padding: 0.5em 1em;
    font-weight: bold;
    font-size: 1em;
}
input[type=submit]:hover,
input[type=reset]:hover{
    background: #5F778A;
    color: #F0F0F0;
    cursor: pointer; /* cursor: hand; for IE5 */
}


/* 
	LEVEL ONE
*/

.dropdown {
	width: 100%;
		background-color: #000000;
	padding:0;
	border-top: 1px solid #FFFFFF;
}	

.menu1 ul {
	margin              : 0;
    padding             : 0;
    text-align          : left;
    list-style-type     : none;
}

.vertical ul li a,
.vertical ul li a.active,
.vertical ul li.hover a,
.dropdown ul li a,
.dropdown ul li.hover a,
.dropdown ul li a.active,
.dropdown {
	background-color: #000000;
        background-image: url('/cms/images/gradient_menu_donker.png');
        background-repeat: repeat-x;
        background-position: 0% 100%;
}

.menu1 ul li a.active {	font-weight	: bold;}
.menu1 ul li a,
.menu1 ul li a:hover { font-weight: bold;text-decoration: none }

.menu1 ul li a {
	font-size: 1em;
    display             : block;
    color               : #FFFFFF;
    	zoom				: 1 !ie;
    border-bottom       : 1px solid #FFFFFF;
    border-right       : 1px solid #FFFFFF;
}

.vertical ul li a {
	padding: 0.3em 0.3em 0.3em 0.7em;
	background-color: #000000;
}

.dropdown ul li { position: relative; float:left; }
.dropdown ul li a {	padding: 0.5em 1.2em; border-bottom: 0;
	 }

.menu1 ul li a:hover,
.menu1 ul li.hover a,
.menu1 ul li a.active {
    color               : #FFFFFF;
    background-color    : #464646;
        
}


/* 
	LEVEL TWO 
*/

.menu1 ul ul li {}

.menu1 ul ul li a {
	font-size			: 0.9em;
}
.vertical ul ul li a {border-left: 0.7em #FFFFFF solid;}

.menu1 ul ul li a:hover,
.menu1 ul ul li.hover a,
.menu1 ul ul li a.active {
    font-weight         : bold;
}

.dropdown ul ul li a:hover,
.dropdown ul ul li a.active {
  color: #FFFFFF;
  font-weight: bold;
  background-color: #464646;
}
	
.dropdown ul ul { 
	width: 15em; 
	display:none; 
	position: absolute; 
	top: 100%; 
	left: 0;
	border: 1px solid #FFFFFF;
	background-color: #464646;
	z-index: 9;
}

.dropdown ul ul li {float:none;}

.dropdown ul ul li a,
.dropdown ul ul ul li a {
	
	/*display: inline-block;  IE 6 & 7 Needs Inline Block */
	background-color: #000000;
	color: #FFFFFF;	
	border-bottom: 1px solid #FFFFFF;
}



/* 
	LEVEL THREE
*/
.vertical ul ul ul li a {border-left: 1.4em #FFFFFF solid;}
.dropdown ul ul ul 					{ left: 100%; top: 0; }
.dropdown ul li:hover > ul 			{ display:block; }	
			
		


