/* $Id: layout-fixed.css,v 1.1.2.7 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
  {
    margin: 0;
    padding: 0px 10px;
  }

  #page
  {
    /*
     * 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;
    padding-right: 15px;
    padding-left: 15px;
    padding-bottom: 15px;
    width: 940px;
  }

  #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: 120px; */
  }

  #header-inner
  {
  }

  #logo-title
  {
  }

  #logo
  {
    padding: 15px 0px 30px 20px;
    margin: 0;
  }

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

  #site-slogan
  {
  }

  #header-blocks
  {
    clear: both; /* Clear the logo */
  }
  
  #footer-links ul,
  #header-blocks ul /* Primary and secondary links */
  {
    margin: 0;
    padding: 12px 0 0 20px;
    text-align: left;
  }

  #footer-links li,
  #header-blocks li /* A simple method to get navbar links to appear in one line. */
  {
    float: left;
    padding: 0 20px 0 0;
  }


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

  #main-inner
  {
  	padding-bottom: 40px;

  }

/** content **/
  #content,
  .two-sidebars #content
  {
    
    float: left;
    width: 470px; /*/> Trial and error */
    margin-left: 160px; /* The width of #sidebar-left */
    margin-right: -640px; /* Negative value of #content's width + left margin. */
    padding: 0; /* DO NOT CHANGE. Add padding or margin to #content-inner. */
  }

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

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

  .no-sidebars #content
  {
    width: 940px;
    margin-left: 0;
    margin-right: -980px; /* Negative value of #content's width + left margin. */
    padding: 20px 0;
  }
  
  .no-sidebars #content h2
  {
  	padding: 20px 0;
  }

  .sidebar-left #content-inner,
  .sidebar-right #content-inner
  {
  	/* padding-left: 20px; */
  	margin: 20px 0 	0 0;
  }
  
  .sidebar-right #content-inner #shareContent
  {
  	width: 140px;
  	float: right;
  	/* background-color: blue; */
  }
  
  .sidebar-right #content-inner #storyContent
  {
  	width: 460px;
  	margin-right: 20px;
  }
  
  .sidebar-right #storyContent .submitted
  {
  	display: none;
  }
  
  .sidebar-right #content-header
  {
  }
  
  .sidebar-right #content-area .content
  {
  	/* padding-top: 20px; */
  }
  
  .sidebar-right #originalSource
  {
  	font-size: 11px;
  	font-weight: bold;
  	padding-bottom: 10px;
  }
  
  .two-sidebars #content-inner
  {
    margin: 0;
    padding: 20px 10px 0 0;
  }
  
  #content-inner
  {
  	padding-bottom: 40px;
  	overflow: hidden;
  }
  #content-inner h1
  {}

/** 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: 40px;  /*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: 40px; /* Set this to the same value as the navbar height above. */
  }
  
  .front #content,
  .front #sidebar-right
  {
  	margin-top: 30px;
  }

  #navbar-inner
  {
  	
  }

  #search-box
  {
    width: 250px;
    margin-right: -250px; /* Negative value of #search-box's width. */
    float: left;
  }
  
  #search-block-form .container-inline
  {
  	padding-top: 10px;
  }

  #primary
  {
    display: block;
    margin: 0;
  	padding:0;
  }

  #secondary
  {
    margin-left: 20px; /* Width of search-box */
    display: block;
    background-color: red;
  }
  
  #block-menu-128,
  #block-menu-123,
  #block-menu-115,
  #block-menu-81, 
  #block-menu-84,
  #block-menu-88,
  #block-menu-93,
  #block-menu-98
  {
  	height: 40px;
  	display: block;
  	margin: 0;
  	padding:0 0 0 20px;
  	border-bottom: 1px solid #F1F1EC;
  }
  
  #block-menu-128 ul,
  #block-menu-123 ul,
  #block-menu-115 ul,
  #block-menu-81 ul, 
  #block-menu-84 ul,
  #block-menu-88 ul,
  #block-menu-93 ul,
  #block-menu-98 ul
  {
  	/*
height: 20px;
  	width: 700px;
  	margin: 0px 0px 0px 20px;
*/
  }
  
  #block-menu-128 li,
  #block-menu-123 li,
  #block-menu-115 li,
  #block-menu-81 li, 
  #block-menu-84 li,
  #block-menu-88 li,
  #block-menu-93 li,
  #block-menu-98 li
  {
  	padding: 0 20px 0 0;
  	margin-top: 12px;
  }
  
  #block-menu-128 li a,
  #block-menu-123 li a,
  #block-menu-115 li a, 
  #block-menu-81 li a, 
  #block-menu-84 li a,
  #block-menu-88 li a,
  #block-menu-93 li a,
  #block-menu-98 li a
  {
  	color: #343230;
  	text-transform: uppercase;
  	text-decoration: none;
  }

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

/** sidebar-right **/
  #sidebar-right
  {
    float: left;
    width: 320px;
    margin-left: 620px; /* Width of content + sidebar-left. */
    margin-right: -940px; /* 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: 40px 0 0 20px;
    padding: 0;
  }
  
  .front #sidebar-right-inner
  {
    margin: 30px 0 0 20px;
    padding: 0;
  }

/** footer **/
  #footer
  {
  }

  #footer-inner
  {
  	overflow: auto;
  	padding: 20px;
  }

  #closure-blocks
  {
  	width: 940px;
  	margin: 0 auto;
  	font-size: 11px;
  }

/** 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 */
  }
  
  #leadersContent
  {
  	margin: 0 20px 0 20px;
  }
  
  #leadersContent .leadersBlock,
  #leadersContent .leadersBlock ul
  {
  	margin: 0;
  	padding: 0;
  }
  
  #leadersContent .leadersBlock
  {
  	float: left;
  	width: 210px;
  	margin-right: 20px;
  }
  
  #leadersContent .last
  {
  	margin-right: 0;
  }
  
  /* Front Page Styles */

  .front #navbar
  {
  	height: 40px;
  }
  
  #aboutImageBar
  {
  	overflow: auto;
  }
  .front #content-bottom
  {
  	padding: 0 20px;
  }
  .node-type-group_post #main-inner,
  .section-og #main-inner,
  .node-type-group #main-inner,
  .page-content-society-vineyard-scholars-0 #main-inner,
  .page-content-get-svs-updates #main-inner
  {
  	padding-top: 40px;
  }

#maptop {
	height: 700px;
	width: 940px;
}
#mapmiddle {
	height: 700px;
	width: 940px;
	margin-top: -130px;
}