/* $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 */
	background-color: #FFF;
	
  }

  #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.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: Garamound, "Times Roman";
	font-size: 0.5 em;
	line-height: .1.25 em;
	color:#000;

    font-size: 11px;
	margin-top: 0px;
	margin-right: 0px;
	margin-left: 0px;
	margin-bottom: 18px;
	font-family: Verdana,Tahoma,Arial,Helvetica,"Bitstream Vera Sans",sans-serif;
	line-height: 1.6em;
	
  }

  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
  }
  
  p
  {
  	font-size: 12px;
	margin-top: 0px;
	margin-right: 0px;
	margin-left: 0px;
	margin-bottom: 18px;
	font-family: Verdana,Tahoma,Arial,Helvetica,"Bitstream Vera Sans",sans-serif;
	line-height: 1.6em;
  
  }

/** headings **/
  h1
  {
    font-family:Georgia, "Times New Roman", Times, serif;
	font-size: 26px;
	line-height: 28px;
	font-weight:normal;
    margin-top: 0;
    margin-bottom: 0em;
	
	/*
	
	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-size: 12px;
	margin-top: 0px;
	margin-right: 0px;
	margin-left: 0px;
	margin-bottom: 18px;
	font-family: Verdana,Tahoma,Arial,Helvetica,"Bitstream Vera Sans",sans-serif;
	line-height: 1.6em;
    }

/** 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:#000;
  text-decoration:none;
  }

  a:visited
  {
  color:#000;
  text-decoration:none;
  }

  a:hover,
  a:focus
  {
  color:#688d32
  }

  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 #BBCF74;
background:#BBCF74;

}
#search-block-form .form-text
{
width:200px;
font-size:1em;
float:left;
}
.form-submit
{
font-size:14px;
}

/* 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;
 font-family:Gill Sans, sans-serif;
	font-size: 16px;
	line-height: 24px;
    margin-top: 0;
    margin-bottom: 0em;
	color:#688d32;
	text-transform:uppercase;
	  }




/*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-weather
{
margin-right:15x;
height:30px;
/*float:right; */
}
.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;
}


/* front page panel display */

.panel-display .views-field-teaser
{
padding-right:4px;
}

.panel-display .views-field-title a
{
font-size:14px;
line-height:16px;
}

.field-content p
{
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size:11px;
}

.view-issue-cmag-current-month .field-content
{
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: 12px;

margin-top: 0px;

margin-right: 0px;

margin-left: 0px;

margin-bottom: 0px;

font-family: Verdana,Tahoma,Arial,Helvetica,"Bitstream Vera Sans",sans-serif;

line-height: 1.6em;

}

.eats_row2 .views-footer
{
width:145px;
}

.category

{

font-family: Gill Sans,sans-serif;

font-size: 25px;

line-height: 18px;

margin-top: 0pt;

margin-bottom: 5px;

color: #688d32;

text-transform: uppercase;

}

.category2

{

font-family: Gill Sans,sans-serif;

font-size: 16px;

line-height: 18px;

margin-top: 0pt;

margin-bottom: 5px;

color: #688d32;

text-transform: uppercase;

}

.views-field-field-feature-photo-thumb-fid
{
padding:10px 15px 5px 0;
}
.views-field-field-event-art-fid
{
padding:10px 15px 5px 0;
}


 .views-field-field-feature-photo-fid {

  float: left;
  padding-right: 10px;


}



.view-ARTIST-PROFILES-LIST .views-field-title {

  	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: bold;
    padding-top: 10px;


}


.view-ARTIST-PROFILES-LIST .views-field-title a {

  	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: bold;



}


.view-ARTIST-PROFILES-LIST .views-field-title a:link {

  	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: bold;



}


.view-ARTIST-PROFILES-LIST .views-field-title a:hover {

  	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: bold;



}


.view-ARTIST-PROFILES-LIST .views-field-title a:visited {

  	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: bold;



}


input#edit-preview  {

display: none;

}



input#edit-preview.form-submit  {


}

.field-field-recipe-photo   {
	float: right;
	padding:10px;
	width: 100%;
}

.field-field-recipe-ingredients    {
	float: left;
	
	width: 100%;
}

.field-field-recipe-directions    {
	float: left;
	
	width: 100%;
}


div.comment-inner.clear-block  {
	border-bottom-width: thin;
	border-bottom-style: dotted;
	border-bottom-color: #333;	
}


.comment-inner .content  {

	background-color: #FFC;
}


.comment-inner h3.title a  {

	font-size: 18px;
}


















