<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
Stylesheet: Slideshow.css
	CSS for Slideshow.

License:
	MIT-style license.

Copyright:
	Copyright (c) 2008 [Aeron Glemann](http://www.electricprism.com/aeron/).
	
HTML:
	&lt;div class="slideshow"&gt;
		&lt;div class="slideshow-images" /&gt;
		&lt;div class="slideshow-captions" /&gt;
		&lt;div class="slideshow-controller" /&gt;
		&lt;div class="slideshow-loader" /&gt;
		&lt;div class="slideshow-thumbnails" /&gt;
	&lt;/div&gt;
	
Notes:
	These next four rules are set by the Slideshow script.
	You can override any of them with the !important keyword but the slideshow probably will not work as intended.
*/
.slideshow {
	display: block;
	position: relative;
	z-index: 0;
}
.slideshow-images {
	display: block;
	overflow: hidden;
	position: relative;
}		
.slideshow-images img {
	display: block;
	position: absolute;
	z-index: 1;
}		
.slideshow-thumbnails {
	overflow: hidden;
}

/**
Notes:
	These are examples of user-defined styles.
	Customize these classes to your usage of Slideshow.
*/
.slideshow {
	width: 980px;
	height: 505px;
	margin: 0 auto;
	float : left;
	background: #000000; 
}
@media all and (max-device-width: 1280px) and (max-device-height: 800px) {
	.slideshow {
		width: 810px;
		height: 410px;
	}
}
.slideshow a img {
	border: 0;
}
/**
HTML:
	&lt;div class="slideshow-images"&gt;
		&lt;img /&gt;
		&lt;img /&gt;
	&lt;/div&gt;
	
Notes:
	The images div is where the slides are shown.
	Customize the visible / prev / next classes to effect the slideshow transitions: fading, wiping, etc.
*/
.slideshow-images {
	width: 950px;
	height: 475px;
	left: 15px;
	top: 15px;
}
@media all and (max-device-width: 1280px) and (max-device-height: 800px) {
	.slideshow-images {
	width: 800px;
	height: 400px;
	left: 5px;
	top: 5px;
	}
}
.slideshow-images-visible { 
	opacity: 1;
}	
.slideshow-images-prev { 
	opacity: 0; 
}
.slideshow-images-next { 
	opacity: 0; 
}
.slideshow-images img {
	float: left;
	left: 0;
	top: 0;
}
/**
HTML:
	&lt;div class="slideshow-captions"&gt;
		...
	&lt;/div&gt;
	
Notes:
	Customize the hidden / visible classes to affect the captions animation.
*/
@font-face {
    font-family: 'CalligraffitiRegular';
    src: url(../polices/calligraffiti-webfont.eot);
    src: url(../polices/calligraffiti-webfont.eot?#iefix) format('embedded-opentype'),
         url(../polices/calligraffiti-webfont.woff) format('woff'),
         url(../polices/calligraffiti-webfont.ttf) format('truetype'),
         url(../polices/calligraffiti-webfont.svg#CalligraffitiRegular) format('svg');
/** font-weight: normal;
	font-style: normal;*/
}
.slideshow-captions {
	top: 15px;
	right : 15px;
	margin: 0 0 5px 5px;
	color: #ffffff;
	font: bold 24px CalligraffitiRegular,Tahoma,Arial,Helvetica;
	padding:12px;
	overflow: hidden;
	position: absolute;
	z-index: 10000;
/**	moz-border-radius:8px;
	border-radius:8px;
	background: black;*/
}
@media all and (max-device-width: 1280px) and (max-device-height: 800px) {
.slideshow-captions {
	top: 10px;
	right : 10px;
	font: bold 20px CalligraffitiRegular,Tahoma,Arial,Helvetica;
	}
}
.slideshow-captions-hidden {
	opacity: 0;
}
.slideshow-captions-visible {
	opacity: 0.8;
}
/**
HTML:
	&lt;div class="slideshow-controller"&gt;
		&lt;ul&gt;
			&lt;li class="first"&gt;&lt;a /&gt;&lt;/li&gt;
			&lt;li class="prev"&gt;&lt;a /&gt;&lt;/li&gt;
			&lt;li class="pause play"&gt;&lt;a /&gt;&lt;/li&gt;
			&lt;li class="next"&gt;&lt;a /&gt;&lt;/li&gt;
			&lt;li class="last"&gt;&lt;a /&gt;&lt;/li&gt;
		&lt;/ul&gt;
	&lt;/div&gt;
	
Notes:
	Customize the hidden / visible classes to affect the controller animation.
*/

.slideshow-controller {
	background: #000;
	height: 56px;
	left: 50%;
	margin: 0 0 -28px -100px;
	overflow: hidden;
	position: absolute;
	bottom: 50%;
	width: 200px;
	z-index: 10000;
/**	-moz-border-radius:10px; */
	border-radius:10px;
}
.slideshow-controller * {
	margin: 0;
	padding: 0;
}
.slideshow-controller-hidden { 
	opacity: 0;
}
.slideshow-controller-visible {
	opacity: 0.8; 
}
.slideshow-controller a {
	cursor: pointer;
	display: block;
	height: 24px;
	overflow: hidden;
	position: absolute;
	top: 15px;
}
.slideshow-controller a.active {
	background-position: 0 -24px;
}
.slideshow-controller li {
	list-style: none;
}
.slideshow-controller li.first a {
	background-image: url(../images/icones/controller-first.gif);
	left: 15px;
	width: 26px;
}
.slideshow-controller li.prev a {
	background-image: url(../images/icones/controller-prev.gif);
	left: 51px;
	width: 26px;
}
.slideshow-controller li.pause a {
	background-image: url(../images/icones/controller-pause.gif);
	left: 87px;
	width: 26px;
}
.slideshow-controller li.play a {
	background-position: 100% 0;
}
.slideshow-controller li.play a.active {
	background-position: 100% 100%;
}
.slideshow-controller li.next a {
	background-image: url(../images/icones/controller-next.gif);
	left: 123px;
	width: 26px;
}
.slideshow-controller li.last a {
	background-image: url(../images/icones/controller-last.gif);
	left: 159px;
	width: 26px;
}</pre></body></html>