/* $Id: layout-fixed.css,v 1.5.2.3 2009/02/13 19:20:19 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 Zen Columns 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
  {
  }

  #page,
  #closure-blocks
  {
    /*
     * If you want to make the page a fixed width and centered in the viewport,
     * this is the standards-compliant way to do that. See also the ie.css file
     * for the necessary IE5 hack to center a div.
     */
    margin-left: auto;
    margin-right: auto;
    width: 960px;
  }

  #page-inner
  {
  }

  #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
  {
  	height: 125px;	
	background:url("images/gedert-background.gif") no-repeat;
  }

  #header-inner
  {
  }

  #logo-title
  {
  }

  #logo
  {
    float: left;
  }

  #site-name
  {
  }

  #site-slogan
  {
  }

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

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

  #main-inner
  {
  }

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

  .sidebar-left #content
  {
    /*   //width: 760px;
         //margin-left: 200px; The width of #sidebar-left. */
   /*    //margin-right: -960px;  Negative value of #content's width + left margin. */
  }

  .sidebar-right
  {
    
	float: right;
	background-color: #dbe1ee;
	padding: 5px;
	width: 220px;
	/* //width: 760px;
       //margin-left: 0;
       // margin-right: -760px;  Negative value of #content's width + left margin. */
  }
  
  
  .sidebar-right img
  {
	//border: 5px;
	padding: 5px;
	padding-left: 25px;
	width: 170px;
	height: 100px;
	border-color: #006;
  }
   
  


  .two-sidebars #content
  {
    /*   //width: 570px;
         // margin-left: 190px; The width of #sidebar-left */
    /*   //margin-right: -760px;  Negative value of #content's width + left margin. */
  }

  #content-inner
  {
    margin: 0;
    padding: 0;
  }

/** navbar **/
  #navbar
  {
    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: 3.6em; /* 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. */
  }

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

  #navbar-inner
  {
  }

  #search-box
  {
    width: 200px;
    margin-right: -200px; /* Negative value of #search-box's width. */
    float: left;
  }

  #primary
  {
    margin-left: 200px; /* Width of search-box */
  }

  #secondary
  {
    margin-left: 200px; /* Width of search-box */
  }

  #navbar ul /* Primary and secondary links */
  {
    margin: 0;
    padding: 0;
    text-align: left;
  }

  #navbar li /* A simple method to get navbar links to appear in one line. */
  {
    float: left;
    padding: 0 10px 0 0;
  }

  /* There are many methods to get navbar links to appear in one line.
   * Here's an alternate method: */
  /*
  #navbar li
  {
    display: inline;
    padding: 0 10px 0 0;
  }
  */

/** sidebar-left **/
  #sidebar-left
  {
    float: left;
    width: 190px;
    margin-left: 0;
    margin-right: -200px; /* 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
  {
    margin: 0 20px 0 0;
    padding: 0;
  }

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

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

/** footer **/
  #footer
  {
  }

  #footer-inner
  {
  }

/** closure **/
  #closure-blocks /* See also the #page declaration above that this div shares. */
  {
  }

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

  #navbar
  {
    overflow: hidden; /* May need to be removed if using a dynamic drop-down menu */
  }

  /* If a div.clear-block doesn't have any content after it and its bottom edge
     touches the bottom of the viewport, Firefox and Safari will mistakenly
     place several pixels worth of space between the bottom of the div and the
     bottom of the viewport. Uncomment this CSS property to fix this.
     Note: with some over-large content, this property might cause scrollbars
     to appear on the #page div.
  */
  /*
  #page
  {
    overflow-y: hidden;
  }
  */
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  /**************************************************/
  /********************** escimo ********************/
  /**************************************************/
  
  /** body & html **/
  body {
  	font:Verdana, Arial, Helvetica, sans-serif;
  }
  
  a {
    text-decoration: none;
  }
  
  h1 {
  	font-size: 1.4em;
	font-weight: normal;
	padding-top: 10px;
	padding-bottom: 5px;
	/**border: 1px solid #CCCCCC**/
  }
  
  #content-header h1 {
  	border-bottom: 1px solid #000000;
  }
  
  h2 {
  	font-size: 1.3em;
	font-weight: normal;
  }
  
  p {
 	font-size: 1em;
  }
  
  
    
  /**************************************************/
  /**************** Kopf der Website ****************/
  /**************************************************/
  
  /** logo **/
  
 /*
  #kroev_link img{
	padding-top: 62px;
	margin-top: 0px;
	margin-left:818px;
	z-index: 4;
	position: absolute;
   }  
  
  
  #logo img{
	padding-top: 60px;
	margin-top: 0px;
	z-index: 2;
	position: absolute;
   }
 
  #site-slogan {
    padding-top: 0px;
	margin-top: 25px;
	height: 20px;
	width: 970px;
	z-index: 3;
	position: absolute;
	text-align:right;
	font-size: 0.65em;
	color: #990000;
  }
  
  #header-blocks {
	font-size: 12px;  
  }

  #header-blocks img {
	
	margin-bottom: -3px;
  }
  
  */
  
  /**************************************************/
  /************** Navigation: Sprachen **************/
  
  /*
  
  #header-blocks #block-locale-0 ul{
	margin: 0px;
    padding: 0px;
    list-style-type: none;
	width: 200px;
	margin-left:220px;
	float: left;
  }
 
  #header-blocks #block-locale-0 ul li{
  	display: inline;
	margin-right: 5px;
  }
  
  *?
   
  /**************************************************/
  /************** Navigation: Shop/Impressum *************/
   
   /*
   #header-blocks #block-menu-primary-links {
   	  padding-top: 10px;
	  height: 2em;
   }
   
   #header-blocks #block-menu-primary-links ul {
	width: 240px;
	margin: 0px;
    padding: 0px;
    list-style-type: none;
	text-align:right;
	float:right;
   }
   
   #header-blocks #block-menu-primary-links ul li a{
   	   	font-family:"Times New Roman", Times, serif;
		font-size:16px;
		padding-left: 0px;
		height: 2em;
		line-height: 2em;
		color: #666666;
		text-decoration: none;
		text-align: right;
   }
   
   #header-blocks #block-menu-primary-links ul li a:hover {
   	    color: #990000;
		text-decoration: underline;
   }
   */
   
  /**************************************************/
  /************ Navigation: Hauptnavi oben **********/
   
   
   
	#block-menu_block-3
	{	
		width: 960px;
		/* background-color: #002c85; */  /* mkas */
		background-color: #163665;
		margin-bottom: 0px;
		float: left;
		height: 2em;
	} 
	
   #block-menu_block-3 ul/* Primary links */
   {
		list-style-type: none;
		padding: 0;
		margin: 0;
   }
      
   #block-menu_block-3 ul li 
    {
		float: left;
		display: inline;
    }

   #block-menu_block-3 ul li a {
   		font-family: Verdana, Geneva, sans-serif;
		/* background-image: url(images/Nav01-dark-blue.gif);  */  /* mkas */
		/* background-color: #002c85; */  /* mkas */
		background-color: #163665;
		font-size:13px;
		padding-left: 0px;	
		padding-right: 15px;	
		height: 1.8em;
		float: left;
		display: block;
		color: #ffffff;
		text-decoration: none;
		text-align: center;
		padding-top: 4px;
		padding-left: 15px;
		border-right: 2px solid #ffffff;
	}
		
	#block-menu_block-3 ul li a:hover
    {
		
	}	
	
	#block-menu_block-3 ul li a.active, #block-menu_block-3 ul li a.active-trail, #block-menu_block-3 ul li a.active 
    {
		color: #002c85;
		background-image: url(images/Nav01-bright-blue.gif);
		background-color:#d4deed;
		height: 2em;
	}	
		
	/* Hide from IE5-Mac \*/
	#block-menu_block-3 li a
	{
		float: none
		background-color:#002c85;
	}
	/* End hide */
	
	
	 /**************************************************/
  	/************ Navigation: Hauptnavi Links **********/
	

	
	#block-menu_block-1 .menu
	{
		width: 960px;
		height: 22px;
		background-color: #d4deed;	
		margin-top: 2px;
		font-family: Verdana, Geneva, sans-serif;
		font-size:13px;
		float:left;
	
	} 
	
	.menu-block-1 ul.menu
	{
		padding: 0;
		margin: 0;
	}	
	
	/** 1te Ebene **/
	
	.menu-block-1 ul.menu li
	{
		display: inline;
	}
	
	.menu-block-1 ul.menu li a
	{
		padding-right: 5px;
		#background-color: #F00;	
		background-image: url(images/Nav02-list.gif);
		display: block;
		color: #002c85;
		padding-bottom: 2px;
		float: left;
		padding-left: 29px;	
	}
	
	.menu-block-1 ul.menu li a:hover
	{
		color: #002c85;
		text-decoration: underline;
	}
	
	
	/** 2te Ebene **/	
	
	#block-menu_block-1 ul li a.active-trail
	{

	}	
	
	#block-menu_block-1 ul li ul
		{
		
		}	
		
		#block-menu_block-1 ul li ul li
		{
		  /**list-style: circle;
		  list-style-type: circle;
		  display: list-item;
		  list-style-position: inside;**/
		}		
	
		
	
	#block-menu_block-1 ul li ul li a
	{
		padding-left: 25px;
		background-color: #ffffff;
	
		padding-top: 1px;
		padding-bottom: 1px;
	
		
	}		
		
	
	#block-menu_block-1 ul li ul li a:hover
	{
		text-decoration: underline;
	}	
	
	#block-menu_block-1 ul li ul li a.active
	{
		background-color: #FFFFFF;
		text-decoration: underline;
	}		
		
	
	.menu-block-1 ul li.collapsed {
	
	}

	
	/**************************************************/
  	/******************* Leiste: Links ****************/
	
	 /** Suche **/
	 
	 #search-space {
	 	height: 17px;
		background-color: #f4f4f4;
		margin-bottom: 2px;
	 }
	 
	 #search {
	 	background-color: #f4f4f4;
		padding-top: 8px;
		padding-bottom: 8px;
		padding-left: 5px;
		padding-right: 5px;
	 } 
	 
	  #search input#edit-search-theme-form-l {
	  	width: 70px;
		
	 } 
	 
	 #block-menu_block-1 h4 {
	 	background-color: #ffffff;
		margin: 0px;
		padding: 10px 10px 0px 10px;
		margin-top: 2px;
		color: #000000;
		font-weight: normal;
	 }
	 
	 
	/**************************************************/
  	/****************** Leiste: Unten  ****************/
	 
	 /*
	#footer-message
	{
		margin-top: 10px;
		font-size: 0.85em;
		margin-left: 190px;
		border-top: 1px solid #000000;
		width: 570px;
		text-align: right;
	
	}
	
	#block-ad-6 {
		margin-left: 190px;
		width: 570px;
		margin-top: 10px;
		margin-bottom: 50px;
		font-size: 0.85em;
	}
	
	 
	#block-ad-6 .ad-header a p
	{
		margin: 0px;
		padding: 0px;
	}
	 
	#block-ad-6 .ad-header a:hover p
	{
		text-decoration: underline;
		margin: 0px;
		padding: 0px;
	}
	
	#block-ad-6 .ad-body p
	{
		margin: 0px;
		padding: 0px;
	}
	 */
	 
	 
	 
	 
	 
	 
	 
	 
	 
	 
	 
	 
	 
	 /** breadcrump **/
	 .breadcrumb {
	 	font-size: 0.8em;
	 }
	 
	 .breadcrumb a {
	 	color: #000000;
	 }
	 
	 .breadcrumb a:hover {
	 	text-decoration: underline;
	 }
   
	
	
	/******************************************************/
	/* Admin �nderungen */
	/******************************************************/
	
	/* Steuerung der Eingabeformulare */
	
	html.js fieldset.collapsed {
		border-bottom-width: 0;
		border-left-width: 0;
		border-right-width: 0;
		margin-bottom: 0;
		height: 1em;
	}
	
	html.js fieldset.collapsed {
		background:none repeat scroll 0 0 transparent;
		padding-bottom:0.6em;
		padding-top:0;
	}
	
	html.js fieldset.collapsible legend a {
		background:url("images/menu-expanded.gif") no-repeat scroll 0 50% transparent;
		padding-left:2em;
	}
	
	html.js fieldset.collapsible legend a:hover {
		text-decoration: underline;
	}
	
	html.js fieldset.collapsed legend a {
		background:url("images/menu-collapsed.gif") no-repeat scroll 0 50% transparent;
	}	
	
	html.js fieldset.collapsed legend a:hover {
		text-decoration: underline;
	}
	
	legend.collapse-processed a{
		color:#990000;
		font:12px/170% Verdana,sans-serif;
	}	
	
	fieldset
	{
		background:url("images/gradient-inner.png") repeat-x scroll 0 0 #FFFFFF;
		margin: 1em 0;
		padding: 0.5em;
		border:1px solid #D9EAF5;
	}
	
	.form-item .description {
		color:#898989;
		line-height:150%;
		margin-bottom:0.95em;
		font-size: 11px;
	}
	
	.description {
		color:#898989;
		line-height:150%;
		margin-bottom:0.75em;
		font-size: 11px;
	}
	
	input {
		color:#494949;
		font:12px/100% Verdana,sans-serif;
	}	
	
	.form-item label {
		display:block;
		font-weight:bold;
		color:#494949;
		font:12px/170% Verdana,sans-serif;
	}
	
	textarea, select {
		color:#494949;
		font:12px/160% Verdana,sans-serif;
	}
	
	
	dl.multiselect dd.b, dl.multiselect dd.b .form-item, dl.multiselect dd.b select {
		font-family:inherit;
		font-size: 12px;
		width:14em;
	}
	
	
	
	dl dd {
		margin:0 0 0.5em 1.5em;
	}
	
	ul.tips li {
		background:url("images/menu-leaf.gif") no-repeat scroll 1px 0.35em transparent;
		list-style-image:none;
		list-style-type:none;
		padding:0 0 0.2em 1.5em;
	}
	style.css?D (Zeile 123)
	ol li, ul li, ul.menu li, .item-list ul li, li.leaf {
		margin:0.15em 0 0.15em 0.5em;
	}
	
	
	tr.odd, tr.info {
		background-color:#EDF5FA;
		border-color:  #D9EAF5;
	}
	
	tr.even {
		background-color:#FFFFFF;
		border-color:  #D9EAF5;
	}
	
	
	/** Error Handling */
	
	
	.error {
		color:#EE5555;
	}
	
	table.system-status-report tr.error, table.system-status-report tr.error th {
		background-color:#FFCCCC;
		border-color:#EEBBBB;
		color:#220000;
	}
	
	div.error, tr.error {
		background:none repeat scroll 0 0 #FFCCCC;
		color:#220000;
		padding:2px;
	}
	
	.warning {
		color:#E09010;
	}
	
	table.system-status-report tr.warning, table.system-status-report tr.warning th {
		background-color:#FFFFDD;
		border-color:#EEEEBB;
	}
	
	div.warning, tr.warning {
		background:none repeat scroll 0 0 #FFFFDD;
		color:#222200;
		padding:2px;
	}
	
	table.system-status-report tr.ok, table.system-status-report tr.ok th {
		background-color:#DDFFDD;
		border-color:#BBEEBB;
	}
	
	div.ok, tr.ok {
		background:none repeat scroll 0 0 #DDFFDD;
		color:#002200;
		padding:2px;
	}
	


	div.admin-panel {
		background:url("images/gradient-inner.png") repeat-x scroll 0 0 #FFFFFF;
		padding:1em 1em 1.5em;
	}	
	div.admin-panel dd {
		color:#898989;
		font-size:11px;
		line-height:1.3em;
		margin-bottom:0.65em;
		margin-top:-0.2em;
	}






/** Layout Boxen **/


 #box1_footer {

	margin-top: 20px;
 	height: 15px;
	width: 960px;
		/* background-color: #002c85; */  /* mkas */
		background-color: #163665;
 }

 #box2_footer {
 	

	margin-top: 2px;
	width: 960px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
 }
 
 
 #box2_footer a {
	 text-decoration: underline;
	 float: right;
 }
 
	
	/******************************************************/
	/* Content �nderungen */
	/******************************************************/
	
	
#content-area-front	{
	padding-right: 250px;
	padding-top: 0px;
	margin-top: 0px;
}

#block_right {
	background-color: #dbe1ee;
	float: right;
	width: 200px;
	padding: 10px;
}


.node-type-projekt .field-field-image img{
	padding: 6px;
	float: left;
}

.meta {
	display: none;
}



/*	
.view-content .views-field-title {
	font-family:"Times New Roman", Times, serif;
	font-size: 23px;
	letter-spacing: 3px;
	line-height: 23px;	
	color: #660000;
}

.view-content .views-field-body {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 16px;	
	color: #000000;
}
*/


/* UNGERADE */
/*		
.view-content .views-row-odd {
	
	background:url("images/background_left.gif") repeat-y scroll 0 0 #FFFFFF;
	min-height: 265px;
	border-bottom:1px solid #990000;
	border-top:1px solid #990000;
}

.view-content .views-row-odd .views-field-title {
	padding-top: 20px;
	padding-left: 510px;
	margin-right: 30px;	
}

.view-content .views-row-odd p {
	margin-left: 510px;
	margin-right: 30px;
}

.view-content .views-row-odd .views-field-buyitnowbutton {
	padding-left: 510px;
}

.view-content .views-row-odd .views-field-sell-price {
	padding-left: 510px;
	font-size: 15px;
}

.view-content .views-row-odd .views-field-field-image-fid {
	float:left;
}

.view-content .views-row-odd .views-field-field-image-cache-fid-2 {
	float: left;
}

.view-content .views-row-odd #textfield2 {
	float:left;
}

.view-content .views-row-even #textfield2 iframe{
	height: 230px;
	background-color:#000099;
	float: left;
	margin-top: -180px;
}

.view-content .views-row-odd .views-field-edit-node {
	margin-left: 510px;
}
*/


/* GERADE */
/*
.view-content .views-row-even {
	
	min-height: 265px;
	background:url("images/background_right.gif") repeat-y scroll 0 0 #FFFFFF;
}


.view-content .views-row-even .views-field-title {
	padding-top: 20px;
	margin-left: 55px;
	margin-right: 510px;
}

.view-content .views-row-even p {
	margin-left: 55px;
	margin-right: 510px;
}

.view-content .views-row-even .views-field-buyitnowbutton {
	padding-left: 55px;
}

.view-content .views-row-even .views-field-sell-price {
	padding-left: 55px;
	font-size: 15px;
}


.view-content .views-row-even .views-field-field-image-fid {
	float: right;
}

.view-content .views-row-even .views-field-field-image-cache-fid-2 {
	float: right;
}



.view-content .views-row-even #textfield2 {
	float: right;
}

.view-content .views-row-even #textfield2 iframe{
	height: 230px;
	background-color:#000099;
	float: right;
	margin-top: -180px;
}

.view-content .views-row-even .views-field-edit-node {
	margin-left: 55px;
}

.view-content .views-row-even #trossen_border {
	border-bottom: 25px solid #ede9e6;
	min-height: 240px;
}
*/


/* SONDERFELDER */

/*
.view-content .views-row-first{
	background:url("images/background_left_none.gif") repeat-y scroll 0 0 #FFFFFF;
	min-height: 265px;
	border-right: 0px solid #ede9e6;
	border-bottom:1px solid #990000;
	border-top:1px solid #990000;
}	
*/
.view-content .views-row-last #trossen_border {
	
}





/* SONDERFELDER */

/*
.view-content #thmr_37 .views-row-even #thmr_33 #trossen_border {
	background-image:none;
	background-color: #990000;
	font-size: 14px;
	color: #ff6666;
	min-height: 265px;
	border-bottom: 0px;
}

.view-content #thmr_37 .views-row-2 {
	border-left: 25px solid #990000;
}
*/