﻿@charset "utf-8";
/* CSS Document */

.nomargin {margin-right:0} /*applied to last image in row*/ 

 .thumbs{ /*divs that hold all the gallery pictures*/
 float:left;
 margin:9px 14px 9px 14px; /*space between thumbnails*/
 border:10px solid #333;
 width:140px;
 height:99px;
/**for pre-IE8**/
 filter:alpha(opacity=70);
/**for other browsers**/
 opacity: .70} 

 .thumbs a{ /* in every .thumbs div there is a hyperlink exactly the size of the container */
 width:140px;
 height:99px;
 text-indent:-99999px; /*move text links off screen*/
 display:block;
 outline:none;} 

/**on mouse over**/
 .thumbs:hover {
 border:10px solid #666;
/**for pre-IE8**/
 filter:alpha(opacity=100); 
/**for all other browsers**/
 opacity:1.0} 

**float clearing applied at end of gallery**/
 .clearing {
 display:block;
 clear:both;
 visibility:hidden;
 }

/**end image gallery styles**/
