

/*GALLERY LAYOUT*/
#gallerycontainer
{
width: 700px;
display: block;
margin:0px 0px 20px 0px;
min-height:200px;
padding:0px;
/*background-image:url(/image/plainFader.jpg);
background-repeat:no-repeat;*/
}

#gallery
{
display: block;
list-style: none;
text-align:center;
}
#gallery li
{
list-style: none;
text-align: center;

background: #fff;
display: block;
/*border: 1px solid #CCC;*/
overflow:hidden /*this makes sure that if an image is bigger than the width of the are it will not break out  of this space*/
}
#gallery li a
{
display: block;
}

/* THE VALUES BELOW ARE SAME AS ABOVE BUT WITH A SMALLER WIDTH OPTION AND THIS RELATES TO THE OPTION IN THE GALLERY TO CHOOSE A SMALLER THUMBNAIL */

#gallerySmaller
{
display: block;
list-style: none;
}
#gallerySmaller li
{
list-style: none;
text-align: center;
/*background: #ccc;*/
display: block;
float: left;
/*border:3px solid #999;*/
width:150px;
height:100px;
margin: 10px 0px 10px 0px   ;
padding: 0px  ;
overflow:hidden /*this makes sure that if an image is bigger than the width of the are it will not break out  of this space*/
}
#gallerySmaller li a
{
display: block;
color:#FFF;
}

.galleryImgResizer{width:144px;} /*used on the home page when making image appear in navarea column*/

.galleryImgBorder {border-bottom:3px solid #999;}


/*END GALLERY LAYOUT*/