

/* = header.css
--------------------------------------------------- */


/* = Social Network
--------------------------------------------------- */

#top-wrapper {
	display:none;
}
#top {
	width: 950px;
	height: 30px;
	margin: 0 auto;
}
#top .box-socialnet {
	margin: 5px 0 0;
	float: right;
}
#top .box-socialnet .title {
	display: none;
}
#top .box-socialnet ul {
	display: block;
	float: right;
	height: 16px;
	list-style-type: none;
	margin: 0;
	padding: 0;
}
#top .box-socialnet ul li {
	float: left;
	width: 16px;
	height: 16px;
	margin: 0 0 0 5px;
	padding: 0;
}
#top .box-socialnet ul li a {
	display: block;
	width: 16px;
	height: 16px;
	text-indent: -999999px;
	margin: 0;
	padding: 0;
}
#top .box-socialnet ul li.facebook {
	background: transparent url('../images/icon-sn-facebook.png') left top no-repeat;
}
#top .box-socialnet ul li.rss {
	background: transparent url('../images/icon-sn-rss.png') left top no-repeat;
}
#top .box-socialnet ul li.twitter {
	background: transparent url('../images/icon-sn-twitter.png') left top no-repeat;
}
#top .box-socialnet ul li.flickr {
	background: transparent url('../images/icon-sn-flickr.png') left top no-repeat;
}

.social{position:absolute; left:815px; top:0px; padding:40px 10px 10px 10px; display:inline; width:175px;}

.social span{float:left; display:block; margin-right:10px;}


/* = Header, Blog Title and Slogan.
--------------------------------------------------- */

#header-wrapper {
	background: #000 url('/images/bg-header.jpg') left top repeat-x;
}
#header {
	width: 980px;
	margin: 0 auto;
	padding-top: 25px;
    padding-bottom:5px;
	position:relative;
	z-index:9999;
}
#header h3 {
	display: none;
}
#header .box-masthead {
	margin: 0;
	float: left;
}

<?php
	$sitename = Padd_Theme_Option::get('sitename_mode','0');
?>
<?php if ('0' == $sitename) : ?>

#header .title {
	display: block;
	margin: 10px 0 0;
	padding: 0;
}
#header .title a {
	display: block;
	margin: 0;
	font: normal 36px/52px 'Oswald', sans-serif;
	font-style: normal;
	text-decoration: none;
	text-transform: uppercase;
	outline: none;
	color: #fff;
	text-shadow: 0 1px #000;
	height:77px;
	width:300px;
}
#header .title a:hover {
	text-decoration: none;
}
#header .description {
	display: none;
}

/*

<?php else : ?>
	<?php
		$image = Padd_Theme_Option::get('sitename_logo_url');
		$val = getimagesize($image);
	?>
	*/
	
#header .title {
	display: block;
	margin: 0;
	padding: 0;
}
#header .title a {
	display: block;
	margin-top: 10px;
	font-family: 'Hammersmith One', sans-serif;
	font-size: 39px;
	text-indent: -999999px;
	background: transparent url('<?php echo $image; ?>') left center no-repeat;
	width: <?php echo $val[0]; ?>px;
	height: <?php echo $val[1]; ?>px;
}
#header .description {
	display: none;
}

<?php endif; ?>

