/*
//		TEXTHIBIT		
//	 flat-file blog engine 		
//					
//					
//Copyright 2009 Dennis de Bel 		
//info@danos.nl				
//www.danos.nl				
//
// This file is part of TEXTHIBIT.
//
//    TEXTHIBIT is free software: you can redistribute it and/or modify
//    it under the terms of the GNU General Public License as published by
//    the Free Software Foundation, either version 3 of the License, or
//    any later version.
//
//    TEXTHIBIT is distributed in the hope that it will be useful,
//    but WITHOUT ANY WARRANTY; without even the implied warranty of
//    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
//    GNU General Public License for more details.
//
//    You should have received a copy of the GNU General Public License
//    along with TEXTHIBIT (see the 'COPYING' file).  If not, see 
//    <http:www.gnu.org/licenses/>.
//
*/
/* define your general layout*/

body {
margin:50px 0px; padding:5px; /* 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:11px;
  
/* general font color (black, white, gray, #hex)*/
color:black;

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


/* used to define overal layout, site width etc*/
div.container{
padding:10px;
background-color: white;
}


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

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

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

/* 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
div.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;
font-size:12px
}

.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; 
font-size:12px

}

.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; 
font-size:12px

}

.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; 
font-size:12px

}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
