@charset "utf-8";
/* Simple fluid media
   Note: Fluid media requires that you remove the media's height and width attributes from the HTML
   http://www.alistapart.com/articles/fluid-images/ 
*/
img, object, embed, video {
	max-width: 100%;
}
/* IE 6 does not support max-width so default to width 100% */
.ie6 img {
	width:100%;
}

/*
	Dreamweaver Fluid Grid Properties
	----------------------------------
	dw-num-cols-mobile:		5;
	dw-num-cols-tablet:		8;
	dw-num-cols-desktop:	10;
	dw-gutter-percentage:	25;
	
	Inspiration from "Responsive Web Design" by Ethan Marcotte 
	http://www.alistapart.com/articles/responsive-web-design
	
	and Golden Grid System by Joni Korpi
	http://goldengridsystem.com/
*/

/* Mobile Layout: 480px and below. */

.gridContainer {
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	padding-left: 0%;
	padding-right: 0%;
}
#LayoutDiv1 {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
}
#header-main {
	background-image: url(header-bk.png);
	background-repeat: repeat-x;
	background-attachment: fixed;
}
#logo-desktop {
	display: none;
	z-index: 2;
}
#logo-mobile{
	display: block;
}

#jquery-main {
	position: relative;
	z-index: 1;
}
#body-desktop {
	display: none;
}
#body-mobile {
	background-color: #fff;
	display: block;
}
#body-gallery {
	display: block;
}
#footer-desktop {
	background-color: #000;
	margin-top: 40px;
	display: none;
}
#footer-mobile {
	background-color: #000;
	margin-top: 40px;
	display: block;
}
tahoma_14_white {
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 14px;
	color: #FFF;
}
.aguafina {
   font-family: Tahoma, Geneva, sans-serif;
	font-weight: 400;
	font-size: 16px;
	color: #FFF;
}

.tahoma_12 {
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 12px;
	font-weight: normal;
	color: #333;
}
.tahoma14-blue {
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 16px;
	font-weight: normal;
	color: #0099FF;
}

.tahoma_16 {
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 16px;
}
.tahoma_16-white {
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 16px;
	color: #FFF;
}

.tahoma_12_white {
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 12px;
	color: #FFF;
}
.tahoma_14_white {
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 14px;
	color: #FFF;
}

.tahoma_14 {
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 14px;
	color: #333333;
}
.tahoma_10_white {
	color: #FFFFFF;
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 10px;
}
.tahoma_12_balck_bold {
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 12px;
	color: #000;
}
.tahoma_10 {
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 10px;
}

h1 {
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 16px;
	color: #FFFFFF;
	margin: 0px;
	padding: 0px;
	font-weight: bold;
}
h2 {
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 16px;
	color: #000000;
	margin: 0px;
	padding: 0px;
	font-weight: bold;
}
h3 {
	font-family: Tahoma, Geneva, sans-serif;
	font-weight: 400;
	font-size: 24px;
	color: #FFF;
}

/* crop photos on results pages*/
.crop_photo_results {
  position: relative;
  width: 100%;
  height: 225px;
  overflow: hidden;
}
.crop_photo_results img {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 100%;
  width: auto;
  -webkit-transform: translate(-50%,-50%);
      -ms-transform: translate(-50%,-50%);
          transform: translate(-50%,-50%);
}
.crop_photo_results_mobi {
  position: relative;
  width: 100%;
  height: 100px;
  overflow: hidden;
}
.crop_photo_results_mobi img {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 100%;
  width: auto;
  -webkit-transform: translate(-50%,-50%);
      -ms-transform: translate(-50%,-50%);
          transform: translate(-50%,-50%);
}


img
{  border-style: none;
outline: none;
}

a:link {
	color: #0000FF;
	text-decoration: none;
	font-weight: normal;
	font-family: Tahoma, Geneva, sans-serif;
}
a:visited {
	color: #0000FF;
	text-decoration: none;
	font-weight: normal;
}
a:hover {
	color: #F00;
	font-weight: normal;
}
a:active {
	color: #00F;
	font-weight: normal;
}

a.ssi:link {
	color: #FFFFFF;
	text-decoration: none;
	font-weight: normal;
}
a.ssi:visited {
	color: #70B703;
	text-decoration: none;
	font-weight: normal;
}
a.ssi:hover {
	color: #0099E9;
	font-weight: normal;
}
a.ssi:active {
	color: #090;
	font-weight: normal;
	
}


/* Tablet Layout: 481px to 768px. Inherits styles from: Mobile Layout. */

@media only screen and (min-width: 481px) {
.gridContainer {
	width: 100%;
	padding-left: 0%;
	padding-right: 0%;
}
#LayoutDiv1 {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
}
#header-main {
	background-image: url(header-bk.png);
	background-repeat: repeat-x;
	background-attachment: fixed;
}
#logo-desktop {
	display: block;
}
#logo-mobile{
	display: none;
}
#jquery-main {
	position: relative;
	z-index: 1;
}
#body-desktop {
	display: block;
}
#body-mobile {
	background-color: #222;
	display: none;
}
#body-gallery {
	display: block;
}
#footer-desktop {
	background-color: #000;
	margin-top: 40px;
	display: block;
}
#footer-mobile {
	background-color: #000;
	margin-top: 40px;
	display: none;
}
}

/* Desktop Layout: 769px to a max of 1232px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 769px) {
.gridContainer {
	width: 100%;
	max-width: 100%;
	padding-left: 0%;
	padding-right: 0%;
	margin: auto;
}
#LayoutDiv1 {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
}
#header-main {
	background-image: url(header-bk.png);
	background-repeat: repeat-x;
	background-attachment: fixed;
}


#logo-desktop {
	display: block;
}
#logo-mobile{
	display: none;
}
#jquery-main {
	position: relative;
	z-index: 1;
}
#body-desktop {
	display: block;
}
#body-mobile {
	background-color: #222;
	display: none;
}
#body-gallery {
	display: block;
}

#footer-desktop {
	background-color: #000;
	margin-top: 40px;
	display: block;
}
#footer-mobile {
	background-color: #000;
	margin-top: 40px;
	display: none;
}
