 /*
-----------------------------------------------------
Basic CSS file for screen media [gammaray.com]
FileName: basic.css

Author: Tom Newman (tom@csspit.com)
-----------------------------------------------------
*/ 

/* Basic formatting: v4 browsers see only this */

html,
body,
form,
fieldset {
	font-family:georgia, serif;
	margin:0;
	padding:0;
}
body {
	background-color:#f7f7f7;
	color:#333;
	margin:20px;
}

/* Neutralize styling: 
   Elements with a vertical margin: */
h1, h2, h3, h4, h5, h6, p, pre,
blockquote, ul, ol, dl, address {
	margin:1em 0;
	padding:0;
}
/* Apply left margin:
   Only to the few elements that need it: */
li, dd, blockquote {
	margin-left:1em;
}
ul, ol {
	list-style: none;
	margin-left:.5em;
	margin-top:.5em;
}

/* Miscellaneous conveniences */
a img {
	border:none;
}
 a {
	color:#2f5203;
}

p {
	margin-top:0;
}



