/* $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: arial;
	background: #fff URL('images/body_bg.png') repeat-x right 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-right: auto;
    margin-left: auto;
    width: 960px;
  }

  #page-inner
  {
  }

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

  #skip-to-nav
  {
    float: left;
    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 right top;
  }

  #header-inner
  {
  }

  #logo-title
  {
  }

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

  #site-name
  {
	background-color:#FFFFFF;
	float:right;
	font-size:19px;
	height:38px;
	margin-top:-75px;
padding-right:19px;
width: 410px;
	*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;
	/*margin-top: 23px;*/
	*margin-top: 0px;
  }
  
  .front #main
  {
    position: relative;
	margin-top:23px;
	*margin-top: 0px;
  }

  #main-inner
  {
  }

/** content **/
  #content,
  .no-sidebars #content
  {
    float: right;
    width: 960px;
    margin-right: 0;
    margin-left: -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;
	font-family: Verdana, Tahoma, serif; /* Added by DR */
  }

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

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

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

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

/** navbar **/
  #navbar
  {
    float: right;
    width: 100%;
    margin-right: 0;
    margin-left: -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-left: -200px; /* Negative value of #search-box's width. */
    float: right;
  }

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

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

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

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

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

/** sidebar-right **/
  #sidebar-right
  {
    float: right;
    width: 200px;
    margin-right: 760px; /* Width of content + sidebar-left. */
    margin-left: -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 right 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:right;
	margin-right: 14px;
	width: 1000px;
 }
  
  #nice-menu-1 li {
	background:url("images/menu_middle_side_222.jpg") repeat-x scroll right top transparent;
	border:0 none;
	display:inline;
	float:right;
	height:47px;
	list-style-image:none;
	list-style-type:none;
	margin-top:-39px;
	width:87px;
  }
  
  
  #nice-menu-1 li a {
	color:#FFFFFF;
	margin-top:9px;
	padding-left:4px;
	padding-right:4px;
	text-decoration:none;
	text-align:center;
	font-size:14px;
	font-weight:bold;
  }
  
  #nice-menu-1 li:hover{
	background:url("images/menu_middle_side_2444.jpg") repeat-x scroll right top transparent;
  }
  
 /* for the kurd*/
  .ku #nice-menu-1 .first ul li a{
	margin-left: 0px;
	margin-right: 0px;
	background: white;
	height:19px;
	padding-top: 5px;
  }
  
  .ku #nice-menu-1 .first ul li ul li a {
	height:0;
	margin-top:1px;
	padding-top:0;
	background: white;
	padding-bottom:0;  
  }
  
  .ar #nice-menu-1 .first ul li ul li a {
	height:0;
	margin-top:1px;
	padding-top:0;
	background: white;
	padding-bottom:0;  
  }
  
  
  .ku #nice-menu-1 .first{
	background: URL('images/menu_right_side_rounded.png') no-repeat right top;
	height: 47px;
	padding: 0px;
	border: none;
  }
  
  .ku #nice-menu-1 .first a {
	background:url("images/menu_middle_side_222.jpg") repeat-x scroll left top transparent;
	display:block;
	height: 30px;
	margin-right:9px;
	margin-top:0;
	padding-top:14px;
	margin-left:0;
  }
  
  .ku #nice-menu-1 .first a:hover {
	/*background: #0072BC;*/
		background:url("images/menu_middle_side_2444.jpg") repeat-x scroll right top transparent;

  }
  
  .ar #nice-menu-1 .first a:hover {
	
		background:url("images/menu_middle_side_2444.jpg") repeat-x scroll right top transparent;

  }
  
  .ku #nice-menu-1 .first ul li:hover a {
	background:white;
  }
  
  
  .ku #nice-menu-1 .last{
	background:url("images/menu_left_side_rounded.png") no-repeat scroll left top transparent;
	height:47px;
	
	left:29px;
position:absolute;
  }

  
   .ku #nice-menu-1 .last a {
    *padding-left:100px;
    background:url("images/menu_middle_side_222.jpg") repeat-x scroll right top transparent;
    display:block;
    height:47px;
  
    margin-right:-51px;
    margin-top:0;
   width:122px;
    padding-top:14px;
  }
 .ku #nice-menu-1 .last:hover a {
	background:url("images/menu_middle_side_2444.jpg") repeat-x scroll right top transparent;
  }
  
 .ku  #nice-menu-1 .logo {
margin-left:172px;
padding-left:26px;
padding-right:26px;
	*padding-left:26px;
	*padding-right:27px;
  }
  
  .ku #nice-menu-1 .logo a {
	padding-right: 5px;
  }
  
 /* for the arabic*/
  .ar #nice-menu-1 .first ul li a{
	background: white;
	height:auto;
margin-left:0;
margin-right:0;
padding-top:9px;
  }
  
  .ar #nice-menu-1 .first ul li {
	/*background-color: #004579;*/
  }
  
  .ar #nice-menu-1 .first{
	background: URL('images/menu_right_side_rounded.png') no-repeat right top;
	height: 47px;
  }
  
  .ar #nice-menu-1 .first a {
	background:url("images/menu_middle_side_222.jpg") repeat-x scroll right top transparent;
	display:block;
	/*height: 30px;*/
	margin-right:9px;
	margin-top:0;
	padding-top:15px;
	margin-left:0;
	height:47px;
  }
  
 .ar #nice-menu-1 .first ul li a:hover {
	background:white;
  }
  
  #nice-menu-1 #menu-2031 {
	display: none;
	background: #fff;
	background-color: #fff;
	border: 0px;
  }
  
  .ar #nice-menu-1 .logo {
	margin-left:181px;
padding-left:14px;
padding-right:12px;
  }

  .ar #nice-menu-1 li ul {
	/*margin-left: 58px;*/
	margin-left:95px;
	margin-top:47px;
  }
  
  .ku  #nice-menu-1 li ul {
  
  margin-left:91px;
  }
  
#nice-menu-1 ul li ul li a {
	background-color: #004579;	
}
  
    #nice-menu-1 ul li ul li:hover a{
	background-color: #0072BC;
  }
  
  #nice-menu-1 ul li ul li ul li a {
	background-color: #004579;		
  }
  
    #nice-menu-1 ul li ul li ul li:hover a{
	background-color: #0072BC;
  }
  
  #nice-menu-1 ul  a {
	background-color: #004579;	
  }
  
  UL.nice-menu-left LI UL {
	*left: 0;
  }
  

   /* 
    #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;
  }
   
  #nice-menu-1 li ul li  {
	height: 35px;
  }

 #nice-menu-2 {
	border:0 none;
	float:left;
	margin-left:8px;
	width:443px;
 }
  
  #nice-menu-2 li {
	background:url("images/menu_middle_side_222.jpg") repeat-x scroll right top transparent;
	border:0 none;
	display:inline;
	float:left;
	height:47px;
	list-style-image:none;
	list-style-type:none;
	margin-top:-39px;
	padding-left:0;
  }
  
  #nice-menu-2 li:hover {
	background:url("images/menu_middle_side_2444.jpg") repeat-x scroll right top transparent;
  }
  
  #nice-menu-2 li a {
	color:#FFFFFF;
	margin-top:11px;
	padding-left:5px;
	padding-right:4px;
	text-decoration:none;
  }
  */
  
  #nice-menu-1 li ul li ul {
	margin-left:4px;
	margin-top:1px;	
	/*width: 12.3em;*/
	width:12em;
  }
  
  #nice-menu-1 li ul li ul li {
	min-height: 5px;
	height:27px;
  }
  
  #nice-menu-1 li ul li ul li a {
	height:0;
	margin-top:1px;
	padding-top:0;
	background: #004579;
	padding-bottom:0;
	width:146px;
  }
  
   
  #nice-menu-1 li ul li a:hover {
	/*background: #0072BC;*/
	background:white;
	/*color: #012846;*/
	
  }
  
   #nice-menu-1 li ul li ul li:hover a {
	background: #0072BC;
  }
  
   #nice-menu-1 li ul li ul li ul li:hover a {
	background: ##nice-menu-1 li ul li ul li a;
  }
  
  .ar #nice-menu-1 .last{
	background:transparent url(images/menu_left_side_rounded.png) no-repeat scroll left top;
	height:47px;
	left:30px;
	position:absolute;
  }
  
   .ar #nice-menu-1 .last a {
	background:transparent url(images/menu_middle_side_222.jpg) repeat-x scroll right top;
	display:block;
	height:47px;
	margin-left:8px;
	margin-right:-28px;
	margin-top:0;
	padding-right:20px;
	padding-top:14px;
	text-align:right;
  }
  
  .ar #nice-menu-1 .last:hover a {
	background:url("images/menu_middle_side_2444.jpg") repeat-x scroll right top transparent;
  }
  
  #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_rtl.png') repeat-x right top;
	width: 969px;
	margin-top:0;
	margin-right:15px;
	height: 372px;
  }
  
  #views_slideshow_singleframe_teaser_section_1 {
	width: 1000px;
  }
  
  #views_slideshow_singleframe_main_1 .views-field-title {
	
	margin-right:65px;
	margin-top: 0px;
	padding-top:64px;
	text-align:center;
	width:190px;
	height:56px;
  }
  
  #views_slideshow_singleframe_main_1 .views-field-title a {
	text-decoration: none;
	font-size: 22.97px;
	color: #fff;
  }
  
  #views_slideshow_singleframe_main_1 .views-field-body {
	color:#FFFFFF;
	margin-right:58px;
	width:220px;
  }
  
  #views_slideshow_singleframe_main_1 .views-field-nothing {
	float:right;
	height:24px;
	
	margin-right:100px;
	margin-top:20px;
	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:right;
	margin-right:307px;
	margin-top:-215px;
	position:absolute;
	width:632px;
	*margin-right: 20px;
	*margin-top:-90px;
  }
   
  #block-views-front_page_slideshow-block_1 {
	padding-top:68px;
	font-family: arial;
  }
  
  #block-views-front_page_slideshow-block_1 .block-inner {
	margin-top: -60px;
  }
  
  #views_slideshow_singleframe_pager_1 {
	margin-right:88px;
	margin-top:-60px;
	position:relative;
	*position:absolute;
	z-index:1200;
  }
  
  #views_slideshow_singleframe_pager_1 .pager-item {
	padding-right: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 right bottom;
	padding-right: 20px;
	margin-top: 15px;
  }
  
  .form-submit {
	background: URL('images/search_bg.png') repeat-x right 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: 50px;
	*width: 50px;
	background: #FFF URL('images/search_input.png') no-repeat right top;
	border: 1px solid #e6e6e6;
	padding-right: 20px;
  }
  
  #block-block-2  img{
	margin-right:0px;
	padding-top:18px;
  }
  
  ul.nice-menu, ul.nice-menu ul {
	z-index: 1500;
  }
  /*
  #nice-menu-1 ul li {
	height: 25px;
	margin-top:2px;
  }
  
  #nice-menu-1 ul li  a{
	background-color:#D8EBF6;
	color:#999999;
	display:block;
	height:17px;
	margin-top:0;
	padding-top:7px;
	width:12.3em;
  }
  
  #nice-menu-1 #menu-1772 ul {
	border:0 none;
	margin-left: 40px;
	margin-top:45px;
  }
  
  #nice-menu-1 #menu-1772 ul li {
	height: 25px;
	margin-top:2px;	
  }
  
  #nice-menu-1 #menu-1772 ul li  a {
	background:none repeat scroll 0 0 #004579;
	color:#999999;
	display:block;
	height:17px;
	margin-right:-5px;
	padding-top:7px;
	width:12.3em;
  }
  
  #nice-menu-1 #menu-1772 ul li:hover  a {
	background: #0072BC;
  }
  */
  #block-menu-primary-links {
	background:none repeat scroll 0 0 #FFFFFF;
	float:left;
	height:38px;
	margin-left:0;
	margin-top:-75px;
	*margin-top:-85px;
	*height: 48px;
	/*width:414px;*/
	width:395px;
  }
  
  #block-menu-primary-links .menu li {
	float: left;
	list-style-type: none;
	list-style-image: none;
  }
  
  #block-menu-primary-links .menu li  a{
	color: #94aab5;
	border-left:1px solid #94AAB5;
	border-right:0px;
	padding-right:3px;
	*padding-right:15px;
	padding-left: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:right;
	text-align:center;
	width:500px;
  }
  
  #footer-second {
	float:right;
	text-align:center;
	width:500px
  }
  
  #block-locale-0 {
	float: right;
	margin-top: -120px;
	*width: 300px;
  }
  
  #block-locale-0 ul li {
	list-style-type: none;
	list-style-image: none;
	float: right;
	padding-left:10px;
  }
   
  #sidebar-right .block-inner .title {
	color:#666666;
  } 
  
  
  #block-area_banner-0 {
	margin-right:13px;
	*margin-right:15px;
	padding-top:18px;
  }
  
  #block-area_banner-0 img {
	width: 969px;
  }
 /* 
  #nice-menu-1 #menu-1772 ul li ul {
	margin-top: -1px;
	margin-left: 0px;
  }
*/

ul.links.inline {
display:inline-block;
margin-top:10px;
width:740px;
}	

.ar #nice-menu-1 li {
width:92px;
}

.ar #nice-menu-1 ul li{
width:auto;
}

#nice-menu-1 ul li  a{
text-align:right;
}

.ku #nice-menu-1 .logo ul {
margin-left:141px;
margin-top:47px;
width:150px;
}

.ar #nice-menu-1 .logo ul {
margin-left:121px;
}

.ar #nice-menu-1 .first ul {
margin-left:85px;
}

.ku #nice-menu-1 li ul li ul{
margin-left:-3px;
width:155px;
}

.ar #nice-menu-1 li ul li ul{
margin-left:-3px;
width:155px;
margin-top:0;
}

.ku #nice-menu-1 #menu-505 a{
margin-right:-38px;
}

.ku #nice-menu-1 #menu-541 {
margin-left:192px;
padding-right:30px;
}

.ar #nice-menu-1 .first ul li ul{
margin-left:-3px;
}

#footer-hr hr {
float:left;
width:975px;
margin-left:-229px;
}

#views_slideshow_singleframe_main_1 .views-field-teaser{
height:124px;
margin-right:53px;
}

 .ar #nice-menu-1 li ul .first, .ku #nice-menu-1 li ul .first{
  background:none repeat scroll 0 0 white;
  height:25px;
  }
  
  .ar #nice-menu-1 li ul .last, .ku #nice-menu-1 li ul .last{
  background:none repeat scroll 0 0 white;
  height:25px;
  left:0;
position:relative;
  }
  
   .ar #nice-menu-1 li ul .last a,.ku #nice-menu-1 li ul .last a {
	background:none;
display:block;
height:17px;
margin-left:8px;
margin-right:-28px;
margin-top:0;
padding-right:20px;
padding-top:14px;
text-align:right;
  }
  
  .ar #nice-menu-1 li ul .first a,.ku #nice-menu-1 li ul .first a {
	background:none;
	display:block;
	/*height: 30px;*/
	margin-right:9px;
	margin-top:0;
	padding-top:15px;
	margin-left:0;
	height:17px;
  }
  
  .ku #nice-menu-1 li ul .first a:hover ,.ar #nice-menu-1 li ul .first a:hover,.ku #nice-menu-1 li ul .last:hover a , .ar #nice-menu-1 li ul .last:hover a  {
  background:none;
  }
  
  .ku #nice-menu-1 li ul .last a,.ar #nice-menu-1 li ul .last a{
  background:none;
  height:17px;
  }
  
  .ku #nice-menu-1 .last ul li a{
  background:none repeat scroll 0 0 transparent;
height:17px;
margin-right:0;
padding-top:7px;
width:141px;
  }
  
  .ku #nice-menu-1 .last:hover ul li a {
  background:white;
  }
  
  .ku #nice-menu-1 .last ul{
  margin-left:143px;
  }
  
  .ar #nice-menu-1 .last ul li a{
  background:none repeat scroll 0 0 transparent;
height:17px;
margin:0;
padding-right:5px;
padding-top:7px;
width:141px;
  }
  
  .ar #nice-menu-1 .last:hover ul li a {
  background:white;
  }
  
  .ar #nice-menu-1 .last ul{
  
  margin-left:159px;
  }
  
 #views_slideshow_singleframe_main_1 .views-field-field-slider-image-fid{
margin-top:-204px;
 }
  
