/* $Id: layout-liquid.css,v 1.1.2.6 2008/01/28 17:41:35 johnalbin Exp $ */

/*
 * LAYOUT STYLES
 *
 * Define CSS classes to create a table-free, 3-column, 2-column, or single
 * column layout depending on whether blocks are enabled in the left or right
 * columns.
 *
 * This layout is based on the Border Politics Layout Method.
 *   http://drupal.org/node/201428
 *
 * Only CSS that affects the layout (positioning) of major elements should be
 * listed here.  Such as:
 *   display, position, float, clear, width, height, min-width, min-height
 *   margin, border, padding, overflow
 */


/** body **/
  body
  {
    background: repeat-x 	url("images/body_bg2.jpg") #431441;
    margin: 0;
    padding: 0;
  }

	#simplemenu {
		position: fixed;
	}
	
  #page
  {
  }

  #page-inner
  {
  	width: 997px;
  	margin: 0 auto;
  }
  
  #simplemenu_container {
  	width: 997px;
  	margin: 0 auto;
  }

  #navigation-top,
  #navigation
  {
    /* position: absolute; /* Take the named anchors out of the doc flow    */
/*    left: -10000px;     /* and prevent any anchor styles from appearing. */
  }

  #skip-to-nav
  {
    float: right;
    margin: 0 !important;
    font-size: 0.8em;
  }

  #skip-to-nav a:link, #skip-to-nav a:visited
  {
    color: #fff; /* Same as background color of page */
  }

  #skip-to-nav a:hover
  {
    color: #000;
    text-decoration: none;
  }

  /* Alternatively, the skip-to-nav link can be completely hidden until a user tabs
     to the link. Un-comment the following CSS to use this technique. */
  
  #skip-to-nav a, #skip-to-nav a:hover, #skip-to-nav a:visited
  {
    position: absolute;
    left: 0;
    top: -500px;
    width: 1px;
    height: 1px;
    overflow: hidden;
  }

  #skip-to-nav a:active, #skip-to-nav a:focus
  {
    position: static;
    width: auto;
    height: auto;
  }
  

/** header **/
  #header
  {
  }

  #header-inner
  {
  }

  #logo-title
  {
  }

  #logo
  {
  }

  h1#site-name, div#site-name
  {
    margin: 0;
    font-size: 2em;
    line-height: 1.3em;
  }

  #site-slogan
  {
  }

  #header-blocks
  {
    clear: both; /* Clear the logo */
  }

/** main (container for everything else) **/
  #main
  {
    position: relative;
  }

  #main-inner
  {
  }

/** content **/
  #content
  {
    float: left;
    width: 100%;
    margin-left: 0;
    margin-right: -100%; /* Negative value of #content's width + left margin. */
    padding: 0; /* DO NOT CHANGE. Add padding or margin to #content-inner. */
  }

  .two-sidebars #content-inner
  {
  
/*    padding-left: 200px; /* The width + left margin of #sidebar-left. */
/*    padding-right: 200px; /* The width + right margin of #sidebar-right. */
  }

  .sidebar-right #content-inner
  {
/*    padding-left: 0;
      padding-right: 200px; /* The width + right margin of #sidebar-right. */
  }

  .sidebar-left #content-inner
  {
  }


  #content-inner
  {
  	float: right;
    width: 606px;
		margin-top: 0px;
		padding: 10px;
  }

	#content table {
		font-size: 0.9em;
	}

	#content table th {
		border-bottom: 1px dotted grey;
		text-align: left;
		vertical-align: bottom;
	}

/** navbar **/
  #navbar
  {
/*  	border: 1px solid black;*/
		float: left;
    width: 100%;
    margin-left: 0;
    margin-right: -100%; /* Negative value of #navbar's width + left margin. */
    padding: 0; /* DO NOT CHANGE. Add padding or margin to #navbar-inner. */
    /*height: 290px; /*  The navbar can have any arbritrary height. We picked one
                      that is twice the line-height pluse 1em: 2 x 1.3 + 1 = 3.6
                      Set this to the same value as the margin-top below. */
  	
		background: url(images/header_bg_no_text.jpg) no-repeat;
		
  }

  .with-navbar #content,
  .with-navbar #sidebar-left,
  .with-navbar #sidebar-right
  {
    margin-top: 292px; /* Set this to the same value as the navbar height above. */
  }

  #navbar-inner
  {
  }

/* BEGIN SEARCH BOX _________________________________________________________________________________ */
	
	#header-right
  {
/*  	border: 1px solid black;*/
  	margin: 0px;
    width: 522px;
    height: 236px;
/*    background: #573951;*/
/*    margin-right: -200px; /* Negative value of #search-box's width. */
    float: right;
  }

	#bubbles {
		height: 195px;
	}
	
  #search-box
  {
/*  	border: 1px solid black;*/
  	margin-top: 19px;
  	margin-right: 16px;
    width: 236px;
/*    width: 270px;
   height: 65px;*/
/*   background: url(images/search_bg.gif) no-repeat; */
/*    margin-right: -200px; /* Negative value of #search-box's width. */
   float: right;
   background: url(images/search_box.png) no-repeat 0 0;
  }

#search-box-inner
  {
/*  	margin-top: 20px; */
	margin: 0px;
	 float: right;
   height: 20px;
   padding-top:2px;
   width: 163px;
	}

#search-box-inner label {
	display: none;
	background: yellow;
	font-family: verdana;
	float: left;
	font-size: 10px;
	font-weight: bold;
	padding-top: 5px;
	color: #8c7653;
}

#search-box-inner #edit-search-theme-form-1 {
  float: left;
  padding: 0;
  margin: 0;
  border: 0;
  width: 140px;
	color: #666;
/*	background: yellow;*/
}

#search-box-inner .form-submit {  
	float: right;
	border: none;
	background: none;
	height: 23px;
	width: 23px;
	text-indent: 100px;
	text-align: right;
	cursor: pointer;
	margin: 0;
}
	
/* END SEARCH BOX _________________________________________________________________________________ */
	
	#logo {
    padding: 0;
    float: left;
/*    background: #651654; */
	}
	
	#logo a {
		margin: 0;
		padding:0;
		display: block;
		width: 473px;
		height: 236px;
	}
	
  #primary 
  {
		/*  	border: 1px solid black;*/
  	float: right;
		margin: 0px;
		width: 997px;
		height: 44px;
		background-color: #1a0c25;
  	font-size:93%;
    line-height:normal;
    letter-spacing: normal;
    margin-top: 10px;
  	display: inline; /* IE6 double margin bug fix */
  }

	#primary ul 
	{
			margin: 0;
			padding: 0;
			list-style:none;
	}
		 
	#primary li 
	{
		display: block;
		float: left;
		background: url(images/menu_item_divider.jpg) no-repeat right;
		height: 44px;
		padding: 0px;
/*
		float:left;
		margin: 5px 3px; /* bepaalt of je wel of niet streepje ziet */
/*
		padding:0;
		background:url("images/menu_tab_right.jpg") no-repeat right top;
*/	
	}
	
	#primary ul li a {
		display: block;
		padding: 15px 27px 15px 26px;
		color: white;
		text-decoration: none;
		font-weight: bold;
		line-height: 14px;
		margin-right: 1px;

		/* Commented Backslash Hack hides rule from IE5-Mac \*/
		#header a {
			float:none;
		}
		/* End IE5-Mac hack */
	}
	
	#primary ul li a:hover {
		/* Arrow hover: 
		background: url(images/menu_item_arrow_hover.jpg) no-repeat;
		background-position: 50% 100%; */ 
		color: white;
		background-color: #2a1a36;
	}
	
	#primary ul li a.active {
		color: #5b164b;
		margin: 2px 1px 2px 0;
		padding: 13px 27px 15px 26px;
		background: url(images/menu_item_arrow_active.png) no-repeat;
		background-position: 50% 93%;
		background-color: #F6F5F6;
	}

	#primary li.menu-1-1-2-active,
	#primary li.menu-1-2-2-active,
	#primary li.menu-1-3-2-active,
	#primary li.menu-1-4-2-active,
	#primary li.menu-1-5-2-active,
	#primary li.menu-1-6-2-active,
	#primary li.menu-1-7-2-active {
			background-image: url("images/menu_tab_right_active.jpg");
	}
	 
	#primary a.active {
			background-image:url("images/menu_tab_left_active.jpg");
			padding-bottom: 5px;
			color: #f16a12;
	}
	
	#primary a:hover {
			color: #042157;
	}

/** DROP DOWN: PRIMARY**/
	
	#primary a#navigation {
		padding:0;
		margin:0;
	}

/*	#navbar {
		height:500px;
	}
*/
	#primary .block-inner {
		background: none;
		padding:0;
	}

	#primary ul li.menuparent ul a {
		margin-right:0;
	}

	#primary ul li a {
		margin-right:2px;
	}


	#primary ul.nice-menu-down li {
		border: none;
	}

	#primary ul li a {
		background: #1a0c25;
	}

	#primary ul li ul li a {
		filter:alpha(opacity=90);
		-moz-opacity:0.90;
		-khtml-opacity: 0.90;
		opacity: 0.90;
	}

	#primary ul li ul li a.active {
		filter:alpha(opacity=95);
		-moz-opacity:0.95;
		-khtml-opacity: 0.95;
		opacity: 0.95;
	}

	#primary ul.nice-menu ul, 
	#primary #header-region ul.nice-menu ul {
		border:none;
		left:0;
		margin-right:0;
		top:43px;
	}
	
	#primary ul.nice-menu ul li {
		width:200px;
		border: none;
	}

	ul.nice-menu-down li,
	ul.nice-menu, 
	ul.nice-menu ul {
		border-top:none;
	}

	#primary ul li a.active {
		background:#2a1a36;
		padding: 15px 27px 15px 26px;
		margin: auto;
		border: none;
		color: #94237a;
	}

	#primary a.active {
		padding-bottom:0;
		background-image: none;
	}

	#secondary 
	{
/*  	border: 1px solid black;*/
		float: right;
		clear: both;
		background: #E6E3EA;
		height: 27px;
		width: 666px;
  	display: inline; /* IE6 double margin bug fix */
		border-right: 1px solid #AB8C6B;
		margin: 0;
		padding: 0;
		
	}

	#secondary-inner
	{
		height: 32px;
		float: left;
	}

	#secondary-no-items {
		margin: 0 0 0 20px;
		padding: 0px;
		float: left;
	}

	#secondary ul.links 
	{
		margin: 0;
		padding: 0;
		float: left;
		list-style: none;
	}

	#secondary ul.links li 
	{
		float: left;
		height: 27px;
		background: url(images/menu_secondary_item_divider.gif) no-repeat right;

	}

	#secondary ul.links li.last 
	{
		background: none;
	}

	#secondary .links li a {
		display: block;
		padding:2px 10px 0px 10px;
		text-decoration: none;
		font-size: 11px;
		font-family: verdana;
/*			color: #8a9fc3; oude kleur was te licht */
		color: #800F4E;
	}
	
	#secondary .links li a:hover 
	{
			color: #A02168;
	}

/** sidebar-left **/
  #sidebar-left
  {
    float: left;
    width: 330px;
    margin-top: 100px;
    margin-left: 0;
    margin-right: -330px; /* Negative value of #sidebar-left's width + left margin. */
    padding: 0; /* DO NOT CHANGE. Add padding or margin to #sidebar-left-inner. */
  }

  #sidebar-left-inner
  {
   	border: 1px solid;
   	border-color: #AB8C6B;
    margin-top: 0px;
  }

/** sidebar-right **/
  #sidebar-right
  {
    float: right;
    width: 200px;
    margin-left: -200px; /* Negative value of #sidebar-right's width + right margin. */
    margin-right: 0;
    padding: 0; /* DO NOT CHANGE. Add padding or margin to #sidebar-right-inner. */
  }

  #sidebar-right-inner
  {
    margin: 0;
    padding: 0;
  }

/** footer **/
/*  #footer
  {
  	border: 1px solid black;
		background-color: white;
    width: 100%;
		margin-top: 10px;
    margin-left: 0;
    margin-right: -100%; /* Negative value of #navbar's width + left margin. */
/*    padding: 0; /* DO NOT CHANGE. Add padding or margin to #navbar-inner. */
/*  }

  #footer .block-inner
  {
		padding: 0;
		margin: 0;
  }
	
	#footer ul {
		padding: 0;
		margin: 0;
		border: 1px solid black;
	}
	
	#footer li {
		margin: 0;
		padding: 0px 5px 0px 5px;
		border-right: 1px solid;
		display: inline;
	}
*/

	#footer-ads {
		height: 78px;
  	border: 1px solid #AB8C6B;
		margin-top: 10px;
  	background: white url(images/footer_ads.jpg) no-repeat bottom;
	}


  #footer
  {
		margin-top: 10px;
		margin-bottom: 10px;
		height: 30px;
  	background: white url(images/footer_bg.gif) repeat-x bottom;
  	border: 1px solid #AB8C6B;
  }

  #footer-inner
  {
  	padding-top: 3px;
  }

  #footer .block-inner
  {
		padding: 0;
		margin: 0;
  }

  #footer-message /* Wrapper for the footer message from Drupal's "Site information"
                     and for any blocks placed in the footer region */
  {
		padding: 0;
		margin: 0;
  }

  /* This controls the footer links layout to show a horizontal not vertical list */
	#footer-message ul {
		float: left;
		display: inline;
/*		margin: 0px 0 0 -5px;*/
	}
	
	#footer .block ul {
		padding: 0;
		margin: 0 0 0 20px;
	}
	
	#footer-message ul li {
		display: inline;
    list-style-type: none;
		padding-right: 12px;
		padding-left: 8px;
		margin: 0;
		border-right: 1px solid #eee;
	}
	
	#footer-message ul li a {
		color: #828076;
		border: none;
		text-decoration: none;
	}
	
	#footer-message ul li a:hover { 
		border-bottom: 1px dotted #828076; 
	}

	#footer-content {
		color: #828076;
		margin-right: 20px;
		float: right;
	}

	#footer-content #disclaimer {
		margin-right: 30px;
	}
	
  #closure-blocks
  {
  }

/** Prevent overflowing content **/
  #header,
  #content,
  #navbar,
  #sidebar-left,
  #sidebar-right,
  #footer,
  #closure-blocks
  {
    overflow: visible;
    word-wrap: break-word; /* A very nice CSS3 property */
  }

