/*

    GalleryView Stylesheet
    
    Use the CSS rules below to modify the look of your gallery.
     
    To create additional rules, use the markup below as a guide to GalleryView's architecture.
    NOTE - The markup below represents the DOM generated by the GalleryView plugin, NOT the markup you would include in your HTML file.
           Refer to README.txt to review markup requirements.
    
    <div class="gallery">
        <div class="panel">
            <img src="path/to/image.jpg" />
            <div class="panel-overlay">
                ...overlay content...
            </div>
            <div class="overlay-background"></div>
        </div>
        <ul class="filmstrip">
            <li class="frame current">
                <img src="path/to/thumbnail.jpg" />
                <div class="caption">caption text</div>
            </li>
            <li class="frame">
                <img src="path/to/thumbnail.jpg" />
                <div class="caption">caption text</div>
            </li>
        </ul>   
    </div>
        

*/

/* GALLERY LIST */
/* IMPORTANT - Change '#photos' to the ID of your gallery list to prevent a flash of unstyled content */
#photos {
    visibility: hidden;
}

/* GALLERY CONTAINER */
.gallery {

    background: none;
    border: none;
    padding: 5px;

}

/* LOADING BOX */
.loader {
    background: url(/resources/images/loader.gif) center center no-repeat #ddd;
}

/* GALLERY PANELS */
.panel {
 
}

/* DEFINE HEIGHT OF PANEL OVERLAY */
/* NOTE - It is best to define padding here as well so overlay and background retain identical dimensions */
.panel .panel-overlay,
.panel .overlay-background {
    height: 100%;
}
.blank-fill {
    padding-bottom: 300px;
    padding-right: 880px;
    display: block;
}
/* PANEL OVERLAY BACKGROUND */
.panel .overlay-background {
    background: none;
    *background: white;
    filter: alpha(opacity=10) !important;
/*    display: none;*/

}

/* PANEL OVERLAY CONTENT */
.panel .panel-overlay {
}

.panel .panel-overlay a {

    color: white;
    border: none;

}

.panel .panel-overlay a:hover {

    color: black;

}

/* FILMSTRIP */
/* 'margin' will define top/bottom margin in completed gallery */
.filmstrip {
    margin: 5px;
    margin-top: 10px;
}

/* FILMSTRIP FRAMES (contains both images and captions) */
.frame {

}

/* WRAPPER FOR FILMSTRIP IMAGES */
.frame .img_wrap {
    margin-right: 10px;
    margin-top: 4px;

}

/* WRAPPER FOR CURRENT FILMSTRIP IMAGE */
.frame.current {
/*  border:4px solid gray; */
}

.frame.current .img_wrap {
}

/* FRAME IMAGES */
.frame img {
    border: none;
}

/* FRAME CAPTION */
.frame .caption {
    font-size: 11px;
    text-align: center;
    color: #888;
}

/* CURRENT FRAME CAPTION */
.frame.current .caption {
    color: #000;
}

/* POINTER FOR CURRENT FRAME */
.pointer {
/* border-color: #000; */
    border: 0 !important;
}

/* TRANSPARENT BORDER FIX FOR IE6 */
/* NOTE - DO NOT CHANGE THIS RULE */
*html .pointer {
    filter: chroma(color = pink);
}

.panel-overlay h3 {
    margin-top: 1em;
    font-size: 2em;
    margin-left: 450px;
}

.panel-overlay p {
    margin-left: 450px;
    font-size: 1.2em;
}

.nav-prev,
.nav-prev-overlay,
.nav-next,
.nav-next-overlay {
    display: none !important;
}

#gallery2 {
    overflow: hidden;
    width: 400px;
    height: 400px;
    position: relative;
}
#gallery-container {
    width: 1200px;
    position: absolute;

}
#gallery-container div {
    width: 400px;
    height: 400px;
    overflow: hidden;
    float: left;
}

#controls {
    text-align: center;
    float: left;
    padding: 0px !important;
    *padding-top: 0px !important;
    *padding-bottom: 9px !important;
    height: 19px;
    *height: 14px;
}
#controls li{
    display:inline-block;
    *display:inline;
    margin-left: 2px;
    margin-right: 2px;
    margin-top: 4px;
}
#controls li.current{
    background-color: gray;
}

ol#controls li a{
  display:inline-block;
  height: 11px;
  width: 11px;
}

#sp_slideshow{
	margin-top: 20px;
}

#sp_slideshow ul.galleryLeft li a img{
    float:left;
    margin-left: 40px;
}

.slide-desc p{
    font-size: 1.5em;
    font-weight: bold;

}