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

/*
@charset 'UTF-8';
 */

#body-content ul.slick-dots {padding-left:0;}
.goblack {color:#4c4c4c!important;}

.embed-link-container-top:hover {cursor:pointer}
.embed-link-container-top {text-align:center; font-size:80%; margin-bottom:-40px;margin-top:40px}


.slideshow-container {
	width: 100%;
	/* Using calc() would be the perfect size, but a very small percent of browsers don't support it. */
	padding-bottom: 510px; /* calc(75% - 38px) */
	margin: 56px auto 0 auto;
	position: relative;
}

/*
Image sizes:
Large:  1024x768
Medium:  866x644
Small:   640x476
*/

@media (min-width: 740px) {
/*
	#body-content {background-color:blue}
 */

    .slideshow-small.slideshow-container {
        width: 690px; /* 640 + 25 + 25 */
        padding-bottom: 476px;
        margin-left: -25px; /* (25+640+25 - 640) = 50 / 2 = */

    }
}


/* narrow desktop mode: first slideshow is downsized to be same size as show #2 and #4, and first 3 slideshows are shifted right of center */

@media (min-width: 800px) {
/*
	#body-content {background-color:green}
 */

 .slideshow-large.slideshow-container,
.slideshow-medium.slideshow-container
	{width: 690px; /* 640 + 25 + 25 */
    }

    .slideshow-small.slideshow-container {
        width: 690px; /* 640 + 25 + 25 */
        padding-bottom: 476px;
        margin-left: -25px; /* (25+640+25 - 640) = 50 / 2 = */

    }
}



/* semi-wide desktop mode: first slideshow is downsized to be same size as show #2 and #4, and first 3 slideshows aligned to the left without only the arrow sticking out on the left. */
@media (min-width: 950px) {
/*
	#body-content {background-color:pink; border:2px solid blue}
 */

    .slideshow-large.slideshow-container {
        width: 916px; /* 866 + 25 for left arrow + 25 for right */
        padding-bottom: 644px;
		margin-left: -25px;

    }

    .slideshow-medium.slideshow-container {
        width: 916px; /* 866 + 25 + 25 */
        padding-bottom: 644px;
		margin-left: -25px;

    }
}


/* semi-wide desktop mode: all images full size and first 3 slide shows shifted right of center */
@media (min-width: 1100px) {
/*
    #body-content {background-color:orange; border:1px solid white}
 */
    .slideshow-large.slideshow-container {
        margin-left: -100px;
        width: 1074px; /* 1024 + 25 + 25 */
        padding-bottom: 768px;
    }

    .slideshow-medium.slideshow-container {
        margin-left: -100px; /* set to match the layout of the large one */
    }
}


/* wide desktop mode: all images full size and centered */
@media (min-width: 1285px) {
/*
    #body-content {background-color:purple}
 */

    .slideshow-large.slideshow-container {
        margin-left: -217px; /* (25+1024+25 - 640) = 434 / 2 = */
    }
    .slideshow-medium.slideshow-container {
        margin-left: -138px; /* (25+866+25 - 640) = 276 / 2 = */
    }


}

@media (max-width: 690px) {
.slideshow-container {
	padding-bottom: 480px;
}
}

@media (max-width: 340px) {
.slideshow-container {
	padding-bottom: 530px;
}
}

.slideshow {
	position: absolute;
	top: 0;
	right: 25px;
	bottom: 0;
	left: 25px;
}

.slideshow img {
	width: 100%;
	height: auto;
}

/*
#inner-container {background-color:green!important}
 */

/* Icons */
@font-face
{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;

    src: url('/fonts/slick.eot');
    src: url('/fonts/slick.eot?#iefix') format('embedded-opentype'), url('/fonts/slick.woff') format('woff'), url('/fonts/slick.ttf') format('truetype'), url('/fonts/slick.svg#slick') format('svg');
}


/* Slider */
/*
.slick-loading .slick-list
{
    background: #fff url('./ajax-loader.gif') center center no-repeat;
}
 */

/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
/*
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}
*/
.slick-prev.slick-disabled,
.slick-next.slick-disabled
{
    visibility: hidden;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 20px;
/*
to do: it would be great to have larger icons.
 */
    line-height: 1;

    opacity: .75;
/*
    color: white;
 */
/* peter changed for our white background, to do: further approximate our gray color */
    color:black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
    left: -25px;
}
[dir='rtl'] .slick-prev
{
    right: -25px;
    left: auto;
}
.slick-prev:before
{
    content: '←';
}
[dir='rtl'] .slick-prev:before
{
    content: '→';
}

.slick-next
{
    right: -25px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}
.slick-next:before
{
    content: '→';

}
[dir='rtl'] .slick-next:before
{
    content: '←';
}

/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots
{
    position: absolute;

/*
peter turned the line below off
 */
/*
    bottom: -25px;
 */

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '•';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}


