
/** Layout
---------------------------------
*  Using a negative margin technique, adapted from ZEN. The page is loaded by this order:
*  
*  1. Header
*  2. Content
*  3. Navigation menus
*  4. Sidebar Left
*  5. Sideabr Right
*	
*/

#page {
	width: 960px; /* edit to change the width of the page */
	margin: 0 auto; /* remove 'auto' and the width to switch to a fluid width */
}

/** LAYOUT RULES
---------------------------------
*  do not change if you're not sure you know what you're doing
*/

#content {
  float: left;
  width: 100%;
  margin-right: -100%;
  margin-top: 50px;
  padding: 0;
}
#content-header { text-align: center; margin-top: 5px;}
#content-header .titlebox { padding: 5px; border: 3px solid #999; font-family: Times, Georgia, serif; }

#content-header, 
#content-area { padding-left: 25px; }

.sidebar {
  float: left;
}
#sidebar-second {
  float: right;
}
#footer {
  float: none;
  clear: both;
}

/* Layout Helpers */

#header, #footer, .mission, .breadcrumb, .node {
  clear: both;
}
#search { padding: 10px 0; }
#logo-title { padding-top: 5px; text-align: center; }
#logo-title h1 { padding: 0; }
#logo-title a { color: #000; padding: 5px; }
#logo-title a:hover { color: #999;}
#logo-title img, #logo-title h1 a { border: 3px solid #fff; }

#name-and-slogan { font-family: Times, Courier, Georgia, serif; font-size: 1.4em; margin-bottom: 10px;}
#navigation { color: #000; font-weight: bold; font-size: 1em; }
#navigation a { color: #000; }
#navigation a:hover { color: #999; }

#content #node-7 ul { list-style-type: none;}
#content #node-7 ul.rtecenter { padding-left: 0; }

#content #node-2 img,
#content #node-3 img
 { margin: 10px 20px 20px 10px; }
 
 #content #node-3 h3 { color: #C81132; }

#content img { border: 4px solid #fff; }

#content .excerpt img { margin: 10px 5px; padding: 2px 1px; }

.view-news h2.title { background-color: #999; padding: 10px 5px; margin-bottom: 0; }
.view-news h2.title a { color: #000; } 
.view-news .content,
.node-type-story .content
 { margin-top: 10px; background-color: #fff; padding: 15px; }		
.view-news .views-row { border: 3px solid #fff; margin-bottom: 15px; }	

.view-news .links { background-color: #666; } 
.view-news .links a { color: #ccc; } 


.page-aggregator .feed-source .feed-image { float: left; margin-right: 10px; }
.page-aggregator .feed-item { border-top: 3px solid #000; clear: both;  }
.page-aggregator .feed-item .feed-item-title { background-color: #999; padding: 10px 5px; }
.page-aggregator .feed-item .feed-item-meta { background-color: #ccc; padding-left: 10px;}
.page-aggregator .feed-item a { color: #000; }

/** Sidebars width
---------------------------------
*  Changing the width of the sidebars is dead easy, just change the
*  values below corresponding to the sidebar you want to modify.
*  Make sure you keep negative values as negative values.
*  For example, if I want to increase the width of the left sidebar
*  to 300px, I would have to change each '190' to '300'.
*/

.two-sidebars .center,
.sidebar-left .center {
  margin-left: 190px;     /* LEFT value */
}
#sidebar-first {
  width: 190px;           /* LEFT value */
	margin-right: -190px;    /* negative LEFT value */
}
.two-sidebars .center,
.sidebar-right .center {
  margin-right: 205px;    /* RIGHT value */
}
#sidebar-second {
  width: 200px;           /* RIGHT value */
  margin-top: 50px;
 
  font-size: .8em;
}
#sidebar-second img { border: 4px solid #fff; }
/** Columns inner
---------------------------------
*  You can change the padding inside the columns without changing the
*  width of them by just usinbg the INNER div of each column
*/

.inner {
	padding: 0px;
}

/** Navigation styles
---------------------------------
*  The navigation is loaded after the content, so we need to make space
*  for it, equal to its height, so if you change the height of the navigation,
*  remember to adapt the margin top of the content and sidebars.
*/

#navigation {
  float: left;
  margin-left: 0;
  margin-right: -100%;
  padding: 0;
  width: 100%;
}
.with-navigation #content,
.with-navigation .sidebar {
  margin-top: 40px;        /* Navigation Height */
}
#navigation {
  height: 40px;            /* Navigation Height */
}

#primary { text-align: center; }