@charset "utf-8";
header,footer,{
	display: block;
}

body {
	font-family: Arial, Helvetica, sans-serif;	
	font-size: 100%;
	margin-left: 20px;
	margin-top: 20px;
	margin-right: 20px;
	margin-bottom: 20px;
	padding: 0;
	color: #000;
	background-color: #333399;
	background-repeat: repeat;
	background-position: 25% 25%;
	background-image: url(../Assets/Images/background-small.jpg);
}



/* ~~ Element/tag selectors ~~ */
ul, ol, dl { 
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 10px;
	padding-left: 10px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
	}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}

/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color:#414958;
	text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color: #4E5869;
	text-decoration: underline;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
}

/*960px width as all modern monitors support at least 1024 × 768 pixel resolution. 960 is divisible by 2, 3, 4, 5, 6, 8, 10, 12, 15, 16, 20, 24, 30, 32, 40, 48, 60, 64, 80, 96, 120, 160, 192, 240, 320 and 480. This makes it a highly flexible base number to work with. */
#wrapper {
	width: 960px;
	margin: 0 auto;}
	
/* ~~ this container surrounds all other divs giving them their percentage-based width ~~ */
.container {
	width:100%;
	max-width: 1260px;/* a max-width may be desirable to keep this layout from getting too wide on a large monitor. This keeps line length more readable. IE6 does not respect this declaration. */
	min-width: 420px;/* a min-width may be desirable to keep this layout from getting too narrow. This keeps line length more readable in the side columns. IE6 does not respect this declaration. */
	position: relative;
	background-color: #FFF;
	border: 1px solid #000000;
	 /* the auto value on the sides, coupled with the width, centers the layout. It is not needed if you set the .container's width to 100%. */
}

/* ~~ the header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo ~~ */
.header {
	width: 960px;
font-family: Verdana, Geneva, sans-serif;
	font-size: small;
	font-weight: normal;
	text-align: left;
	background-color: #000066;
	padding-top: 5px;
	padding-bottom: 5px;
	}

.header img {
	width:960px;
	background-image: url(../Assets/Images/header_image21.jpg);
	margin-top: 5px;
	background-color: #000066;
}
.header a {
	color:#FFFFFF;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	text-decoration: underline;
	margin-bottom: 10px;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}

#gallery {
	float: left;
	width: 960px;
	height:350px;
	overflow: hidden;
	background-image:url(../Assets/Images/Ban1.jpg)
}

.webgallery {
	position: relative;
    padding-bottom: 75%;
	border: thin;
    height: 0;
    overflow: hidden;
	
}

.webgallery iframe{
	position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
	
}

#tftd-box a {float: left;
    height: 172px;
    width: 233px;
    margin: 0;
    padding: 0;}
	
.options{ display:block}
/* ~~ These are the columns for the layout. ~~ 

1) Padding is only placed on the top and/or bottom of the divs. The elements within these divs have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.

2) No margin has been given to the columns since they are all floated. If you must add margin, avoid placing it on the side you're floating toward (for example: a right margin on a div set to float right). Many times, padding can be used instead. For divs where this rule must be broken, you should add a "display:inline" declaration to the div's rule to tame a bug where some versions of Internet Explorer double the margin.

3) Since classes can be used multiple times in a document (and an element can also have multiple classes applied), the columns have been assigned class names instead of IDs. For example, two sidebar divs could be stacked if necessary. These can very easily be changed to IDs if that's your preference, as long as you'll only be using them once per document.

4) If you prefer your nav on the right instead of the left, simply float these columns the opposite direction (all right instead of all left) and they'll render in reverse order. There's no need to move the divs around in the HTML source.

*/
.sidebar1 {
	float: left;
	width: 35%;
	background: #F4EAA2;
	padding-bottom: 10px;
}

.sideblock {
	margin: 15px;
	padding-top: 10px;
	padding-bottom: 5px;
	border-radius: 15px;
	background-color: #CCCCCC;
	border-top-style: groove;
	border-right-style: groove;
	border-bottom-style: groove;
	border-left-style: groove;
	border-top-color: #330099;
	border-right-color: #330099;
	border-bottom-color: #330099;
	border-left-color: #330099;
}

.sideblock2 {
	margin: 15px;
	padding-top: 10px;
	padding-bottom: 5px;
	border-radius: 15px;
	}

.sideblock p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-style: normal;
	line-height: 2em;
	color: #000000;
}
.sideblockaddress {
	margin: 15px;
	padding-top: 10px;
	padding-bottom: 5px;
	border-radius: 15px;
	
}
	
.sideblockaddress p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-style: normal;
	line-height: 1.4;
	color: #000000;
	
	}
	
.sideblock  img {
	padding-right: 2px;
	padding-left: 2px;
	padding-top: 2px;
	padding-bottom: 2px;
}
.sideblock p img {
	float: left;
	padding-right: 1px;
	margin-right: 6px;
}


.sideblock p a{
	font-weight: bold;
	color: #33CCFF;
	text-decoration: underline;
}
.sideblock h3 a {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	color: #0000CC;
	text-decoration: underline;
}
.sideblock2 ul li {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	line-height: 1.70;
	color: #000000;
	margin-left: 25px;
	display: list-item;
	font-style: normal;
	list-style-type: disc;
}


.sidebar1 h4 {
	font-family: 'blackjackregular', "Apple Chancery", Script;
	font-weight: bold;
	font-size: xx-large;
	color: #993333;
	text-align: center;
	margin-left: 20px;
	padding-top: 20px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}

.sidebar1 h3 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bolder;
	font-variant: normal;
	text-transform: uppercase;
	color: #000000;
	text-align: left;
}
.sideparahead {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-style: normal;
	font-weight: bold;
	color: #000000;
	text-align: left;
	margin-right: 5px;
	padding-top: 3px;
	padding-right: 25px;
	padding-left: 45px;
	display:block;
	width: 75%;
}

.sideimg {
	background-color: #FFFFFF;
	padding-top: 45px;
}
.sideimg img{
	float: left;
	width: 100%;
	background-color: #FFFFFF;
	height: auto;
	padding: 0px;
}


.calendar-container {
    position: relative;
    padding-bottom: 75%;
	border: thin;
    height: 0;
    overflow: hidden;
}

.calendar-container iframe {
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
	
}



.content {
	width: 65%;
	float: left;
	margin-right: -1px;
	background-color: #FFFFFF;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-style: normal;
	line-height: 1.4;
	padding-top: 10px;
	padding-right: 0;
	padding-bottom: 10px;
	padding-left: 0;}
.contentCalendar {
	float: left;
	width: 960px;
}


/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol { 
	padding: 0 15px 15px 40px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
}

.content hr {
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 10px;
	padding-left: 0px;
	margin: 10px;
	border: 6px solid #990000;
}

.content  p {
	padding-left: 22px;
	margin-left: 3px;
	margin-right: 3px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 14px;
	color: #000000;
}

.content h1 {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 24px;
	color: #000000;
	line-height: 20px;
	padding-top: 22px;
	padding-right: 22px;
	padding-bottom: 0px;
	padding-left: 22px;
}
.content h2 {
	font-family: Verdana, Geneva, sans-serif;
	color: #000000;
	text-shadow: 1px 1px #666666;
	font-stretch: wider;
	padding-left: 22px;
	font-size: 18px;
}
	
.content h3 {
	font-family: 'blackjackregular', "Apple Chancery", script;
	font-size: 24px;
	font-weight: normal;
	color: #993333;
	padding-right: 22px;
	padding-left: 22px;
}
/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol { 
	padding: 0 15px 15px 40px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
}
.content ul li {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-style: normal;
	margin-left: 20px;
	list-style-type: square;
}

 
#navbar {
	width: 100%;
	float: left;
	text-align: center;
	display: inline;
	clear: both;
	margin: 0px;
	position: relative;
	background-color: #333300;
	border-top-left-radius: 25px;
	border-top-right-radius: 25px;
	border-radius: 25px;
}

/* The outermost container of the Menu Bar, an a width of 960 px with no margin or padding */
ul#navmenu {
	float: left;
	width: 960px;
	height: 30px;
	margin: 0;
	padding: 0;
	list-style: none;
	z-index: 1000;
}
 
ul#navmenu li {
	display: inline;
	width: 192px;
	float:left;
	position:relative;
	overflow: hidden;
	  
}
 
ul#navmenu li a {
  float: left;
  font: bold 1em Arial, Helvetica, sans-serif;
  line-height: 30px;
  width: 192px;
  color: #fff;
  text-decoration: none;
  text-align:center;
   margin: 0;
  padding: 1px;
  background: rgba(102,102,51,1);
  background-image: url(../Images/PNG%20graphics/Button1.jpg); 
  zoom: 1;
  -moz-border-radius-bottomright: 8px;
  -moz-border-radius-topright: 8px;
	-webkit-border-bottom-right-radius: 10px;
	-webkit-border-top-right-radius: 10px;
	-moz-border-radius-bottomleft: 8px;
	-moz-border-radius-topleft: 8px;
	-webkit-border-bottom-left-radius: 10px;
	-webkit-border-top-left-radius: 10px;
}
 
ul#navmenu li a:hover , ul#navmenu li a:focus, ul#navmenu li a:active {
	background: #CCCCCC;}
	
	
ul#navmenu  li ul {
  display: none; /* THE SUBMENU LIST HIDDEN BY DEFAULT */
  margin: 0;
  padding: 0;
  height:auto;
 }

/* THE SUBMENU LIST */
ul#navmenu  li ul li a{
  float:left;
  text-align: center;
  padding-top: 8px;
  padding-bottom: 8px;
  display: block;
  position:relative; /* THE SUBMENU LIST positioned under the parent menu */
  font: bold 14px Arial, Helvetica, sans-serif;
}

ul#navmenu  li:hover ul {
  display: inline;
  position:absolute;
  float:left;
  }
  ul#navmenu li:hover ul {display: block; position: relative; 
  }


  ul#navmenu li:hover li {float: none; border-bottom:thin #FFFFCC}
 ul#navmenu li:hover a {
	color: #000000;
	-moz-border-radius-bottomright: 8px;
  -moz-border-radius-topright: 8px;
	-webkit-border-bottom-right-radius: 10px;
	-webkit-border-top-right-radius: 10px;
	-moz-border-radius-bottomleft: 8px;
	-moz-border-radius-topleft: 8px;
	-webkit-border-bottom-left-radius: 10px;
	-webkit-border-top-left-radius: 10px;
		background-color: rgba(102,153,102,1);
	background-image: url(../Images/PNG%20graphics/Button_1.jpg);
}
 ul#navmenu li:hover li a:hover {
	background: #CCCCCC;
	-moz-border-radius-bottomright: 8px;
	-moz-border-radius-topright: 8px;
	-webkit-border-bottom-right-radius: 10px;
	-webkit-border-top-right-radius: 10px;
	-moz-border-radius-bottomleft: 8px;
	-moz-border-radius-topleft: 8px;
	-webkit-border-bottom-left-radius: 10px;
	-webkit-border-top-left-radius: 10px;
	-moz-border-radius: 2px;
}
 #navmenu li ul li {border-top: 0px;}
 
 /* ~~ The Hyperlinks~~ */
a.blue:link {color: #0000ff; background: #ffffff; font-weight: bold;}
a.blue:visited {color: #0000ff; background: #ffffff; font-weight: bold;}
a.blue:hover {color: #0000ff; background: #ffffff; font-weight: bolder;}
a.blue:active {color: #0000ff; background: #ffffff; font-weight: bold;}

/* ~~ Contact form rules ~~ */
form {
	margin-top: 1px;
	margin-left: 15px;
	border: thin solid #000000;
	width: 600px;
	float: left;
}
fieldset {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	color: #000000;
	font-weight: bold;
}
fieldset p {
	float: left;
	display: block;
	margin-right: 5px;
	margin-left: 5px;
	width: 90%;
}


label {
	width: 100px;
	float: left;
	padding-right: 15px;
	margin-right: 15px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: bold;
}
	
legend {
	font-size: 100%;
	color: #DE0D07;
	padding-bottom: 10px;
	font-family: Arial, Helvetica, sans-serif;
	float: left;
	width: 70%;
	margin-left: 20px;
	margin-right: 15px;
	padding-right: 15px;
}

input[type="text"], input[type="email"], input[type="tel"] {
	background-color: rgb(247,239,0);
	background-color: rgba(247,247,204,0.5);
	display: block;
	width: 250px;
	border-radius: 5px;
	float: left;
}

textarea {
	font-family: Arial, Helvetica, sans-serif;
	padding: 5px;
	width: 100%;
	margin-top: 10px;
	border-radius: 5px;
	float: left;
	}

/* Submit button Rules */
input[type="submit"] {
	width: 150px;
	margin-top: 20px;
	border: 1px solid #654421;
	background-color: #DE0D07;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	font-weight: bold;
	color: #FFFFFF;
	margin-left: 210px;
	text-transform: uppercase;
	padding: 10px;
	margin-bottom: 20px;
	font-style: normal;
}
.popupContent {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-style: normal;
	line-height: 1.4;
	color: #000000;
	display: block;
	float: left;
	width: 75%;
	background-color: #FFFFFF;
	list-style-type: square;
	border: thin solid #000000;
}


/* ~~ The footer ~~ */
.footer {
	background: #6F7D94;
	position: relative;/* this gives IE6 hasLayout to properly clear */
	clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
	overflow: hidden;
	display: inline-block;
	width: 960px;
	}

.footer_section {
	float: left;
	width: 185px;
	display:block;
	padding-top: 5px;
	overflow: hidden;
	position: relative;
}
.footer_section p {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	font-weight: normal;
	font-variant: normal;
	color: #FFFFFF;
	padding-bottom: 5px;
	padding-top:5px;
	font-style: normal;
}


 
.footer_section2 {
	clear: none;
	float:right;
	display: block;
	width: 215px;
	padding-top: 5px;
	position: relative;
	overflow: hidden;
}
.footer_section2 p {
	font-family:  Verdana, Geneva, sans-serif;
	font-size: 12px;
	font-style: normal;
	color: rgb(255,255,255);
	display: block;
	font-weight: bold;
	text-align: left;
	width: 215px;
	padding-top: 5px;
	padding-bottom: 5px;
	float: left;
	font-variant: normal;
	position: static;
	line-height: 1.5em;
	}


.footer_section3 {
	float: left;
	display:block;
	clear: none;
	overflow: hidden;
	width: 560px;
	position: relative;
	padding-top: 5px;
}

.footer_section3 ul#footernav{
	margin:0;
	float: left;
	width: 560px;
	padding-top: 0;
	padding-right: 0;
	padding-bottom:0;
	padding-left: 0;
	}

.footer_section3 ul#footernav li {
	float:left;
	position: relative;
	list-style-type:none;
	display: block;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #FFFFFF;
	width: 112px;
	overflow: hidden;
	text-align: center;
	
}

.footer_section3 li li{
	list-style-type:none;
	display: list-item;
	float: left;
	}

	

.footer_section3 ul#footernav li h2 {
	width: 112px;
	margin-bottom: 0;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #FFFFFF;
	display: inline;
	text-align: center;
	padding-top: 10;
	padding-bottom: 10;
	
}

.footer_section3 ul#footernav li h2 a{
	text-decoration:none;
	float:left;
	position:relative;
	list-style-type:none;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	font-weight: bold;
	font-variant: normal;
	color: #FFFFFF;
	zoom: 1;
	display: block;
	overflow: hidden;
	text-align: center;
	margin-bottom: 0px;
	width: 112px;
	padding-top: 5px;
	padding-bottom: 5px;
		
}

.footer_section3 ul#footernav li a:hover{
	text-decoration: underline;
}
	
.footer_section3 ul#footernav ul.navsub {
	position:relative;
	display:inline-block;
	left:0px;
	top:0px;
	}

.footer_section3 ul#footernav li ul.navsub{
	margin:0;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 0;
	float: left;
	display: block;
	}
.footer_section3 ul.navsub li{
	float:left;
	display: inline-block;
	overflow: hidden;
	width: 112px;
	position: relative;
	text-align: left;
		}
		
.footer_section3 ul.navsub li a{
	float:left;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	font-weight: bold;
	font-variant: normal;
	color: rgba(255,255,255,1);
	text-align:left;
	text-decoration:none;
	display:block;
	width: 112px;
	padding-left: 10px;
	padding-top: 5px;
	padding-bottom: 5px;
		}


/* ~~ miscellaneous float/clear classes ~~ */
.fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}
