/* ==================================================================================== 
-------------------- Raiderneo Style Sheet V4 - The Final Frontier --------------------
Space, 'cause I love space. Yes I know it's completely non-neo related. But maybe it 
gives a hint to the fact that I use my site very much for education in general web 
design, I'm just to boring (or maybe to lazy to write) to have a blog. xP Anyways,
feel free to read and learn, just don't steal, 'kay? ~Fire
======================================================================================= */
@import url("framework_styles.css"); /* Imports framework. */
@charset "utf-8"; /* Because it's good practice. */

/* ------------------- General Stuff ------------------- */
body {
  color:#782c58;
  background: #000000;
  font-size: 10px;
  font-family: Arial, Helvetica, sans-serif
} /* Body. Duh. */

a {
  color:#782c58;
  text-decoration: none;
} /* Links. Duh. */

a:hover {color:#3c1428} /* Link Hover Psuedo. Duh. (Eh heh heh.) */

.navigation a {
  color:#961f2c;
  text-decoration: none;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 2px;
} /* Links in Navigation are slightly different. */

.navigation a:hover {
  color:#b44e59;
  letter-spacing: 5px;
}  /* Navigation Link Hover Psuedo. Duh. (Eh heh heh.) */

/* ------------------- Positioning ------------------- */

div.main {
  position:absolute;
  left:50%;
  top:0px;
  width:960px;
  height:1200px;
  margin-left: -480px;
} /* This is the main container for the layout. All other positioning is in the framework styles. ;) */

/* ------------------- Visuals ------------------- */

h1 {
  font: 40px "Times New Roman", Times, serif;
  color: #782c58;
  margin: 2px 2px 5px;
  padding: 0px;
} /* Big header for important stuff. */

h2 {
  font: italic normal 24px "Times New Roman", Times, serif;
  color: #4E1E38;
  margin: 1px 1px 3px;
  padding: 0px; 
} /* Smaller header for sub headings. */

h3 {
  font: normal 20px/18px "Times New Roman", Times, serif;
  color: #6c051c;
  margin: 0px 1px 5px;
  padding: 0px;
  border-bottom: 1px dotted #b44e59;
  width: 95%;
} /* Smaller header for navigation. */

textarea {
  height: 40px;
  width: 150px;
  float: none;
  margin: 2px;
  padding: 1px;
  border: 1px solid #3c1428;
  font: 10px "Courier New", Courier, monospace;
  color: #782c58;
  background: #000000;
} /* Textareas are for code. */

h4  {
	letter-spacing: 2px;
	text-align: right;
	border-bottom: 1px solid #3c1428;
	font: italic normal 18px "Times New Roman", Times, serif;
	color: #4E1E38;
	margin: 0px;
} /* Used in cutenews. */
.border {
	border-bottom:1px dashed #3c1428;
	border-left:1px dashed #3c1428;
	border-right:1px dashed #3c1428;
	padding:5px;
	color:#782c58;
} /* Also for cutenews. */

ul {
  margin: 0px;
  padding: 0px;
  list-style: disc url(http://www.raiderneo.net/layout_images/bullet-image.gif) inside;
  text-align: left; 
} /* Fancy's up our navigation. */

img {border:0px} /* Saves me time with image links. */

div.contentoverflow {
  overflow:auto;
  height: 800px;
  width: 550px;
} /* So content over flows. I wish I could make the scroll bar invisible. :C */