/*
  960 Grid System ~ Text CSS.
  Learn more ~ http://960.gs/

  Licensed under GPL and MIT.
*/

/* `Basic HTML
----------------------------------------------------------------------------------------------------*/

body {
  font: 12px/1.5 'Helvetica Neue', Arial, 'Liberation Sans', FreeSans, sans-serif;
   
  background: #123;
  color: #333;
  height: auto;
  background-image:url(img/bg1.png);
  background-repeat:repeat-x;
}

p{
  border: 0px solid #666;
  overflow: hidden;
  padding:10px; 
}

.table_title{
	padding-left:10px; 
	font-weight:bold; 
	style:bold;
	font-size:14px;
	}

a {
  color: #;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.round_corners{
	border-radius:5px;
	-webkit-border-radius:5px;
	-moz-border-radius:5px;
}

pre,
code {
  font-family: 'DejaVu Sans Mono', Monaco, Consolas, monospace;
}

hr {
  border: 0 #ccc solid;
  border-top-width: 1px;
  clear: both;
  height: 0;
}

/* `Headings
----------------------------------------------------------------------------------------------------*/

h1 {
  font-size: 25px;
  padding-left:10px;
}

h2 {
  font-size: 23px;
  padding-left:10px;
}

h3 {
  font-size: 21px;
}

h4 {
  font-size: 19px;
}

h5 {
  font-size: 17px;
}

h6 {
  font-size: 15px;
}

/* `Spacing
----------------------------------------------------------------------------------------------------*/

ol {
  list-style: decimal;
}

ul {
  list-style: disc;
}

li {
  margin-left: 30px;
}

p,
dl,
hr,
h1,
h2,
h3,
h4,
h5,
h6,
ol,
ul,
pre,
table,
address,
fieldset,
figure {
  margin-bottom: 5px;
  margin-top: 5px;
}