/* 
    Document   : gallery
    Created on : Feb 17, 2010, 8:15:10 PM
    Author     : jarthur
    Description:
        Purpose of the stylesheet follows.
*/

/* 
   TODO customize this sample style
   Syntax recommendation http://www.w3.org/TR/REC-CSS2/
*/



#container{	/* the main container div */
	width:890px;
	margin:10px auto;
        padding-bottom: 30px;
        padding-top: 30px;
        text-align: center;
 
}




div.nomargin{	/* our special nomargin class */
	margin-right:0px;
}

.pic{	/* divs that hold all the pictures in the gallery */
	float:left;
	margin:0 10px 10px 0;
	border:0px solid white;
	width:210px;
	height:150px;
}

.pic a{	/* in every .pic container there is a hyperlink exactly the size of the container */
	width:210px;
	height:150px;
	text-indent:-99999px;
	outline-width: 0px;
	display:block;	/* don't forget that widths and heights of hyperlinks are useless without display:block */
}

.presspic{	/* divs that hold all the pictures in the gallery */
	float:left;
	margin:0 0 10px 10px;
	border:0px solid white;
	width:150px;
	height:190px;
}

.presspic a{	/* in every .pic container there is a hyperlink exactly the size of the container */
	width:150px;
	height:190px;
	text-indent:-99999px;
	display:block;	/* don't forget that widths and heights of hyperlinks are useless without display:block */
}

#centeredmenu {
   float:left;
   width:100%;
   background:#000;
   overflow:hidden;
   position:relative;
}
#centeredmenu ul {
   clear:left;
   float:left;
   list-style:none;
   margin:0;
   padding:0;
   position:relative;
   left:50%;
   text-align:center;
}
#centeredmenu ul li {
   display:block;
   float:left;
   list-style:none;
   margin:0;
   padding:0;
   position:relative;
   right:50%;
   
}
#centeredmenu ul li a {
   display:block;
   margin:0 0 0 1px;
   padding:3px 10px;
   background-color: #000;
   color: #F6F1BE;

   line-height:1.3em;
}
#centeredmenu ul li a:hover {
   background:#171512;
   color:white;
}
#centeredmenu ul li a.active,
#centeredmenu ul li a.active:hover {
   color:white;
   background:#171512;
   font-weight:bold;
   text-decoration: none;
}
