/* $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 {
	margin: 0;
	padding: 0;
	text-align: center;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #333333;
	background: #ffffff url(/drupal/sites/default/files/gradient.jpg) left top repeat-x;
}

H1, H2, H3, H4	{
	font-family: arial;
	}


H1	{
	font-size: 2em;
	}

H1.title	{display: none;}

  #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: 1000px;
  }
  
H2 {clear: both;}

A {
	color: #622423;
}

A:hover	{text-decoration: underline;}

IMG.left	{
	float: left;
	margin: 0 15px 5px 0;
	}
	
P	{line-height: 1.5em}
	
  .clear	{clear: both;}

  #page-inner
  {
  text-align: left;
  }

  #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
  {
    display: none;
  }

  #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;
  	height: 180px;
  	background: url(/drupal/sites/default/files/header_bg.png) no-repeat #ddd;
	position: relative;
	}

#header h1 {
	width: 345px;
	height: 32px;
	position: absolute;
	top: 36px;
	left: 36px;
	margin: 0;
	padding: 0;
}

#header h2 {
	margin: 0;
	padding: 0;
	position: absolute;
	top: 68px;
	left: 36px;	
}

#header h2 A {
	font-size: 22px;
	color: #243f60;
	letter-spacing: -1px;
}


#header ul {
	margin: 0;
	padding: 0;
	float: left;
	display: inline;
	list-style: none;
	position: absolute;
	bottom: 9px;
	left: 0px;
}

#header ul li, #header ul li a {
	margin: 0;
	padding: 0;
	float: left;
	display: inline;
	color: #f8f7f2;
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
	text-decoration: none;
}

#header ul li {
	border-right: 1px solid #f8f7f2;
	padding: 0 32px;
}

#header ul li.last {
	border-right: none;
}

  #header-inner
  {
  }



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

/** main (container for everything else) **/
  #main
  {
    position: relative;
    background: url(/drupal/sites/default/files/main_bg.jpg) left top repeat-x #fff;
  }

  #main-inner
  {
  }

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

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

  .sidebar-right #content
  {
    width: 700px;
    margin-left: 0;
    margin-right: -700px; /* 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 40px 20px 20px;
  }

/** 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: 1.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: 1.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;
  }

.intro {
	width: 635px;
	height: 340px;
	background: url(/drupal/sites/default/files/intro_bg.png) left top no-repeat;
	margin: 22px 0 0 0;
	padding: 0;
}

.intro h3 {
	width: 580px;
	font-family: Times, "Times New Roman", serif;
	font-size: 20px;
	font-weight: normal;
	color: #243f60;
	padding: 20px 0 15px 13px;
}

.intro img {
	float: left;
	margin: 0 16px 0 13px;
	padding: 0;
}

.intro p {
	margin: 0 33px 0 0;
	padding: 0;
	line-height: 1.5em;
}

.targeted {
	margin: 36px 0 0;
}

.targeted .tftLogo {
	float: left;
	display: inline;
	width: 219px;
	height: 104px;
	margin: 0 10px 0 33px;
}

.targeted p {
	margin: 12px 0 0;
	line-height: 1.4em;
}

.targeted em {
	color: #243f60;
}

.targeted .desc {
	clear: both;
	margin: 26px 0 0 33px;
}

.targeted .desc a {
	font-weight: bold;
	font-size: 11px;
}




/** sidebar-right **/
  #sidebar-right
  {
    float: left;
    width: 300px;
    margin-left: 700px; /* Width of content + sidebar-left. */
    margin-right: -990px; /* 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;
    padding: 0;
  }



.media {
	width: 284px;
	margin-top: 20px;
	padding: 0;
	background: url(/drupal/sites/default/files/right_col_box_bg.png) left top no-repeat;
	font-size: 11px;
}

.media-inner, .research-inner {padding: 2px 10px 0 15px;}

A.seeAll	{
	display: block;
	text-align: right;
	font-weight: bold;
	color: #243f60;
	}

.research {
	width: 284px;
	height: 151px;
	background: url(/drupal/sites/default/files/research_bg01.png) left top no-repeat !important;
	background: url(/drupal/sites/default/files/research_bg.gif) left top no-repeat;	
	margin: 18px 0 0px;
	padding: 0;
}

.research p {
	font-weight: bold;
	font-size: 11px;
}


.research p.seeAll {
	font-style: italic;
	font-size: 10px;
	margin-top: 38px;
}

.research p.seeAll a {
	color: #ddd9c3;
}

.pcec {	
	width: 284px;
	height: 113px;
	background: url(/drupal/sites/default/files/pcec_bg.png) left top no-repeat;
	margin: 18px 0 0px;
	padding: 0;
	float: left;
	display: inline;
	clear: both;	
}

.pcec p {
	margin: 10px 0 0;
	padding: 0 0 0 4px;
}

.pcec p.pcecLogo {
	margin-top: 26px;
}
.pcec p a {
	color: #333333;
}

/* CME Meetings section */
.cmeHeader {
	padding-top: 16px;
}

/* Media and Publications section */
.mediaLists {
	padding-left: 14px;
}

/* footer section */

#footer {
	width: 1000px;
	margin: 0;
	padding: 26px 0;
	text-align: center;
	font-size: 10px;
}

#footer p {
	margin: 0 0 12px;
	padding: 0;
}

.copyright {
	color: #666666;
}

  #footer-inner
  {
  }

.block-user    {
	width: 284px;
	height: 118px;
	margin-top: 20px;
	background: url(/drupal/sites/default/files/login_bg.gif) no-repeat;
	}

.block-user .content    {padding: 10px 5px 0 5px; _padding: 5px 5px 0 5px;}

.block-user .content LABEL  {display: inline;}

.block-user .content .item-list  {margin-top: 5px;}

.block-user .form-item  {margin: 6px 0 4px 0;}

.block-user H2    {font-size: 12px; margin-bottom: 0; padding: 10px 0 0 12px;}

.block-user UL    {margin-top: 0;}

.block-user UL LI    {font-size: 10px;}

/** 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;
  }
  */
