/* $Id: layout-fixed.css,v 1.17 2009/11/05 12:09:53 johnalbin Exp $ */

/**
 * @file
 * Layout Styling (DIV Positioning)
 *
 * 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 {
}


#feedback {
  Position: absolute;
  top: 150px;
  writing-mode: tb-rl;
}

#page-wrapper,
.region-page-closure {
  /*
   * 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 ie6.css file
   * for the necessary IE5/IE6quirks hack to center a div.
   */
  margin-left: auto;
  margin-right: auto;
  width: 1030px;
}

#page {
}

/*
 * Header
 */
#header {
}

#header .section {
margin:0 20px 10px;
}

#header-right
 {
  float: right;
  margin-top: 7px;
}

#header-right div.header-liks
 {
  text-align: right;
  color: white;
}

#header-right a
 {
  color: white;
  margin-left: 15px;
}

#header-right a:hover, a:focus
 {
  text-decoration: none;
}


#search-box {
  float: right;
  margin-top: 5px;
}

.region-header {
  clear: both; /* Clear the logo */
}

/*
 * Main (container for everything else)
 */
#main-wrapper {
}

#main {
}

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

.sidebar-first #content {
  clear:both;
  float:left;
  width:625px;

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

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

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

#content .section {
  margin: 0;
  padding: 0;
}

/*
 * Navigation
 */
#navigation {
  float: left; /* LTR */
  /*width: 100%; */
  margin-left: 0; /* LTR */
 /* margin-right: -100%; /* LTR */ /* Negative value of #navigation's width + left margin. */
  padding: 0; /* DO NOT CHANGE. Add padding or margin to #navigation .section. */
  height: 42px; /* The navigation can have any arbritrary height. We picked one
                    that is the line-height plus 1em: 1.3 + 1 = 2.3
                    Set this to the same value as the margin-top below. */
}

.with-navigation #content,
.with-navigation .region-sidebar-first,
.with-navigation .region-sidebar-second {
  margin-top: 0em; /* Set this to the same value as the navigation height above. */
}

#navigation .section {
}

#navigation ul /* Primary and secondary links */ {
  list-style-type: none;
}

#navigation ul.om-menu {
  height: 41px;
}

#navigation ul.om-menu > li /* A simple method to get navigation links to appear in one line. */ {

  float:left;
  margin:0;
  padding:0;
  position:relative;
  background: none
}

#navigation li.om-leaf {
  height: 41px;
}

#navigation a.menusmalllink {
    color: #5C95A0;
    cursor: pointer;
    font-family: arial,serif;
    font-size: 13px;
}



#navigation ul.om-menu > li > span > a {
  color:#005271;
  font-family:Georgia,serif;
  font-size:16px;
  height: 0;
  line-height: 0;
  margin: 0;
  padding: 0;
  display: inline;
  float: none;
}

#navigation ul.om-menu > li.active-trail, #navigation ul.om-menu > li.active {
  background:url("../images/nav_btn_right_active_bg.png") no-repeat scroll 100% 1px white;
}

#navigation ul.om-menu > li.active-trail > span, #navigation ul.om-menu > li.active > span {
  background:url("../images/nav_btn_left_active_bg.png") no-repeat scroll 0 1px transparent;
}

#navigation ul.om-menu > li > span {
  background: url("../images/nav_btn_left_bg.png") no-repeat scroll right 1px transparent;
  display:block;
  height:28px;
  padding:13px 28px 0;
}


/*
 * First sidebar
 */
.region-sidebar-first {
  float:right;
  width:296px;

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

.region-sidebar-first .section {
  margin: 0 0 0 0; /* LTR */
  padding: 0;
}

/*
 * Second sidebar
 */
.region-sidebar-second {
  float: left; /* LTR */
  width: 200px;
  margin-left: 760px; /* LTR */ /* Width of content + sidebar-first. */
  margin-right: -960px; /* LTR */ /* Negative value of .region-sidebar-second's width + left margin. */
  padding: 0; /* DO NOT CHANGE. Add padding or margin to .region-sidebar-second .section. */
}

.region-sidebar-second .section {
  margin: 0 0 0 20px; /* LTR */
  padding: 0;
}

/*
 * Footer
 */
#footer {
}

#footer .section {
}

/*
 * Closure
 */
.region-page-closure /* See also the #page-wrapper declaration above that this div shares. */ {


  padding-bottom:36px;
  padding-top:10px;
}

#block-block-16 {
    margin: 0px 20px;
    padding: 0px 20px 10px 20px;
}

.region-page-closure div.content {
  background-color: transparent;
  border: none;
  font-size: 13px;
}

.region-page-closure li {
  padding-right:25px;
  Margin-bottom:5px;
  display: block;
}

.region-page-closure a {
  color:#005271;
}

.region-page-closure table {
}



/*
 * Prevent overflowing content
 */
#header,
#content,
#navigation,
.region-sidebar-first,
.region-sidebar-second,
#footer,
.region-page-closure {
  overflow: visible;
  word-wrap: break-word; /* A very nice CSS3 property */
}

#navigation {
  overflow: visible;
  margin-top: 10px;
  float: right;
}

/*
 * If a div.clearfix 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-wrapper div.
 */
/*
#page-wrapper {
  overflow-y: hidden;
}
*/
