#aboutTxt {
	visibility:visible;
	width:700px;
	height:auto;
	border:1px none #000000;
	z-index:7;
	margin-top: 50px;
	margin-right: auto;
	margin-left: auto;
	color: #000;
	font-family: Amienne;
	font-size: 24px;
	background-color: #CCC;
}
#contactTxt {
	visibility:visible;
	width:700px;
	height:526px;
	border:1px none #000000;
	z-index:7;
	margin-top: 50px;
	margin-right: auto;
	margin-left: auto;
	color: #000;
	font-family: Amienne;
	font-size: 36px;
	background-color: #CCC;
	line-height: 5px;
}
#leftShowbig {
	position:absolute;
	visibility:visible;
	width:299px;
	height:306px;
	border:1px none #000000;
	z-index:7;
	left: 31px;
	top: 73px;
	background-color: transparent;
}

#artInfo {
	visibility:visible;
	width:345px;
	height:190px;
	border:1px none #000000;
	z-index:7;
	font-family: Amienne;
	font-size: 24px;
	float: right;
	margin-top: 150px;
	color: #000;
	line-height: 2px;
	margin-right: auto;
	background-color: transparent;
}

#Sold {
	visibility:visible;
	width:80px;
	height:20px;
	border:1px none #000000;
	z-index:7;
	color: #FE0201;
	float: right;
	margin-top: -30px;
	font-size: 36px;
	background-color: transparent;
}


/* SpryAccordion.css - version 0.4 - Spry Pre-Release 1.6.1 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

/* This is the selector for the main Accordion container. For our default style,
 * we draw borders on the left, right, and bottom. The top border of the Accordion
 * will be rendered by the first AccordionPanelTab which never moves.
 *
 * If you want to constrain the width of the Accordion widget, set a width on
 * the Accordion container. By default, our accordion expands horizontally to fill
 * up available space.
 *
 * The name of the class ("Accordion") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style the
 * Accordion container.
 */
.Accordion {
	overflow: hidden;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
}

/* This is the selector for the AccordionPanel container which houses the
 * panel tab and a panel content area. It doesn't render visually, but we
 * make sure that it has zero margin and padding.
 *
 * The name of the class ("AccordionPanel") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style an
 * accordion panel container.
*/
.AccordionPanel {
	margin: 0px;
	padding: 0px;
}

/* This is the selector for the AccordionPanelTab. This container houses
 * the title for the panel. This is also the container that the user clicks
 * on to open a specific panel.
 *
 * The name of the class ("AccordionPanelTab") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style an
 * accordion panel tab container.
 *
 * NOTE:
 * This rule uses -moz-user-select and -khtml-user-select properties to prevent the
 * user from selecting the text in the AccordionPanelTab. These are proprietary browser
 * properties that only work in Mozilla based browsers (like FireFox) and KHTML based
 * browsers (like Safari), so they will not pass W3C validation. If you want your documents to
 * validate, and don't care if the user can select the text within an AccordionPanelTab,
 * you can safely remove those properties without affecting the functionality of the widget.
 */
.AccordionPanelTab {
	margin: 0px;
	padding: 2px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
	border-top-width: 0px;
	border-bottom-width: 0px;
	border-top-style: none;
	border-bottom-style: none;
	border-right-style: none;
	border-left-style: none;
	color: #FE0201;
	font-size: 30px;
	font-weight: bold;
}

/* This is the selector for a Panel's Content area. It's important to note that
 * you should never put any padding on the panel's content area if you plan to
 * use the Accordions panel animations. Placing a non-zero padding on the content
 * area can cause the accordion to abruptly grow in height while the panels animate.
 *
 * Anyone who styles an Accordion *MUST* specify a height on the Accordion Panel
 * Content container.
 *
 * The name of the class ("AccordionPanelContent") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style an
 * accordion panel content container.
 */
.AccordionPanelContent {
	overflow: auto;
	margin: 0px;
	padding: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	line-height: 4px;
	color: #000;
	font-size: 24px;
}

/* This is an example of how to change the appearance of the panel tab that is
 * currently open. The class "AccordionPanelOpen" is programatically added and removed
 * from panels as the user clicks on the tabs within the Accordion.
 */
.AccordionPanelOpen .AccordionPanelTab {
	background-color: #999;
}

/* This is an example of how to change the appearance of the panel tab as the
 * mouse hovers over it. The class "AccordionPanelTabHover" is programatically added
 * and removed from panel tab containers as the mouse enters and exits the tab container.
 */
.AccordionPanelTabHover {
	color: #FFF;
}
.AccordionPanelOpen .AccordionPanelTabHover {
	color: #555555;
}

/* This is an example of how to change the appearance of all the panel tabs when the
 * Accordion has focus. The "AccordionFocused" class is programatically added and removed
 * whenever the Accordion gains or loses keyboard focus.
 */
.AccordionFocused .AccordionPanelTab {
	background-color: #999;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	color: #FFF;
}

/* This is an example of how to change the appearance of the panel tab that is
 * currently open when the Accordion has focus.
 */
.AccordionFocused .AccordionPanelOpen .AccordionPanelTab {
	background-color: #999;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	color: #FFF;
}


#wrapper {
	visibility:visible;
	width:980px;
	height:620px;
	background-color:transparent;
	border:1px none #000000;
	z-index:1;
	margin-top: 0px;
	margin-right: auto;
	margin-left: auto;
}
#sideBar {
	position:absolute;
	visibility:visible;
	width:120px;
	height:475px;
	background-color:transparent;
	border:1px none #000000;
	z-index:1;
	font-family: Amienne;
	color: #FE0201;
	font-size: 28px;
	margin-top: 185px;
	line-height: 15px;
}
#backGround {
	position:absolute;
	visibility:visible;
	width:862px;
	height:auto;
	border:1px none #000000;
	z-index:2;
	float: right;
	margin-right: auto;
	margin-left: 120px;
	margin-top: 100px;
	background-repeat: no-repeat;
	background-color: #CCC;
	background-image: none;
}
#backGroundCollection {
	position:absolute;
	visibility:visible;
	width:862px;
	height:559px;
	border:1px none #000000;
	z-index:2;
	float: right;
	margin-right: auto;
	margin-left: 120px;
	margin-top: 100px;
	background-color: #999;
}
#topManueLW {
	position:absolute;
	visibility:visible;
	width:248px;
	height:65px;
	background-color:transparent;
	border:1px none #000000;
	z-index:3;
	font-size: 60px;
	color: #FE0201;
	font-family: Amienne;
	margin-right: auto;
	margin-left: 120px;
}
#topManueBottons {
	position:absolute;
	visibility:visible;
	width:720px;
	height:61px;
	background-color:transparent;
	border:1px none #000000;
	z-index:4;
	margin-top: 40px;
	margin-right: auto;
	margin-left: 350px;
	font-family: Amienne;
	font-size: 24px;
	word-spacing: 10px;
	text-align: center;
	padding-top: 20px;
	color: #000;
}

#footer {
	margin: auto;
	text-align: center;
	color: #FFF;
	z-index: 200;
}
body {
	background-image: url(../images/background_slice.jpg);
	background-repeat: repeat-x;
}
#collectionName {
	position:absolute;
	visibility:visible;
	width:120px;
	height:73px;
	background-color:transparent;
	border:1px none #000000;
	z-index:6;
	font-family: Amienne;
	color: #000;
	font-size: 34px;
	margin-top: 116px;
}
#editableArea_wrapper {
	visibility:visible;
	border:1px none #000000;
	z-index:7;
	background-color: transparent;
}

/* Area di scorrimento */
#right {
	width: 600px;
	height: 200px;
	overflow: hidden;
	border: 3px solid black;
	padding: 0px;
	clear:both;
	margin-top: 160px;
	margin-right: auto;
	margin-left: auto;
	}

/* Immagini */
#right img {
	height: 150px;
	margin: 0px;
	border: 0px;
	clear:both;
	padding: 10px;
	}
#rightModel_tn {
	position:absolute;
	visibility:visible;
	width:102px;
	height:117px;
	background-color:transparent;
	border:1px none #000000;
	z-index:1;
	left: 492px;
	top: 373px;
}
#rightTied_tn {
	position:absolute;
	visibility:visible;
	width:101px;
	height:116px;
	background-color:transparent;
	border:1px none #000000;
	z-index:7;
	left: 614px;
	top: 374px;
}
#rightFull_tn {
	position:absolute;
	visibility:visible;
	width:75px;
	height:119px;
	background-color:transparent;
	border:1px none #000000;
	z-index:7;
	left: 735px;
	top: 373px;
}
#scarfInfo {
	visibility:visible;
	width:359px;
	height:190px;
	border:1px none #000000;
	z-index:7;
	font-family: Amienne;
	font-size: 24px;
	float: right;
	margin-top: 150px;
	margin-left: auto;
	color: #FFF;
	line-height: 25px;
	background-color: transparent;
}
#backGround_artG {
	position:absolute;
	visibility:visible;
	width:720px;
	height:auto;
	border:1px none #000000;
	z-index:2;
	float: right;
	margin-right: auto;
	margin-left: 140px;
	margin-top: 100px;
	background-repeat: no-repeat;
	background-color: #CCC;
	background-image: none;
}

#example {
	width:680px;
	height:450px;
	position:relative;
	z-index: auto;
}

#frame {
	z-index:0;
	width:680px;
	height:450px;
	top:-3px;
	left:-80px;
	margin-top: auto;
	margin-bottom: auto;
	margin-left: 50px;
}

/*
	Slideshow
*/

#slides {
	position:absolute;
	top:15px;
	left:4px;
	z-index:100;
}

/*
	Slides container
	Important:
	Set the width of your slides container
	Set to display none, prevents content flash
*/

.slides_container {
	width:680px;
	overflow:hidden;
	position:relative;
	display:none;
}

/*
	Each slide
	Important:
	Set the width of your slides
	If height not specified height will be set by the slide content
	Set to display block
*/

.slides_container div.slide {
	
	width:680px;
	height:450px;
	display:block;
	position:relative;
	margin-top:auto;  /*margin-left: 60px;*/
}
/*
	Next/prev buttons
*/

#slides .next,#slides .prev {
	width:30px;
	height:59px;
	position:absolute;
	top:50%;
	cursor:pointer;
	filter: alpha(opacity=50);
	opacity:0.5;
	z-index: 100;
}
#slides .next {
	left:650px;
}

/*
	Pagination
*/

.pagination {
	margin:26px auto 0;
	width:100px;
}

.pagination li {
	float:none;
	list-style:none;
	margin-top: auto;
	margin-right: auto;
	margin-bottom: auto;
	margin-left: auto;
}

.pagination li a {
	display:block;
	width:12px;
	height:0;
	padding-top:12px;
	background-image:url(../images/pagination.png);
	background-position:0 0;
	float:left;
	overflow:hidden;
}

.pagination li.current a {
	background-position:0 -12px;
}

/*
	Caption
*/

.caption {
	z-index:500;
	position:absolute;
	bottom:-35px;
	left:0;
	height:30px;
	padding:5px 20px 0 20px;
	background:#000;
	width:540px;
	font-size:1.3em;
	line-height:1.33;
	color:#fff;
	border-top:1px solid #000;
	background-position: 0;
}

.pp_loading{
	display:none;
	position:fixed;
	top:50%;
	left:50%;
	margin:-35px 0px 0px -35px;
	background:#fff url(../images/loader.gif) no-repeat center center;
	width:70px;
	height:70px;
	z-index:999;
	opacity:0.7;
	-moz-border-radius:10px;
	-webkit-border-radius:10px;
	border-radius:10px;
}
.pp_next, .pp_prev{
	cursor:pointer;
	top:50%;
	margin-top:-16px;
	width:32px;
	height:32px;
	position:fixed;
	text-align:center;
	border:1px solid #111;
	color:#fff;
	-moz-box-shadow:0px 0px 3px #000;
	-webkit-box-shadow:0px 0px 3px #000;
	box-shadow:0px 0px 3px #000;
}
.pp_next{
	right:-40px;
	background:#222 url(../images/next.png) no-repeat center center;
}
.pp_prev{
	left:-40px;
	background:#222 url(../images/prev.png) no-repeat center center;
}
#pp_thumbContainer{
	position:fixed;
	bottom:0px;
	left:0px;
	height:65px;
	width:100%;
}
#pp_thumbContainer .album{
	width:200px;
	height:65px;
	bottom:-90px;
	position: absolute;
}
.album .descr,
.pp_back{
	position:absolute;
	bottom:0px;
	left:-16px;
	background:#222;
	text-align:center;
	border:1px solid #111;
	padding:5px;
	cursor:pointer;
	width:169px;
	color:#fff;
	cursor:pointer;
	text-shadow:0px 0px 1px #fff;
	-moz-box-shadow:1px 1px 4px #000;
	-webkit-box-shadow:1px 1px 4px #000;
	box-shadow:1px 1px 4px #000;
}
.pp_back{
	text-transform:uppercase;
	bottom:120px;
	left:-100px;
	width:80px;
}
#pp_thumbContainer .content{
	position:absolute;
	top:0px;
	height:155px;
	cursor:pointer;
}
#pp_thumbContainer img{
	border:5px solid #fff;
	-moz-box-shadow:1px 1px 7px #000;
	-webkit-box-shadow:1px 1px 7px #000;
	box-shadow:1px 1px 7px #000;
}
#pp_thumbContainer .content span{
	display:none;
}
.pp_preview{
	position:fixed;
	top:150%;
	left:50%;
}
.pp_preview img{
	position:absolute;
	top:0px;
	left:0px;
	border:10px solid #fff;
	border-bottom:45px solid #fff;
	-moz-box-shadow:1px 1px 7px #000;
	-webkit-box-shadow:1px 1px 7px #000;
	box-shadow:1px 1px 7px #000;
}
.pp_descr{
	height:45px;
	line-height:45px;
	font-size:20px;
	width:100%;
	bottom:0px;
	left:0px;
	position:absolute;
	text-align:center;
	color:#00021c;
}
a:link {
	color: #000;
	text-decoration: none;
}
a:visited {
	text-decoration: none;
	color: #000;
}
a:hover {
	text-decoration: underline;
	color: #FE0201;
}
a:active {
	text-decoration: none;
	color: #000;
}
.ContentImage {
	padding: 10px;
}
