/*
960 Grid System ~ Text CSS.
Learn more ~ http://960.gs/
 
Licensed under GPL and MIT.
*/
 
/* `Basic HTML
----------------------------------------------------------------------------------------------------*/
 
body {
font: 12px/1.5 Arial, sans-serif;
color: #ddd;
}

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

a:link {color:#54a7d1} /* unvisited link */
a:visited {color:#54a7d1} /* visited link */
a:hover {color:#FFFFFF} /* mouse over link */
a:active {color:#54a7d1} /* selected link */
 
/* `Headings
----------------------------------------------------------------------------------------------------*/
 
h1 {
font-size: 22px;
}
 
h2 {
font-size: 18px;
}
 
h3 {
font-size: 17px;
}
 
h4 {
font-size: 16px;
}
 
h5 {
font-size: 14px;
}
 
h6 {
font-size: 12px;
}
 
/* `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 {
margin-bottom: 20px;
}
