@charset "utf-8";

/* Basic Aceluna Studio website template styling format *
 * Based on the YAML-C framework (http://www.yaml.de) *
 * Copyright © Acēluna Studio 2010 */


/*--- Styling Functionality -------------------------------------------------------------------------------------------*/

/* This reset font size for all elements to standard (16 Pixel) */
  html
  {
    font-size: 100.01%;
    margin: 0;
    padding: 0;
  }

/* This reset monospaced elements to font size 16px in all browsers */
 textarea, pre, code, kbd, samp, var, tt
  {
    font-family: Consolas, "Lucida Console" , "Andale Mono" , "Bitstream Vera Sans Mono" , "Courier New" , Courier;
  }

/* This applies to list items (bullets) */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}





/*--- Styling ---------------------------------------------------------------------------------------------------------*/

/* This defines the main attributes of your fonts on your pages as well as the color and background of the body*/
body {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 75.00%;
	color: #FFF;
	font-weight: normal;
	margin: 0;
	padding: 0;
	background-position: left top;
	background-image: url(pages/index/images/background/black_nice_background.jpg);
	background-color: #1C1C1C;
	background-repeat: repeat-x;
}



/*--- Links -----------------------------------------------------------------------------------------------------------*/

/* This defines how links are viewed either when not visited or when clicked on*/
/* (Styling for your site's links must remain in this order - including the group of selectors that create the hover effect.) */
a:link {
	color: #999;
	background: transparent;
	text-decoration: none;
}
a:visited {
	color: #000;
	text-decoration: none;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	color: #333;
	text-decoration: underline;
	text-align: right;
}





/*--- Headings --------------------------------------------------------------------------------------------------------*/


/* This defines the headings (the paragraph titles) and the paragraphs of your page*/
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	margin: 0 0 1.25em 0;
	padding-right: 15px;
	padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
	font-weight: bold;
	color: #222;
}


  h1 /* 30px */
  {
	font-size: 250%;
	color: #A00;
	text-align: center;
  }
  
  h2 /* 24px */
  {
	font-size: 200%;
	color: #FFF;
  }
  
  h3 /* 18px */
  {
	font-size: 150%;
	color: #FFF;
	text-align: center;
  }
  
  h4 /* 16px */
  {
	font-size: 133.33%;
	color: #FFF;
	text-align: center;
  }
  
  h5 /* 14px */
  {
	font-size: 116.67%;
	color: #FFF;
	text-align: center;
  }
  
  h6 /* 12px */
  {
	font-size: 100.01%;
	color: #FFF;
  }

  p /* 12px normal*/
  {
	font-size: 100.01%;
	font-weight: normal;
	color: #FFF;
  }
  
  
  
  
/*--- General Text Formatting -----------------------------------------------------------------------------------------*/

/* This defines how text should be displayed for the various scenarios*/

  p
  {
	line-height: 1.50em;
	margin: 0 0 1.50em 0;
	text-align: center;
  }

  blockquote, cite, q
  {
    font-family: Georgia, "Times New Roman" , Times, serif;
    font-style: italic;
  }
  blockquote
  {
    margin: 0 0 1em 1.6em;
    color: #666;
  }

  strong, b
  {
    font-weight: bold;
  }
  em, i
  {
    font-style: italic;
  }

  pre, code, kbd, tt, samp, var
  {
    font-size: 100%;
  }
  pre, code
  {
    color: #800;
  }
  pre
  {
    line-height: 1.5em;
    margin: 0 0 1em 0;
  }
  kbd, samp, var
  {
    color: #666;
  }
  var
  {
    font-style: italic;
  }

  acronym, abbr
  {
    border-bottom: 1px #aaa dotted;
    font-variant: small-caps;
    letter-spacing: .07em;
    cursor: help;
  }

  sub, sup
  {
    font-size: 91.6667%;
  }

  hr
  {
    color: #fff;
    background: transparent;
    margin: 0 0 0.5em 0;
    padding: 0 0 0.5em 0;
    border: 0;
    border-bottom: 1px #eee solid;
  }





/*--- Container (general layout of the website) ------------------------------------------------------------------------*/

/* This fixed width container surrounds the other divs which makes the website 960px wide, centered and of white color */
.container {
	width: 960px;
	background: #FFF;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
}





/*--- Header (top of website) -----------------------------------------------------------------------------------------*/

.header {
	padding: 10px 0;
	background-color: #333;
}




/*--- Content (main part of website) ----------------------------------------------------------------------------------*/

/* Padding is only placed on the top and/or bottom of the div. The elements within this div have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design. */
.content {
	padding: 10px 0;
	color: #FFF;
	background-image: url(pages/index/images/background/bg.gif);
}





/*--- Footer (bottom of website) --------------------------------------------------------------------------------------*/

.footer {
	padding: 10px 0;
	background-color: #900;
	color: #FFF;
	text-align: right;
}





/*--- Functionality ---------------------------------------------------------------------------------------------------*/

/* This removes the ugly Mozilla outlines on pictures */
a moz {
 outline:none;
  -moz-outline-style: none;
   }

/* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
a img {
	border: none;
}





/*--- Floats ---------------------------------------------------------------------------------------------------------*/


/* ~~ miscellaneous float/clear classes ~~ */
.float_right {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.float_left { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.float_clear { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}
