
/**
 * Grid container
 */
#tiles {
list-style-type: none;
position: relative; /** Needed to ensure items are laid out relative to this container **/
margin: 30px 0 0 0;
}

/**
 * Grid items
 */
#tiles li {
width:220px; float:left; overflow:hidden; height:160px; margin-bottom:10px;
}
#tiles li a{ height:150px; width:200px; overflow:hidden; display:block; border:#f6f6f6 solid 5px;}
#tiles li img {
display: block; padding:0px; margin:0;
}

/**
 * Grid item text
 */
#tiles li p { text-indent:0;background:#f6f6f6; 
color: #666;
font-size: 12px;
margin: 0px; width:205px; padding-left:5px; margin-bottom:10px;
}


#main {
padding: 30px 0 30px 0;
}

