/*-- colors 

colors: 
green: b6cb52
pink: fb1150

--*/

@charset "UTF-8";
body {
	background: black;
	margin: 0 auto;
	padding: 0;
	color: #000;
	font-family: 'Akzidenz-GroteskBQRegular';
	font-size: 100%;
	line-height: 1.4;
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	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: 15px;
	padding-left: 15px; /* 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. */
}



h2{
	text-shadow: 0px 1px 1px #000;
	font-family: 'EricaBensonWritingRegular';
	font-size: 32px;
	color: #FFF;
}

h3 {
	font-family: 'Akzidenz-GroteskBQRegular';
	font-size: 22px;
	color: #FFF;
	padding-left: 0;
}
h5 {
width: 78px;
height: 43px;
position: relative;
padding-left: 442px;
opacity:0.4;
filter:alpha(opacity=40); /* For IE8 and earlier */
} 

h5 span{
	background: url(images/flourish.png) no-repeat;
	position: absolute;
	width: 100%;
	height: 100%;
}

p {
	font-family: 'Akzidenz-GroteskBQRegular';
	font-size: 12px;
	color: white;
	padding-right: 20px;
	width: 700px;
	line-height: 1.5em;
	letter-spacing: .5px;
	
}

.largefont {
	color: #FFF;
	font-family:Verdana, Geneva, Helvetica, sans-serif;
	font-size: 12px;
	letter-spacing: 1.4 px;
	font-style: italic;
	font-weight: normal;
	font-variant: normal;
} 

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: #FFF;
	text-decoration: none; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color: #FFF;
	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;
	color: #b6cb52;
}
#navlist li
{
display: inline;
list-style-type: none;
padding-left: 20px;
}

#navcontainer{
	position: absolute;
	left: 623px;
	top: 96px;
	z-index: 10;
	width: 340px;
}

 /* Menu Elements----------------------------------------- */
#coolMenu,
#coolMenu ul {
    list-style: none;
}
#coolMenu {
    float: left;
}
#coolMenu > li {
    float: left;
	position: relative;
}
#coolMenu > li > a {
    display: block;
    height: 100%;
    line-height: 2.2em;
    padding: 0 1.5em;
    text-decoration: none;
}
#coolMenu ul {
    display: none;
    position: absolute;
    z-index: 999;
    line-height: 2.2em;
    width: 130px;
	padding-left: 21px;
    
}

#coolMenu ul li a {
    width: 100%;
}
#coolMenu li:hover > ul {
    display: block;
}

/* Main Menu ----------------------------------------- */
#coolMenu {
	font-family: Arial;
	font-size: 14px;
}
#coolMenu > li > a {
    color: #FFF;
    font-weight: bold;
}
#coolMenu > li:hover > a {
	color: #FFF;
}
 
 /* SubMenu ----------------------------------------- */

#coolMenu ul {
	background-image: url(images/bw70.png);	 
}
#coolMenu ul li a {
    color: #FFF;
}
#coolMenu ul li:hover > a {
	color: #FFF;
}

#coolMenu li ul {
    display: none;
}

 /* sub SubMenu ----------------------------------------- */


#coolMenu li ul li ul {
	display: none;	
	width: 100px;
	height: 47px;
	
}
#coolMenu li ul li:hover ul {
	left: 100%;
	top: 80%;	
	line-height: 1.5em;
	padding-top: 5px;
}







#contactcontainer {
	position: absolute;
	left: 622px;
	top: 30px;
	z-index: 10;
	width: 353px;
	height: 58px;
}

#contactlist li
{
list-style-type: none;
padding-left: 20px;
line-height: 8px;
}

/* ~~ this fixed width container surrounds the other divs ~~ */
.container {
	width: 960px;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
	padding-top: 125px;
	background-color: #000;
}

/* ~~ 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-wrap {
	position: fixed;
	top: 0;
	width: 100%;
	height: 125px;
	background-image: url(images/header_bg.jpg);
	background-repeat: no-repeat;
	background-position: center bottom;
	bacground-color: black;
	margin: 0 auto;
	border-bottom-width: thin;
	border-bottom-style: solid;
	border-bottom-color: #666;
}
#header {
	width: 940px;
	margin: 0 auto;
	position: relative;
	padding-top: 56px;
	padding-left: 31px;
}

#headernav {
	text-decoration: none;
	display: inline;
}
	
.headerlogo {
	height: 50px;
	width: 281px;
	padding-left: 170px;
	padding-top: 56px;
	background-position: center;
	float: none;
	position: absolute;
}

#header img{
	margin-top: -25px;
	margin-left: 10px;
}

#header-container {
	height: 90px;
	background: url(../images/header-bg.png) repeat-x left bottom;
	position: relative;
}

/* ~~ This is the layout information. ~~ 

1) Padding is only placed on the top and/or bottom of the div. The elements within this div 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.

*/

.content {
	padding: 10px 0;
	margin: 0 auto;
	background-image: url(images/body_bg.jpg);
	background-repeat: no-repeat;
	background-color: #000;
}

/* ~~ The footer ~~ */
.footer {
	background: #000;
	height: 150px;
	padding-top: 10px;
	padding-right: 0;
	padding-bottom: 10px;
	padding-left: 0;
}

#footerlogo {
	background-image: url(images/footerlogo.png);
	background-repeat: no-repeat;
	padding-left: 31px;
	margin-left: 31px;
}

/* ~~ 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;
}

/* 8. PORTFOLIO ++++++++++++++++++++++++++++++++++++++++++++ */
.image-grid {
  margin: 4px 0px 0 -15px;
  padding-left: 27px;
  width: 930px;
  float:left;
  list-style-type: none;
}

.image-grid li {
  width: 128px;
  margin: 0px 5px 25px 15px;
  float: left;
  text-align: center;
  border:1px solid #666; 
  padding:2px;
  -moz-box-shadow: 0 1px 3px #222; 
  -webkit-box-shadow: 0 1px 3px #222; 
  -moz-border-radius: 5px; -webkit-border-radius:5px;
  border-radius: 5px; 
  background-color: #eee;
  color: #686f74;
  height: 110px;
  overflow: hidden;
}
/* 9. Main Page ++++++++++++++++++++++++++++++++++++++++++++ */
.index-image-grid-tier1 {
 margin-left: auto;
 margin-right: auto;
  margin-bottom: 5px;
  padding-left: 27px;
  width: 930px;
  float:left;
  list-style-type: none;
}

.index-image-grid-tier1 li {
  width: 255px;
 margin-left: auto;  
  margin-right: auto;
  text-align: center;
  border:1px solid #666; 
  padding:2px;
  -moz-box-shadow: 0 1px 3px #222; 
  -webkit-box-shadow: 0 1px 3px #222; 
  -moz-border-radius: 5px; -webkit-border-radius:5px;
  border-radius: 5px; 
  background-color: #eee;
  color: #686f74;
  height: 184px;
  overflow: hidden;
  margin-top: 20px;
}
.index-image-grid-tier2 {
  margin: 4px 0px 0 -15px;
  padding-left: 220px;
  width: 930px;
  float:left;
  list-style-type: none;
}

.index-image-grid-tier2 li {
  width: 255px;
  margin: 0px 5px 25px 15px;
  float: left;
  text-align: center;
  border:1px solid #666; 
  padding:2px;
  -moz-box-shadow: 0 1px 3px #222; 
  -webkit-box-shadow: 0 1px 3px #222; 
  -moz-border-radius: 5px; -webkit-border-radius:5px;
  border-radius: 5px; 
  background-color: #eee;
  color: #686f74;
  height: 184px;
  overflow: hidden;
}

.index-image-grid-tier3 {
  margin: 0px 0px 0 -15px;
  padding-left: 220px;
  width: 930px;
  float:left;
  list-style-type: none;
}

.index-image-grid-tier3 li {
  width: 255px;
  margin: 0px 5px 25px 15px;
  float: left;
  text-align: center;
  border:1px solid #666; 
  padding:2px;
  -moz-box-shadow: 0 1px 3px #222; 
  -webkit-box-shadow: 0 1px 3px #222; 
  -moz-border-radius: 5px; -webkit-border-radius:5px;
  border-radius: 5px; 
  background-color: #eee;
  color: #686f74;
  height: 184px;
  overflow: hidden;
}

.clear {
	clear: both;
}
.title {
	float: left;
	height: 50px;
}
.sectiontitle {
	height: 50px;
	width: 350px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

#biophoto {
	float: left;
	padding-left: 28px;
	padding-right: 28px;
	height: 365px;
	width: 243px;
}

/*-------- Special Font -------------*/
@font-face {
    font-family: 'BebasRegular';
    src: url('fonts/BEBAS___-webfont.eot');
    src: url('fonts/BEBAS___-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/BEBAS___-webfont.woff') format('woff'),
         url('fonts/BEBAS___-webfont.ttf') format('truetype'),
         url('fonts/BEBAS___-webfont.svg#BebasRegular') format('svg');
    font-weight: normal;
    font-style: normal;

}

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

}

@font-face {
    font-family: 'Akzidenz-GroteskBQRegular';
    src: url('fonts/akzidenzgrotesk-regular-webfont.eot');
    src: url('fonts/akzidenzgrotesk-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/akzidenzgrotesk-regular-webfont.woff') format('woff'),
         url('fonts/akzidenzgrotesk-regular-webfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;

}

