/* $Id: html-elements.css,v 1.1 2008/02/15 16:22:09 johnalbin Exp $ */

/****
 **** HTML ELEMENT STYLING
 ****/


/** fonts **/
  /*
   * Our font size and line height declarations are based on the following ALA
   * article:
   *   http://www.alistapart.com/articles/howtosizetextincss
   *
   * All modern browsrs use a 16px default font size. Specifying the font-size
   * and line-height in ems (relative to the 16px default font) allows the user
   * to resize the font in the browser and produces the most consistent results
   * across different browsers.
   */
  body
  {
    font-size: 100%; /* Fixes exaggerated text resizing in IE6 and IE7 */
	
  }

  #page
  {
    /*
     * To use a 12px font size on the page, delete the 14px declarations.
     * to use a 14px font size on the page, delete the 12px declarations.
     */

    /* Use a 12px base font size with a 16px line height */
    font-size:11px; /* 16px x .75 = 12px */
    line-height: 1.3em; /* 12px x 1.333 = 16px */
	overflow-x:hidden;
	

    /* Use a 14px base font size with a 18px line height */
   /*  font-size: 0.875em; /* 16px x .875 = 14px */
  /*  line-height: 1.286em; /* 14px x 1.286 = 18px */
  }

  body, caption, th, td, input, textarea, select, option
  {
    /* The following font family declarations are based on the Microsoft core
     * web fonts which are common fonts available on most computer systems. The
     * Bitstream Vera fonts are commonly available on Linux systems where the MS
     * fonts are less common.
     *
     * A user's web browser will look at the comma-separated list and will
     * attempt to use each font in turn until it finds one that is available
     * on the user's computer. The final "generic" font (sans-serif or serif)
     * hints at what type of font to use if the web browser doesn't find any
     * of the fonts in the list.

    font-family: "Times New Roman", Times, Georgia, "Bitstream Vera Serif", serif;
    font-family: Times, "Times New Roman", Georgia, "Bitstream Vera Serif", serif;
    font-family: Georgia, "Times New Roman", "Bitstream Vera Serif", serif;

    font-family: Verdana, Tahoma, Arial, Helvetica, "Bitstream Vera Sans", sans-serif;
    font-family: Tahoma, Verdana, Arial, Helvetica, "Bitstream Vera Sans", sans-serif;
    font-family: Helvetica, Arial, "Bitstream Vera Sans", sans-serif;
    font-family: Arial, Helvetica, "Bitstream Vera Sans", sans-serif;

    font-family: "Bitstream Vera Sans Mono", "Courier New", monospace;

     */

    font-family: Helvetica,Arial,sans-serif;
	font-size: 0.5 em;
	line-height: .1.25 em;
	color:#333;
	
  }

  pre, code
  {
    font-size: 1.1em; /* Monospace fonts can be hard to read */
    font-family: "Bitstream Vera Sans Mono", "Courier New", monospace;
  }
  
  .region-cmag-topper
  {
  font-size: .8em
  }

/** headings **/
  h1
  {
    
	font-size: 2em;
    line-height: 1em;
    margin-top: 0;
    margin-bottom: 0em; /* 0.5em is equavalent to 1em in the page's base font.
                             Remember, a margin specified in ems is relative to
                             the element's font-size, not to the pages' base
                             font size. So, for example, if we want a 1em margin
                             (relative to the base font), we have to divide that
                             length by the element's font-size:
                             1em / 2em = 0.5em */
  }

  h2
  {
    font-size: 1.5em;
    line-height: 1em;
   
  }

  h3
  {
    font-size: 1.3em;
    line-height: 1.3em;
    margin-top: 0.769em; /* Equivalent to 1em in the page's base font: 1 / 1.3 = 0.769 */
    margin-bottom: 0.769em;
  }

  h4, h5, h6
  {
    font-size: 1.1em;
    line-height: 1.3em;
    margin-top: 0.909em; /* Equivalent to 1em in the page's base font: 1 / 1.1 = 0.909 */
    margin-bottom: 0.909em;
  }

/** block-level elements **/
  p, ul, ol, dl, pre, table, fieldset, blockquote
  {
    font-family: Verdana, sans-serif;
    font-size:11px;
    margin: 0em 0;
	margin-bottom:15px;
  }

/** lists **/
  /* standardize list item indentation */
  ul, ol
  {
    margin-left: 0;
    padding-left: 2em;
  }

  .block ul, /* Drupal overrides */
  .item-list ul
  {
    margin: 1em 0;
    padding: 0 0 0 2em;
  }

  ul ul, ul ol,
  ol ol, ol ul,
  .block ul ul, .block ul ol,
  .block ol ol, .block ol ul,
  .item-list ul ul, .item-list ul ol,
  .item-list ol ol, .item-list ol ul
  {
    margin: 0;
  }

  li
  {
    margin: 0;
    padding: 0;
  }

  .item-list ul li /* Drupal override */
  {
    margin: 0;
    padding: 0;
    list-style: inherit;
  }

  ul.menu li, /* Drupal override */
  li.expanded,
  li.collapsed,
  li.leaf
  {
    margin: 0;
    padding: 0;
  }

  ul          { list-style-type: disc; }
  ul ul       { list-style-type: circle; }
  ul ul ul    { list-style-type: square; }
  ul ul ul ul { list-style-type: circle; }
  ol          { list-style-type: decimal; }
  ol ol       { list-style-type: lower-alpha; }
  ol ol ol    { list-style-type: decimal; }

  dt
  {
    margin: 0;
    padding: 0;
  }

  dd
  {
    margin: 0 0 0 2em;
    padding: 0;
  }

/** links **/
  /* The order of link states are based on Eric Meyer's article:
   * http://meyerweb.com/eric/thoughts/2007/06/11/who-ordered-the-link-states
   */
  a:link
  {
  color:#333;
  text-decoration:none;
  }

  a:visited
  {
  color:#333;
  text-decoration:none;
  }

  a:hover
  {
	  color:#3f9baa;
  }


  
  a:focus 
  {
  }
  

  a:active
  {
  }
  
  #cmag-topper a
  {
  color:#FFF;
  }
  

/**********/
/* TABLES */
/**********/


table {
  border-collapse: collapse;
 /* margin: 0 0 10px;*/
  width: 100%;
}
.views-table
{
width: 100%;
}

.layout-first-main-last table {
  border-collapse: collapse;
  margin: 0 0 10px;
  width: 57%;
}

th {
 /* text-align: left;
  padding-right: 1em;
  border-bottom: 3px solid #CCC;
  display:none; */
}

tr {
 /* padding: 0.1em 0.6em; */
}

td {
  /*padding: 3px; */
  vertical-align:top;
}

th.active img {
  display: inline;
}

tr.even td {
 /* background-color: #CFCEC6;
  background-color: #E3ECC0;
  border-bottom: 1px solid #CCC; */
}

tr.odd td {
  background-color: #FFF;
/*  border-bottom: 1px solid #CCC; */
}

td.active {
  
}

tbody {
 /*  border-top: 1px solid #CCC; */
}

tbody th {
/*  border-bottom: 1px solid #CCC; */
}

thead th {
  text-align: left;
  padding-right: 1em;
  border-bottom: 0px solid #CCC;
}

/** abbreviations **/
  abbr
  {
    border-bottom: 1px dotted #666;
    cursor: help;
    white-space: nowrap;
  }

  /* Date-based "abbreviations" show computer-friendly timestamps which are not
     human-friendly. */
  abbr.created
  {
    border: none;
    cursor: auto;
    white-space: normal;
  }

/** images **/
img a:hover img {
border: 0px none;
}

/** horizontal rules **/
  hr
	{
	color: #fff; background-color: #fff; border: 1px dotted #666; border-style: none none dotted; 
	}
 

/** forms **/
  form
  {
    margin: 0;
    padding: 0;
  }
  
     /* BEST VACATION FORM */
 
 #webform-client-form-2827 fieldset legend
 {
 font-size:20px;
 }

  fieldset
  {
    margin: 1em 0;
    padding: 0.5em;
  }
#search-block-form
{
width:95%;
margin:0;
border:8px solid #A6CDD7;
background:#A6CDD7;

}
#search-block-form .form-text
{
width:200px;
font-size:1em;
}
.form-submit
{
font-size:1em;
}

/* homepage */


.print-link
{
display-inline;
font-size: .8em;
}

/* views */

/* front page */

.views-field-field-feature-type-value, .views-field-field-video-cateogry-value
{
display:inline;
color:#45A1AD;
font-size:18px;
line-height:1em;
font-weight:100;
margin-bottom:5px;
}



/*google maps */

.field-field-restaurant-map , .field-field-biz-map
{
float:right;
border-left: 1px solid #eee;
padding-left:8px;
margin-left:15px;
margin-bottom:50px;
clear:both;
}


/******************* weather block *******************/

.block-weather
{
	height:30px;
	float:left;
	width:500px;
	margin-left:10px;
}
.block-weather .title
{
display:none;
}

/*********** time ***********/
#block-block-11
{
	height:30px;
	float:left;
	width:170px;
	padding-left:315px;
	text-align:right;
}


/* recipe block */
tr td.views-field-field-recipe-photo-fid
{
background-color:#fff;
}

tr .views-field-field-recipe-photo-fid
{
background-color:#fff;
}


/* front page panel display */

.panel-display .views-field-teaser
{
padding-right:4px;
}

.panel-display .views-field-title a
{
font-size:14px;
line-height:16px;
width:145px;
}

.field-content p
{
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size:11px;
}


.view-issue-cmag-current-month .views-field-title
{
display:block;
text-align: center;
font-weight:bold;
}

.panel-col-top .views-field-title
{
margin-bottom:5px;
margin-top:5px;
}
.panel-col-top .views-field-title a
{
font-size:24px;
}
.views-field-title
{
font-size:14px;
line-height:16px;
font-weight:bold;
}

.eats_row2 .views-footer
{
width:145px;
}

				/*************/
/******  SUMMER SURVIVAL GUIDE TABLE OF CONTENTS  *************
*******  AND OTHER ARTICLES THAT REQUIRE TOCS  **************/
				/*************/
				
.clear
{
	clear:both;
}

.beach-guide-content-section 
	{
		width:470px;
		clear:both;
		padding:10px 0px 0px 0px;
		margin:5px 0px 25px 0px;
		border-top:1px dotted #666;
	}
	
.beach-guide-content-section ul 
{
	list-style-type:none;
	padding:0px;
}


.survivor-contents-right
	{
		float:left;
		width:220px;
	}

.survivor-header
{
	margin-bottom:10px;
}

.survivor-image
	{
		float:left;
		width:150px;
		padding-right:20px;
	}
	
.survival-contents-article-links a
	{
		font-family:"Trebuchet MS", Verdana, Arial, sans-serif;
		font-size:16px;
		line-height:1.4em;
	}
	
.survival-guide-contents-link a:hover
{
	border-bottom:1px dotted #3f9baa;
}

.survival-contents-article-links a:hover
{
	color:#ff0033;
}

/* 2009 FOOTBALL PREVIEW  */

.football-preview-toc-list
{
	margin:30px 0px 0px 0px;
	line-height:1.5em;
}

/*Citadel Pro Roster*/
#node-3159 h3
{
	font-size:1.4em;
	margin:0px;
	font-style:italic;
}

/*Gamecocks' Pro Roster*/
#node-3169 h3
{
	font-size:1.4em;
	margin:0px;
	font-style:italic;
}

/*Clemson Pro Roster*/
#node-3171 h3
{
	font-size:1.4em;
	margin:0px;
	font-style:italic;
}



/* BIZ Kids Article */

.beach-guide-content-section h2#yes-carolina-title
{
	font-family:Verdana, Geneva, sans-serif;
	font-size:18px;
	margin:5px 0px 0px 0px;
	color:#3f9baa;
	text-align:center;
}

.beach-guide-content-section h3#yes-carolina-subhead
{
	margin:5px 0px 5px 0px;
	font-size:1.4em;
	font-style:italic;
	text-align:center;
	line-height:1.2em;
}

/*****PHOTO GALLERIES*********/
.field-field-photogallery-credits
{
	clear:both;
}

				/************/
/***************** BLOGS ************************/
			  /************/
			  
			  
/*posted date*/			  
.views-field-created
{
	font-family:Verdana,Arial,Helvetica,sans-serif;
	font-size:10px;
	font-style:italic;
	padding-top:8px;
	float:right;
}

/* MAIN BLOG PAGE http://www.charlestonmag.com/blogs */




			  
/* ELLEN'S HOME BLOG http://www.charlestonmag.com/home/blog */
.block-panels_mini .panel-col .view-id-home_blog img
{
	float:none;
	padding:0px;
	margin:0px;
	border:none;
}

.block-panels_mini .panel-col .view-id-home_blog .views-field-title
{
	font-style:normal;
	padding:0px;
	margin:0px;
}

.block-panels_mini .panel-col .view-id-home_blog .views-row
{
	padding:0px;
	margin:0px;
	border:none;
}

.view-id-home_blog .views-row
{
	clear:both;
	height:145px;
	border-bottom:1px dotted #666;
	padding:10px 0px 10px 0px;
}

.view-id-home_blog .view-content img
{
	float:left;
	padding:0px 19px 0px 0px;
}

.view-id-home_blog .home-blog-top
{
	padding:0px;
	margin:0px;
	font-style:italic;
	font-size:20px;
	color:#6aa390;
}

.view-id-home_blog .home-blog-author
{
	margin:0px;
	padding:0px 0px 3px 0px;
	font-family:Verdana, Geneva, sans-serif;
	font-size:13px;
	font-weight:lighter;
}

.view-id-home_blog .views-field-field-style-blog-author-value
{
	padding:0px 0px 7px 0px;
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:11px;
}




/* AYOKA'S BLOG http://www.charlestonmag.com/blogs/style */

.view-blog-style .views-field-field-blog-thumb-photo-fid img
{
	float:left;
	width:145px;
	padding:0px 10px 0px 0px;
}

.view-blog-style .views-row
{
	clear:both;
	height:145px;
	border-bottom:1px dotted #666;
	padding:10px 0px 10px 0px;
}

.center-wrapper .panel-col-last .views-row
{
	padding:0px;
	border:none;
}

.center-wrapper .panel-col .views-row
{
	padding:0px;
	border:none;
}

.center-wrapper .panel-col .views-row img
{
	padding:0px 0px 5px 0px;
}

.view-blog-style .style-blog-top
{
	padding:0px;
	margin:0px;
	font-style:italic;
	font-size:20px;
	color:#3f9baa;
}

.view-blog-style .style-blog-author
{
	margin:0px;
	padding:0px 0px 3px 0px;
	font-family:Verdana, Geneva, sans-serif;
	font-size:13px;
	font-weight:lighter;
}



/* BRYAN HUNTER'S PARTY BLOG http://www.charlestonmag.com/blogs/partyscene */
.view-blog-partyscene .party-blog-top
{
	padding:0px;
	margin:0px;
	font-style:italic;
	font-size:20px;
	color:#3f9baa;
}

.view-blog-partyscene .party-blog-author
{
	margin:0px;
	padding:0px 0px 3px 0px;
	font-family:Verdana, Geneva, sans-serif;
	font-size:13px;
	font-weight:lighter;
}



/* DARCY'S BLOG --- http://www.charlestonmag.com/blogs/editors_picks*/
.view-blog-main .edpicks-blog-top
{
	padding:0px;
	margin:0px;
	font-style:italic;
	font-size:20px;
	color:#3f9baa;
}

.view-blog-main .edpicks-blog-author
{
	margin:0px;
	padding:0px 0px 3px 0px;
	font-family:Verdana, Geneva, sans-serif;
	font-size:13px;
	font-weight:lighter;
}

.view-blog-main .views-field-title
{
	font-size:16px;
}

.view-blog-main .views-row
{
	padding:15px 0px 15px 0px;
	border-bottom:1px dotted #666;
}

.view-blog-main .views-field-teaser p
{
	padding:0px;
	margin:0px;
}

/*posted date*/	
.view-blog-main .views-field-created		  
{
	padding:12px 0px 2px 0px;
	float:none;
}



		  				/***********/
/******************* MAIN Table Of Contents***************/
					  /***********/
		
.field-field-issue-features .field-label
{
	font-size:24px;
	color:#333;
	font-family:"Times New Roman", Georgia, Times, serif;
	font-style:italic;
	padding-top:9px;
}

.Issue img
{
	float:left;
	width:145px;
	padding-right:16px;
}

.Issue .field-field-feature-photo img
{
	width:470px;
	margin-bottom:10px;
}


.Issue h2.title
{
	padding:15px 0px 8px 0px;
	margin:12px 0px 0px 0px;
	border-top:1px dotted #666;
}

.Issue .field-field-issue-overview .field-items
{
	width:470px;
	color:#3f9baa;
	margin:10px 0px 15px 0px;
	font-size:28px;
	line-height:1;
}

.Issue .field-type-text
{
	font-style:italic;
	font-size:18px;
	font-weight:700;
	color:#3f9baa;
	padding-bottom:3px;
}

.field-type-nodereference .node_read_more
{
	display:none;
}

.Issue .field-field-issue-features
{
	clear:both;
}

/*Web Extras*/

.Issue .field-field-photogallery-subhead
{
	font-family:Verdana,sans-serif;
	font-size:11px;
	margin:0 0 15px;
	color:#333;
	font-style:normal;
	font-weight:normal;
}

.Issue .field-field-feature-webextras img
{
	margin-bottom:15px;
}

.Issue .field-field-feature-webextras .Photo
{
	clear:both;
}

.field-field-feature-webextras .field-label
{
     
	 background-image:url('/sites/all/themes/charlestonmag/images/web_extras.jpg');
	 background-repeat:no-repeat;
	 background-position:1000px;
	font-family:Helvetica, Arial, sans-serif;
	font-size:35px;
	margin-top:40px;
	margin-left:-1000px;
	height:40px;
	color:#3f9baa;
	font-weight:lighter;
	
}

		  		/***********/
/************** Left Column Current Issue************************/
			/***********/


/*Div for Content Issue Footer*/
.toc-current-issue-left-col
{
	text-align:center;
	line-height:1.1em;
}

/*Name of Issue*/
.view-issue-cmag-current-month .views-field-field-issue-overview-value
{
	font-family:"Times New Roman", Georgia, Times, serif;
	font-size:15px;
	font-style:italic;
	font-weight:bold;
	text-align:center;
	line-height:1em;
}

/*Date of Issue in Left Col*/
.view-issue-cmag-current-month .views-field-title .field-content
{
	font-weight:normal;
}


		
.toc-current-issue-left-col h3
{
	font-family:Verdana, Geneva, sans-serif;
	font-size:11px;
	margin:20px 0px 0px 0px;
	color:#3f9baa;
}

.toc-current-issue-left-col h3 a
{
	color:#3f9baa;
}

.toc-current-issue-left-col h3 a:hover
{
	color:#333;
	font-style:italic;
}

.toc-current-issue-left-col p
{
	padding:0px;
	margin:8px 0px 0px 0px;
}

.views-field-field-feature-photo-thumb-fid
{
	padding: 10px 15px 5px 0;
}
.views-field-field-video-thumb-fid
{
	padding: 10px 15px 5px 0;
}
#block-openx-3
{
	text-align:center;
}