/* Reset */
* {
	margin: 0;
	padding: 0;
}
a, input {
	outline: none;
}
img {
	border: none;
}

html {
	overflow-x: scroll;
}
body {
	background-color: #000;
	color: #fcfcfc;
	font-family: Helvetica, Arial, sans-serif;
	font-size: 12px;
}
td {
	vertical-align: top;
}
p {
	color: #cfcfcf;
	line-height: 20px;
	margin-bottom: 15px;
}

#sidebar {
	width: 250px;
	min-width: 250px;
	padding: 0 25px;
}

h1 a {
	display: block;
	text-indent: -9999px;
	width: 250px;
	height: 103px;
	background: url('../images/logo.gif') no-repeat;
	margin: 10px 0 25px 0;
}
#nav {
	list-style: none;
	margin-bottom: 20px;
}
#nav li a:link, #nav li a:visited {
	text-decoration: none;
	font-family: 'century gothic', Arial, Helvetica, sans-serif;
	font-size: 25px;
	font-weight: bold;
	color: #FFF;
	line-height: 40px;
}
#nav li a:hover, #nav li a:active {
	color: #aecbd8;
}
#nav li a.active {
	color: #d776e2;
}

h2 {
	display: block;
	text-indent: -9999px;
	margin-bottom: 10px;
}
h2#about {
	width: 158px;
	height: 46px;
	margin-left: 90px;
	background: url('../images/about1.png') no-repeat;
}
h2#blog {
	width: 152px;
	height: 45px;
	background: url('../images/myblog1.png') no-repeat;
}
h2#contact {
	width: 162px;
	height: 51px;
	margin-left: 87px;
	background: url('../images/contact1.png') no-repeat;
}

.thumb {
	opacity: 0.5;
	/* Firefox */
	-moz-transition-property: opacity;
	-moz-transition-duration: 1s;
	/* WebKit */
	-webkit-transition-property: opacity;
	-webkit-transition-duration: 1s;
	/* Opera */
	-o-transition-property: opacity;
	-o-transition-duration: 1s;
	/* Standard */
	transition-property: opacity;
	transition-duration: 1s;
}
.thumb:hover {
	opacity: 1;
}

