﻿/*----------------------------------------------------------
Base CSS.
Each site consists of:
 - Base
 - Layout
 - Color
 - Optional override.

As such this defines sensible defaults that can and are overridden below.
----------------------------------------------------------*/
body
{
    background-color: White;
    font-size: .75em;
    font-family: Arial, Helvetica, Sans-Serif;
    margin: 0;
    padding: 0;
    color: Black;
}

input, textarea, select, table
{
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
}

a:link
{
    color: inherit;
    text-decoration: underline;
}

a:visited
{
    color: inherit;
}
a:hover
{
    color: inherit;
    text-decoration: inherit;
}

a:active
{
    color: inherit;
}

p, ul
{
    padding-bottom: 10px;
    line-height: 1.6em;
}

img 
{
    border: none 0px Transparent;
}

/* HEADINGS   
----------------------------------------------------------*/
h1, h2, h3, h4, h5, h6
{
    font-size: 1.5em;
    color: inherit;
    font-family: inherit;
}

h1
{
    font-size: 2em;
    padding-bottom: 0;
    margin-bottom: 0;
}
h2
{
    padding: 0 0 10px 0;
}
h3
{
    font-size: 1.2em;
}
h4
{
    font-size: 1.1em;
}
h5, h6
{
    font-size: 1em;
}


/* PRIMARY LAYOUT ELEMENTS   
----------------------------------------------------------*/

.page
{
    background-color: inherit;
    width: 100%;
    min-width: 1000px;
    margin-top: 0px;
    margin-left: auto;
    margin-right: auto;
}

#pagefooter 
{
    clear: both;
    width: 100%;
    min-width: 1000px;
    background-color: inherit;
    color: #999;
    display: none;
}

#contentholder 
{
    background-color: inherit;
    color: inherit;
    width: 100%;
}

#contentfooter 
{
    clear: both;
    background-color: inherit;
    color: #999;
    display: none;
}

#headerspacer
{
    width: 100%;
    float: left;
    background-color: inherit;
    color: inherit;
    display: none;
}

#headercontainer
{
	width: 100%;
    float: left;
    margin-bottom: 0px;
    background-color: inherit;
    color: inherit;
    padding: 0;
}

#header
{
	width: 100%;
    float: left;
    background-color: inherit;
    color: inherit;
}

#fixedheader
{
    width: 100%;
    float: left;
    background-color: inherit;
    color: inherit;
    display: none;
}

#banner
{
    clear: both;
    width: 80%;
    float:left;
    text-align: inherit;
    padding: 0px 10% 0px 10%;
    background-color: inherit;
    font-size: 1.5em;
    color: inherit;
    display: none;
}


#main
{
    width: 94%;
    float: left;
    padding: 30px 3% 15px 3%;
    background-color: inherit;
    _height: 1px; /* only IE6 applies CSS properties starting with an underscrore */
}

#oneOne 
{
    float: left;
    width: 100%;
}

#maincontentheader 
{
    float: left;
    width: 100%;
}

#twoOne
{
    float: left;
    width: 47%;
    text-align:inherit;
    padding: 0px 3% 0px 0px;
}

#twoTwo
{
    float: left;
    width: 47%;
    text-align:inherit;
    padding: 0px 0px 0px 3%;
}

#threeOne 
{
    float: left;
    width: 31%;
    padding: 0px 2% 0px 0px;
    text-align:inherit;
}

#threeTwo
{
    float: left;
    width: 30%;
    padding: 0px 2% 0px 2%;
    text-align:inherit;
}

#threeThree 
{
    float: left;
    width: 31%;
    padding: 0px 0px 0px 2%;
    text-align:inherit;
}

#maincontentfooter 
{
    float: left;
    width: 100%;
}

#mainfooter
{
    background-color: inherit;
    clear: both;
    width: 100%;
    color: #999;
    padding-top: 20px;
}

/* Basic Horizontal Menu 
----------------------------------------------------------*/
#menucontainer 
{
    color: inherit;
    background-color: inherit;
    clear: both;
    float: left;
    width: 100%;
}


ul#menu
{
    float: left;
    border-top: 0px #5FC0E2 solid;
    border-bottom: 0px #5FC0E2 solid;
    padding: 10px 10px;
    margin: 0;
    text-align: left;
    background-color: inherit;
    color: inherit;
}

ul#menu li
{
    list-style: none;
    display: inline;
}

ul#menu li a
{
    padding: 10px 20px;
    font-weight: bold;
    text-decoration: none;
    line-height: 2.8em;
    background-color: inherit;
    color: inherit;
}

ul#menu li a:active
{
    text-decoration: none;
}


/* FORM LAYOUT ELEMENTS   
----------------------------------------------------------*/

fieldset 
{
    margin: 1em 0;
    padding: 1em;
    border: 1px solid #CCC;
}

fieldset p 
{
    margin: 0px 12px 0px 10px;
}

fieldset label 
{
    display: block;
}

fieldset label.inline 
{
    display: inline;
}

legend 
{
    font-size: 1.1em;
    font-weight: 600;
    padding: 2px 4px 8px 4px;
}

input[type="text"] 
{
    width: 200px;
    border: 1px solid #CCC;
}

textarea 
{
    width: 500px;
    height: 100px;
    border: 1px solid #CCC;
}

input[type="password"] 
{
    width: 200px;
    border: 1px solid #CCC;
}

/* TABLE
----------------------------------------------------------*/

table 
{
  border: solid 1px #e8eef4;
  border-collapse: collapse;
}

table td 
{
  padding: 5px;   
  border: solid 1px #e8eef4;
}

table th
{
  padding: 6px 5px;
  text-align: left;
  background-color: #e8eef4; 
  border: solid 1px #e8eef4;   
}

/* MISC  
----------------------------------------------------------*/
.clear
{
    clear: both;
}

.error
{
    color:Red;
}

.field-validation-error
{
    color: #ff0000;
}

.input-validation-error
{
    border: 1px solid #ff0000;
    background-color: #ffeeee;
}

.validation-summary-errors
{
    font-weight: bold;
    color: #ff0000;
}

/* ---------------- jquery.cycle ------------- */
.pics {  
    height:  227px;  
    width:   700px;  
    padding: 0;  
    margin:  0;  
} 
 
.pics img {  
    padding: 0px;  
    border:  0px solid #ccc;  
    background-color: #eee;  
    height: 227px; 
    width:  700px; 
    top:  0; 
    left: 0; 
} 

.cycleImages 
{
    padding: 0;
    margin: 0;
    background-color: inherit;
    color: Background;
    overflow: hidden;
    height: 300px;
    width: 300px;
}

.cycleImages img 
{
    display: none;
}

/* ---------------- end jquery.cycle ------------- */

/* ---------------- lightbox ------------- */

.gallery
{
    display: inline-block;
    width: 120px;
    padding: 5px;
    text-align: center;
    vertical-align: text-top;
}

/* ---------------- end lightbox ------------- */

#editSection a
{
    color: Navy;
    background-color: Gray;
    text-align: right;
}

#calendar
{
    width:800px;
}

.testimonial
{
    padding: 10px;
    background-color: #e8eef4;
}

.testimoniallabel
{
    margin: 0px;
    line-height: 1.0em;
    font-style: italic;
}

/* ---------------- Annual Calendar ------------- */

td.cal-booking
{
    background-color: Gray;
}

.month 
{
    padding: 5px;
    float: left;
}

.annualcalendarkey 
{
    padding: 5px;
    padding-top: 40px;
    clear:both;
}

.annualcalendarpager
{
    width: 400px;
}
.calendarnavigateleft
{
    float: left;
}
.calendarnavigateheader 
{
    float: left;
    padding: 20px;
}
.calendarnavigateright
{
    float: left;
}
.annualcalendarmonths
{
    clear: both;
}

#PageLeftLink  {background: url(../../Content/icons/pageLeft.png) no-repeat left center; display:inline-block; padding-left:40px;padding-top:90px;}
#PageRightLink  {background: url(../../Content/icons/pageRight.png) no-repeat right center; display:inline-block;padding-left:40px;padding-top:90px; }

/* ---------------- Dynamically added on mouseover ------------- */

.highlightEditSection 
{
    background-color: #38B4FA;
}
