@charset "utf-8";
/* Colour scheme 
Yellow #FF9
Blue #09BEF9
Green #257333
Burgundy #660062
*/

body {
	font: 100%/1.4 "Century Gothic", "Trebuchet MS", Arial, Helvetica, sans-serif;
	background-color: #FFEDFF; /*if all else fails */
	background: url(../images/bgA_rev.png) fixed top left no-repeat, url(../images/bgB.png) fixed top left repeat-x;
	*background: url(../images/bgIE.jpg) fixed top left no-repeat; /* for IE7 and lower */
	margin: 0;
	padding: 0;
	color: #000;
}
/* ~~ 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, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing block. 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 blocks, instead of the block elements themselves, gets rid of any box model math. A nested block with side padding can also be used as an alternate method. */
}
h1 {
	font-family: 'Merriweather', serif;
	color: #660062;
	font-size:1.5em;
}
h2, h3, h4 {
	font-family:'Merriweather',"Trebuchet MS", Arial, Helvetica, sans-serif;
}
h2 {
	font-size:1.25em;
	color: #660062;
	font-variant:small-caps;
}
h3 {
	font-size:1em;
	color:#660062;
	margin-bottom:5px;
	font-weight:bold;
}
h4 {
	color:#660062;
	font-size:1em;
	font-variant:small-caps;
}
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 {
	color: #09BEF9;
	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: #09BEF9;
	text-decoration: none;
}
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. */
	color: #660062;
	text-decoration: none;
}
/* ~~ This fixed width container surrounds all other blocks ~~ */
.container {
	width: 960px;
	background: transparent;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
}
/* ~~ The header is not given a width. It will extend the full width of your layout. ~~ */
header {
	/*background: url(../images/header.png) no-repeat;*/
	height:200px;
}
header h1 {
	font-family: 'Merriweather', serif;
	font-size: 74px;
	font-weight:700;
	color:#660062;
  	text-shadow: 0px -1px 3px #666;
  	letter-spacing: 0.082em;
  	word-spacing: 0em;
	top: 50px;
	text-align:center;
	position:relative;
	z-index:2;
}
header h2 {
	font-family: 'Dancing Script', arial, serif;
	font-size: 60px;
	font-weight:400;
	color: #000;
  	text-transform: none;
	font-variant:normal;
  	letter-spacing: 0.082em;
  	word-spacing: 0em;
	text-align:center;
	position:relative;
	top:-57px;
	*top: -27px; /* for IE7 and earlier */
}	
/* ~~ These are the columns for the layout. ~~ */
.sidebar1 {
	float: left;
	width: 180px;
	background: #ffd url(../images/bgB.png) repeat-x;
	opacity:.8;
	padding-bottom: 10px;
	-webkit-border-radius:15px;
	-webkit-box-shadow: 2px 2px 5px #000;
	-moz-border-radius:15px;
	-moz-box-shadow: 2px 2px 5px #000;
	border-radius:15px;
	box-shadow: 2px 2px 5px #000;
}
.content {
	padding: 10px 0;
	width: 600px;
	float: left;
}
.fullpage .content {
	padding:10px 0;
	width:780px;
	float: left;
	background: url(../images/bg_port.png) repeat-y;
	-webkit-border-top-left-radius:15px;
	-webkit-border-bottom-left-radius:15px;
	-moz-border-left-top-radius:15px;	
	-moz-border-left-bottom-radius:15px;	
}
aside {
	float: left;
	width: 180px;
	padding: 10px 0;
}
.tag {
	background:url(../images/tag.png) no-repeat;
	color:#fff;
	margin-left:-50px;
}
.badges {
	margin: 10px 27px;
}
/* ~~ 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. */
}
aside ul {
	background: url(../images/bgB.png) repeat-x;
	*background: none; /* for IE7 and earlier */
	opacity:0.8;
}
aside ul li a {
	display: block;
	margin-top:5px;
	*margin-top: 0px;  /* for IE7 and earlier */
	padding: 20px 10px;
	color: #09BEF9;
	text-decoration:none;
	-webkit-border-radius:15px;
	-webkit-box-shadow: 2px 2px 5px #444;
	-moz-border-radius:15px;
	-moz-box-shadow: 2px 2px 5px #444;
	border-radius:15px;
}
aside ul li a:hover {
	background: #09BEF9;
	color: #fff;
	text-decoration: none;
  	text-shadow: 0px -1px 3px #666;
	-webkit-box-shadow: 0px 0px 5px #000;
	-moz-box-shadow: 0px 0px 5px #000;
}
aside ul, li {
	list-style:none;
}
aside img {
	margin:5px;
	*margin-top: 30px;  /* for IE7 and earlier */
}

/* ~~ The navigation list styles ~~ */
nav {
	width:960px;
	height:2.25em;
	position:fixed;
	z-index:10;
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#000), to(#666)); /* button gradient in Chrome */
	background: -moz-linear-gradient(top, #000 0%, #666 100%); /* button gradient in FF */
	*background:url(../images/navIE.png);  /* for IE7 and earlier */
	*top: -16px;
	-webkit-border-bottom-right-radius: 15px;
	-webkit-border-bottom-left-radius: 15px;
	-moz-border-radius: 15px;
}
nav ul {
	list-style: none; /* this removes the list marker */
	border-bottom:#999;
	margin-bottom: 15px; /* this creates the space between the navigation on the content below */
	margin-left:2.5em;
	display:inline;
	position: absolute;
}
nav ul li {
	/*border: 1px solid #666;  this creates the button separation */
	/*border-bottom-right-radius: 1em; /* this creates the bottom right border for the links for Chrome */
	/*border-bottom-left-radius: 1em; /* this creates the bottom left border for the links for Chrome*/
	/*-moz-border-radius-bottomright: 1em; /* this creates the bottom right border for the links for FF */
	/*-moz-border-radius-bottomleft: 1em; /* this creates the bottom left border for the links for FF*/
	position:relative;
	float:left;
	background: transparent; /*-webkit-gradient(linear, 0% 0%, 0% 100%, from(#000), to(#666)); /* button gradient in Chrome */
	/*background: -moz-linear-gradient(top, #000 0%, #666 100%); /* button gradient in FF */
}

nav ul a, nav ul a:visited { /* grouping these selectors so links retain their button look even after being visited */
	padding: 6px 1em;
	display: block; /* This causes the entire area to react to a mouse click. */
	width: 100px;  /*this width makes the entire button clickable for IE6, for full width 158 px*/
	text-decoration:none;
	text-align:center;
	color:#09BEF9;
	text-shadow:0 0 1px #09BEF9;
}
nav ul a:hover, nav ul a:active, nav ul a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
	/*background: #ADB96E;*/
	color: #FFF;
	text-shadow: 0px -1px 3px #666;
	text-decoration:none;
}
nav ul li:hover, nav ul li:active, nav ul li:focus {
	/*border: 1px solid #666;  this creates the button separation */
	/*border-bottom-right-radius: 1em; /* this creates the bottom right border for the links for Chrome */
	/*border-bottom-left-radius: 1em; /* this creates the bottom left border for the links for Chrome*/
	/*-moz-border-radius-bottomright: 1em; /* this creates the bottom right border for the links for FF */
	/*-moz-border-radius-bottomleft: 1em; /* this creates the bottom left border for the links for FF*/
	position:relative;
	float:left;
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#09BEF9), to(#666)); /* button gradient in Chrome */
	background: -moz-linear-gradient(top, #09BEF9 0%, #666 50%, #666 100%); /* button gradient in FF */
}

/* ~~ The footer ~~ */
footer {
	padding: 10px 15px 15px 15px;
	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 */
	background: #09BEF9;
	-webkit-border-top-right-radius: 15px;
	-webkit-border-top-left-radius: 15px;
	-moz-border-radius: 15px;
	color: #fff;
	text-align:center;
}

/* ~~ Portfolio gallery classes ~~ */
#gallery {
	padding-left:30px;
}
#thumbs { 
	padding: 10px 0 10px 25px; 
	overflow: hidden;
}
#thumbs img, #largeImage { 
	border: 1px solid #660062; 
	padding: 4px; 
	background-color: white; 
	cursor: pointer; 
}
#thumbs img { 
	float: left; 
	margin-right: 6px;
	margin-bottom: 6px;
}
#description { 
	background: black; 
	opacity:.8;
	color: white; 
	position: absolute; 
	bottom: 0; 
	padding: 10px; 
	width: 505px; 
	margin: 5px 5px 10px 5px; 
	*margin: 5px 5px 10px -534px; /* for IE7 and earlier */
}
#panel { 
	position: relative; 
	margin-left:45px;
}

/* ~~ Contact form formatting ~~ */
#contact {
	padding:0;
	margin-left: 3em;
	background-color:#FFD;
	border:1px solid #660062;
	color:#000;
	/*height:410px;*/
	overflow:hidden;
	padding:0 15px 0 10px;
	width:360px;
	border-radius:15px;
	-moz-border-radius:15px;
	-webkit-border-radius:15px;
	box-shadow: 2px 2px 5px #666;
	-moz-box-shadow: 2px 2px 5px #666;
	-webkit-box-shadow: 2px 2px 5px #666;
}
#contact_inner {
	padding: 1em;
}
#contact p {
	margin-left: 0;
	padding: 0;
}
#name {
	background-color:#FFF;
	border: #660062 solid 1px;
	-webkit-box-shadow:inset 0 0 3px #666;
	-moz-box-shadow:inset 0 0 3px #666;
	box-shadow:inset 0 0 3px #666;
	width:200px;
	margin-bottom:10px;
	padding: .25em;
}
#email {
	background-color:#FFF;
	border: #660062 solid 1px;
	-webkit-box-shadow:inset 0 0 3px #666;
	-moz-box-shadow:inset 0 0 3px #666;
	box-shadow:inset 0 0 3px #666;
	width:200px;
	margin-bottom:10px;
	padding: .25em;
}
#message {
	background-color:#FFF;
	border: #660062 solid 1px;
	-webkit-box-shadow:inset 0 0 3px #666;
	-moz-box-shadow:inset 0 0 3px #666;
	box-shadow:inset 0 0 3px #666;
	width:320px;
	max-width:320px;
	padding: .25em;
}
#check {
	background-color:#FFF;
	border: #660062 solid 1px;
	-webkit-box-shadow:inset 0 0 3px #666;
	-moz-box-shadow:inset 0 0 3px #666;
	box-shadow:inset 0 0 3px #666;
	width:20px;
	padding: .25em;
}
.button {	
	background: #FFD;
	width:100px;
	margin:0 10px 10px 0;
	padding:5px;
	border:1px solid #09BEF9;
	font-family: georgia;
	font-size:1em;
	cursor:pointer;
	color:#09BEF9;
	text-transform:uppercase;
	font-weight:bolder;
	font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
	border-radius:15px;
	-moz-border-radius:15px;
	-webkit-border-radius:15px;
	box-shadow: 2px 2px 1px #666;
	-moz-box-shadow: 2px 2px 1px #666;
	-webkit-box-shadow: 2px 2px 1px #666;
}
.button:hover {
	background: #09BEF9;
	color:#fff;
	box-shadow: 0 0 5px #666;
	-moz-box-shadow: 0 0 5px #666;
	-webkit-box-shadow: 0 0 5px #666;
	text-shadow: 0px -1px 3px #666;
}
.red {
	color:	#09BEF9;
	font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
}

/* ~~ Miscellaneous float/clear classes ~~ */
.floatright {  /* 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;
}
.floatleft { /* 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 block element as the final element following the last floated block (within the .container) if the footer is removed or taken out of the .container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}

/*HTML 5 support - Sets new HTML 5 tags to display:block so browsers know how to render the tags properly. */
header, section, footer, aside, nav, article, figure {
	display: block;
}
