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

  Licensed under GPL and MIT.
*/

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

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  line-height: 23px;
}

pre,
code {
  font-family: Menlo, Consolas, monospace;
}

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


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

h1 {
    font-family: 'Open Sans', sans-serif;
 	font-size: 25px;
	display: inline;
}

h2 {
    font-family: 'Open Sans', sans-serif;
 	font-size: 23px;
	display: inline;
}

h3 {
    font-family: 'Open Sans', sans-serif;
	font-size: 21px;
}

h4 {
    font-family: 'Open Sans', sans-serif;
	font-size: 18px;
	display: inline;
}

h5 {
    font-family: 'Open Sans', sans-serif;
	font-size: 17px;
	display: inline;
}

h6 {
  font-family: 'Open Sans', sans-serif;	
  font-size: 13px;
  display: inline;
}

h7 {
  font-family: 'Open Sans', sans-serif;	
  font-size: 16px;
  font-weight: 600;
  margin: 20px;
  line-height: 50px;
  display: inline;
}

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

ol {
  list-style: decimal;
}

ul {
  list-style:circle;
}

li {
  margin-left: 15px;
}

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

/* unvisited link */
a:link    {
    color: #2A5DB0;
	text-decoration: none;
	font-weight: 600;
}

/* visited link */
a:visited {
    color: #2A5DB0;
	text-decoration: underline;
	font-weight: 600;
}

/* mouse over link */
a:hover   {
    color: #2A5DB0;
	text-decoration: underline;
	font-weight: 600;
}

/* selected link */
a:active  {
    color: #000000;
	text-decoration: underline;
	font-weight: 600;
}