/* $Id: layout-fixed.css,v 1.11 2009/04/27 05:01:54 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
{
}



#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 ie6.css file
   * for the necessary IE5/IE6quirks hack to center a div.
   */
  margin-left: auto;
  margin-right: auto;
  width: 960px;
	padding-bottom:6px;
}

#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 */
	position:absolute; left:-1000em;
}

#skip-to-nav a:hover
{
  color: #000;
  text-decoration: none;
}

/*
 * Header
 */
#header
{
	/*height:229px;*/ /* height of image */
	/*border-bottom:1px solid #3d4c91;*/
}

#header-inner
{
}

#logo-title
{
}

#logo
{
  float: left;
}

#site-name
{
	position:absolute; left:-1000em;
}

#site-slogan
{
}

#search-box
{
}

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

#header-blocks .block-region{
	margin:0; padding:0;
}

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

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

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

#content-inner
{
	}

/*
 * 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: 2.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
{
   /* Set this to the same value as the navbar height above. */
}

#navbar-inner
{
}

#primary
{
}

#secondary
{
}

#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: 170px;
  margin-left: 30px;
  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;
  padding: 0;
}

/*
 * Sidebar-right
 */
#sidebar-right
{
  /*border:1px solid red;*/
	float: left;
  width:253px; 
  margin-left: 640px; /* 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. */
}

.two-sidebars #sidebar-right{
  width:160px; 
  margin-left: 770px; /* Width of content + sidebar-left. */
}

#sidebar-right-inner
{
  margin: 24px 20px 10px;
  padding: 0;
}

/*
 * Footer
 */
#footer
{
}

#footer-inner
{
}

/*
 * Closure
 */
 
#closure{
	color: #fff;
	clear: both;
	font-size: .78em;
	line-height:normal;
	margin: 0 auto; 
	text-align: left;
	width: 960px;
}
 
#closure-blocks /* See also the #page declaration above that this div shares. */
{
}

#closure p.left { float:left; padding-left:24px; }
#closure p.right { float:right; width:225px; }

/*
 * Markup free clearing (See: http://www.positioniseverything.net/easyclearing.html )
 */
.clearfix:after
{
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

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





blockquote {
    border-left: medium none;
    font-size: 1.05rem;
    margin-bottom: 0;
}
blockquote p {
    font-size: 1.05rem;
}
.pullquote, .pullquote_marks {
    border: medium none;
    color: #707588;
    font-family: "Archivo Narrow","Roboto Condensed","nimbus-sans-condensed","Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 120%;
    overflow: hidden;
    padding-top: 25px;
}
.pullquote_marks::before {
    content: "“";
    float: left;
    font-size: 92px;
    height: 54px;
    line-height: 134%;
    margin-top: -37px;
    width: 40px;
}
.pullquote_marks::after {
    content: "”";
    display: inline;
}
.pullquote_attr {
    clear: both;
    margin-top: -20px;
    padding-bottom: 20px;
}
.pullquote_attr span {
    color: #707588;
    display: block;
    font-family: "Archivo Narrow","Roboto Condensed","nimbus-sans-condensed","Helvetica Neue",Helvetica,Arial,sans-serif;
    font-weight: 700;
    margin-left: 50%;
    text-indent: -0.65em;
    width: 50%;
}
.pullquote_attr span::before {
    content: "– ";
}
.infobox {
    background: #dddfe6 none repeat scroll 0 0;
    margin: 40px 0;
    padding: 25px;
}
.infobox h3 {
    margin-top: 0 !important;
}
.infobox .caption p {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    color: rgba(28, 41, 87, 0.75);
    padding: 5px 0 15px;
}
.infobox p:last-child {
    margin-bottom: 0;
}
ul.infobox {
    padding: 25px 25px 25px 40px;
}
.infobox-left {
    background: #dddfe6 none repeat scroll 0 0;
    float: left;
    margin: 0 15px 15px 0;
    padding: 25px;
    width: 305px;
}
.infobox-left h3 {
    margin-top: 0 !important;
}
.infobox-left .caption p {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    color: rgba(28, 41, 87, 0.75);
    padding: 5px 0 15px;
}
.infobox-left p:last-child {
    margin-bottom: 0;
}
.infobox-right {
    background: #dddfe6 none repeat scroll 0 0;
    float: right;
    margin: 0 0 15px 15px;
    padding: 25px;
    width: 305px;
}
.infobox-right h3 {
    margin-top: 0 !important;
}
.infobox-right .caption p {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    color: rgba(28, 41, 87, 0.75);
    padding: 5px 0 15px;
}
.infobox-right p:last-child {
    margin-bottom: 0;
}
.infobox-left img, .infobox-right img {
    height: auto;
    margin: 0 -25px;
    max-width: 305px;
}
.infobox-left img:first-child, .infobox-right img:first-child {
    margin-top: -25px;
}
.infobox-left .img-full, .infobox-right .img-full {
    display: inline;
}
.button_a {
    background: #ff6600 none repeat scroll 0 0;
    border: medium none;
    color: #fff;
    font-family: "Archivo Narrow","Roboto Condensed","nimbus-sans-condensed","Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.025em;
    padding: 4px 8px;
    text-transform: uppercase;
}
.node-type-simplenews .field-image img {
    width: 155px !important;
}
.node-type-simplenews .views-field-php h3 {
    margin-top: 0 !important;
}
@media (min-width: 480px) {
ul.two-column {
    min-width: 320px;
}
ul.two-column li {
    float: left;
    margin-bottom: 5px;
    margin-right: 2%;
    width: 48%;
}
ul.two-column li:nth-of-type(2n+1) {
    clear: both;
}
}
@media (min-width: 768px) {
.breadcrumb {
    padding: 0 15px 0 20px;
}
.img-inline-right {
    height: auto !important;
}
.img-inline-left {
    height: auto !important;
}
.img-narrow {
    height: auto;
    width: 169px;
}
.img-landscape {
    height: auto;
    width: 305px;
}
.img-left {
    float: left;
    margin: 0 15px 20px 0;
}
.img-right {
    float: right;
    margin: 0 0 15px 20px;
}
.infobox {
    margin-top: 0;
}
.infobox-left {
    margin: 0 25px 25px 0;
}
.infobox-right {
    margin: 0 0 25px 25px;
}
}