@charset "utf-8";
/* http://techneblog.com/article/creating-responsive-multiple-column-list */
h1{
    font-size: 3.75em; /* 25px/16px */
}
#content       
{
   /* font-size: .75em; /* 12/16 */
    width: 71.875%; /* 650/960 */
    max-width: 960px;
    text-align: left;
    margin: 0px auto; /*auto centers the container */
    padding: 2.84615384615385%; /* 25/650 */
	list-style-type: disc!important;
}
/*CSS3 multiple columns.*/
/* Get em size for colums: 184/16 */   
.columns
{   
    -moz-column-width: 11.5em; /* Firefox */
    -webkit-column-width: 11.5em; /* webkit, Safari, Chrome */
    column-width: 11.5em;
}
/*remove standard list and bullet formatting from ul*/
.columns ul
{
    margin: 0;
    padding: 0;
    list-style-type: disc!important;
}

li {
    
    font-size: 16px;
    margin-left: 10px;
    list-style-type: disc;
 }
    margin-left: 10px;
    list-style-type: disc;
 }
/* correct webkit/chrome uneven margin on the first column*/
.columns ul li:first-child
{
    margin-top:0px;
}