@charset "UTF-8";

  @import url('https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400;0,700;1,400;1,700&family=EB+Garamond:ital@0;1&display=swap');

body {
	font: 80%/1.4 'Arimo', Verdana, Arial, Helvetica, sans-serif;
	font-weight:400;
	margin: 0;
	padding: 0;
	color: #960;
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6 {
	font-family: 'Arimo', Verdana, Arial, Helvetica, sans-serif;
	font-weight: 700;
}
h4 {
	font-size:16px;
}
h5 {
	font-size:14px;
}
h6 {
	font-size:12px;
	line-height:18px;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding: 0;
	\\padding-right: 15px;
	\\padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}
/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #960;
	text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color: #960;
	text-decoration: underline;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
}
input, textarea {
	background-color: #fff;
	border: 0;
	font: 100%/1.2 'Arimo', sans-serif, Verdana, Geneva, sans-serif;
	font-weight: 400;
	color:#960;
}


.buttonClass {
	font-size:15px;
	font-family: 'Arimo', sans-serif, Verdana, Geneva, sans-serif;
	width:200px;
	height:50px;
	border-width:1px;
	color:#fff;
	border-color:rgb(153, 102, 0);
	font-weight:bold;
	border-top-left-radius:18px;
	border-top-right-radius:18px;
	border-bottom-left-radius:18px;
	border-bottom-right-radius:18px;
	box-shadow: 3px 4px 0px 0px #8a6921;
	text-shadow: 0px 1px 0px #815a05;
	background:linear-gradient(#8f710e, #f2c63791);
  }
  
  .buttonClass:hover {
	background: linear-gradient(#f2b737, #c6911f);
  }
				
/* ~~ this fixed width container surrounds the other divs ~~ */
.container {
	width: 100%;
	height: auto !important;
	background-color: #FFF;
	margin: 0 auto; /* the bottom margin is the negative value of the footer's height */
	padding-bottom:10px;
	height: 100%;
	-webkit-box-shadow: 0px -2px 5px rgba(50, 50, 50, 0.75);
	-moz-box-shadow:    0px -2px 5px rgba(50, 50, 50, 0.75);
	box-shadow:         0px -2px 5px rgba(50, 50, 50, 0.75);
}
.subContainer {
	width: 100%;
	height: auto !important;

	margin: 0 auto; /* the bottom margin is the negative value of the footer's height */
	padding-bottom:10px;
	height: 100%;
}

.container-top {
	width: 100%;
	border-bottom:#960 1px solid;
	min-height: 100px !important;
	background-color: #FFF;
	margin: auto !important; /* the auto value on the sides, coupled with the width, centers the layout */
	-webkit-box-shadow: 0px 2px 5px rgba(50, 50, 50, 0.5);
	-moz-box-shadow:    0px 2px 5px rgba(50, 50, 50, 0.5);
	box-shadow:         0px 2px 5px rgba(50, 50, 50, 0.5);
}

.container-slider {
	width: 100%;
	height: 410px;
	margin: auto !important; /* the auto value on the sides, coupled with the width, centers the layout */
	border-bottom:#960 1px solid;
	display:block;
}
#sliderContent {
    width: 960px; /* important to be same as image width */
    height: 400px; /* important to be same as image height */
    position: relative; /* important */
	overflow: hidden; /* important */
	border: #960 1px solid;
	margin: 10px auto;
	display:block;
	background-color: white;
	
}

/* ~~ the header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo ~~ */
.header {
	width: 960px;
	min-height: 90px;
	background-color:#fff;
	margin: auto !important;
	color:#960;
	}

/* ~~ This is the layout information. ~~ 

1) Padding is only placed on the top and/or bottom of the div. The elements within this div have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.

*/
#logo {
	position: absolute;
	display: block;
	font: 240%/1 'Arimo', Verdana, Arial, Helvetica, sans-serif;
	\\font-weight: 400;
	width: 350px;
	float:left;
	top: 8px;
	line-height: 27px;
}

.lineOne {
	font: 26px 'EB Garamond', serif;
}

.smallText {
	font-size: smaller;
}
.lineTwo {
	font-size:30px;
	letter-spacing: -1px;
}
.contactsInfo {
	font-size:14px;
}

.content {
	width: 960px;
	padding: 10px 0;
	margin: auto;
	display: block;
}

#newsImg img:hover {
	opacity: 0.8;	
}

#btnLeft {
	position: relative;
	width: 165px;
	height: auto;
	float: left;
	margin: 10px 14px 10px 0;
	padding: 0;
	border-right: #960 1px solid;
}
#btnLeft img {
	-webkit-box-shadow: 4px 4px 5px rgba(50, 50, 50, 0.75);
	-moz-box-shadow:    4px 4px 5px rgba(50, 50, 50, 0.75);
	box-shadow:         4px 4px 5px rgba(50, 50, 50, 0.75);
}
#btnLeft img:hover {
	opacity: 0.8;	
}
#homeTx {
	position: relative;
	width: 410px;
	height: auto;
	float: right;
	margin: 10px 0 10px 0;
	padding: 0;
}

#homeTx img {
	padding-left: 15px;
}


/* ~~ The footer ~~ */
#footer {
   position:absolute;
   width:100%;
   display:inline;
   height:80px;   /* Height of the footer */ 
   border-top: 1px solid #960;
   -webkit-box-shadow: 0px -2px 5px rgba(50, 50, 50, 0.5);
	-moz-box-shadow:    0px -2px 5px rgba(50, 50, 50, 0.5);
	box-shadow:         0px -2px 5px rgba(50, 50, 50, 0.5);
}
#LayoutFooter {
	clear: both;
	margin: 5px auto;
	width: 960px;
	display: block;
	font-size:11px;
	color: #960;
}
#footerLeft {
	width: 50%;
	float: left;
	position: relative;
}
#footerRight {
	width: 30%;
	float: right;
	position: relative;
	text-align: right;
	display: inline;
}

/* ~~ miscellaneous float/clear classes ~~ */
.fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}
#apDiv1 { 
	position: relative; 
	width: 150px; 
	float: left;  
	margin: 0; 
}

/* this class is for the news page */
#newsContent {
	position: relative;
	width: 750px;
	min-height: 400px;
	float: right;
	margin: 0 0 10px 0;
	padding: 0 0 0 20px;
	border-left: 1px solid #960;
}

/* this class is for the item, news, gallery, contact and link pages */
#sub01content {
	position: relative;
	width: 750px;
	min-height: 400px;
	float: right;
	margin: 0 0 10px 0;
	padding: 0 0 0 20px;
	border-left: 1px solid #960;
}

#sub01content img {
	-webkit-box-shadow: 4px 4px 5px rgba(50, 50, 50, 0.5);
	-moz-box-shadow: 4px 4px 5px rgba(50, 50, 50, 0.5);
	box-shadow: 4px 4px 5px rgba(50, 50, 50, 0.5);
	border: 1px solid #960;
}

.shadowIMG {
	-webkit-box-shadow: 4px 4px 5px rgba(50, 50, 50, 0.5);
	-moz-box-shadow:    4px 4px 5px rgba(50, 50, 50, 0.5);
	box-shadow:         4px 4px 5px rgba(50, 50, 50, 0.5);
}
.newshadowIMG {
	-webkit-box-shadow: 4px 4px 5px rgba(50, 50, 50, 0.5);
	-moz-box-shadow:    4px 4px 5px rgba(50, 50, 50, 0.5);
	box-shadow:         4px 4px 5px rgba(50, 50, 50, 0.5);
}

.shadowIMG:hover {
	opacity: 0.8;
}

#sub01content img:hover {
	opacity: 0.8;
}

#itemContent {
	position: relative;
	width: 750px;
	min-height: 400px;
	float: right;
	margin: 0 0 10px 0;
	padding: 0 0 0 20px;
	border-left: 1px solid #960;
}

#galleriesCat {
	position: relative;
	float: left;
	width: 250px;
	height: 250px;
	float: left;
	margin: 0 50px 70px 70px;
	padding: 0;
	-webkit-box-shadow: 4px 4px 5px rgba(50, 50, 50, 0.75);
	-moz-box-shadow:    4px 4px 5px rgba(50, 50, 50, 0.75);
	box-shadow:         4px 4px 5px rgba(50, 50, 50, 0.75);
}
	

/* this class is for the item, and gallery pages */
.gallery {
	position:relative;
	top:0;
	display: block;
	float: right;
	padding:0;
	margin: 0;
	width: 100%;
}

.gallery #title {
	position:relative;
	float: left;
	width: 100%;
	height: 30px;
	background-color:#000;
	color:#FFF;
	font: 120%/1.8 'Arimo', sans-serif, Verdana, Geneva, sans-serif;
	font-weight:400;
	padding: 0;
	text-indent: 5px;
	margin-bottom: 10px;
	display:block;
}

.gallery #title a {
	
	color:#FFF;
	font: 100%/1.8 'Arimo', sans-serif, Verdana, Geneva, sans-serif;
	font-weight:400;
	
}

.galleryList #title {
	position:relative;
	float: left;
	width: 100%;
	height: 30px;
	background-color:#000;
	color:#FFF;
	font: 130%/1.8 'Arimo', sans-serif, Verdana, Geneva, sans-serif;
	font-weight:400;
	padding: 0;
	text-indent: 5px;
	margin-bottom: 10px;
	display:block;
}
.galleryList #title a {
	
	color:#FFF;
	font: 100%/1.8 'Arimo', sans-serif, Verdana, Geneva, sans-serif;
	font-weight:400;
	
}
.click {
	position:relative;
	float: right;
	width: 200px;
	text-align:right;
	color:#FFF;
	font: 90%/2 'Arimo', sans-serif, Verdana, Geneva, sans-serif;
	font-weight:400;
	margin-right:10px;
}
.gallery h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding: 0;
}
.gallery p {
	font: 100%/1.4 'Arimo', sans-serif, Verdana, Geneva, sans-serif;
}
.gallery em {
	font-style:italic;
	font-weight:400;
}
.gallery hr {
	border-top: #960 1px solid
}
.gallery #description {
	width: 100%;
	float: left;
	\\margin-bottom:10px;
}

.galleryList img {
	margin: 25px 30px 25px 35px;
	-webkit-box-shadow: 4px 4px 5px rgba(50, 50, 50, 0.5);
	-moz-box-shadow: 4px 4px 5px rgba(50, 50, 50, 0.5);
	box-shadow: 4px 4px 5px rgba(50, 50, 50, 0.5);
	border: 1px solid #960;
}

.galleryList hr {
	border-top: #960 1px solid
}

.gallery #navTop {
	width: 120px;
	float: right;
	margin-top:5px;
	font: 80%/1.4 'Arimo', sans-serif, Verdana, Geneva, sans-serif;
	text-align:right;
	margin-right: 10px;
}
.gallery #navBottom {
	width: 254px;
	float: right;
	\\margin-top: 5px;
	font: 100%/1.4 'Arimo', sans-serif, Verdana, Geneva, sans-serif;
	text-align: right;
	margin-right: 10px;
	border-left: #960 1px solid
}
.gallery #navBottom2 {
	width: 120px;
	float: right;
	margin-top:5px;
	font: 100%/1.4 'Arimo', sans-serif, Verdana, Geneva, sans-serif;
	text-align:right;
	margin-right: 10px;
}
.gallery #form {
	width: 230px;
	float: left;
	margin-left: 20px;
	font: 80%/1.4 'Arimo', sans-serif, Verdana, Geneva, sans-serif;
	background-color:#960;
	color:#FFF;
	padding: 7px;
	height: 388px;
}
.gallery #form2 {
	width: 240px;
	margin-left:10px;
	float: left;
	font: 80%/1.4 'Arimo', sans-serif, Verdana, Geneva, sans-serif;
	background-color:#960;
	color:#FFF;
	padding: 7px;
	height: 500px;
}
.gallery #form #formTitle {	
	font: 130%/1.4 'Arimo', sans-serif, Verdana, Geneva, sans-serif;;
	font-weight:400;
	padding-top: 5px;
}
.gallery #form input {
	width: 220px;
	height: 15px;
	display: block;
	margin-bottom: 20px;
}
.gallery #form textarea {
	width: 220px;
	height: 100px;
	display: block;
	margin-bottom: 20px;
}
.gallery #form #submit {
	height: 30px;
	font: 130%/1.4 'Arimo', sans-serif, Verdana, Geneva, sans-serif;
}


/* this class is for the artists pages */
.artist {
	position:relative;
	top:0;
	display: block;
	float: right;
	padding:0;
	margin: 0;
	width: 100%;
}
.artist #title {
	position:relative;
	float: left;
	width: 100%;
	height: 30px;
	background-color:#000;
	color:#FFF;
	font: 130%/1.8 'Arimo', sans-serif, Verdana, Geneva, sans-serif;
	font-weight:400;
	padding: 0;
	text-indent: 5px;
	margin-bottom: 10px;
	display:block;
}
.artist #title a {
	
	color:#FFF;
	font: 100%/1.8 'Arimo', sans-serif, Verdana, Geneva, sans-serif;
	font-weight:400;
	
}
.click {
	position:relative;
	float: right;
	width: 200px;
	text-align:right;
	color:#FFF;
	font: 90%/2 'Arimo', sans-serif, Verdana, Geneva, sans-serif;
	font-weight:400;
	margin-right:10px;
}
.artist h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding: 0;
}
.artist p {
	font: 100%/1.4 'Arimo', sans-serif, Verdana, Geneva, sans-serif;
}
.artist em {
	font-style:italic;
	font-weight:400;
}
.artist hr {
	border-top: #960 1px solid
}
.artist #description {
	width: 100%;
	float: left;

	margin-bottom:10px;
}
.artist #navTop {
	width: 161px;
	float: right;
	font: 100%/1.8 'Arimo', sans-serif, Verdana, Geneva, sans-serif;
	padding-left: 40px;
	border-left:#FFF thin solid;
}
.artist #navBottom {
	width: 120px;
	float: right;
	margin-top:5px;
	font: 100%/1.4 'Arimo', sans-serif, Verdana, Geneva, sans-serif;
	text-align:right;
	margin-right: 10px;
}
.artist #works {	
	\\border-left: 1px solid #960;
	width: 80px;
	float: left;
	font: 80%/1.4 'Arimo', sans-serif, Verdana, Geneva, sans-serif;
	color:#FFF;
	padding-left: 20px;
}
.artist #works img {
	-webkit-box-shadow: 4px 4px 5px rgba(50, 50, 50, 0.5);
	-moz-box-shadow:    4px 4px 5px rgba(50, 50, 50, 0.5);
	box-shadow:         4px 4px 5px rgba(50, 50, 50, 0.5);
	border: 1px solid #960;
}
.artist #works img:hover {
	opacity: 0.8;
}
/*******************************************************************************************************/

#fadeshow1 {
	position: relative;
	float: right;
}

.fadeslidedescdiv {
	font-style: normal;
	font-weight: 400;
	font-family: 'Arimo', sans-serif, Verdana, Geneva, sans-serif;
	font-size:12px;
	line-height:18px;
    width: 200px;
    height: 150px;
}
#itemImage {
	width: 400px;
	height: 400px;
	background-color: white;
	border: 1px solid #960;
	color: white;   /* for error messages, etc. */
	float: left;
	position: relative;
}
#itemImage470 {
	width: 470px;
	height: 470px;
	background-color: white;
	border: 1px solid #960;
	color: white;   /* for error messages, etc. */
	float: left;
	position: relative;
}
#itemImage600 {
	width: 480px;
	height: 400px;
	background-color: white;
	border: 1px solid #960;
	color: white;   /* for error messages, etc. */
	float: left;
	position: relative;
}

#itemImage600x300 {
	width: 480px;
	height: 300px;
	background-color: white;
	border: 1px solid #960;
	color: white;   /* for error messages, etc. */
	float: left;
	position: relative;
}

			
#listImage {
	width: 60px;
	height: 400px;
	float: left;
	margin-left: 10px;
	color: white;
	padding: 0;
}
#listImage img {
	margin-bottom: 10px;
}

#contentColumnBkg {
	position: relative;
	width: 100%;
	height: 600px;
	margin: 0;
	padding: 0;
	float: left;
}
	
#contentColumnLeft {
	position: relative;
	width: 255px;
	margin-top: 10px;
	float: left;
}
#contentColumn200 { position: relative; width: 255px; padding: 0; margin-top: 10px; float: right; 
}
#contentColumn180 { position: relative; width: 180px; padding: 0; margin-top: 10px; float: right; 
}
#contentColumn445 { width: 538px; font-weight: 700; padding: 0; position: relative; height: auto; float: left; margin: 0; margin-left: 212px; 
}
#contentColumn200 ul, #contentColumnLeft ul {
	list-style: none;
	padding-left: 20px;
}
#contentColumnLeft li {
	padding-bottom: 5px;
}
#contentColumn200 li {
	padding-bottom: 8px;
}
.borderLeft {
	border-left: 1px solid #960;
}
.marginBottom {
	margin-bottom: 20px;
}
.fontTimes {font-family:"Times New Roman", "Times"}
.redtx { color: #920F17}
.text12 {font-size:12px}
.text14 {font-size:14px}
.border960 { border:  1px solid #960; }

.antispammessage {
	\\width:215px;
	padding:10px;
	border-top:1px solid #AAA;
	border-bottom:1px solid #AAA;
	font-weight:bold 
}
.antispammessage-gallery {
	width:215px;
	padding:10px;
	border-top:1px solid #AAA;
	border-bottom:1px solid #AAA;
	font-weight:bold 
}
.antispamquestion {
font-weight:normal;
}
.icon-facebook {
background: url(https://simonpilling.co.uk/images/logo/icon-facebook.svg) left center no-repeat;
    background-size: auto auto;
background-size: 16px;
width: 16px;
height: 16px;
}
.hide-text {
    text-indent: -9999px;
}
#footerMiddle {
	width: 2% !important;
	display: inline;
	/* [disabled]background-image: none; */
	text-align: left;
	padding: 0px;
	margin-top: 1px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	float: left;
}
#footerTwitter {
	width: 2% !important;
	display: inline;
	/* [disabled]background-image: none; */
	text-align: left;
	padding: 0px;
	margin: 0px;
	float: left;
}
#footerInstagram {
	width: auto !important;
	display: inline;
	/* [disabled]background-image: none; */
	text-align: left;
	padding: 0px;
	float: left;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 10px;
}
#captionBottom {
  position: absolute;
  bottom: 0;
  left: 20px;
}