/*Main settings*/

body,td,th {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	color: #396180;
}
body {
	background-image:url(/2010/graphics/main_background.jpg);
	background-repeat: no-repeat;
	background-position: top center;
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
}

.clear {
	clear: both;
}

#col_960 {
	width: 960px;
	margin: 0px auto;
}

p {
	margin-top: 5px;
}

/*Link styles*/

a {
	color: #714EB8;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
	color: #402B6A;
}


a.home {
	display: block;
	height: 154px;
	text-indent: -9999px;
	margin-bottom: 49px;
}

/*Main menu*/

ul#menu {
	width: 138px;
	list-style-type: none;
	margin: 60px 30px 0px 79px;
	padding: 0px;
	float: left;
}

ul#menu li {
	display: block;
	padding: 0px;
	margin: 0px;
}

ul#menu li a {
	background-image: url(/2010/graphics/menu_sprite.gif);
	display: block;
	text-indent: -9999px;
}

ul#menu li a#about {height: 54px; background-position: 0px 0px;}
ul#menu li a#blog {height: 74px; background-position: 0px -54px;}
ul#menu li a#art {height: 45px; background-position: 0px -128px;}
ul#menu li a#photography {height: 64px; background-position: 0px -173px;}
ul#menu li a#jewellery {height: 79px; background-position: 0px -237px;}

ul#menu li a#about:hover {height: 54px; background-position: -138px 0px;}
ul#menu li a#blog:hover {height: 74px; background-position: -138px -54px;}
ul#menu li a#art:hover {height: 45px; background-position: -138px -128px;}
ul#menu li a#photography:hover {height: 64px; background-position: -138px -173px;}
ul#menu li a#jewellery:hover {height: 79px; background-position: -138px -237px;}


/*Content area*/

.content_panel {
	width: 605px;
	height: 350px;
	float: left;
	outline: none;
}

.leftcolumn {
	width: 100px;
	float: left;
	padding-top: 5px;
}

.rightcolumn {
	width: 470px;
	float: left;
	padding: 0px 10px 10px 10px;
}


.linkicons {
	float: right;
	margin: 10px 109px 0px 0px;
}

.centred {
	text-align: center;
}

.linkicon {
	margin-left: 5px;
}


/*Scrollbars*/


.jScrollPaneContainer {
	position: relative;
	overflow: hidden;
	z-index: 1;
	border: 1px solid #999;
	outline: none;
}

.jScrollPaneTrack {
	position: absolute;
	cursor: pointer;
	right: 0;
	top: 0;
	height: 100%;
	background-image: url(/2010/graphics/arrow.jpg);
	background-position: -10px 0px;
	background-repeat: repeat-y;
}
.jScrollPaneDrag {
	position: absolute;
	background-image:url(/2010/graphics/arrow_drag.jpg);
	cursor: pointer;
	overflow: hidden;
}
.jScrollPaneDrag:hover {
	background-position: -10px 0px;
}

.jScrollPaneDragTop {
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
}
.jScrollPaneDragBottom {
	position: absolute;
	bottom: 0;
	left: 0;
	overflow: hidden;
}
a.jScrollArrowUp {
	display: block;
	position: absolute;
	z-index: 1;
	top: 0;
	right: 0;
	text-indent: -2000px;
	overflow: hidden;
	height: 10px;
	background-image:url(/2010/graphics/arrow.jpg);
	background-position: 0px 0px;
}
a.jScrollArrowUp:hover {
	/*background-color: #f60;*/
}

a.jScrollArrowDown {
	display: block;
	position: absolute;
	z-index: 1;
	bottom: 0;
	right: 0;
	text-indent: -2000px;
	overflow: hidden;
	height: 10px;
	background-image:url(/2010/graphics/arrow.jpg);
	background-position: -20px 0px;
}
a.jScrollArrowDown:hover {
	/*background-color: #f60;*/
}
a.jScrollActiveArrowButton, a.jScrollActiveArrowButton:hover {
	/*background-color: #f00;*/
}



/*Overlays*/

/* the overlayed element */
.simple_overlay {
	
	/* must be initially hidden */
	display:none;
	
	/* place overlay on top of other elements */
	z-index:10000;
	
	/* styling */
	background-color:#333;
	
	width:675px;	
	min-height:200px;
	border:1px solid #666;
	
	/* CSS3 styling for latest browsers */
	-moz-box-shadow:0 0 90px 5px #000;
	-webkit-box-shadow: 0 0 90px #000;	
}

/* close button positioned on upper right corner */
.simple_overlay .close {
	background-image:url(/2010/graphics/close.png);
	position:absolute;
	right:-15px;
	top:-15px;
	cursor:pointer;
	height:35px;
	width:35px;
}


/* the large image. we use a gray border around it */
#img {
	border:1px solid #666;
}

/* "next image" and "prev image" links */
.next, .prev {
	
	/* absolute positioning relative to the overlay */
	position:absolute;
	top:40%;	
	border:1px solid #666;	
	cursor:pointer;
	display:block;
	padding:10px 20px;
	color:#fff;
	font-size:11px;
	
	/* upcoming CSS3 features */
	-moz-border-radius:5px;
	-webkit-border-radius:5px;	
}

.prev {
	left:0;
	border-left:0;
	-moz-border-radius-topleft:0;
	-moz-border-radius-bottomleft:0;
	-webkit-border-bottom-left-radius:0;
	-webkit-border-top-left-radius:0;
}

.next {
	right:0;
	border-right:0;
	-moz-border-radius-topright:0;
	-moz-border-radius-bottomright:0;
	-webkit-border-bottom-right-radius:0;
	-webkit-border-top-right-radius:0;	
}

.next:hover, .prev:hover {
	text-decoration:underline;
	background-color:#FFF;
	color: #666;
}

/* when there is no next or previous link available this class is added */
.disabled {
	visibility:hidden;		
}

/* the "information box" */
.info {
	position:absolute;
	bottom:0;
	left:0;	
	padding:10px 15px;
	color:#fff;
	font-size:11px;
	border-top:1px solid #666;
}

.info strong {
	display:block;	
}

/* progress indicator (animated gif). should be initially hidden */
.progress {
	position:absolute;
	top:45%;
	left:50%;
	display:none;
}


.next, .prev, .info {
	background:#333 !important;
	background:rgba(0, 0, 0, 0.6) url(/2010/graphics/gradient/h80.png) repeat-x;		
}