/* $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 {
font: Palatino, Georgia, Utopia, serif; 
font-size: 14px; /* ++++++ */
}

#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: 1000px;/* 1050px; /* page width */
}


#page {

}


/****** Header ******/
#header {
 background-color: #FFFFFF;
 padding: 0 0 1px 0;
}

#header .section {
 border-bottom: 1px solid #000000;
 padding-bottom: 3px;
}

#logo /* Wrapping link for logo */ { 
  float: left; /* LTR */
  margin: 10px 0 30px 15px;
  
}

#logo img {
  vertical-align: text-bottom;   
  padding: 10px;
}

#header .clearfix:after {
  /*content: ".";*/
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

#name-and-slogan /* Wrapper for website name and slogan */ {
}

/* Header Quotation */
#header-quotation {
float: left;
display: inline;

}

#block-block-19 {
text-align: center;
color: #2F4B80;
font-size: 15px;
font-style: Times, serif;
font-style: italic;
float: left;
padding: 0;
margin: 0;
}

#block-block-19 .content {
margin: 7px 0 0 0;
padding: 9px 30px 30px 30px;
width: 500px;
}

/* Networking Links */
#block-block-17 {
font-size: 0.9em;
float: right;
margin: 0;
padding: 10px 10px 0 0;
width: 150px;
clear: right;
}

#block-block-17 ul {
font-size; 0.2em;
float: left;
}

#block-block-17 li {
text-decoration: none;
margin: 0;
padding: 0;
list-style:none;
display: inline;
}

#block-block-17 a {
text-decoration: none;
}

h1#site-name,
div#site-name /* The name of the website */ {
  margin: 0;
  font-size: 2em;
  line-height: 1.3em;
}

#site-name a:link,
#site-name a:visited {
  color: #333366;
  text-decoration: none;
}

#site-name a:hover,
#site-name a:focus {
  text-decoration: underline;
}

#site-slogan /* The slogan (or tagline) of a website */ {
}

.region-header /* Wrapper for any blocks placed in the header region */ {
}

/*
 * Main (container for everything else)
 */
#main-wrapper {
  position: relative;
  
  /*width: 100%; /* FIX FOR NAVIGATION OVERLAPPING CONTENT*/
}



/*
 * Content
 */
 
/*#content {
margin-left: 200px;
}*/


#content,
.no-sidebars #content {
  
  float: left; /* LTR */
  width: 1000px;/*1000px; */
  margin-left: 0; /* LTR */ 
  margin-right: -1000px; /* LTR */ /* Negative value of #content's width + left margin. */
  padding: 0; /* DO NOT CHANGE. Add padding or margin to #content .section. */
}
	
.sidebar-first #content {
  width: 750px;
  margin-left: 175px; /* LTR */ /* The width of .region-sidebar-first. */
  margin-right: -1000px; /* LTR */ /* Negative value of #content's width + left margin. */

}

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

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

#content .section {
  /* --- main content area --- */
  /*margin: 20px 10px 0 -20px;  BLANK */
  /* padding: 0px 30px 100px 10px; */

}

/*
 /* PRIMARY LINKS */
 
 
#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: 30px; /* 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. */
  /*border-top: 5px solid #000000;
  border-bottom: 1px solid #999999;*/
  
}

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

/* PRIMARY LINKS */
#navigation .section a:visited {
 
}



#navigation .section {
 background-color: #C6D7FB;
 text-transform: uppercase;
 text-indent: 30px;
 padding: 0px;
 border-top: 1px solid #000000;
 
}


#navigation ul /* Primary and secondary links */ {	
  /*margin: 0;
  padding: 0;
  text-align: left;  LTR */
}

#navigation li /* A simple method to get navigation links to appear in one line. */ {
  font-size: 1em;
  color: #333333;
  letter-spacing: 0.1em;
  float: left; /* LTR */
  padding: 7px 5px 20px 11px;
  text-align: center;
  
  }
 
#navigation li a {color: #333333; text-decoration: none; }
#navigation li a:hover, 
#navigation li a:active {width: 100px; }
#navigation li a:visited {color:#333333;}
/*
 * First sidebar
 */

/* ------------ NAVIGATION BAR ---------------*/

.region-sidebar-first {
  float: left; /* LTR */
  /*width: 165px; /* 200px */
  /* margin-left: 0; /* LTR */ 
  margin-right: -750px; /*-300px 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 0px 0px 10px; /* LTR */
  padding: 20px 0 0 0;
 
}

/*
 * Second sidebar
 */
.region-sidebar-second {
  float: left; /* LTR */
  /*width: 200px; */
  
  margin-left: 750px; /* LTR */ /* Width of content + sidebar-first. */
  margin-right: -1000px; /* 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: 20px 0 0 10px; /* LTR */
  padding: 0;
}

/* Closure */
.region-page-closure /* Wrapper for any blocks placed in the closure region */ {
/*padding: 20px 0 35px 0;
background-color: #FFFFFF;
border-right: 1px solid #CCCCCC;
border-left: 1px solid #CCCCCC;
border-top: 3px solid #CCCCCC;*/
border-bottom: 1px solid #CCCCCC; 
text-align: center;
width: 1000px;
}

.region-page-closure .content {
padding: 30px 0 0 0;
}

.region-page-closure h3 {
/*font-family: Palatino, "Palatino Linotype", Georgia, serif;
font-size: 1em;
font-weight: 700;
text-indent: 215px;
width: 1050px;*/
}
.region-page-closure p {
/*font-family: Palatino, "Palatino Linotype", Georgia, serif;arti
margin: 0 20px 0 200px;
padding-left: 265px;
line-height: 1.5em;*/

}
.region-page-closure a {
/*text-decoration: none;
color: #003366;
font-weight: 500;*/
}

/* ++++++++++++++++++++++ */

/*
 * 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: hidden; /* May need to be removed if using a dynamic drop-down menu */
}

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


/* --- FRONT PAGE --- */

.front-postcategory {
font-family: Palatino, "Palatino Linotype", Georgia, serif;
font-size: 0.85em;
letter-spacing: 0.15em;
color: #6699CC;
text-transform: uppercase;
margin: 5px 0 0 0;
padding: 0px 0 5px 0;
clear: both;
}

#block-views-frontpage_view-block_1 .views-field-name,
#block-views-frontpage_view-block_1 .views-field-field-newsupdates-content-value,
/* #block-views-frontpage_view-block_1 .views-field-field-postauthor-nid, */
/* #block-views-frontpage_view-block_1 .views-field-field-teaser-value, */
/* #block-views-frontpage_view-block_1 .views-field-title a, */
#block-views-frontpage_view-block_1 .views-field-comment-count,
#block-views-frontpage_view-block_1 .views-field-view-comment 
{
margin: 0px 0 0px 70px;
width: 455px; /******/
}

#block-views-frontpage_view-block_1 .frontpage-author {
margin: 0 0 0 70px;
padding: 5px 0 0 0;
}

#block-views-frontpage_view-block_1 .commentcount {
color: #6699CC;
margin: 0;
padding: 0;
}

#block-views-frontpage_view-block_1 .views-field-title .field-content a {
color: 999999;
}

/* Title */
#block-views-frontpage_view-block_1 .views-field-title a {
font-family: Palatino, "Palatino Linotype", Georgia, serif;
color: #003366;
font-size: 1.2em; /*****/
letter-spacing: 0.1em;
font-weight: bold;
text-decoration: none;
width: 455px;

}
#block-views-frontpage_view-block_1 .views-field-title .field-content {
width: 400px;
text-align: left;
}

#block-views-frontpage_view-block_1 .views-field-title a:hover {
color: #336699;
text-decoration: underline;
}

#block-views-frontpage_view-block_1 {
border: none;
margin: 0px 0px 0 0;
/* width: 500px; */
/*width: 100%;*/
}

/* .views-field-field-postauthor-nid-1 .postauthor{
margin: 15px 0 0 70px;
padding: 0;
} */
 
/* Front Page content */
#block-views-frontpage_view-block_1 .views-field-field-newsupdates-content-value {
border-bottom: 1px solid #999999;
padding: 0 0 20px 0;
}


#block-views-frontpage_view-block_1 .view-content {
/*background-color: #FFFFFF;*/
width: 455px;
font-family: Palatino, "Palatino Linotype", Georgia, Utopia, serif;
font-size: 1em;
line-height: 1.65em;
padding: 0 0 0 10px;
}

/* Front Page teaser content */
#block-views-frontpage_view-block_1 .views-field-field-teaser-value {
margin: 0px 0 45px 70px;
width: 405px; /******/
}

#block-views-frontpage_view-block_1 img {
border: none;
}

#block-views-frontpage_view-block_1 .views-field-field-teaser-value .field-content {

}

#block-views-frontpage_view-block_1 .views-field-view-comment {
float: left;
padding: 0 2px 0 0; 
}

#block-views-frontpage_view-block_1 .views-field-comment-count {
font-size: 0.9em;
text-decoration: none;
}

#block-views-frontpage_view-block_1 .views-field-comment-count a {
text-decoration:none;
}

#block-views-frontpage_view-block_1 .views-field-comment-count a:hover {
text-decoration: underline;
}

.P {
/* border-right: 1px solid #999999;
border-left: 1px solid #999999; */
color: #999999;
margin: -30px 20px 0 0px;
padding: 0;
text-align: center;
width: 50px;
float: left;
clear: both;
} 


.m {
font-family: Palatino, "Palatino Linotype", Georgia, serif;
font-size: 1em;
/*background-color: #E1E1E1;*/
}

.d {
font-size: 1.2em;
border-bottom: 1px dotted #999999;
/*background-color:  #E1E1E1;*/
}
.y {
font-size: 0.8em;
border-bottom: 1px dotted #999999;
}


/* ARTICLE CONTENT AREA */



/* --- ARTICLE CONTENT --- */
.field-field-genre {
font-family: Palatino, "Palatino Linotype", Georgia, Utopia, serif;
text-align: center;
}
.posttitle {
font-family: Palatino, "Palatino Linotype", Georgia, Utopia, serif;
font-size: 1.5em;
color: #003366;
letter-spacing: 0.1em;
padding-top: 5px;
margin-top: 5px;
clear: both;

}
.postauthor {
font-size: 1.1em;
line-height: 0;
text-decoration: none;
color: #0066CC;
font-style: italic;
text-align: left;
margin: 25px 0 35px 0;
}

.postauthor a {
color: #0066CC;
text-decoration: none;
}

.postauthor a:hover{
text-decoration: underline;
color: #0066CC;
}

.post-authordate {
display: inline;
margin: 25px 0 50px 0;
}

.postdate {
color: #999999;
font-size: 1.1em;
line-height: 0;
text-decoration: none;
text-align: left;
}

#coteaser {
font-family: Palatino, "Palatino Linotype", Georgia, serif;
text-align: left;
font-weight: bold;
font-size: 1em;
line-height: 1.4em;
margin: 45px 0 30px 0;

}

#articlecontent {
font-family: Palatino, "Palatino Linotype", Georgia, Utopia, serif;
font-size: 1em;
line-height: 1.9em;
width: 510px;
}

.postauthorbio {
clear: both;
}

.endimg {
padding: 0px 10px 0px 2px;
background: url(./../images/endimg.gif) no-repeat left ;
line-height: 1em;
}

.pullquote {
font-size: 1.2em;
font-style: italic;
font-weight: bold;
color: #000000;
border-top: 3px double  #333333;
border-bottom: 1px solid #333333;
padding: 20px 10px 20px 10px;
}

.postcategory, 
.postcategory a, 
.postcategory .links {
font-family: Palatino, "Palatino Linotype", Georgia, serif;
font-size: 0.95em;
letter-spacing: 0.15em;
color: #6699CC;
text-transform: uppercase;
margin: 7px 0 0 0;
padding: 0px 0 2px 0;
float: left;
text-decoration: none;
}


/*.articlefile {
font-size: 0.9em;
color: #333333;
text-transform: uppercase;
letter-spacing: 0.1em;
margin: 0;
padding-top: 10px;
text-indent: 10px;

width: 300px;
float: left; 
clear: right;
position: relative;
left: 0px;
top: 15px;
}
*/


#articlegroup {
/* border-top: 2px solid #999999; */
margin: 0px 0 0 0px;
padding: 0 10 50 0px;
}
    
#content-area .title {
color: #000000;
font-family: Palatino, "Palatino Linotype", Georgia, serif;
font-weight: bold;
font-size: 1em;
letter-spacing: 0.1em;
}

#content-area strong {
color: #000000;
font-family: Palatino, "Palatino Linotype", Georgia, serif;
font-size: 1.1em;
font-weight: bold;
padding-bottom: 50px;
}

blockquote {
font-size: 1.1em;
font-style: italic;
color: #999999;
border-left: 3px solid #CCCCCC;
padding: 0 0 0 5px;
line-height: 1.5em;
}


.editorslabel {
font-size: 1.1em;
font-weight: bold;
}

.editorsnote {
font-size: 1.1em;
font-style: italic;
clear: both;
}

/* Article Image */

#articlecontent img {
float: left;
border: none;
/*1px solid #CCCCCC;*/
/*width: 250px;
height: 321px;*/
margin: 3px 10px 10px 0px;
}

#articlecontent .articleimg {
border: none;
margin: 3px 100px 10px 0px;
}

/* Article Search */
.articlesearch-title {
font-family: Palatino, "Palatino Linotype", Georgia, serif;
color: #0A3A70;
font-size: 1.5em;
letter-spacing: 0.01em;
font-weight: bold;
margin-left: 0px;
padding: 0;
text-decoration: none;
}

/* About */
#node-2 {
width: 500px;
}

#node-2 .intro {
font-size: 1.2em;
width: 250px;
}

#node-2 .content img {
float: right;
border: 1px solid #CCCCCC;
width: 250px;
height: 321px;
margin: 0 10px 10px 100px;
padding: 0;
clear: right;
}

#node-2 .content .rule {
border-top: 1px solid #333333;
width: 200px;
margin: 2px 0 -20px 0;
padding: 0;
}

#aboutcontent {
font-size: 1.05em;
line-height: 1.75em;
width: 250px;
}

#aboutcontent em {
font-size: 1.3em;
}

#aboutcontent a {
text-decoration: none;
}

/* ABOUT */

.testimonial {
font-size: 1.2em;
float: right;
clear: both;
width: 200px;
margin: 0 0 20px 45px;
padding: 0;
}

.testimonial .quote {
font-size: 1.01em;
color: #3366CC;
margin: 0;
padding: 0;
line-height: 1.5em;
}

.testimonial dt {

}

.testimonial dd {
text-indent: 16.75px;
font-size: 0.75em;
font-style: italic;
margin: 0;
}

div:before {
color: #CC3300;
background-color: #6699CC;
font-size: 700px;
}

.beginQuote {
color: #99CCFF;
font-family: Georgia, serif;
font-size: 3em;
float: left;
margin: 0px 0px 0 -22px;
}

.endQuote {
color: #99CCFF;
font-size: 1.2em;
font-family: Georgia, serif;
margin: 0;
padding: 0;
}


.field-title h2 { 
font-size: 1em;
font-family: Palatino, Georgia, Utopia, serif;
color: #003366;
text-transform: uppercase;
line-height: 1.5em;
}

/* EDITORS & STAFF */

#node-32 .content a {
font-size: 1em;
font-weight: 500;
color: #006699;
text-decoration: none;
}

#node-32 .content a:hover {
color: #000033;
text-decoration: underline;
}

#node-32 .content em {
font-weight: bold;
}

#node-32 ul,
#node-32 li {
list-style-type: none;
padding: 5px 0 5px 0;
}

.editorsrule {
border-bottom: 1px dotted #333333;
}

/* Twitter Feed */
#twitter_div {
width: 215px;
border-top: 1px solid #000000;
}

#twitter_div h2 {
font-family: "Palatino", Georgia, serif;
font-weight: bold;
font-size: 12px;
text-transform: uppercase; 
letter-spacing: 0.07em; 
margin: 10px 50px 0px 0px;
/* margin: 10px 50px 15px 0px; ******* */
}

#twitter_div ul {
font-style: "Palatino", Georgia, serif;
font-size: 1em;
font-style: italic;
line-height: 1.15em;
text-align: left;
margin: 0 0 0 0;
padding: 10px 10px 0 10px;
/* margin: 0 0 10px 0; ******* */
/* padding: 10px 10px 20px 10px; */
/* border: 1px dotted #999999; ******* */ 

}


#twitter_div li {
list-style: none;
margin: 0 0 30px 0;
padding: 0;
text-align: left;
}

/* Twitter days ago */
#twitter_div li a {
list-style: none;
margin: 0;
padding: 5px 0 10px 0;
text-align: left;
text-decoration: none;
}

#twitter_div a {
color: #6699CC;
text-align: left;
text-decoration: none;
margin: 0;
padding: 0 0 20px 0; 
}

/* $Id: pages.css,v 1.18.2.3 2010/06/26 17:18:58 johnalbin Exp $ */

/**
 * @file
 * Page Styling
 *
 * Style the markup found in page.tpl.php. Also includes some styling of
 * miscellaneous Drupal elements that appear in the $content variable, such as
 * ul.links, .pager, .more-link, etc.
 */
/*
 * Body
 */
body {
  margin: 0;
  padding: 0;
   /*--------------gray----------------------*/
  background-image: url(../images/bg-screen.png);
}

#page-wrapper {
  border-left: solid 1px #999999;
  border-right: solid 1px #999999;
  background-image: url(../images/bg-fixed.gif) repeat-y;
  margin: 0 auto; 
  text-align: left;
  }

#page {

}

/*
 * The skip navigation link will be completely hidden until a user tabs to the
 * link. See http://www.webaim.org/techniques/skipnav/
 */
#skip-link a,
#skip-link a:visited {
  position: absolute;
  display: block;
  left: 0;
  top: -500px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  text-align: center;
  background-color: #666;
  color: #fff;
}

#skip-link a:hover,
#skip-link a:active,
#skip-link a:focus {
  position: static;
  width: 100%;
  height: auto;
  padding: 2px 0 3px 0;
}


/*
 * Main (container for everything else)
 */
#main-wrapper {
/*-------------------------------*/
 background-color: white;
}



/*
 * Content
 */
#content {
/*-------------------------------*/
font-family: Palatino, "Palatino Linotype", Georgia, Utopia, serif;
font-size: 1.07em;
line-height: 1.45em;  

}

#content .section {
/*-------------------------------*/
  font-family: Palatino, "Palatino Linotype", Georgia, Utopia, serif;
  font-size: 0.9em;
  margin: 30px 15px 0 30px;
  padding: 0px 70px 100px 10px;
  background-color: white;
  border-top: 2px groove #CCCCCC;
  }

#content .title {
font-family: Palatino, "Palatino Linotype", Georgia, serif;
color: #0A3A70;
font-size: 1.5em;
letter-spacing: 0.01em;
font-weight: 800;
margin-left: 0px;
padding: 0;
text-decoration: none;
}

#content a:active, a:visited { 

}

/*------admin category content------*/
#content .leaf {
}

#mission /* The mission statement of the site (displayed on homepage) */ {
}

.region-content-top /* Wrapper for any blocks placed in the "content top" region */ {
}

.breadcrumb /* The path to the current page in the form of a list of links */ {
  color: #333333;
  padding-bottom: 5px; /* Undo system.css */
  text-decoration: none;
  
}

.breadcrumb .tabs {
}


h2.title { }
h1.title, /* The title of the page */
h2.title, /* Block title or the title of a piece of content when it is given in a list of content */
h3.title /* Comment title */ {

}

tr.even /* Some tables have rows marked even or odd. */ {
  /* background-color: #eee; */ /* Drupal core uses a #eee background */
}

tr.odd {
  /* background-color: #eee; */ /* Drupal core uses a #eee background */
}



div.messages /* Important messages (status, warning, and error) for the user. See also the declarations in messages.css. */ {
font-style: italic;
font-size: 1.1em;
background-color: #FFFF66;
border: 2px solid #CC3300;
margin: 5px 5 5 5;
padding: 10px;
}

div.messages li {
list-style-type: circle;
}

div.status /* Normal priority messages */ {
}

div.warning,
tr.warning /* Medium priority messages */ {
  /* border: 1px solid #f0c020; */ /* Drupal core uses: 1px solid #f0c020 */
}

div.error,
tr.error /* High priority messages. See also the .error declaration below. */ {
}

.error /* Errors that are separate from div.messages status messages. */ {
  /* color: #e55; */ /* Drupal core uses a #e55 background */
}

.warning /* Warnings that are separate from div.messages status messages. */ {
  /* color: #e09010; */ /* Drupal core uses a #e09010 background */
}


/* SEARCH RESULTS */
#ResultsDisplay {
font-size: 1em;
font-weight: bold;
border-top: 1px dotted #333333;
background-color: #C6D7FB;
margin: 0; 
padding: 3px 0 0 5px;

}

/* TABS */

ul.primary {
border: none;
}

ul.primary li a  {
font-size: 1.2em;
background-color: white;
border: none;
padding: 5px;
}

ul.primary li.active a {
background-color: #CCCCCC;
border: none;
padding: 5px;
}

.help /* Help text on a page */ {
  margin: 1em 0;
}

.more-help-link /* Link to more help */ {
  font-size: 0.85em;
  text-align: right;
}

/*--------------------------------------PAGE CONTENT WRAPPER------------*/
#content-area /* Wrapper for the actual page content */ {
/*----------------------pink----------------------*/
/*background-color: #FF3366;*/

}

.inlinelinks {
  color: #003366;
  font-family: serif;
  font-weight: bold;
  display: inline;
  border-top: 2px solid #C6D7FB;
  border-bottom: 2px solid #C6D7FB;
  margin: 0;
  padding: 10px 0px 10px 0px;
  width: 550px;
}

/*.inline div {
  color: #003366;
  font-weight: bold;
  display: inline;
  border-top: 2px solid #C6D7FB;
  border-bottom: 2px solid #C6D7FB;
  margin: 0;
  padding: 10px 0px 10px 0px;
  width: 575px;
}*/

ul.links /* List of links */ {
  margin: 0;
  padding: 0;
 
}


/*ul.links.inline {
  color: #003366;
  font-weight: bold;
  display: inline;
  border-top: 2px solid #C6D7FB;
  border-bottom: 2px solid #C6D7FB;
  margin: 0;
  padding: 10px 0px 10px 0px;
  width: 575px;
}
*/
ul.links.inline a {
 color: #003366;
 font-size: 1em;
 font-weight: bold;
 text-decoration: none;
}

ul.links.inline a:hover {
 text-decoration: underline;
} */

ul.links li {
  font-size: 1em;
  display: inline;
  list-style-type: none;
  padding: 2px;
}

.pager /* A list of page numbers when more than 1 page of content is available */ {
  clear: both;
  margin: 1em 0;
  text-align: center;
  text-decoration: none;
}

.pager a,
.pager strong.pager-current /* Each page number in the pager list */ {
  padding: 0.5em;
  text-decoration: none;
}

.feed-icons /* The links to the RSS or Atom feeds for the current list of content */ {
  margin: 1em 0 2em 0;
}

.more-link /* Aggregator, blog, and forum more link */ {
  text-align: right; /* LTR */
}

.region-content-bottom /* Wrapper for any blocks placed in the "content bottom" region */ {
/*------------------------SHARED LINKS------------------*/
/*--------------turquoise----------------------*/
 /* background-color: #00CCCC;*/
}

/*
 * First sidebar (on left in LTR languages, on right in RTL)
 *
 * Remember to NOT add padding or margin to your .region-sidebar-first
 * (see the layout.css file.)
 */
 



 
/*--------------light green--------------------*/
 /* background-color: #99CCFF;
  border-left: 3px solid #6699CC;*/
  /*border-top: 2px solid #999999;
  border-bottom: 3px solid #999999;*/
}

/*
 * Second sidebar (on right in LTR languages, on left in RTL)
 *
 * Remember to NOT add padding or margin to your .region-sidebar-second
 * (see the layout.css file.)
 */
.region-sidebar-second {
/*--------------lime green (right column)----------------------*/
  /*background-color: #CCFF33;*/
}

.region-sidebar-second .section {
/*--------------bright green (right columm content)----------------------*/
  /*background-color: #00FF00;*/
  
}

/*
 * Footer
 */
#footer {
font-family: Palatino, Times, Georgia, serif; 
font-size: 0.9em;
background-color: #FFFFFF;
padding: 0;
margin: 0;
}

#footer .section {
font-family: Palatino, serif;
text-align: center;
background-color: #FFFFFF;
padding: 5px 0 2px 0;
margin: 0;
border-top: 2px solid #CCCCCC;
width: 1000px;
}

#footer-message /* Wrapper for the footer message from Drupal's "Site information"
                   and for any blocks placed in the footer region */ {
background-color: #FFFFFF;
padding: 0;
margin: 0;
}

.region-footer {
background-color: #FFFFFF;
padding: 0;
margin: 0;
}

#footer ul {
display: inline-block;
width: 1000px;
}

#footer li {
display: inline;
text-decoration: none;
padding: 15px;
}

#footer a {
font-size: 1.2em;
color: #999999;
text-decoration: none;
}

#footer a:hover {
color: #6699CC;
}

/* Closure */
.region-page-closure /* Wrapper for any blocks placed in the closure region */ {
font-size: 0.9em;
font-family: Palatino, serif;
text-align: center;
padding: 0;
background-color: #FFFFFF;
border-left: solid 1px #999999;
border-right: solid 1px #999999;
width: 1000px;
}

.region-page-closure h3 {

}
.region-page-closure p {
margin: 0 0 0 30px;
width: 1000px;

}
.region-page-closure a {
text-decoration: none;
color: #003366;
font-weight: 500;
}


/*
 * Drupal boxes
 *
 * Wrapper for Comment form, Comment viewing options, Menu admin, and
 * Search results.
 */

.box /* Wrapper for box */ {
border-top: 1px solid #999999;

} 

.box h2 /* Box title */ {
font-family: Palatino, "Palatino Linotype", Georgia, serif;
color: #6699CC;

}

.box .content /* Box's content wrapper */ {

}

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

/**
 * Hide elements from all users.
 *
 * Used for elements which should not be immediately displayed to any user. An
 * example would be a collapsible fieldset that will be expanded with a click
 * from a user. The effect of this class can be toggled with the jQuery show()
 * and hide() functions.
 */
.element-hidden {
  display: none;
}

/**
 * Hide elements visually, but keep them available for screen-readers.
 *
 * Used for information required for screen-reader users to understand and use
 * the site where visual display is undesirable. Information provided in this
 * manner should be kept concise, to avoid unnecessary burden on the user. Must
 * not be used for focusable elements (such as links and form elements) as this
 * causes issues for keyboard only or voice recognition users. "!important" is
 * used to prevent unintentional overrides.
 */
.element-invisible {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
}

/* Left Column Spacer */
#spacerimg {
width: 200px;
background-color: #CCCCCC;
}


#content-area {
margin-top: 0;
}


/* ----- COMMENTS --------- */
#comment-form {
margin-left: 35px;

}

#comments .title {

font-family: Palatino, Georgia, serif;
font-size: 1.5em;
color: #333333;

padding: 5px 0px 2px 7px;
}

.comment_add a {
color: #003366;
font-weight: bold;
text-decoration: none;
margin: 0 0 0 20px;
padding: 0 0 0 20px;
background: url(../images/comments.gif) no-repeat left center;
}

.comment_add a:hover {
text-decoration: underline;
}

.comment_add a:visited {

}

.comment .name {
font-family: Arial, Helvetica, sans-serif;
font-size: 1.2em;
font-weight: bold;
}

#comments h2 {
border-top: 2px solid #336699; 
font-family: serif;
font-size: 0.95em;
color: #333333;
background-color: #CCCCCC;
padding-bottom: 0px;
}

#comments a {
color: #333333;
}

#comments {

font-size: 0.9em;
}

/* Comment Content */
#comments .commentcontent {
padding: 0 0 100 0;
color: #333333;

}

/* Comment Date Submitted */
.comment .submitted {
float: left;
width: 150px;
padding: 5 0 0 0;
}

/* Comments */
.comment {
clear: all;
border-top: 1px solid #999999;
padding: 0 0 0 10px;

}

#comments.comment_wrapper {
}

.comment p.date {
margin-bottom: 0px;
}

#comments .links {
color: #006699;
}


.form-item {
background-color: #FFFFFF;
display: inline-block;
}

#edit-subject input:focus {

}

#edit-subject-wrapper textarea:focus {

}

#edit-subject-wrapper label {
display: block;
}

#edit-comment-wrapper textarea {
width: 425px;
height: 200px;
}

#edit-comment-wrapper textarea:focus {
background-color: #FFFFFF;
}

#comments .comment-reply {

}

.comment .links ul, #main-content .comment .links li.first {
margin: 0;
padding: 0 0 50px 0;
float: right;
}

.comment p.date{
color: #333333;
}

/* PRINTER-FRIENDLY LINK */
.print_html a {
color: #003366;
font-weight: bold;
text-decoration: none;
margin-left:0;
padding-top: 0px;
padding-left: 20px;
background: url(../images/print_icon.gif) no-repeat left;
}

.print_html a:hover { 
text-decoration: underline;
}

/* SHARETHIS */
.sharethis {
font-size: 1em;
margin: 0 25px 0 20px;
padding: 0 0 0 20px;
background: url(../images/share_icon.png) no-repeat left;
}

.st_sharethis_custom a {
color: #003366;
font-weight: bold;
text-decoration: none;
padding: 0 0 0 23px;
font-family: Palatino, "Palatino Linotype", Georgia, serif;
}

.st_sharethis_custom a: hover {
text-decoration: underline;
}


/* AUTHOR */
.node-type-author {
font-family: Palatino, "Palatino Linotype", Georgia, serif;
border-top: 2px solid #999999;
}

#author {
font-family: Palatino, "Palatino Linotype", Georgia, serif;
font-size: 1.2em;
color: #000033;

border-bottom: 1px dotted #999999;
}

#authorbio {
}

#articlesby {
font-family: Palatino, "Palatino Linotype", Georgia, serif;
font-size: 1.2em;
color: #000033;
border-bottom: 1px dotted #999999;
}

edit-format-1-wrapper {
background-color: #FFFFFF;
}

.comment blockquote {
text-indent: 20px;
border-left: 2px solid #336699;
}

#comments q {
background-color: #0099FF;
}


/* RSS Feed Icons */
.feed-icons {
text-indent: 75px;
}


/* Admin */
#edit-field-teaser-0-format-3 {
background-color: #FF99FF;
}

.form-item .form-radio {
text-align: left;
margin: 0;
padding: 0;
background-color: #FF99FF;
}

/* ***** Liberty Unbound ***** */


.block /* Block wrapper */ {
  margin-bottom: 1em;
}


#block-profile-0 /* "Author information" block for the profile of the page's author */ {
}

.block .title {
font-family: Palatino, Georgia, Utopia, serif;

text-decoration: none;
text-indent: 5px;
color: #006699;
font-size:1em; text-transform: uppercase; 
letter-spacing: 0.07em; 
margin: 10px 50px 20px 0px;
width: 215px;
}

/* NAVIGATION BAR BLOCK WIDTH */
.block .content {

}

/* MOST EMAILED */
#block-print_mail-0 .content {
width: 215px;
}

#block-print_mail-0 li {
text-indent: 0;
list-style-type: none;
text-decoration: none;
border-bottom: 1px dotted #999999;
margin-bottom: 20px;
padding-bottom: 10px;
width: 215px;
}


/* "Search form" block */ 
#block--0 {
border-bottom: 1px dotted #999999;
margin-top: 30px;
width: 215px;
}

#block-search-0 .title {
font-family: Palatino, Georgia, Utopia, serif;
text-transform: capitalize;
text-decoration: none;
text-indent: 5px;
color: #333333;

font-family: Palatino, Georgia, Utopia, serif; 
font-size:1em; text-transform: uppercase; 
letter-spacing: 0.07em; 
border-top: 2px groove; 
margin: 30px 50px 20px 0px;
padding: 5px 0 0 0;
}

#block-statistics-0 /* "Popular content" block */ {
}

#block-user-0 /* "User login form" block */ {
}

/* "Navigation" block for Drupal navigation menu */ 
#block-user-1, #block-user-1 a {
font-family: Palatino, Georgia, Utopia, serif;
font-size: 0.9em; /* ----------------------------------- */
text-transform: capitalize;
text-decoration: none;
padding-bottom: 1em;
line-height: 1.7em;

}

#block-user-1 { 
width: 145px;

}

#block-user-1 .title {
color: #000000;
text-indent: 10px;
font-family: Palatino, Georgia, Utopia, serif;
font-size: 1em;
text-transform: capitalize;
margin: 0 0 5 3px;
border-bottom: #CCCCCC;
display: inline-block;
border: 1px solid #333333;
width: 145px;
}

#block-user-2 /* "Who's new" block for a list of the newest users */ {
}

#block-user-3 /* "Who's online" block for a list of the online users */ {
}

/* */


/* BLOCK */

.block-views .title {
text-indent: 5px;
color: #333333;
font-family: Palatino, Georgia, Utopia, serif; 
font-size:1em; text-transform: uppercase; 
letter-spacing: 0.07em; 
border-top: 2px groove; 

margin: 10px 50px 20px 0px;
padding: 5px 0 0 0;
}

/* RECENT POSTS */

.block-views .view-content {
margin: 0 50 50 20;
padding: 0px;
width: 200px; 
}

.block-views .view-content a:hover {
text-decoration: underline;
width: 200px;
}

.block-views .views-field-created {
border-bottom: 1px dotted #999999;
margin-bottom: 20px;
padding-bottom: 10px;
}

#block-views-tracker-block_1 a {text-decoration: none;}

/* AD SLOTS */
#gam-holder-LibertyUnbound_All_ATF_Right_160x312 {

padding: 0 0 0 10px;
margin-bottom: 30px;
width: 215px;
}

#gam-holder-LibertyUnbound_All_ATF_Right_160x600 {

padding: 0 0 0 10px;
margin-bottom: 30px;
width: 215px;
}

/* ADVERTISEMENTS */
#block-block-6 {
/* background-image: url(./../images/ads-160312_160600.gif); */
/* width: 160px; */
/* height: 600px; */
/* margin: 0 10px 0 10px; */
border-top: 2px groove; 
padding-top: 5px;
width: 215px;
}

#block-block-6 a {
font-family: Palatino, Georgia, serif;
font-size: 0.85em;
text-align: center;
color: #000000;
text-decoration: none;
padding: 10px;
margin: 0 0 10px 5px;

}

#block-block-6 a:hover {
text-decoration: underline;
}

/* TIMEBOUND */
#block-block-20 {
/* border-top: 2px groove; */
padding: 5px 0 0 10px;
width: 215px;

border-top: 2px groove; 
}

#block-block-20 .title {
text-align: center;
}

#block-block-20 #timeboundbtn {
background-color: #C6D7FB;
border: 2px solid #999999;
width: 200px;
}

#block-block-20 p {
text-align: center;
font-style: italic;
padding: 5px;
width: 200px;
}

#block-block-20 a {
font-family: Palatino, Georgia, serif;
font-size: 0.85em;
text-align: center;
color: #000000;
text-decoration: none;
width: 200px;
padding: 0 0 0 50px;
}

#block-block-20 a:hover {
text-decoration: underline;
}

/* MOST READ */
#block-views-mostread-block_1 a {
text-decoration: none;
}

/* EDITORS & STAFF */
.editors-block-title {
color: #FFFFFF;
font-size: 1.15em;
font-style: italic;
padding: 0;
margin: 10px 0 7px -5px;
/*margin-bottom: -7px;*/
background-repeat: no-repeat;
background-image: url(../images/editorsstaff.png); 
height: 20px;

}

.editors-block-title h2 {
background-color: #CCCC66;

}

#editorsbreak {
border-bottom: 1px solid #999999;
width: 115px;
padding: 0px;
margin-top: -20px;
}

#block-block-7 {
font-family: Palatino, Georgia, Utopia, serif;
text-align: left;
margin-top: 10px;
margin-left: 10px;
padding-left: 20px;
line-height: 1.3em;
background-color: #FFFFFF; 
border: double #999999;
width: 140px;
}

#block-block-7 a {
font-size: 0.89em;
font-weight: 500;
color: #006699;
text-decoration: none;
}

#block-block-7 a:hover {
color: #000033;
text-decoration: underline;
}


#block-block-7 dd {
font-style: italic;
margin: 0 0 10px 0;
text-align: left;
padding: 0;
}

/* WELCOME SCREEN */
#block-block-8 {
float: right;
margin: 0 50px 0 0;
}

/* ARTICLE */
#content.wrapper {

}




/* TAGS */
.terms-terms-inline .tag {
color: #333333;
font-size: 1em;
font-weight: 300;
text-transform: capitalize;
letter-spacing: 0.02em;

}

.terms-terms-inline a li {
text-decoration: none;
text-transform: uppercase;
/*----------------------------*/
}



#views-field-field-postauthor-nid {
font-size: 1.5em;
font-style: italic;
color: #999999;
}

.field-field-postauthor a {
text-decoration: none;
color: #999999;
}

/* REGISTRATION BLOCK */



/*.views-field-created {
padding-bottom: 1em;
border-bottom: 1px #333333;
}*/

/* WELCOME SCREEN */
.region-highlight {
font-style: italic;
font-size: 1.2em;
}

.region-highlight a { 
color: #000000;
text-decoration: none;
}

.myusername {
color: #006699;
font-style: italic;
letter-spacing: 0.01em;
}

#block-block-10 {

}

/* ***** MONTHLY ARCHIVE ***** */
#block-views-archive-block li {
list-style-type: square;
margin: 0;
}

#block-views-archive-block a {
text-decoration: none;
}

#block-views-archive-block .title {
font-size: 12px;
width: 215px;
}

#block-block-8 {
padding: 0px;
margin: 0px;
}


/* LOGIN / REGISTRATION BLOCK */

#block-menu-secondary-links ul.menu {
padding: 0;
margin: 0;
width: 175px;
}

#block-menu-secondary-links {
float: right;
position: absolute;
left: 910px;
top: 10px;

/*position: relative;
margin-left: 800px;*/
}

#block-menu-secondary-links li {
font-family: Palatino, "Palatino Linotype", Georgia, serif;
font-size: 0.9em;
font-weight: bold;
display: inline;
margin: 0px 0 20px 20px;
padding: 0 1px 0 0;
list-style: none;

}

#block-menu-secondary-links li a {
color: #000000;
text-decoration: none;
padding: 0 20px 0 0;
display: inline;
}

#block-menu-secondary-links li a:hover {
color: #6699CC;
margin: 0;
border-bottom: 2px solid #6699CC;
}

#block-menu-secondary-links tab{

}

/* ***** ADMIN ***** */

.block-edit {
font-size: 15px;
font-style: normal;
color: #6F8AC4;
}

italic;
letter-spacing: 0.01em;
}

#block-block-10 {

}

/* ***** MONTHLY ARCHIVE ***** */
#block-views-archive-block li {
list-style-type: square;
margin: 0;
}

#block-views-archive-block a {
text-decoration: none;
}

#block-views-archive-block .title {
font-size: 12px;
width: 215px;
}

#block-block-8 {
padding: 0px;
margin: 0px;
}


/* LOGIN / REGISTRATION BLOCK */

#block-menu-secondary-links ul.menu {
padding: 0;
margin: 0;
width: 175px;
}

#block-menu-secondary-links {
float: right;
position: absolute;
left: 910px;
top: 10px;

/*position: relative;
margin-left: 800px;*/
}

#block-menu-secondary-links li {
font-family: Palatino, "Palatino Linotype", Georgia, serif;
font-size: 0.9em;
font-weight: bold;
display: inline;
margin: 0px 0 20px 20px;
padding: 0 1px 0 0;
list-style: none;

}

#block-menu-secondary-links li a {
color: #000000;
text-decoration: none;
padding: 0 20px 0 0;
display: inline;
}

#block-menu-secondary-links li a:hover {
color: #6699CC;
margin: 0;
border-bottom: 2px solid #6699CC;
}

#block-menu-secondary-links tab{

}

/* ***** ADMIN ***** */

.block-edit {
font-size: 15px;
font-style: normal;
color: #6F8AC4;
}

