/* $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:12px;; /* 16px x .75 = 12px */
    line-height: 1.25em; /* 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, legend, fieldset
  {
    /* 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:"Trebuchet MS", Verdana, Arial, sans-serif;
	font-size: 0.5 em;
	line-height: .1.25 em;
	color:#000000;
	
  }

  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-family:"Trebuchet MS",Verdana,Arial,sans-serif;
	font-size: 1.8em;
    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:"Trebuchet MS", Verdana, Arial, sans-serif;
	font-size:13px;
	margin:0px 0px 15px 0px;
	line-height:1.3em;
  }

/** 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;
  }
  
 /*********NO DISC LIST ITEMS*************/
 .no-disk-list
 {
	 list-style-type:none;
	 padding:0px;
	 margin:0px;
	 clear:both;
 }
 

/** 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:#95a14f;
  }

  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
  {
    border: 0;
  }

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

/** forms **/
  form
  {
    margin: 0;
    padding: 0;
  }

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

}
#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
{
	font-family:"Times New Roman", Georgia, Times, serif;
}

.views-field-field-feature-type-value, .views-field-field-video-cateogry-value
{
display:inline;
color:#96a153;
font-size:24px;
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;
clear:both;
}


/* weather */

.block-weather 
{
float:left;
margin-left:10px;
width:500px;
}

.block-weather p 
{
	line-height:30px;
}

.block-weather .title
{
display:none;
}

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

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

/*Resources on Articles*/
.field-field-feature-resources
{
	clear:both;
}

/***********SOUND ADVICE LAST BAND***************/
.band-info-area
{
	border-top:1px dotted #666;
	padding:10px 0px 25px 0px;
	margin:5px 0px 0px 0px;
}

.last-band-image 
{
	float:right;
	width:300px;
	padding:0px 0px 8px 8px;
}

/*TABLE OF CONTENTS*/
.field-type-nodereference .node_read_more
{
	display:none;
}




				/*************/
/******  ARTICLES THAT REQUIRE TABLE OF CONTENTS  *************
				/*************/
/*				
.clear
{
	clear:both;
}
*/
.toc-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;
}

*/
.section-contents-right
	{
		float:left;
	}

.toc-section-header
{
	margin-bottom:10px;
}

.section-img-left
	{
		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;
	}
*/

.toc-articles-back-link a:hover
{
	border-bottom:1px dotted #95a14f;
}

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

.views-field-newsletter-thumbnail-fid {
	padding:10px 15px 5px 0px;
	}
	
