@charset "utf-8";

h1x{
    font-size: 1.5em; /* 25px/16px */
}
#contentx       
{
    font-size: 1.75em; /* 12/16 */
    width: 71.875%; /* 650/960 */
    max-width: 660px;
    text-align: left;
    margin: 10px auto; /*auto centers the container */
    padding: 3.84615384615385%; /* 25/650 */
}
/*CSS3 multiple columns.*/
/* Get em size for colums: 184/16 */   
.columnsx
{   
     -moz-column-count: 1;
   /*  -moz-column-width: 11.5em; Firefox */
     -webkit-column-count: 1;
   /* -webkit-column-width: 11.5em;  webkit, Safari, Chrome */
    column-count: 1;
    /* column-width: 11.5em; */
}
/*remove standard list and bullet formatting from ul*/
.columnsx ul
{
    margin: 0;
   
    padding: 0;
    list-style-type: none;
}
/* correct webkit/chrome uneven margin on the first column*/
.columnsx ul li:first-child
{
    margin-top:0px;
}


.columnsx li:nth-child(odd) {
background-color: #eee;

}
.columnsx li:nth-child(even) {
background-color: #FFFFFF;

}
