/*
FOLLOWING: DIRRRRTY STYLE
*/

/* world
--------------------------------------------------*/

body {
	font-family: "Georgia", "Geneva", Helvetica, Arial, sans-serif;
	background: #fff;
	margin: 0px;
	padding: 0px;
	font: 10px;
}

* {
	margin:0;
	padding:0;
}

a { 
	padding: 0px;
	color: #ff796f;
	text-decoration: none;	
}

a:hover { 
	text-decoration: underline;	
}


/* header
--------------------------------------------------*/

.top_wrapper {
	z-index: 100;
	top:10px;
	padding: 10px;
	width: 100%;
	position: fixed;
	float: left;
	color: #ff796f;
	display: eachpost;
 	/*-moz-border-radius:6px;
	-khtml-border-radius: 6px;
	-webkit-border-radius:6px;*/
}

#logo {
	margin-left: 30px;
	margin-top: 12px;
	float: left;
	font-weight: bold;
	font-family: Helvetica;
	letter-spacing: 3px;
	font-style: italic;

}

#nav {
	margin-left: 120px;
	margin-top: 10px;
	float: left;
	font-weight: regular;
}

#nav a {
	margin-right: 80px;
	padding: 2px;
	color: #ff796f;
	font-size: 13px;
	text-decoration: none;
}

#nav span {
	margin-right: 80px;
	padding: 2px;
	color: #ff796f;
	font-size: 13px;
	text-decoration: none;
}

#nav a:hover {
	text-decoration: underline;
}

.rights {
	color: #ff796f;
	position: fixed;
	float: right;
	font-size: 13px;
	text-align: right;
	right: 50px;
	top: 18px;
}





span.about{
    position:relative; /*this is the key*/
    z-index:24;
    text-decoration: none;
}

span.about:hover{
	z-index:25;
	text-decoration: none;
	cursor: pointer;

}

span.about span{
	display: none
}

span.about:hover span{ /*the span will display just on :hover state*/
    display:block;
    position:absolute;
    top:17px;
    left:1px; 
    width:170px;
    border:0px;
    color:#ff796f;
    text-align: left;
}




span.links{
    position:relative; /*this is the key*/
    z-index:24;
    text-decoration: none;
}

span.links:hover{
	z-index:25;
	text-decoration: none;
	cursor: pointer;

}

span.links span{
	display: none
}

span.links:hover span{ /*the span will display just on :hover state*/
    display:block;
    position:absolute;
    top:17px;
    left:1px; 
    width:170px;
    border:0px;
    color:#ff796f;
    text-align: left;
}


/* body
--------------------------------------------------*/

/* index
--------------------------------------------------*/

#posts { 
	margin-top: 70px;
	margin-left: 40px;
	float: left;
	vertical-align: bottom;

}

#onepost {
	position: relative;
	margin-right: 70px;
	margin-bottom: 30px;
	float: left;
	border: 0px solid #000;
	vertical-align: bottom;
	height: 350px;
	width: 250px;
}


#inner {
	position: absolute;
	bottom: 0px;

}
#inner img {
	max-width: 250px;
	max-height: 350px;
	border: 0px;
	margin-bottom: 0px;
}



#inner p {
	font-style: italic;
	margin-top: 0px;
	font-size: 13px;
	color: #000;
	
}


/* detail
--------------------------------------------------*/



#desc {
	position: fixed;
	top: 100px;
	left: 40px;
	width: 230px;
	margin-top: 0px;
	font-size: 13px;
	color: #000;
	
}

#posts_detail { 
	margin-top: 100px;
	margin-left: 350px;
	float: left;
	vertical-align: bottom;

}





