/* -------- ~~~~ [ (c) 2010 DDCMS ] ~~~~ --------  */



/*
*
*
*
 -------- ~~~~ [ Base CSS ] ~~~~ -------- 
*
*
*
*/

/**
 * HTML5 ✰ Boilerplate
 *
 * style.css contains a reset, font normalization and some base styles.
 *
 * Credit is left where credit is due.
 * Much inspiration was taken from these projects:
 * - yui.yahooapis.com/2.8.1/build/base/base.css
 * - camendesign.com/design/
 * - praegnanz.de/weblog/htmlcssjs-kickstart
 */


/**
 * html5doctor.com Reset Stylesheet (Eric Meyer's Reset Reloaded + HTML5 baseline)
 * v1.6.1 2010-09-17 | Authors: Eric Meyer & Richard Clark
 * html5doctor.com/html-5-reset-stylesheet/
 */

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

blockquote, q { quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after { content: ""; content: none; }

ins { background-color: #ff9; color: #000; text-decoration: none; }

mark { background-color: #ff9; color: #000; font-style: italic; font-weight: bold; }

del { text-decoration: line-through; }

abbr[title], dfn[title] { border-bottom: 1px dotted; cursor: help; }

table { border-collapse: collapse; border-spacing: 0; }

hr { display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 1em 0; padding: 0; }

input, select { vertical-align: middle; }


/**
 * Font normalization inspired by YUI Library's fonts.css: developer.yahoo.com/yui/
 */

body { font:13px/1.231 sans-serif; *font-size:small; } /* Hack retained to preserve specificity */
select, input, textarea, button { font:99% sans-serif; }

/* Normalize monospace sizing:
   en.wikipedia.org/wiki/MediaWiki_talk:Common.css/Archive_11#Teletype_style_fix_for_Chrome */
pre, code, kbd, samp { font-family: monospace, sans-serif; }


/**
 * Minimal base styles.
 */

/* Always force a scrollbar in non-IE */
html { overflow-y: scroll; }

/* Accessible focus treatment: people.opera.com/patrickl/experiments/keyboard/test */
a:hover, a:active { outline: none; }

ul, ol { margin-left: 2em; }
ol { list-style-type: decimal; }

/* Remove margins for navigation lists */
nav ul, nav li { margin: 0; list-style:none; list-style-image: none; }

small { font-size: 85%; }
strong, th { font-weight: bold; }

td { vertical-align: top; }

/* Set sub, sup without affecting line-height: gist.github.com/413930 */
sub, sup { font-size: 75%; line-height: 0; position: relative; }
sup { top: -0.5em; }
sub { bottom: -0.25em; }

pre {
  /* www.pathf.com/blogs/2008/05/formatting-quoted-code-in-blog-posts-css21-white-space-pre-wrap/ */
  white-space: pre; white-space: pre-wrap; word-wrap: break-word;
  padding: 15px;
}

textarea { overflow: auto; } /* www.sitepoint.com/blogs/2010/08/20/ie-remove-textarea-scrollbars/ */

.ie6 legend, .ie7 legend { margin-left: -7px; } 

/* Align checkboxes, radios, text inputs with their label by: Thierry Koblentz tjkdesign.com/ez-css/css/base.css  */
input[type="radio"] { vertical-align: text-bottom; }
input[type="checkbox"] { vertical-align: bottom; }
.ie7 input[type="checkbox"] { vertical-align: baseline; }
.ie6 input { vertical-align: text-bottom; }

/* Hand cursor on clickable input elements */
label, input[type="button"], input[type="submit"], input[type="image"], button { cursor: pointer; }

/* Webkit browsers add a 2px margin outside the chrome of form elements */
button, input, select, textarea { margin: 0; }

/* Colors for form validity */
input:valid, textarea:valid   {  }
input:invalid, textarea:invalid {
   border-radius: 1px; -moz-box-shadow: 0px 0px 5px red; -webkit-box-shadow: 0px 0px 5px red; box-shadow: 0px 0px 5px red;
}
.no-boxshadow input:invalid, .no-boxshadow textarea:invalid { background-color: #f0dddd; }


/* These selection declarations have to be separate
   No text-shadow: twitter.com/miketaylr/status/12228805301
   Also: hot pink! */
::-moz-selection{ background: #CCC; color:#fff; text-shadow: none; }
::selection { background:#CCC; color:#fff; text-shadow: none; }

/* j.mp/webkit-tap-highlight-color */
a:link { -webkit-tap-highlight-color: #FF5E99; }

/* Make buttons play nice in IE:
   www.viget.com/inspire/styling-the-button-element-in-internet-explorer/ */
button {  width: auto; overflow: visible; }

/* Bicubic resizing for non-native sized IMG:
   code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/ */
.ie7 img { -ms-interpolation-mode: bicubic; }

/**
 * You might tweak these..
 */

body, select, input, textarea {
  /* #444 looks better than black: twitter.com/H_FJ/statuses/11800719859 */
  color: #444;
  /* Set your base font here, to apply evenly */
  /* font-family: Georgia, serif;  */
}

/* Headers (h1, h2, etc) have no default font-size or margin; define those yourself */
h1, h2, h3, h4, h5, h6 { font-weight: bold; }



/* For image replacement */
.ir { display: block; text-indent: -999em; overflow: hidden; background-repeat: no-repeat; text-align: left; direction: ltr; }

/* Hide for both screenreaders and browsers:
   css-discuss.incutio.com/wiki/Screenreader_Visibility */
.hidden { display: none; visibility: hidden; }

/* Hide only visually, but have it available for screenreaders: by Jon Neal.
  www.webaim.org/techniques/css/invisiblecontent/  &  j.mp/visuallyhidden */
.visuallyhidden { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; }
/* Extends the .visuallyhidden class to allow the element to be focusable when navigated to via the keyboard: drupal.org/node/897638 */
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus { clip: auto; height: auto; margin: 0; overflow: visible; position: static; width: auto; }

/* Hide visually and from screenreaders, but maintain layout */
.invisible { visibility: hidden; }

/* The Magnificent Clearfix: Updated to prevent margin-collapsing on child elements.
   j.mp/bestclearfix */
.clearfix:before, .clearfix:after { content: "\0020"; display: block; height: 0; overflow: hidden; }
.clearfix:after { clear: both; }
/* Fix clearfix: blueprintcss.lighthouseapp.com/projects/15318/tickets/5-extra-margin-padding-bottom-of-page */
.clearfix { zoom: 1; }



/**
 * Media queries for responsive design.
 *
 * These follow after primary styles so they will successfully override.
 */

@media all and (orientation:portrait) {
  /* Style adjustments for portrait mode goes here */

}

@media all and (orientation:landscape) {
  /* Style adjustments for landscape mode goes here */

}

/* Grade-A Mobile Browsers (Opera Mobile, Mobile Safari, Android Chrome)
   consider this: www.cloudfour.com/css-media-query-for-mobile-is-fools-gold/ */
@media screen and (max-device-width: 480px) {


  /* Uncomment if you don't want iOS and WinMobile to mobile-optimize the text for you: j.mp/textsizeadjust */
  /* html { -webkit-text-size-adjust:none; -ms-text-size-adjust:none; } */
}


/**
 * Print styles.
 *
 * Inlined to avoid required HTTP connection: www.phpied.com/delay-loading-your-print-css/
 */
@media print {
  * { background: transparent !important; color: black !important; text-shadow: none !important; filter:none !important;
  -ms-filter: none !important; } /* Black prints faster: sanbeiji.com/archives/953 */
  a, a:visited { color: #444 !important; text-decoration: underline; }
  a[href]:after { content: " (" attr(href) ")"; }
  abbr[title]:after { content: " (" attr(title) ")"; }
  .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; }  /* Don't show links for images, or javascript/internal links */
  pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }
  thead { display: table-header-group; } /* css-discuss.incutio.com/wiki/Printing_Tables */
  tr, img { page-break-inside: avoid; }
  @page { margin: 0.5cm; }
  p, h2, h3 { orphans: 3; widows: 3; }
  h2, h3{ page-break-after: avoid; }
}



/*
*
*
*
 -------- ~~~~ [ WebFont CSS ] ~~~~ -------- 
*
*
*
*/

/* Generated by Font Squirrel (http://www.fontsquirrel.com) on July 25, 2011 */



@font-face {
    font-family: 'DeSotoEngravedRegular';
    src: url('desoteng-webfont.eot');
    src: url('desoteng-webfont.eot?#iefix') format('embedded-opentype'),
         url('desoteng-webfont.woff') format('woff'),
         url('desoteng-webfont.ttf') format('truetype'),
         url('desoteng-webfont.svg#DeSotoEngravedRegular') format('svg');
    font-weight: normal;
    font-style: normal;

}



/*
*
*
*
 -------- ~~~~ [ 960 CSS ] ~~~~ -------- 
*
*
*
*/

/*
	Variable Grid System (Fluid Version).
	Learn more ~ http://www.spry-soft.com/grids/
	Based on 960 Grid System - http://960.gs/ & 960 Fluid - http://www.designinfluences.com/

	Licensed under GPL and MIT.
*/


/* Containers
----------------------------------------------------------------------------------------------------*/
.container_12 {
	width: 98%;
	margin-left: 1%;
	margin-right: 1%;
}

/* Grid >> Global
----------------------------------------------------------------------------------------------------*/

.grid_1,
.grid_2,
.grid_3,
.grid_4,
.grid_5,
.grid_6,
.grid_7,
.grid_8,
.grid_9,
.grid_10,
.grid_11,
.grid_12 {
	display:inline;
	float: left;
	position: relative;
	margin-left: 1%;
	margin-right: 1%;
}

/* Grid >> Children (Alpha ~ First, Omega ~ Last)
----------------------------------------------------------------------------------------------------*/

.alpha {
	margin-left: 0;
}

.omega {
	margin-right: 0;
}

/* Grid >> 12 Columns
----------------------------------------------------------------------------------------------------*/


.container_12 .grid_1 {
	width:6.333%;
}

.container_12 .grid_2 {
	width:14.667%;
}

.container_12 .grid_3 {
	width:23.0%;
}

.container_12 .grid_4 {
	width:31.333%;
}

.container_12 .grid_5 {
	width:39.667%;
}

.container_12 .grid_6 {
	width:48.0%;
}

.container_12 .grid_7 {
	width:56.333%;
}

.container_12 .grid_8 {
	width:64.667%;
}

.container_12 .grid_9 {
	width:73.0%;
}

.container_12 .grid_10 {
	width:81.333%;
}

.container_12 .grid_11 {
	width:89.667%;
}

.container_12 .grid_12 {
	width:98.0%;
}



/* Prefix Extra Space >> 12 Columns
----------------------------------------------------------------------------------------------------*/


.container_12 .prefix_1 {
	padding-left:8.333%;
}

.container_12 .prefix_2 {
	padding-left:16.667%;
}

.container_12 .prefix_3 {
	padding-left:25.0%;
}

.container_12 .prefix_4 {
	padding-left:33.333%;
}

.container_12 .prefix_5 {
	padding-left:41.667%;
}

.container_12 .prefix_6 {
	padding-left:50.0%;
}

.container_12 .prefix_7 {
	padding-left:58.333%;
}

.container_12 .prefix_8 {
	padding-left:66.667%;
}

.container_12 .prefix_9 {
	padding-left:75.0%;
}

.container_12 .prefix_10 {
	padding-left:83.333%;
}

.container_12 .prefix_11 {
	padding-left:91.667%;
}



/* Suffix Extra Space >> 12 Columns
----------------------------------------------------------------------------------------------------*/


.container_12 .suffix_1 {
	padding-right:8.333%;
}

.container_12 .suffix_2 {
	padding-right:16.667%;
}

.container_12 .suffix_3 {
	padding-right:25.0%;
}

.container_12 .suffix_4 {
	padding-right:33.333%;
}

.container_12 .suffix_5 {
	padding-right:41.667%;
}

.container_12 .suffix_6 {
	padding-right:50.0%;
}

.container_12 .suffix_7 {
	padding-right:58.333%;
}

.container_12 .suffix_8 {
	padding-right:66.667%;
}

.container_12 .suffix_9 {
	padding-right:75.0%;
}

.container_12 .suffix_10 {
	padding-right:83.333%;
}

.container_12 .suffix_11 {
	padding-right:91.667%;
}



/* Push Space >> 12 Columns
----------------------------------------------------------------------------------------------------*/


.container_12 .push_1 {
	left:8.333%;
}

.container_12 .push_2 {
	left:16.667%;
}

.container_12 .push_3 {
	left:25.0%;
}

.container_12 .push_4 {
	left:33.333%;
}

.container_12 .push_5 {
	left:41.667%;
}

.container_12 .push_6 {
	left:50.0%;
}

.container_12 .push_7 {
	left:58.333%;
}

.container_12 .push_8 {
	left:66.667%;
}

.container_12 .push_9 {
	left:75.0%;
}

.container_12 .push_10 {
	left:83.333%;
}

.container_12 .push_11 {
	left:91.667%;
}



/* Pull Space >> 12 Columns
----------------------------------------------------------------------------------------------------*/


.container_12 .pull_1 {
	left:-8.333%;
}

.container_12 .pull_2 {
	left:-16.667%;
}

.container_12 .pull_3 {
	left:-25.0%;
}

.container_12 .pull_4 {
	left:-33.333%;
}

.container_12 .pull_5 {
	left:-41.667%;
}

.container_12 .pull_6 {
	left:-50.0%;
}

.container_12 .pull_7 {
	left:-58.333%;
}

.container_12 .pull_8 {
	left:-66.667%;
}

.container_12 .pull_9 {
	left:-75.0%;
}

.container_12 .pull_10 {
	left:-83.333%;
}

.container_12 .pull_11 {
	left:-91.667%;
}




/* Clear Floated Elements
----------------------------------------------------------------------------------------------------*/

/* http://sonspring.com/journal/clearing-floats */

.clear {
	clear: both;
	display: block;
	overflow: hidden;
	visibility: hidden;
	width: 0;
	height: 0;
}

/* http://perishablepress.com/press/2008/02/05/lessons-learned-concerning-the-clearfix-css-hack */

.clearfix:after {
	clear: both;
	content: ' ';
	display: block;
	font-size: 0;
	line-height: 0;
	visibility: hidden;
	width: 0;
	height: 0;
}

.clearfix {
	display: inline-block;
}

* html .clearfix {
	height: 1%;
}

.clearfix {
	display: block;
}

/*
*
*
*
* -------- ~~~~ [ Forms CSS ] ~~~~ -------- 
*
*
*
*/

input[type=text], textarea, input[type=email] {
	background: #dfdfdf;
    border: 1px solid #aaa;
    padding: 3px 0;
    margin: 1px;
	font-size: 15px !IMPORTANT;
	width: 100%;
	}


input[type=submit], input[type=reset] {
    padding: 5px;
    margin: 5px 0;
	font-size: 15px !IMPORTANT;
	}

label {
    display: block;
    margin: 5px 0;
}



/*
*
*
*
 -------- ~~~~ [ Site CSS ] ~~~~ -------- 
*
*
*
*/

body {
    font-family: "Arial";
    background: #86B2D8;
    color: #503815;
   	font-size: 14px;
    }


p {
    margin-bottom: 15px;
    }


img {
	border: 0px;
	margin: 0px;
	padding: 0px;
	}

.info 	{
	display:block;
	}

.info b { font-size: 1.15em; }

.img-left {
	border: 0px;
	margin: 0px;
	padding-right: 15px;
    float: left;
    padding: 0 !important;
	}

.img-right {
	border: 0px;
	margin: 0px;
    padding: 0 !important;
	padding-left: 15px;
    float: right;
	}

.left { float: left; }
.right{ float: right; }
.center { display: block; text-align: center; margin: 0 auto;}

.page_content h1 {
    color: #000;
    font-size: 22px;
	display: block;
	border-bottom: 1px dotted #222;
	margin: 0 0 10px 0;
	padding: 0 0 3px 0;
	}

h3 {
    font-size: 15px;
    color: #000;
}

h2 {
    font-size: 16px;
    color: #444;
    margin-bottom: 5px;
}




.body_wrapper {
    margin-top: 30px;
    text-align: center;
    position: relative;
    }

.admin_margin {
    margin-left: 200px;
}

.gutter {
    width:  960px;
    margin: 0 auto;
    text-align: left;
    }

.page_header {
    }

.main_title {
    border-bottom: 1px solid #FFF;
    font-family: 'DeSotoEngravedRegular', serif;
    font-size: 40px;
    display: block;
    text-align: center;
    padding-bottom: 10px;
}

.tagline {
    font-family: 'DeSotoEngravedRegular', serif;
    font-size: 20px;
    text-align: center;
    padding-bottom: 10px;
}

nav {
    font-family: 'DeSotoEngravedRegular', serif;
    font-size: 24px;
    text-align: center;
    border-top: 1px solid #FFF;
    text-transform:uppercase
}

nav ul {
    padding: 0;
    margin: 0 auto;
    display: inline-block;
    zoom: 1;
    *display: inline;
}

nav ul li {
    padding: 0;
    margin: 0;
    float: left;
    display: inline-block;
    padding: 10px 35px;
}

nav ul li.active {
    color: #3c2703;
}

nav ul li.active a {
    color: #3c2703;
}

nav ul li a {
    color: #503815;
    text-decoration: none;
}

nav ul li a:hover {
    color: #3c2703;
}

.page_content {
	position:relative;
    padding: 10px 0;
    overflow: hidden;
    text-align: center;
	}
    
.centered {
    margin: 0 auto;
}

footer {

    }

footer span {

    }
    
.home_gal {
    padding: 0;
    display: inline-block;
    zoom:1;
    *display: inline;
    margin: 0 auto;
}

.pics { 
    height:  400px; 
    width:   230px; 
    padding: 0; 
    margin:  1px; 
    display: inline-block;
    padding: 0px;
    float: left;
    
}

.pics img { 
    width:  230px;
    height: 400px;
}

.thumbnails {
    text-align: center;    
}

.thumbnails > ul {
    display: inline-block;
    margin: 0 auto;
    padding: 0;
    width: 840px;
    
}

.thumbnails > ul li {
    float: left;
    display: inline-block;
    list-style: none;
    width: 130px;
    height: 100px;
    padding: 5px;
}

/*
*
*
*
 -------- ~~~~ [ Lists CSS ] ~~~~ -------- 
*
*
*
*/

ul.single {
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
    margin: 15px 0;
    padding: 5px 15px;
    border: 0;
    background: #DDDDDD;
    list-style: square;
    color: #323232;
    -webkit-box-shadow: 1px 1px 3px #909090;
    -moz-box-shadow: 1px 1px 3px #909090;
    box-shadow: 1px 1px 3px #909090;
}

ul.single li {
    padding: 0px;
    margin: 3px 3px 3px 10px;
}

.multi {
    padding: 15px;
    margin-bottom: 0 !important;
    border: 0;
    background: #DDDDDD;
}

.multi .multi-li {
    padding: 0px;
    margin: 0;
    list-style: none;
    width: 50%;
    float: left;
}

.multi-sub {
    font-size: 1.2em;
    display: inline-block;
    width: 100%;
    padding: 0px;
    margin: 0;
}

.multi-sub .sub-li {
    padding: 0px;
    margin: 0;
    margin-left: 20px;
    float: none;
    list-style: square;
}

/*
*
*
*
 -------- ~~~~ [ Carousel CSS ] ~~~~ -------- 
*
*
*
*/

.carousel_wrapper {
    text-align: left;
}

.jcarousel-skin-tango li {
    list-style: none;
    display: none;
}

.jcarousel-skin-tango .jcarousel-container {
}

.jcarousel-skin-tango .jcarousel-direction-rtl {
	direction: rtl;
}

.jcarousel-skin-tango .jcarousel-container-horizontal {
    width: 876px;
    padding: 10px 40px;
}


.jcarousel-skin-tango .jcarousel-clip {
    overflow: hidden;
}

.jcarousel-skin-tango .jcarousel-clip-horizontal {
    width:  876px;
    height: 75px;
}


.jcarousel-skin-tango .jcarousel-item {
    width: 141px;
    height: 110px;
}

.jcarousel-skin-tango .jcarousel-item-horizontal {
	margin-left: 0;
    margin-right: 6px;
}

.jcarousel-skin-tango .jcarousel-direction-rtl .jcarousel-item-horizontal {
	margin-left: 10px;
    margin-right: 0;
}

.jcarousel-skin-tango .jcarousel-item-placeholder {
    background: #fff;
    color: #000;
}

/**
 *  Horizontal Buttons
 */
.jcarousel-skin-tango .jcarousel-next-horizontal {
    position: absolute;
    top: 33px;
    right: 5px;
    width: 35px;
    height: 32px;
    cursor: pointer;
    background: transparent url(img/carousel/next-horizontal.png) no-repeat 0 0;
}

.jcarousel-skin-tango .jcarousel-direction-rtl .jcarousel-next-horizontal {
    left: 5px;
    right: auto;
    background-image: url(img/carousel/prev-horizontal.png);
}


.jcarousel-skin-tango .jcarousel-prev-horizontal {
    position: absolute;
    top: 33px;
    left: 5px;
    width: 35px;
    height: 32px;
    cursor: pointer;
    background: transparent url(img/carousel/prev-horizontal.png) no-repeat 0 0;
}

.jcarousel-skin-tango .jcarousel-direction-rtl .jcarousel-prev-horizontal {
    left: auto;
    right: 5px;
    background-image: url(img/carousel/next-horizontal.png);
}



/*
*
*
*
 -------- ~~~~ [ Carousel CSS ] ~~~~ -------- 
*
*
*
*/

.gallery {
    text-align: center;
}

.gallery_wrapper {
    position: relative;
    display: inline-block;
    margin: 0 auto;
    zoom: 1;
    *display: inline;
}

#image_wrapper {
    text-align: center;
}

#image_wrapper img {
    max-width: 877px;
}

.gallery_wrapper .prev {
    position: absolute;
    top: 50%;
    margin-top: -16px;
    left: -32px;
    width: 35px;
    height: 32px;
    cursor: pointer;
    background: url(img/carousel/prev-horizontal.png) no-repeat 0 0;
}

.gallery_wrapper .next {
    position: absolute;
    top: 50%;
    margin-top: -16px;
    right: -32px;
    width: 35px;
    height: 32px;
    cursor: pointer;
    background: url(img/carousel/next-horizontal.png) no-repeat 0 0;
}

