/* 
Stylesheet by Pat Brunet [ http://www.patbrunet.com ] 
Design for Sensual Image Website
DATE: 12th March, 2005
CSS Help @ http://www.wpdfd.com/editorial/basics/index.html
*/

body { 
	background-color: #000; /* Background Colour of your site */
 	color: #FFF; /* Colour of your text (white) */
	font-family: "Lucida Sans", Verdana, Geneva, Arial, sans-serif; /* Standard Font */
	margin: 50px;  /* Left and Top Margin */
	font-size: medium; 
	line-height: 140% /* Line Spacing 120% is usually Default*/
}

/* 
ABOUT FONT SIZES

Relative font sizes

If you want the widest possible audience for your pages, it is best to specify 
the font size relative to the user's chosen default size. There are various ways 
of specifying relative font sizes. You can use percentages of the default (%), 
or use can use a unit called an 'em', which is the same as 100%. 1.2 em is the 
same as 120%. The preferred way is to use a set of pre-defined descriptions that 
sound like T-shirt sizes. 'Medium' is the same as 100% or 1em. 'Smaller' is a size 
down from that and 'Larger' a size bigger. 

Then there is x-small, xx-small, x-large and xx-large. The advantage of using this 
system over percentages or ems is that the browers won't allow the type to become 
too small to read. You could, for instance, specify a type size of 0.7 em or 70% and
it would look fine on your PC. For somebody using a Mac with a smaller default font 
size, the 70% could take the type down below the size of legibility. xx-small is 
smart enough to know what the minimum size of type a computer can handle.

xx-large   x-large  large  medium  small  x-small  xx-small
*/

p { 
	text-indent: 0 em;
} 

div.main {
	text-indent: 0 em;
	text-align:justify; 
	margin-left: 35px; 
	margin-right: 100px; 
	line-height: 120%;
	font-color: #CCCCCC;
	font-size: medium;
}

h2 {
color: #c00; font-family: "Lucida Sans", Georgia, Times New Roman, Times, serif;
}

h3 {
color: #F3F3F3; font-family: "Lucida Sans", Georgia, Times New Roman, Times, serif;
}

entry {
color: #CCCCCC; font-family: "Lucida Sans", Georgia, Times New Roman, Times, serif;
}


a:link {color: #696; text-decoration: none; background-color: transparent }
a:visited { color: #699; text-decoration: none; background-color: transparent }
a:hover { color: #c93; text-decoration: underline; background-color: transparent }
a:active { color: #900; text-decoration: underline; background-color: transparent }

.gallery:link { font-family: Geneva, Arial, Helvetica, sans-serif; font-size: x-small; color: white; text-decoration: none; background-color: transparent }
.gallery:visited { font-family: Geneva, Arial, Helvetica, sans-serif; font-size: x-small; color: white; text-decoration: none; background-color: transparent }
.gallery:hover { font-family: Geneva, Arial, Helvetica, sans-serif; font-size: x-small; color: yellow; text-decoration: underline; background-color: transparent }
.gallery:active { font-family: Geneva, Arial, Helvetica, sans-serif; font-size: x-small; color: red; text-decoration: underline; background-color: transparent }
.redtext { #c00 }
