@charset "utf-8";
/** CSS Reset **/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	vertical-align: baseline;
	background: transparent;
}

body {
	line-height: 1;
}
ol, ul {
	list-style: none;

}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}
:focus {
	outline: 0;
}
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/** End Reset **/

body, html {
	height:100%;
	-webkit-font-smoothing: antialiased;
}
body {
	margin:0;
	font-family: 'Nobile', arial, serif;
	font-weight:normal;
	font-style:normal;
	-webkit-font-smoothing: antialiased;
}
img.bg {
	/* Set rules to fill background */
	min-height: 100%;
	min-width: 1024px;
	/* Set up proportionate scaling */
	width: 100%;
	height: auto;
	/* Set up positioning */
	position: fixed;
	bottom: 0;
	left: 0;
}
 @media screen and (max-width: 1024px) {
 img.bg {
 left: 50%;
 margin-left: -512px;
}
}
#container {
	position: relative;
	height:100%;
}
/** THE CODES **/


/* Sidebar */

#sidebar {
	width:195px;
	/*background-color:#352832;*/
	background: rgba(37, 13, 11, 0.8);
	float:left;
	height:100%;
	position:fixed;
	border-left:5px solid #D6C82A;

	/*filter:alpha(opacity=75);
	-moz-opacity:0.75;
	-khtml-opacity: 0.75;
	opacity:0.75;*/
	
}
#sidebar #nav {
	clear:both;
	text-align:right;
	display:block;
	margin:0;
	width:155px;
	position:absolute;
	right:20px;
	top:110px;
	/*border-top: 1px solid #534851;*/
	padding: 25px 0px 0px;
}

hr {
	background-color: #534851; 
	height: 1px; 
	border: 0;
	width: 82%;
}

#sidebar #nav li {
	font-size:12px;
}
#sidebar #nav li .current{
	text-decoration:none;
	font-size:12px;
	line-height:24px;
	color:white;
 -webkit-transition: color .25s ease-in;
 -o-transition: color .25s ease-in;
 transition: color .25s ease-in;
}
#sidebar #nav li a {
	text-decoration:none;
	font-size:12px;
	line-height:24px;
	color:#9C959B;
 -webkit-transition: color .25s ease-in;
 -o-transition: color .25s ease-in;
 transition: color .25s ease-in;
}
#sidebar #nav li a:hover {
	color:white;
}
#sidebar #nav li a.download {
	margin-top:15px;
	display:block;
	color:#a64c45;
}
#sidebar #nav li a.download:hover {
	color:#fff;
}
#sidebar h1 a {
	display:block;
	height: 80px;
	width: 80px;
	text-indent: -1000em;
	overflow: hidden;
	position:absolute;
	right:5px;
	top:25px;
}
/* Selected States */

#home #sidebar #nav li.home a, #about #sidebar #nav li.about a, #work #sidebar #nav li.work a, #help #sidebar #nav li.help a, #contact #sidebar #nav li.contact a {
	color:#fff;
}
/* Content */

a.circle {
	/*background-color: #9f311b;*/
	background: rgba(159, 49, 27, 0.8);
	height: 65px;
	-moz-border-radius:50px;
	-webkit-border-radius: 50px;
	border-radius:50px;
	width: 100px;
	color:#FFF;
	display:block;
	text-align:center;
	text-decoration:none;
	padding-top:35px;
	-webkit-transform:rotate(15deg);
	position:absolute;
	left:-70px;
	top:60px;
 -webkit-transition: -webkit-box-shadow .25s ease-out; /*safari and chrome */
 -webkit-transition: -webkit-transform .25s ease-out; /*safari and chrome */
}
a.circle:hover {
	-webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
	-webkit-transform:rotate(0deg) scale(1.05);
}
#content {
	/*float:right;*/
	position:absolute;
	top:0px;
	right:0px;
	padding-left:25px;
	padding-right:25px;
	background:white;
	background:rgba(104, 57, 39, 0.85);
	width:415px;/* height:100%; */
}
#content p, #content ul {
	color:#fff;
	font-size:12px;
	line-height:16px;
	display:block;
	padding-bottom:15px;
}
#content p {
	clear:both;
}
#content p b{
	color:#b68989;
	margin-left:5px;
}
#content p a, #thebox p a, #thebox h3 a {
	color:#F17335;
	text-decoration:none;
 -webkit-transition: background .25s ease-out; /*safari and chrome */
 -webkit-transition: color .25s ease-out; /*safari and chrome */
}
#content p a:hover, #thebox p a:hover, #thebox h3 a:hover {
	/*background:#F17335;*/
	color:#FFF;
}
#content h2 {
	margin-top:23px;
	margin-bottom:5px;
	font-size:25px;
	color:#eb8bd3;
	font-weight:normal;
}
#content h3, #thebox h3 {
	font-size:18px;
	font-weight:bold;
	color:#fff;
	line-height:0px;
	margin-top:35px;
	margin-bottom:20px;
}
#content h4 {
	font-size:11px;
	font-weight:bold;
	color:#666;
	margin-bottom:8px;
	display:block;
	clear:both;
}

.credit {
	font-size:9px;
	color:#4E424B;
	text-align:right;
	position:absolute;
	right:20px;
	bottom:53px;
	left:0;
	line-height:15px;
}
.chopeh {
	display:block;
	background: url(images/chopeh-footer.gif);
	text-indent: -1000em;
	height: 24px;
	width: 66px;
	overflow: hidden;
	position:absolute;
	bottom:20px;
	right:20px;
	opacity:0.3;
 -webkit-transition: opacity .60s ease-out
}
.chopeh:hover {
	opacity:1.0
}
/** About Page **/

#content ul#leftList, #content ul#rightList {
	margin-bottom:15px;
	line-height:25px;
	display:block;
}
#leftList {
	float:left;
	padding:0;
	margin: 0px 40px 0px 0px;
}
#rightList {
	float:left;
	margin:0;
	padding:0;
}
#content ul li.bar {
	padding-left:60px;
	background: url(images/3-bar.gif) no-repeat left center;
}
#content ul li.bar2 {
	background: url(images/2-bar.gif) no-repeat left center;
}
#content ul li.bar3 {
	background: url(images/3-bar.gif) no-repeat left center;
}
#content ul li.bar4 {
	background: url(images/4-bar.gif) no-repeat left center;
}
#content ul li.bar5 {
	background: url(images/5-bar.gif) no-repeat left center;
}
#content #links a {
	display:block;
	width:57px;
	height:57px;
	float:left;
	text-indent:-1000em;
	opacity: 0.7;
 -webkit-transition: opacity .25s ease-out;
}
#content #links a {
	margin-left:28px;
}
#content #links {
	margin-left:-28px;
	height:80px;
}
#content #links a:hover {
	opacity: 1;
}
#content #links a.twitter {
	background: url(images/icon-twitter.png);
}
#content #links a.dribbble {
	background: url(images/icon-dribble.png);
}
#content #links a.behance {
	background: url(images/icon-behance.png);
}
#content #links a.flickr {
	background: url(images/icon-flickr.png);
}
#content #links a.last {
	background: url(images/icon-lastfm.png);
}
#content #view {
	position:absolute;
	bottom:-40px;
	right:0;
	padding-left:15px;
	padding-right:15px;
	width:auto;
	height:40px;
	line-height:40px;
	background:#F17335;
	font-size: 14px;
	color: #FFF;
	text-decoration:none;
	margin-bottom:15px;
}