/* define your general layout*/

body {
margin:50px 0px; padding:0px; /* Need to set body margin and padding to get consistency between browsers. */
text-align:center; /* Hack for IE5/Win */
	
/* font (times, arial, serif, sans-serif) */
font-family: Helvetica, Arial, sans-serif;
font-size:12px;
  
/* general font color (black, white, gray, #hex)*/
color:dimgray;

/* background color (black, white, gray, #hex)*/
background-color: white;
}


/* used to define overal layout, site width etc*/
div.container{
width:610px;
margin:0px auto; /* Right and left margin widths set to "auto" */
text-align:left; /* Counteract to IE5/Win Hack */
padding:15px;
background-color: white;
}


/* used for header/sitename*/
p.header{ 
font-size:48px;
line-height: 35px;
//font-weight: bold;
color: black;
letter-spacing: -2px;
text-decoration: none;
}

/* used for post menu*/
div.menu{
position:absolute;
top:3px;
}

/* used for login link/button*/
div.login{
top:3px;
margin-left:580px;
position:absolute; 
}

/* used for date paragraph*/
p.small{ 
border-top:1px solid #DCDCDC;
height:1.1em;
color:#B0B0B0;

}

/* used for post title*/
p.title{ 
font-weight:bold;
font-size:20px;
color:dimgray;
}

/* used for image border*/
img {
border:1px solid dimgray;
}
 
/* used for material and description and all other 'regular' text*/
p.regular{ 
font-size:15px
height:0.1em;
color:gray;
}
 
 

/* link colors*/
.link a:link{
color:black;
text-decoration: none;
padding-right:10px;
background-image: url(ssc-arrow-light.png);
background-position: right;
background-repeat: no-repeat;
}

.link a:hover{
color: dimgray;
padding-right:10px;
background-image: url(ssc-arrow-ro.png);
background-repeat: no-repeat;
background-position: right;	
text-decoration: none; 

}

.link a:visited{
color: dimgray;
padding-right:10px;
background-image: url(ssc-arrow-ro.png);
background-repeat: no-repeat;
background-position: right;	
text-decoration: none; 

}

.link a:active{
color: dimgray;
padding-right:10px;
background-image: url(ssc-arrow-ro.png);
background-repeat: no-repeat;
background-position: right;	
text-decoration: none; 

}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
