@charset "utf-8";

/* Fonts */
@import url(http://fonts.googleapis.com/css?family=Roboto:400,700,300);
@import url(http://fonts.googleapis.com/css?family=Muli:300,400,400italic);
@font-face {
    font-family: 'young_beautiful';
    src: url('fonts/young__beautiful-webfont.eot');
    src: url('fonts/young__beautiful-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/young__beautiful-webfont.woff') format('woff'),
         url('fonts/young__beautiful-webfont.ttf') format('truetype'),
         url('fonts/young__beautiful-webfont.svg#young__beautifulregular') format('svg');
    font-weight: normal;
    font-style: normal;

}


/*<style type="text/css">
@font-face {
    font-family: "My Custom Font";
    src: url(http://www.example.org/mycustomfont.ttf) format("truetype");
}
p.customfont { 
    font-family: "My Custom Font", Verdana, Tahoma;
}
</style>
<p class="customfont">Hello world!</p>
*/






body {
	font: 100%/1.4 Century Gothic, 'Muli', Helvetica, sans-serif;
	background-image:url(images/background2.png);
	background-size:contain;
	background-position:center;
	margin: 0 10px 10px 50px;
	background-size:cover;
	background-attachment:fixed;
	background-color: #000;
	margin: 0;
	padding: 0;
	color: #fff;
}



.hello {
	font-family: 'young_beautiful', Century Gothic, 'Muli', Helvetica, sans-serif;
	text-align: center;
	
}





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

/* ~~ this container surrounds all other divs giving them their percentage-based width ~~ */
.container {
	padding-left:100px;
	width: 80%;
	margin: 0 10px 10px 50px; /* 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%. */
	background-attachment: fixed;
	background-image: url(images/background2.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center center center;
	
}



/* ~~ 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 {
	background-color: #000;
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 85px;
	padding-bottom:30px;
	z-index:100;
}

/*Splat home logo */
.homelogo {
	display:block;
	background-image: url(images/homelogosprite.png);
	background-repeat:no-repeat;
	background-position: -5px 0px;
	background-size:175px;
	height: 100px;	
	width:auto;
	
}

/* Logo for all other pages */
.homelogo2
{
	display:block;
	background-image: url(images/homelogosprite.png);
	background-repeat:no-repeat;
	background-position: 10px -145px;
	background-size:225px;
	height: 110px;
	width:auto;

}

/* Main page content */
.content2 {
	padding: 10px 20px;
	width: 95%;
	float: left;
	position: relative;
	margin-top: 150px;
	background: url(images/textbackground.png);
	background-size: cover;
	z-index: 5;
	margin-bottom: 30px;
	padding-bottom: 20px;
}


.content {
	padding: 10px 20px;
	width: 95%;
	float: left;
	margin-top: 150px;
	z-index:5;
}




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



/* NAVIGATION */
ul.nav {
	list-style: none; /* this removes the list marker */
	border-top: 0px solid #666; /* this creates the top border for the links - all others are placed using a bottom border on the LI */
	margin-bottom: 15px; /* this creates the space between the navigation on the content below */
	width: 100%;
	position: absolute;
	left: 350px;
	top: 25px;
	margin: 0 auto;
	font: "Century Gothic", sans-serif;
	font-size:18px;
	z-index:100;
	line-height:68px;
	height:100px;
}
ul.nav li {
	text-align:center;
	border-bottom: 0px solid #666; /* this creates the button separation */
	float:left;
	width: 15%;
	margin: 0px 25px;
}
ul.nav a, ul.nav a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
	padding: 5px 5px 5px 15px;
	display: block; 
	text-decoration: none;
	background-color: #000;
	color: #fff;
	
}
ul.nav a:hover, ul.nav a:active, ul.nav a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
	background-color: #333;
	color: #09F;
	background: url('img/nav-icon.gif') no-repeat 13px 0px;
}


#portfolio-page .selectedpagesprite a, #about-page .selectedpagesprite a, #contact-page .selectedpagesprite a, #index-page .selectedpagesprite a {
	   padding-left:55px;
	 
	  font-color:#0CF;
	 	  
  }
  
 #portfolio-page .selectedpagesprite a:hover, #about-page .selectedpagesprite a:hover, #contact-page .selectedpagesprite a:hover, #index-page .selectedpagesprite a:hover {
	   padding-left:55px;
	  background: url(images/splatselected2.png) no-repeat 22px -85px;
	 
	   
  }
 
.selectedpagesprite.selected a {
	   padding-left:55px;
	  background: url(images/splatselected2.png) no-repeat 22px -2px;
	  
	  font-color:#0CF;
	 	  
  }
 



/*
#main-nav li a {
	display: block;
	height: 24px;
	color: #777;
	padding-left: 50px;
	margin-bottom: 10px;
	background: url('img/nav-icon.gif') no-repeat 13px 0px;
}
#main-nav li a:hover {
	color: #444;
	text-decoration: none;
	background-position: 13px -24px;
}
#main-nav li a.active {
	color: #f15c31;
	background-position: 13px -48px;
	cursor: default;
}


*/




.sidebar1 {
	position: fixed;
	float:left;
	height:100%;
	min-height:500px;
	top: 125px;
	left: 5px;
	width: 100px;
	background: #000 url(images/sidenavbkg3.png) repeat-y;
	padding-bottom: 10px;
	padding-top:105px;
	z-index:50;

}

/* SOCIAL MEDIA SIDE BAR */
ul.socialnav li {
	list-style:none;
}

ul.socialnav li a{
	display:block;
	list-style:none;
	margin: -10px 5px;
	height: 55px;
	width: 50px;
}
.linkedin {
	background-image: url(images/socialsprite2.png);
	background-repeat: no-repeat;
	background-position: 0 0px;
}
.linkedin:hover {
	background-image: url(images/socialsprite2.png);
	background-repeat: no-repeat;
	background-position: -53px 0px;
	cursor: pointer;
}
.behance {
	background-image: url(images/socialsprite2.png);
	background-repeat: no-repeat;
	background-position: 0 -55px;
}
.behance:hover {
	background-image: url(images/socialsprite2.png);
	background-repeat: no-repeat;
	background-position: -53px -55px;
	cursor: pointer;
}
.tumblr {
	background-image: url(images/socialsprite2.png);
	background-repeat: no-repeat;
	background-position: 0 -110px;
}
.tumblr:hover {
	background-image: url(images/socialsprite2.png);
	background-repeat: no-repeat;
	background-position: -53px -110px;
	cursor: pointer;
}
.facebook {
	background-image: url(images/socialsprite2.png);
	background-repeat: no-repeat;
	background-position: 0 -165px;
}
.facebook:hover {
	background-image: url(images/socialsprite2.png);
	background-repeat: no-repeat;
	background-position: -53px -165px;
	cursor: pointer;
}
.twitter  {
	background-image: url(images/socialsprite2.png);
	background-repeat: no-repeat;
	background-position: 0 -220px;
}
.twitter:hover {
	background-image: url(images/socialsprite2.png);
	background-repeat: no-repeat;
	background-position: -53px -220px;
	cursor: pointer;
}
.rss {
	background-image: url(images/socialsprite2.png);
	background-repeat: no-repeat;
	background-position: 0 -275px;
}
.rss:hover {
	background-image: url(images/socialsprite2.png);
	background-repeat: no-repeat;
	background-position: -53px -275px;
	cursor: pointer;
}





/* ~~ The footer ~~ */
.footer {
	background-color: #111;
	position: absolute;/* this gives IE6 hasLayout to properly clear */
	bottom:0px;
	clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
	width: 100%;
	padding-top:10px;	
	height:auto;
	z-index:90;
}

.footer2 {
	background-color: #111;
	position: absolute;/* this gives IE6 hasLayout to properly clear */
	clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
	width: 100%;
	padding-top:10px;	
	height:auto;
	z-index:90;
}


.footer3 {
	background-color: #111;
	position: absolute;/* this gives IE6 hasLayout to properly clear */
	clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
	width: 99%;
	left:5px;
	padding:10px 3px 5px 3px;	
	height:auto;
	z-index:90;
	
}


.footer4 {
	background-color: #111;
	position: absolute;/* this gives IE6 hasLayout to properly clear */
	clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
	width: 100%;
	padding-top:10px;	
	height:auto;
	z-index:90;
	margin-top:150px;
}

.footbox {
	background-color: #111;
	float:left;
	left:10px;
	margin: 0 auto;
	padding:auto;
	width: 100%;
	
}



ul.bottomnav {
	position:relative;
	display:inline-block;
	list-style:none;	
	float:right;
	right:10px;
	text-decoration:none;
	margin: 0px auto;
	padding:auto;
	font:#36F;
}


ul.bottomnav li {
	display:inline-block;
	list-style:none;
}
ul.bottomnav a {
	text-decoration:none;
	font:#36F;
}








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











  /* HOME STYLES */
  .mainpagetitle {
	  position:absolute;
	  margin:0 auto;
	  left:250px;
	  
	  
  }
  
  
  .biglogo {
	position:relative;
	margin: 0 auto;
  float:right;
  top:100px;
  right:200px;
 
  
  }

	#gdmktg {
		position:relative;
		top:50px;
		float:right;
		right:0px;
		background:#000;
		height:45px;
		width:100%;
		max-width:700px;
		padding:auto;
		padding-left:20px;
		
		margin-left:auto;
		font: "Century Gothic", sans-serif;
	font-size:30px;
		
	}
  
  
  
  /*
  
  .biglogo {
	position:relative;
	margin: 0 auto;
  margin-left:auto;
  float:right;
  bottom:-60px;
  right:225px;
 
  
  }

	#gdmktg {
		position:relative;
		float:right;
		right:10px;
		text-align:left;
		background:#000;
		height:45px;
		width:100%;
		max-width:700px;
		padding:10px 10px;
		padding-left:20px;
		margin-left:auto;
		font: "Century Gothic", sans-serif;
	font-size:30px;
		
	}
	*/


  /* About Styles */
  
  #about {
	position: fixed;
	width: 97%;
	height: 100%;
	background: url(images/bkgme.png) no-repeat right;
	right: 50px;
	bottom: 10px;
	left: 100px;
	z-index: 3;
	font: 'young_beautiful';
	  
  }
  

  
   .about1 {

	width: 45%;
	float: left;
	position: relative;
	padding-top:30px;
	background: url(images/textbackground.png);
	background-size: cover;
	z-index: 5;
	padding-bottom: 20px;
	left:130px;
	margin-top: 200px;
	margin-bottom: 30px;
	margin-left:300px;
}
  
     .about2 {
	
	width: 75%;
	float: left;
	position: relative;
	margin-top: 10px;
	padding-top:60px;
	padding-left:40px;
	padding-right:10px;
	background: url(images/textbackground.png);
	background-size: cover;
	z-index: 5;
	margin-bottom: 30px;
	padding-bottom: 20px;
	left:120px;
}
  
  
  
  
  
  .pageheader {
	font-weight: bold;
	font-size: 65px;
	text-align: center;
	float: left;
	position: absolute;
	top: 120px;
	margin: 0 auto;
	width: 90%;
	font-family: "young_beautiful", "Century Gothic", Muli, Helvetica, sans-serif;
  }
  
  
  .hello {
	text-align: center;
	font-size: 36px;
	padding-top: 20px;
	font-family: "young_beautiful", "Century Gothic", Muli, Helvetica, sans-serif;
  }
  
  
  
 
  
  
  
  
  
  
  
  /*Work Styles */
  
  
   .portfolio {
	
	width: 75%;
	float: left;
	position: relative;
	margin-top: 220px;
	padding-top:60px;
	padding-left:40px;
	padding-right:10px;
	background: url(images/textbackground.png);
	background-size: cover;
	z-index: 5;
	margin-bottom: 30px;
	padding-bottom: 20px;
	left:120px;
}
  
  
  
 .thumbnails {
	 margin: 0 auto;
	 float:left;
	 position:relative;
	 padding-left:100px;
	 
	 
 }
  
  .portcontain {
	  position:relative;
	  float:left;
	  
	  margin-bottom:50px;
	  
  }
  
  
  /*Contact Styles */
  
.contact {
	padding:0px 25px 5px 25px;
	position:relative;
	float:left;
	width:90%;
	margin:0 auto;
}
	

 
  

  
