/* $Id: pages.css,v 1.18.2.1 2009/11/16 10:15:47 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;
  color: #333;
}

#page-wrapper {
}

#page {
}

/*
 * The skip-to-nav link will be completely hidden until a user tabs to the link.
 * See http://www.webaim.org/techniques/skipnav/
 */
#skip-to-nav a,
#skip-to-nav 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-to-nav a:hover,
#skip-to-nav a:active,
#skip-to-nav a:focus {
  position: static;
  width: 100%;
  height: auto;
  padding: 2px 0 3px 0;
}

/*
 * Header
 */
#header {
  border: 1px solid #e94829;
  border-width: 0 1px;
  padding: 0 10px;
}

#header .section {
}

#logo /* Wrapping link for logo */ {
  float: left; /* LTR */
  margin: 0;
  padding: 0;
  padding-top: 2px;
}

#logo img {
  vertical-align: bottom;
}

#name-and-slogan /* Wrapper for website name and slogan */ {
  text-indent: -9999px;
}

h1#site-name,
div#site-name /* The name of the website */ {
}

#site-name a:link,
#site-name a:visited {
  color: #000;
  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 {
  border-right: 1px solid #BBB;
  border-left: 1px solid #DDD;
  border-width: 0 1px;
}

#main {
}

/*
 * Content
 */
#content {
}

#content .section {
}

#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 */ {
  padding-bottom: 0; /* Undo system.css */
}

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 */ {
  margin: 0;
}
h1.title {
  background: url(img/icon_green.png) no-repeat 0 50%;
  padding: 5px 3px 5px 35px;
}

th, thead th, tbody th {
  background-color: #ABABAB;
  text-align: center;
  color: #FFF;
  border-right: 1px solid #FFF;
  padding: 2px 5px;
}
#crm-container th {
  color: #000;
}
tr.even /* Some tables have rows marked even or odd. */ {
  background-color: #ebebeb;
  border-bottom:1px dashed #CCC;
}

tr.odd {
  border-bottom:1px dashed #CCC;
  background-color: #ebebeb;
}
td {
  padding: 2px 5px;
}

div.messages /* Important messages (status, warning, and error) for the user. See also the declarations in messages.css. */ {
}

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

div.tabs /* See also the tabs.css file. */ {
}

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

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

#content-area /* Wrapper for the actual page content */ {
}

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

ul.links.inline {
  margin: 0;
  display: inline;
}

ul.links li {
  display: inline;
  list-style-type: none;
  padding: 0 0.5em;
}

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

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

.feed-icons /* The links to the RSS or Atom feeds for the current list of content */ {
  margin: 1em 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 */ {
}

fieldset {
  border: 1px solid #CCC;
  margin: 3px 0;
}
fieldset fieldset {
  border: 1px solid #EEE;
}


/*
 * 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.)
 */
.region-sidebar-first {
  padding: 5px;
}
body.section-eball .region-sidebar-first {
  padding-top: 40px;
}

.region-sidebar-first .section {
}

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

.region-sidebar-second .section {
}

/*
 * Footer
 */
#footer {
  color: #FFF;
}

#footer .section {
}

#footer-message /* Wrapper for the footer message from Drupal's "Site information"
                   and for any blocks placed in the footer region */ {
}

.region-footer {
}

/*
 * Closure
 */
.region-page-closure /* Wrapper for any blocks placed in the closure region */ {
}

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

.box h2 /* Box title */ {
}

.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.
 */
.element-invisible {
  height: 0;
  overflow: hidden;
  position: absolute;
}


/* issue/qa styles */
body.page-issue-qa #main{
  background: none;
}
body.page-issue-qa .region-sidebar-second {
  display: none;
}
body.page-issue-qa #content {
  margin: 0;
  width: 950px;
}

/* rumorbuster styles */
.view-rumorbuster .views-field-title{
  text-align:center;
  font-weight:bold;
}
.view-rumorbuster .views-field-title{
	margin: 3px 6px 8px 6px;
	width:	132px;
}
.view-rumorbuster .views-field-nothing{
	margin: 3px 6px 8px 6px;
}
.view-rumorbuster td{
	text-align:right;
  font-weight:bold;
  
}
.view-rumorbuster td .views-field-nothing{
	text-align:right;
  font-weight:bold;
  
}
.view-rumorbuster td p{
	text-align:left;
  font-weight:normal;
  line-height:1.5;
  margin-top:12px;
}
.view-rumorbuster .imagecache{
	float:left;
	margin:8px 12px 8px 0px;
}
.block-spread{
	width: 310px;
	padding:8px;
	border:1px solid #CCCCCC;
	float:left;
	margin-left:10px;
}
.block-spread h2.title{
	background-color: #EEEEEE;
	padding:6px auto 6px auto;
	text-align:center;
}
#block-block-10{
	width: 310px;
	padding:8px;
	border:1px solid #CCCCCC;
	float:right;
	margin-right:10px;
}
#block-block-10 h2.title{
	background-color: #EEEEEE;
	padding:6px auto 6px auto;
	text-align:center;
}
#helpus{
	font-size:12px;
	text-align:left;
}
.node-type-rumorbusters .field-field-fact{
	display:none;
}

/* live styles */
body.page-live #main{
  background: none;
}
body.page-live .region-sidebar-second {
  display: none;
}
body.page-live #content {
  margin: 0;
  width: 950px;
}

/* promote */
.field-field-promote a span {background:url(/sites/default/files/insert/Juan_Kuan_.gif) repeat scroll 0 0 transparent;height:66px;padding:24px 0 8px 36px;color:#fff;}
.field-field-promote a:hover {text-decoration:underline;}
.field-field-promote a img {vertical-align:-16px;}


/* all user profile page here */
.profile .profile-left {
  padding: 5px;
  width: 340px;
  float: left;
}
.profile .profile-right {
  width: 50%;
  width: 340px;
  float: right;
}
.profile .profile-block {
  margin: 0 0 20px 0;
}
.profile .profile-content {
  padding: 3px;
}
.profile h2 {
  color: #FF6C00;
  margin: 0;
  background: url("img/icon_blog_arrow.png") no-repeat 10px 50% #ECECEC;
  padding: 5px 5px 5px 25px;
}
.profile ul {
  margin: 0;
  line-height: 1.6em;
}
.profile li label {
  font-weight: bold;
  color: #999;
  padding-right: 5px;
}
.profile .event-image {
  float: left;
  clear: left;
}
.profile .event-title, .profile .event-date {
  margin-left: 65px;
}
.profile .event-title {
  padding: 5px 0 0 0;
}
.profile .picture {
  margin-top: 10px;
}
.profile .card img {
  padding: 0 10px;
}
.profile .points .total {
  float: right;
  font-size: 16px;
  color: #FF6C00;
  border: 5px solid #EEE;
  padding: 5px;
  text-align: center;
}
.profile .total em {
  display: block;
  font-weight: bold;
  font-size: 20px;
  line-height: 1.8em;
  font-style: normal;
  color: #555;
}
.profile .event-link {
  float: right;
}

/* print */
.print_html, .print_mail, .print_pdf {
  margin-left:0;
}

.node-type-policy td{
	border: 1px solid;
}

.view-policy{
	margin-top:12px;
}