/* Start of CMSMS style sheet 'Navigation: CSSMenu - Vertical' */
/* The wrapper determines the width of the menu elements */
#menuwrapper {
   width: 100%;
}


/* Unless you know what you do, do not touch this */
#primary-nav, #primary-nav ul {
   list-style: none;
   margin: 0px;
   padding: 0px;
   width: 100%;
   margin-left: -1px;  /* relative left location of entire list in sidebar
                                   overlaps page wrapper margin*/
}

/* controls for layout of non-parent items */
#primary-nav ul {
   position: absolute;
   top: 0;
   left: 100%;             /* relative left location of fly-outs, but paint order makes this unworkable*/
   display: none;
   width: 130px;          /* skinny up the fly-outs with absolute widths -
                                  progressive nature using % makes this dangerous */
}



/* Styling the basic apperance of the menu elements */
#primary-nav a {
   border: 1px solid #006699;
   display: block;                    /*  creates container for text and color */
   margin: 0px;
   padding: 5px 10px;
   color: #006699;                  /* text color */
   font-size: 110%;

   text-decoration: none;
   background: transparent;
   min-height:1em; /* Fixes IE7 whitespace bug*/
}

#primary-nav li {
   margin-bottom: -1px;
   position: relative;
}

#primary-nav li, #primary-nav li.menuparent {
   background-color: #ececec;
   min-height:1em; /* Fixes IE7 bug*/
}

/* Styling the basic apperance of the active page elements */
#primary-nav li.menuactive {
   background-color: #ececec; /* background chain of menu items for page displayed - awkward
                                               to have it different than rest of menu*/
}

/* Styling the basic apperance of the menuparents - here styled the same on hover (fixes IE bug) */
#primary-nav li.menuparent,
#primary-nav li.menuparent:hover,
#primary-nav li.menuparenth {
/*   background-image: url(images/cms/arrow.gif);
   background-position: center right;
   background-repeat: no-repeat;  */
}


/* Styling the apperance of menu items on hover */
#primary-nav a:hover {
  color: #000000;
}
#primary-nav li:hover {
  color: #000000;
}
#primary-nav li.menuh {

}
#primary-nav li.menuparenth {

}
#primary-nav li.menuactiveh {

}


/* The magic - set to work for up to a 3 level menu, but can be increased unlimited */
#primary-nav ul,
#primary-nav li:hover ul,
#primary-nav li:hover ul ul,
#primary-nav li.menuparenth ul,
#primary-nav li.menuparenth ul ul {
   display: none;
}
#primary-nav li:hover ul,
#primary-nav ul li:hover ul,
#primary-nav ul ul li:hover ul,
#primary-nav li.menuparenth ul,
#primary-nav ul li.menuparenth ul,
#primary-nav ul ul li.menuparenth ul {
   display: block;
   font-weight: normal;
}


/* IE Hack, will cause the css to not validate */

#primary-nav li, #primary-nav li.menuparenth { _float: left; _height: 1%; min-height:0;}  /*03-18*/
#primary-nav li a { _height: 1%; min-height:0;} /*03-18*/


/* section header 
#primary-nav li.sectionheader {
   border-left: 1px solid #006699;
   border-top: 1px solid #006699;
   font-size: 130%;
   font-weight: bold;
   padding: 1.5em 0 0.8em 0.5em;
   background-color: #fff;
   margin: 0;
   width: 100%;
}


/* separator 
#primary-nav li hr.separator {
   display:block;
   height: 0.5em;
   color: #abb0b6;
   background-color: #abb0b6;
   width: 100%;
   border:0;
   margin:0;
   padding:0;   
   border-top: 1px solid #006699;
   border-right: 1px solid #006699;
}*/
/* End of 'Navigation: CSSMenu - Vertical' */

/* Start of CMSMS style sheet 'Layout: Left sidebar + 1 column' */
/*****************
browsers interpret margin and padding a little differently, 
we'll remove all default padding and margins and
set them later on
******************/
* {
margin:0;
padding:0;
}

/* Set initial font styles */

body {
   text-align: left;
   font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
   font-size: 75.01%;
   line-height: 1em;
   
}

/* set font size for all divs, this overrides some body rules */

div {
   font-size: 1em;
}

/* if img is inside "a" it would have borders, we don't want that */

img {
   border: 0;
}

/****************
default link styles
*****************/
/* set all links to have no underline */

a,
a:link
a:active {
   text-decoration: none     /*no underline;*/

    /* css validation will give a warning if color is set without background color. 
     this will explicitly tell this element to inherit bg colour from parent element */

   background-color: inherit; 
   color: #385C72;            /* for some reason this changes the color of the prev/next links */
}

a:visited {
   text-decoration: none        /* no underline;*/
 /*  background-color: inherit;  this seems to blank out a linked image if left on...*/
   color:  #385C72;               /*   a different color can be used for visited links */
}

/* remove underline on hover and change color */
a:hover {
   text-decoration: none;
   background-color: inherit;
   color: #000000;
}


/*****************
basic layout 
*****************/
body {
   background-color: #ccc;
   color: #333;
   margin:1em;    /* gives some air for the pagewrapper */
}

/* page wrapper, min max width */
div#pagewrapper {
   border: 1px solid black;
   margin: 0 auto;       /* this centers wrapper */
   max-width: 925px;   /* IE wont understand these, so we will use javascript magick */
   min-width: 900px;
   background-color: #fff;
 /*  color: black;*/
}

/*** header ***
we will hide text and replace it with a image
we need to assign a height for it so that the image wont cut off
*/
div#header {
   height: 70px;           /* adjust according your image size */
   background: #FFFFFF;           
}

div#header h1 a {
   /* you can set your own image here */
   background: #FFFFFF url(images/cms/spine2.jpg) no-repeat 0 0px; 
   display: block;
   height: 70px;             /* adjust according your image size */
   text-indent: -999em;  /* this hides the text */
   text-decoration:none; /* old firefox would have shown underline for the link, this explicitly hides it */
}


div#tasting-sched {
   float: right;    
   text-align: center;
   width: 150px;   
   display: inline;  /* FIX IE double margin bug */
   margin: 7px 50px 0px 5px;
   padding: 6px 15px 3px 15px;
   border: 1px solid black;
}

div#tasting-sched a{
  text-decoration:none;
}

div#crawl {
   text-align: left;
   color: #0000FF;
   font-weight: bold;
   padding: 0px 0px 0px 15px;
}

div#crawl a{
   text-decoration: none;
   color: #0000FF;
}

div#crawl a:hover{
   color: #000000;
}

/*  Not really using these at the moment, but leave in for space... */
div.breadcrumbs {
   padding: .5em 0; /* CSS short hand rule first value is top then right, bottom and left */
   font-size: 90%;             /* its good to set fontsizes to be relative, 
                                        this way viewer can change his/her fontsize */
text-align: center;
   margin: 0 1em;              /* css shorthand rule will be opened to be "0 1em 0 1em" */
/*   border-bottom: 1px solid #ccc;*/
}


/***********
main container for the 3 columns
************/

div#content {
   margin: 0.5em 0 2em 0;   /* some air above and under menu and content */
   color: #00000;

}

/* right column */

div#ad_bar {
   float: right;    /* set sidebar on the left side. Change to right to float it right instead. */
   width: 170px;     /* sidebar width, if you change this please also change #main margins */
   display: inline;  /* FIX IE double margin bug */
   padding: 0 0 5px 10px;
}

/* ***** remove  for now, and add later with "advertise here" contact
div#ad_premium {
   background: #FFFFFF url(images/cms/ad-1.jpg) no-repeat 0 0px;
   display: block;
   height: 170px;        
}
*/

div#adsense {
/*   background: #FFFFFF url(images/cms/sample-ads.gif) no-repeat 0 0px;*/
/*   display: block;*/
   height: 600px;             /* adjust according your image size */ 

 }


/* central text area, collapsable, falls between the left ad_bar and and right nav */ 

div#main {
/*   width: 878px;*/
   margin-left: 200px;       /* this will give room for sidebar to be on the left side, 
                                      make sure this space is bigger than sidebar width */
   margin-right: 180px;       /* and some air on the right */
}

div#cse-search-results {
   width: 300px;
   margin-right: 20px;       /* and some air on the right */
}


div#printbutton {
	float: right;
}		


/* left column */ 
div#sidebar {
   float: left;    /* set sidebar on the left side. Change to right to float it right instead. */
   width: 185px;     /* sidebar width, if you change this please also change #main margins */
   display: inline;  /* FIX IE double margin bug */
   margin-left: 1;
   margin-bottom: 5px;
}

div#amazon {
/*   background: #FFFFFF;     */
   height: 50px;             /* adjust according your image size */
 /*  text-decoration:none;  old firefox would have shown underline for the link, this explicitly hides it */ 
   margin-left: 1px;
}

div#amazon a:visted{
    text-decoration:none;
}

div#links {
   font-size: 1.2em;
}

div#links p{
   margin: 1em auto 0 1em;
}

div#links a,a:link{
   text-decoration: none;
   color: 385C72;

}

div#links a:hover{
   text-decoration: none;
   color: #000000;
}

div#footer {
   clear: both;       /* keep footer below content and menu */
   color: #385C72;
   background-color: #FFF; 
}

div#footer p {
   font-size: 0.8em;
   text-align: center;  /* centered text */
   margin: 0 0 1em 0;
}

div#footer p a {
   color: #000000; /* needed because footer link would be same color as background otherwise */
  text-decoration: none 
}

/* as we hid all hr for accessibility we create new hr with extra div element */
div.hr {
   height: 1px;
   padding: 1em;
   border-bottom: 1px dotted black;
   margin: 1em;
}

/* relational links under content */
div.left49 {
   width: 49%; /* 50% for both left and right might lead to rounding error on some browser */
   font-size: 0.8em;

}

div.left49 a{
  text-decoration: none 
}

div.right49 {
  float: right;
  width: 49%;
  font-size: 0.8em;
  text-align: right;   
}

div.right49 a{
  text-decoration: none 
}



/********************
CONTENT STYLING
*********************/

/* HEADINGS */

/* summary line with pointing hand */
div#content h1 {               
   background: #FFFFFF url(images/cms/hand.jpg) no-repeat 0 0px; 
   display: block;
   float: left;
   height: 20px; 
   width: 500px;         
   color: #000000; 
   font-size: 1em;
   font-style: italics;
   line-height: 1.5em;
   text-margin: 0 auto 2em 35px;
}

/* heading for content block titles */
div#content h2 {
	color: #294B5F; 
	font-size: 1.6em; 
	text-align: left; 
/* some air around the text */
	padding: 0.7em 0 0.6em 0.5em;
/* set borders around header */
	border-bottom: 1px solid #CC0033; 
	border-left: .5em solid #CC0033; 
        line-height: 1em;
/* and some air under the border */
        margin: 0 0 0.5em 0;

}
div#content h3 {
   color: #294B5F; 
   font-size: 1.1em;
   line-height: 3em;
   margin: 0 0 0 0;
}

 /* address style*/
div#content h4 {
   color: #000000; /*294B5F; */
   font-size: 1em;
   line-height: 1.1em;
   margin: 0 0 0 0;
}

 /* style for restaurant highlights, bullets (without the bullets) */
div#content h5 {
   color: #294B5F; 
   font-size: 1em;
   line-height: 1.1em;
   margin: 0 0 0.45em 0;
}

div#content h5 a{
    text-decoration: none;
}

div#content h5 a:hover{
    color: #000000;
}


 /* heading for menu and link blocks*/
div#content h6 {  
	color: #FFFFFF; 
	font-size: 1.1em; 
	text-align: center; 
/* some air around the text */
	padding-left: 0.1em;
	padding-bottom: 5px;
	padding-top: 5px;
/* set borders around header */
	border-bottom: 1px solid #CC0033; 
	border-top: 1px solid #CC0033; 
	border-left: 1px solid #CC0033; 
	border-right: 1px solid #CC0033;
        background-color: #CC0033; 
/*        line-height: 1em;*/
/* and some air under the border */
        margin: 1em 0 1em 0;
}


/* END HEADINGS */

/* TEXT */
p {
   font-size: 1em;
   margin: 0 0 1.5em 0; /* some air around p elements */
   line-height: 1.4em;
   padding: 0;
}

blockquote {
   border-left: 10px solid #fff;
   margin-left: 10px;
}

strong, b {
/* explicit setting for these */
   font-weight: bold;
}
em, i {
/* explicit setting for these */
   font-style:italic;
}

/* Wrapping text in <code> tags. Makes CSS not validate */
code, pre {
 white-space: pre-wrap;       /* css-3 */
 white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
 white-space: -pre-wrap;      /* Opera 4-6 */
 white-space: -o-pre-wrap;    /* Opera 7 */
 word-wrap: break-word;       /* Internet Explorer 5.5+ */
 font-family: "Courier New", Courier, monospace;
 font-size: 1em;
}

pre {
   border: 1px solid #000;  /* black border for pre blocks */
   background-color: #ddd;
   margin: 0 1em 1em 1em;
   padding: 0.5em;
   line-height: 1.5em;
   font-size: 90%;


}

/* Separating the divs on the template explanation page, with some bottom-border */
div.templatecode {
  margin: 0 0 2.5em;
}

/* END TEXT */

/* LISTS */
/* lists in content need some margins to look nice */
div#main ul,
div#main ol,
div#main dl {
   font-size: 1.0em;
   line-height: 1.4em;
   margin: 0 0 1.5em 1em;
   text-decoration: none;
   color: #FFFFFF;
}

div#main ul li a,
div#main ol li {
    margin: 0 0 0.25em 0;
    text-decoration: none;
}


/* definition lists topics on bold */
div#main dl dt {
   font-weight: bold;
   margin: 0 0 0 1em;
}
div#main dl dd {
   margin: 0 0 1em 1em;
}

div#main dl {
  margin-bottom: 2em;
  padding-bottom: 1em;
  border-bottom: 1px solid #c0c0c0;
}

/*div#bulletmenu ul li {
   font-size: 1.0em;
   line-height: 1.4em;
   margin: 0 0 1.5em 1em;
 */

}

/* END LISTS */
/* End of 'Layout: Left sidebar + 1 column' */

/* Start of CMSMS style sheet 'Module: News' */
div#news {
  margin: 2em 0 1em 1em;  /* margin for the entire div surrounding the news list */
/*  border: 1px solid #000; */
 /* background: #FFE9AF; */
}

div#news h2 {
   line-height: 2em;
   background: #fff;
}

.NewsSummary {    /* just the summary line */
    padding: 0.5em 0 0.5em 0; /* padding for the news article summary */
    margin: .7em 0.5em 0 0.5em; /* margin to the bottom of the news article summary */
/*    color: #0000ff;*/
/*    border-bottom: 1px solid #ccc; */
}

.NewsSummaryPostdate {
  font-size: 90%;
  font-weight: bold;
 }


.NewsSummaryLink {
/*   text-align: left;
    color: #ff6600;*/
}

.NewsSummaryLink a {   /*  just the bolded link text */
    font-weight: bold;
    text-decoration: none;
}

.NewsSummaryCategory {
  font-style: italic;
  margin: 5px 0;
 }

.NewsSummaryAuthor {
  font-style: italic;
  padding-bottom: 0.5em;
}

.NewsSummarySummary, .NewsSummaryContent {
  line-height: 140%;
 }

.NewsSummaryMorelink {
  padding-top: 0.5em;
}

#NewsPostDetailDate {
  font-size: 90%;
  margin-bottom: 5px;
  font-weight: bold;
  }

#NewsPostDetailSummary {
   line-height: 150%;
   }

#NewsPostDetailCategory {
  font-style: italic;
  border-top: 1px solid #ccc;
  margin-top: 0.5em;
  padding: 0.2em 0;
}

#NewsPostDetailContent {
  margin-bottom: 15px;
  line-height: 150%;
  }

#NewsPostDetailAuthor {

  padding-bottom: 1.5em;
  font-style: italic;
}



/* to add specific style to the below divs, uncomment them. */

/*
#NewsPostDetailTitle {color: #CCC;}
 #NewsPostDetailHorizRule {}
#NewsPostDetailPrintLink {}
#NewsPostDetailReturnLink {}
*/
/* End of 'Module: News' */

