/* $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
  {
	font-size: 12px;
	font-family: verdana;
	background: #fff URL('images/body_bg.png') repeat-x left top;
  }
  
  .cover-cover {
	background: #fff URL('images/bgbgbg.png') repeat-x left top;
	margin: 0 auto;
	width: 1000px;
  }
  
  a {
	color: #336699;
	text-decoration: none;
  }
  
 hr { /* Add by DR    */
	border: 1px solid !important;
	color: #D8D8D8!important;
	height:0 !important;
	}

  #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
  {
	width: 1000px;
	margin: 0 auto;
	background: URL('images/header.png') no-repeat left top;
  }

  #header-inner
  {
  }

  #logo-title
  {
  }

  #logo
  {
	margin: 0 auto;
	width: 192px;
	height: 129px;
	
  }
  
  #logo img {
 	margin-top: 10px; 
	z-index: 5000;
  }

  #site-name
  {
	background-color:#FFFFFF;
	float:left;
	font-size:19px;
	height:38px;
	margin-top:-75px;
    padding-left:13px;
    width:391px;
	*margin-top:-85px;
	*height: 48px;
  }
  
  #site-name a {
	text-decoration: none;
	color: #8099a7;
  } 
  

  #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. */
	*padding-top: 10px;
	color: #545454;
  }

  .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 #content
  {
    width: 688px;
    margin-left: 0px;
    margin-right: -760px; /* Negative value of #content's width + left margin. */
  }

  .two-sidebars #content
  {
    width: 560px;
    margin-left: 200px; /* 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: 200px;
    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: 200px;
    margin-left: 750px; /* 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. */
	background: #F8F9FA URL('images/right_side_bar.png') repeat-x left top;
  }

  #sidebar-right-inner
  {

  }

/** 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;
  }
  */
  
 #nice-menu-1 {
	border:0 none;
	float:left;
	margin-left:13px;
	width: 1000px;
	z-index:999;
	position:relative;
 }
  
  #nice-menu-1 li {
	list-style-image: none;
	list-style-type: none;
	border: 0px;
	float: left;
	background: URL('images/menu_middle_side_222.jpg') repeat-x left top;
	height: 47px;
	display: inline;
	margin-top: -39px;
	width:97.8px;
	text-align:center;
  }
  
  #nice-menu-1 li:hover{
	background:url("images/menu_middle_side_2444.jpg") repeat-x scroll right top transparent;
	background-color: #0072BC;
  }

  
  
  #nice-menu-1 li a {
	color:#FFFFFF;
	/*margin-top:11px;*/
	margin-top:6px;
	padding-left:3px;
	text-decoration:none;
  }
  
  .en #nice-menu-1 .first{
	background: URL('images/menu_left_side_rounded.png') no-repeat left top;
	height: 47px;
  }
  .en #nice-menu-1 .first li ul {
	background:none repeat scroll 0 0 white;
	height:25px;
	border-top:7px solid #FFF;
	border-bottom:5px solid #993;
  }
  
  .en #nice-menu-1 .first a {
	background:url("images/menu_middle_side_222.jpg") repeat-x scroll left top transparent;
	display:block;
	height:47px;
	margin-left:8px;
	margin-top:0;
	padding-top:10px;
  }
  
  .en #nice-menu-1 .first a:hover {
	background:url("images/menu_middle_side_2444.jpg") repeat-x scroll right top transparent;
  }
  .en #nice-menu-1 .first ul li a:hover {
  background:white;
  }

  #nice-menu-1 li ul {
	margin-left:152px;
	margin-top:47px;
	padding-bottom:0px;
	border-top:7px solid #FFF;
	border-bottom:5px solid #993;
	top:0;
	border-top: white;
	z-index:77;
	width:auto;
  }
  
  .en #nice-menu-1 .last{
	background: URL('images/menu_right_side_rounded.png') no-repeat right top;
	height: 47px;
  }
  
  .en #nice-menu-1 .last a {
	background:url("images/menu_middle_side_222.jpg") repeat-x scroll right top transparent;
	display:block;
	height:47px;
	margin-right:9px;
	margin-top:0;
	padding-top:9px;
	margin-left:0;
  }
  
  .en #nice-menu-1 .last:hover a {
	background:url("images/menu_middle_side_2444.jpg") repeat-x scroll right top transparent;
  }
   /* 
  #nice-menu-1 li ul li  {
	height: 35px;
  }
  
  #nice-menu-1 li ul li a{
	background:none repeat scroll 0 0 #D8EBF6;
	display:block;
	height:25px;
	margin-top:0;
	padding-top:10px;
	color: #999999;
  }
  */

  #main-inner .title {
	font-size: 15px;
  }
  
  #main-inner .title a {
 	text-decoration: none; 
	color: #336699;
  }
  
  #content-header .title{
 	text-decoration: none; 
	color: #255677;
	font-size: 14px;
  }
  
  #views_slideshow_singleframe_main_1 {
	background: URL('images/slider_bg.png') repeat-x left top;
	margin-left:13px;
	width:966px;
	height: 372px;
  }
  
  #views_slideshow_singleframe_teaser_section_1 {
	width: 1000px;
  }
  
  #views_slideshow_singleframe_main_1 .views-field-title {
	margin-left:45px;
	margin-top:60px;
	text-align:center;
	width:230px;
	height:43px;
	overflow:hidden;
  }
  
  #views_slideshow_singleframe_main_1 .views-field-title a {
	text-decoration: none;
font-size:18px;
	color: #fff;
  }
  
  #views_slideshow_singleframe_main_1 .views-field-teaser {
	color:#FFFFFF;
	margin-left:47px;
	width:220px;
	
	overflow:hidden;
	height:148px;
	padding-left:5px;
  }
  
  #views_slideshow_singleframe_main_1 .views-field-nothing {
	float:left;
	height:24px;
	margin-left:90px;
	margin-top: 10px;
	text-align:center;
	width:135px;
  }
  
  #views_slideshow_singleframe_main_1 .views-field-nothing a {
	background-color:#EFEDEF;
	border:1px solid #EDEDED;
	color:#9F9F9F;
	display:block;
	font-size:11px;
	height:18px;
	padding-top:5px;
	text-decoration:none;
	width:105px;
  }
  
  
  
  #views_slideshow_singleframe_main_1 .views-field-field-slider-image-fid {
	float:left;
	margin-left:307px;
	margin-top:-210px;
	position:absolute;
	width:632px;
	*margin-left: 110px;
	*margin-top:-115px;
  }
   #views_slideshow_singleframe_main_1 .views-field-field-slider-image-fid  img{}
   
  #block-views-front_page_slideshow-block_1 {
	padding-top: 9px;
  }
  
  #views_slideshow_singleframe_pager_1 {
	margin-left:88px;
	margin-top:-60px;
	position:absolute;
	z-index:1200;
  }
  
  #views_slideshow_singleframe_pager_1 .pager-item {
	padding-left:1px;  
  }
  
  #views_slideshow_singleframe_pager_1 .pager-item a {
	display:inline-block;
	width: 34px;
	height: 28px;
	background-color: #165ca2;
	color: #7fb3e1;
	text-decoration: none;
	text-align: center;
	padding-top: 9px;
  }
  
  #views_slideshow_singleframe_pager_1 .pager-item a.activeSlide {
	display:inline-block;
	width: 34px;
	height: 28px;
	background-color: #3780ca;	
	color: #fff;
  }
  
  #sidebar-right .block {
	padding-bottom: 50px;
	background: URL('images/block_bottom.png') no-repeat left bottom;
	padding-left: 20px;
	margin-top: 15px;
  }
  
  .form-submit {
	background: URL('images/search_bg.png') repeat-x left top;
	border: 1px solid #e6e6e5;
	color: #666666;
  }
  
  #block-search-0  label {
	width: 200px;
	display: block;
	margin-bottom: 8px;
	color: #666666;
  }
  
  #block-search-0 .form-text {
	height:17px;
	width: 80px;
	background: #FFF URL('images/search_input.png') no-repeat left top;
	border: 1px solid #e6e6e6;
	padding-left: 20px;
  }
  
  #block-block-2  img{
	margin-left:0px;
	padding-top:18px;
  }
  
  ul.nice-menu, ul.nice-menu ul {
	z-index: 1500;
  }
  
  #nice-menu-1 ul li {
	background:none repeat scroll 0 0 #D7ECF8;
	height:25px !important;
	margin-top:1px;
	width:auto;
	border-top:1px solid #ededed !important; /*DR. I need to use this line to get the box */
  }
  
  #nice-menu-1 ul li  a{
	/*background-color:#D7ECF8;*/
	display:block;
	margin-top:0;
	width:160px; /*141*/
	background-color:#FFF;
	line-height:18px;
	padding:4px 11px 4px 11px;
	font-size:13px;
	color:#151B54;
	font-family:Verdana, Geneva, sans-serif;
	font-weight:normal !important;
  }
	
  
  .en #nice-menu-1 .first ul li  a {
	background:none repeat scroll 0 0 white;
	display:block;
	height:25px !important;
	margin-left: 0px;
	padding-top:7px;
	
  }
  
  
   
  
  /**********************************/
  #nice-menu-1 li ul li ul li {
	min-height: 25px;
	height:auto;
	background: white;
	margin-top:0;
	width:auto;
  }
  
  #nice-menu-1 li ul li ul li a {
	height:auto;
	margin-top:1px;
	padding-top:0;
	padding-bottom:0;
  }
  
   #nice-menu-1 li ul li a:hover {
	/*background: #0072BC;
	color:white;*/
	text-decoration:underline;
  }
  
  
  
  

  
   
  
  #nice-menu-1 ul li ul li ul li a {
	background-color: #D7ECF8;		
  }
  
    #nice-menu-1 ul li ul li ul li:hover a{
	background-color: #0072BC;
	height:25px;
  }
  
  #nice-menu-1 ul  a {
	background-color: #D7ECF8;	
  }  
  /*************************************/
  
  #block-menu-primary-links {
	background:none repeat scroll 0 0 #FFFFFF;
	float:right;
	height:38px;
	margin-right:0;
	margin-top:-75px;
	*margin-top:-85px;
	*height: 48px;
	
	padding-right:10px;
width:395px;
  }
  
  #block-menu-primary-links .menu li {
	float: right;
	list-style-type: none;
	list-style-image: none;
  }
  
  #block-menu-primary-links .menu li  a{
	color: #94aab5;
	border-right:1px solid #94AAB5;
	padding-left:3px;
	padding-right:15px;
	text-decoration:none;
  }
  
  #block-menu-primary-links .menu .first  a{
	border: 0px;
  }
  
  #footer-message {
	display:block;
	font-size:10.5px;
	height:50px;
	margin:15px auto 0;
	width:500px;
  }
  
  #footer-first {
	float:left;
	text-align:center;
	width:500px;
  }
  
  #footer-second {
	float:left;
	text-align:center;
	width:500px;
	padding-top:15px;
  }
  
  #block-locale-0 {
	float: left;
	margin-top: -120px;
  }
  
  #block-locale-0 ul li {
	list-style-type: none;
	list-style-image: none;
	float: left;
	padding-right:10px;
  }
  
  #sidebar-right .block-inner .title {
	color:#666666;
  }
  
  #block-area_banner-0 {
	margin-left:13px;
	padding-top:18px;
  }
  
  #block-area_banner-0 img {
	width:966px;
  }
  
  #nice-menu-1 li ul li ul {
	margin-left:333px;
    padding-bottom:0;
	margin-top:1px;
	border-top:3px solid #004579;
	width:auto;
  } 
  
  .en #nice-menu-1 .logo {
	margin-right:182px;
width:100px;
  }
  
  ul.links.inline {
display:inline-block;
margin-top:10px;	
  }
  
  #block-menu-primary-links .menu li a:hover,#main-inner .title a:hover, a:hover{
  text-decoration: underline;
  }
  
  #nice-menu-1 ul li  a{
text-align:left;
}

.pane-title, #content-top .title{
font-size:1.167em;
font-weight:bold;
letter-spacing:0.07em;
text-transform:uppercase;
display:none;
}

.pane-content{
}

.pane-content .views-row{
padding-top:15px;
}

.pane-content .views-field-teaser{

}

.pane-spacer{
background-image:url(images/spacer.jpg);
height:18px;
}

.panel-2col .panel-col-last .inside {
padding-left:35px;
}

.front  #content-header .title{
display:none;
}

.front .breadcrumb{
display:none;
}

#nice-menu-1 li ul li ul li ul{
margin-top:0;
}

#nice-menu-1 li ul li ul li:hover, #nice-menu-1 li ul li ul li ul li:hover{
background:white;
}

#content-inner #block-faq-2{
margin-top:18px;
height:auto;
}

.faq-all-faqs-link{
margin-left:18px;
}

hr {
border:1px solid #D8D8D8;
}

.front .comment_add,.front .statistics_counter{
display:none;
}

ul.links.inline {
width:740px;
}

#nice-menu-1 #menu-1654{
padding-left:6px;
}

#nice-menu-1 #menu-566 {
height:35px;
background:white;
}
#nice-menu-1 #menu-566+li{
margin-top:0;
}

#nice-menu-1 #menu-566:hover{
background:white;
}

/*  Added by DR on 29.08.2010
.view-all-nodes img{
width:115px;
height:99px;
}*/

.book-navigation{
padding-bottom:10px;
}

#views_slideshow_singleframe_main_1 .views-field-teaser img{
display:none;
}

.field-field-slider-image .field-label{
display:none;
}

#footer-hr hr{
margin-left:-244px;
position:relative;
width:962px;
}

div.block.with-block-editing{
position:inherit;
}

.en #menu-510, .en #menu-118,.ar #menu-509,.ar #menu-118,.ku #menu-509 ,.ku #menu-510{
display:none;
}

.en #nice-menu-1 li ul .last{
  background:none repeat scroll 0 0 white;
  height:25px;
  }
  
  .en #nice-menu-1 .last ul li a{
  background:none repeat scroll 0 0 transparent;
height:17px;
margin-right:0;
padding-top:7px;
width:141px;
  }
  
  .en #nice-menu-1 .last:hover ul li a {
  background:white;
  }
