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

/**  CODE THAT AFFECTS COLORS AND OTHER ATTRIBUTES THAT CAN BE CHANGED FOR DIFFERENT WEB PAGES ******************************/
body{
	font-family: roboto;
	font-size: 16px;
	color: #333333; /* this is the color of the text - a charcoal rather than black */
	background-color: #fdfaf2;   /* background of page - medium ivory */	
}


/**  code for links - just in main section, not menu or in footer ???  ********************/
a {
	color: #698a6d;
	text-decoration: none;
}   /* CHANGECODE - color for links when page is opened */

a:active,
a:hover {
	color: #698a6d /*dark gold*/ 
}

a:visited {
	color: #bcd6b2; /*light gold*/
}

/*   styles for headings - h1 through h6  *************************************************/

h1 {    /* article titles */
	color: #556657; 
	font-size: 20px;
	line-height: 1.25;
	text-align: center;
	}

h2 {color: #000000;  /*  subtitle for articles */
	font-size: 16px;
	line-height: 1.25;
	text-align: center;
}

h3 {color: #000000;   /* byline for articles */
	font-size: 18px;
	line-height: 1.25;
	text-align: center;
}


h4 {color: #556a58;   /* book titles on book pages */
	font-size: 24px;
	line-height: 1.25;
	font-weight: bold;
	text-align: left;
}

h5 {color: #000000;   /*  black - for photo captions */
	font-size: 11px;
	font-weight: bold;
	line-height: 1.25;
}

h6 {color: #000000;   
}

/*Navigation **-  colors in Main Menu  ***************************************************************/
nav{
	border-bottom: #556657 2px solid;  /*CHANGECODE - color of bottom border below menu */
	border-top:#556657 2px solid;  /*CHANGECODE - color of top border above menu */
	background-color: #556657;   /*CHANGECODE - color of nav bar / menu background */
	color:#ffffff;
}

nav ul li{
	/*border-left: 1px solid #333333;  /*CHANGECODE - color of separators between menu items  */
	border: medium none;
}

nav a{
	color:#ffffff;   /*CHANGECODE - color of menu item links when page is opened */
}

nav ul li:last-child{
	color:#ffffff; /* CHANGECODE - color of last menu item text */
	font-size: 16px;
}
	
nav ul li:last-child a{
	color:#ffffff;  /* CHANGECODE - color of link in last menu item  */
	font-size: 16px;
}

#menu li:hover div a:hover {
	color:#dbeadc;  /* CHANGECODE - color of menu items on hover */
	font-size: 16px;
}

#menu li ul li {
	color: #ffffff;  /* CHANGECODE - color of menu items when page is opened  */
	font-size: 16px;
}

/* Page Content Area styles between header and footer - includes Sidebar and Main Section **********/
.main-content{  /* includes sidebar and main section */
	/*  background:url(images/lghtmesh.png);  - eliminate light mesh background per client request - jseger 1/1/2016 */
	background-color: #fdfaf2; /* CHANGECODE -  used to be lighter #f1f7f5 */
}

/*  Left Hand Sidebar - font colors & styles  *****************************************************/

aside.primary{
	background-color: #fdfaf2;  /* color of background for left sidebar - was lighter #f1f7f5 */
	border: none; /* 2px solid #ffffff; CHANGECODE - color of border of sidebar */
}

aside.primary .testimonials hr {  
	background-color: #fdfaf2; /* CHANGECODE - color for  horizontal line separating individual testimonials - was lighter f1f7f5 */
	border: none;
}
aside.primary .sideTestimonial { /*  CHANGECODE - font style and color for text of testimonials */
	font-style: italic;
	color: #fdfaf2; /* was lighter #f1f7f5 */
}

/****  Main Section (not sidebar )  font colors and styles ***********************/
article {
	border: none; /* 2px solid #ffffff;  CHANGECODE - change color of border on page main content (not sidebar ) section here */
	background-color: #fdfaf2; /* was lighter #f1f7f5 */
	font-family: roboto;
}

article p {
	font-family: roboto;
	background-color: #fdfaf2;
}


/**************  Main Section (not sidebar) - Artwork Div for images  - line at bottom   *****/

#art-images {     /* was called .artwork-wrapper */
	/* border-bottom:1px solid #bbb; /* CHANGECODE - color of thin line at bottom of artwork page section */
}

/******    Main Section (not sidebar - Book Cover div for images -  line at bottom  ***********/

#book-cover-images {     /* did not exist in original template */
	/* border-bottom:1px solid #bbb;  /* CHANGECODE - color of line below book cover images */
}

/******  Footer Section -  border colors and font colors for links and style of lines separate footer menu items  ***/

footer.sites{
	border-top: 2px solid #000000; /*CHANGECODE - top border of footer */
	border-bottom: 2px solid #000000;
	color:#000000;  
	background: #dbeadc;  /* CHANGECODE - background of top portion of footer */
	font-family: roboto;
}

footer.sites a{
	color:#000000;  /* color of links in footer */
	text-decoration:none;
	font-family: roboto;	
}

footer.sites a:hover{
	text-decoration:underline;
	color:#000000;  
	font-family: roboto;
}

footer.sites a:visited{
	text-decoration:underline;
	color:#000000;  /* gray */
	font-family: roboto;
}

footer.sites li{
	border-bottom:dashed 1px #000000;  /* CHANGECODE - format of lines in footer */
	font-family: roboto;
}

.dropdown_1column, 
.dropdown_2columns, 
.dropdown_3columns, 
.dropdown_4columns,
.dropdown_5columns,
.dropdown_6columns {  /* colors for dropdown menu borders and background areas */
	border:1px solid #000000;  /*  CHANGECODE - border color and width*/
		
	/* Gradient background */  /* CHANGECODE - color of background; not sure about gradient background code ?? */
	background: #556657;  /*#F4F4F4;  */
	/* background: -moz-linear-gradient(top, #EEEEEE, #BBBBBB); */
	/* background: -moz-linear-gradient(top, #FFFFFF, #BBBBBB); */
	/* background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#EEEEEE), to(#BBBBBB)); */
	/* background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#FFFFFF), to(#BBBBBB)); */
	color: #ffffff;
}
/** END OF CODE THAT CAN BE CHANGED WITHOUT IMPACTING THE PAGE LAYOUT OR APPEARANCE ON MOBILE DEVICES *****************************************/

/**  UNIVERSAL STYLES***********  CHANGES HERE WILL AFFECT ALL WEB PAGES FOR COMMON HTML ELEMENTS -  BE CAREFUL ************************************/

body{
	font-family: roboto;
	font-size:16px;
	line-height:22px;
	background-color: #fdfaf2; /* used to be much lighter f1f7f5 */
	color: #333333;
}

* {margin:0; padding:0;}
* {	outline:none;}
img {border:none 0px; max-width:100%;}

ul, ol{
	margin: 0 0 24px 20px;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin: 0 0 0 20px;
}

p {
	margin: 7px 0px	
}

a:hover,
a:active {
	outline: 0;
}

h1 {    /* for font size, weight and color of H tags */
	margin: 10px 0 5px 0;
	padding: 0;
	font-size: 20px;
	font-weight: bold;
	line-height: 1.25;
	text-align: center;
	text-transform: uppercase;
	color: #556657;
	font-family: roboto;
}
	
h2 {    
	margin: 0 0 5px 0;
	padding: 0;
	font-size: 16px;
	font-weight: bold;
	line-height: 1.25;
	text-align: center;
	color: #000000;
	font-family: roboto;
}

h3 { 
	margin: 0 0 10px 0;
	padding: 0;
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	color: #000000;
	font-family: roboto;
}

h4 {   /* not currently used */
	margin: 10px 0 10px 0;
	padding: 0;
	font-size: 14px;
	font-family: roboto;
}

h5 {   /* not currently used */
	margin: 25px 0 10px 0;
	padding: 0;
	font-size: 14px;
	font-weight: bold;
	font-family: roboto;
}

h6 {   /* not currently used */
	margin: 0 0 5px 0;
	padding: 0;
	font-size: 12px;
	line-height: 1.25;
	font-weight: bold;
	text-align: left;
	font-family: roboto;
}

.artworkDescriptions {
	font-weight: bold;
	font-size: 14px;
	color: #556657;
	line-height:1.00;
	font-family: roboto;
}

.BookTitles {
	font-weight: bold;
	font-size: 18px;
	color: #556657;
	text-align: left;
	line-height: 1.25;
	font-family: roboto;
}

.alignleft {   /* not currently used */
	float: left;
	margin: 3px 15px 5px 0;
	padding: 0;
}

.alignright {    /* not currently used */
	float: right;
	margin: 0 5px 15px 3px;
	padding: 0;
}

.aligncenter {    /* not currently used */
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.textcenter{
	text-align:center;
	background-color: #fdfaf2;
}

.social-icons{
	display:block;
	text-align:center;}
	
.icon{}



/*STRUCTURE***********  DO NOT CHANGE - THIS AFFECTS MOBILE-FRIENDLY APPEARANCE  ******************/
.container {
	width: 100%;
}

.clearFloat {
	clear: both;
}

.wrapper, nav, aside.primary, aside.secondary, article, footer.sites, footer.copyright, .main-content{
	display:block;
	clear:both;
	font-family: roboto;
}

.wrapper{
	padding:0 20px;
	position:relative;
	z-index:1;
}

.main-content, .footer-wrapper {
	/*  max-width:1202px;   eliminate to avoid having narrow content on larger monitors */
	width: 75%;   /* set width to leave margins on sides of main content */
	margin:0 auto;
	padding:10px;
	font-family: roboto;
}
	
.article-image {
	width: 95%;
	margin:0 auto;
	max-width: 576px;
}

aside.secondary, aside.primary, .main-content, footer.sites, footer.copyright{
	padding: 1em;  /* changed from 20px; */
}

/*   END STRUCTURE RELATED CSS STYLES  ***************************************************************/



/** CODE TO STYLE COLUMNS in footer and in content rows for multiple images  --  DO NOT CHANGE, AFFECTS MOBILE FRIENDLY DISPLAY **/
/*  grid4 col used in content rows for 4 images */
/* grid3 col used in content rows for 3 images */
/* grid2 col used on footer row */
.col {
	float: left;
	display:block;
	margin-left: 3.2%;
	margin-bottom: 30px;
	word-break: break-all;

	/* Non standard for webkit */
	word-break: break-word;
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	hyphens: auto;
}

.fullwidth .col {
	float: none;
	margin-left: 0;
}
/* grid4 col */  /* grid 4 used in content rows for 4 images */
.grid4 .col {
	width: 22.6%;
}

.grid2 .col {   /*  added by jseger  on 3/3  */
	width: 22.6%;
}

.grid4 .col:nth-of-type(4n+1),
.grid3 .col:nth-of-type(3n+1),
.grid2 .col:nth-of-type(2n+1){  /* grid2 added by jseger on 3/3  */
	margin-left: 0;
	clear: left;
}

/*  END OF CODE TO STYLE COLUMNS  ************************************************************/


/* HEADER - FORMAT OF HEADER AREA (IMAGE )   - DO NOT CHANGE;  AFFECTS APPEARANCE OF HEADER ON ALL DEVICES  ***************/
header{
	/*display:none;*/  /*eliminate this code so that the banner in the header shows in all devices */
   /* replace with this code which also exists in line 555 */
	display:block;
	margin:0;  /* changed from 0 auto; */
	padding: 0;  /* added by jseger */
	max-width:100%;  /*changed from 1242px; */
	max-height:133px;  /* CHANGECODE - sets height of header image area; needs to match height of image;  changed from 133px to 175px and then back to 133px for different banner images*/
	font-size: 1em;
	line-height: .1em;
	background-color: #556657;
}
  
header #large-banner {
display: block;
background-color: #556657;
}
header #small-banner {
display: none;
background-color: #556657;
}


/*NAVIGATION**-  format of MAIN MENU  *****  DO NOT CHANGE;  AFFECTS APPEARANCE OF MENU ON ALL DEVICES   **********************/
nav{
	z-index:2;
	position:relative;
	color: #ffffff;
	border-top-color: #ffffff;
	padding-top: 2px;
}

nav ul{
	margin:0;
	text-align:center;
	padding: 10px 0;
	font-size:16px
	color: #ffffff;
}


nav ul li{
	display:inline-block;
	
}

nav ul li:first-child{
	border-left:none;
}

nav a{
	padding: 0 15px;
}

.view-cart-btn{display:none;}

/*  END NAVIGATION MENU IN HEADER STYLE CSS *****************************************/

/* PAGE CONTENT AREA STYLES - BETWEEN HEADER AND FOOTER   -  DO NOT CHANGE -  AFFECTS APPEARANCE ON ALL PAGES AND DEVICES ****************/
/* INCLUDES SIDEBAR AND MAIN section */
.main-content{  /* includes sidebar and main section */
	padding:10px;
	background-color: #fdfaf2; /* was lighter f1f7f5 */
	font-family: roboto;
}

/*LEFT-HAND SIDEBAR*********  DO NOT CHANGE - AFFECTS LEFT HAND SIDEBAR ON ALL PAGES AND ALL DEVICES   ********************/
/*  css code for alignment of badge symbols, format of testimonials */

aside.primary{
	text-align:left;  /* changed from center */

	word-break: break-word; /* changed from break-all; */

     /* Non standard for webkit */
     word-break: break-word;
	-webkit-hyphens: auto;
    -moz-hyphens: auto;
        hyphens: auto;
}

/*  style left side bar images */

.symbols .leftImg {
	width: 48%;
	float: left;
	margin-right: 4%;
}

.symbols .rightImg {
	width: 47.5%;   /* make Paypal image a little smaller to make it look the same size as the guarantee symbol */
	float: left;
	margin-right: 0%;
}

.symbols {
	/*padding-left: 10%; */
	width: 75%;
	margin: 0 auto;
	clear: left;
	padding-bottom: 1.5em;
}

/* style left sidebar testimonials */

aside.primary .testimonials {
	padding:  0 3%;
	text-align: left;
}

aside.primary .testimonials h3 {
	text-align: center;
}

aside.primary .testimonials hr {
	width: 80%;
	margin: 0 auto 1.5em;
	height: 1.5px;
	outline: none;
}
aside.primary .sideTestimonial {
	font-size: 1.1em;
    line-height: 1.15;
	font-weight: 400;
    margin-bottom: 0;
    padding: 0 5%;
    text-align: left;
}

aside.primary .sideTestimonialist {
	font-size: .9em;
	text-align: right;
	padding-right: 6%;
	margin-top: 0;
	margin-bottom: 1em;
}

/**  END CODE FOR LEFT HAND SIDEBAR  **************************************************************************/


/****  MAIN  SECTION (NOT SIDEBAR )STYLES ********  DO NOT CHANGE - AFFECTS LAYOUT OF MAIN SECTION ON ALL DEVICES  ***********************/
article {
	padding: 1.5em 2%;
	font-family: roboto;
	background-color: #fdfaf2;
}

/*MAIN TEXT AREA STYLES*/
article p, article ul{  /* mostly overridden by Jseger with p tags with specific class, but returned to p tags without class by Joelle*/
	padding: 6px 0;  /* changed by Joelle to 6px top & bottom for less space between paragraphs; per JSeger--eliminate padding on left-right when second sidebar eliminated; used to be 10px 25px; */
	margin-bottom:0px;
	font-family: roboto;
}

article ul{
	margin-left:50px;
	font-family: roboto;
}

/* format of heading in main section   -   CSS CODE commented out because class attributes eliminated by Joelle in HTML ********/
/*.mainSection_heading{
	text-align: center;
	font-size: 1.2em;
	font-weight: 500;
	margin-top: 0;
}  */

/* format of intro text in main section */
/*.introText {
	text-align: left;
	padding: 0;
}
*/

/*.contentHeading {  css eliminated since html tag with .contentHeading no longer exists in html code */
/*	text-align: center;
	font-size: 1.2em;
	font-weight: 500;
} */

/** END OF CSS STYLES FOR MAIN SECTION THAT SHOULD NOT BE CHANGED *************************************************/

/**************IN MAIN SECTION ***ARTWORK DIV -  COMMON CODE  ***   DO NOT CHANGE - AFFECTS LAYOUT OF ARTWORK DIV IN PAGES WITH ARTWORK *****/

#art-images {     /* was called .artwork-wrapper */
	display:block;
	clear:both;
	margin: 10px 0;
	overflow:hidden;
}

#art-images .wrapper {
    padding: 0; /* changed from default for .wrapper of 0 20px */
    position: relative;
    z-index: 1;
}

#art-images p {
	padding: 10px 0;
}

.artwork{
	float:left; padding:0 10px 10px 0;
}


/****  In Main section - artwork div - 4 images across related code for vertical / portrait oriented images  ********/

#art-images .grid4 .col {
	width: 21.5%;
	margin-left: 3.5%
}

#art-images .grid4 .col:nth-of-type(4n+1) {
	margin-left: 3.5%;
}

#art-images .grid4 .imageCaption p {
	padding: 0;
	font-size: .9em;
	line-height: 1.2em;
	text-align: left;
	font-family: roboto;
}

/**** In Main section - artwork div - 3 images across related code for horizontal / landscape oriented images  ******/

#art-images .grid3 .col {
	width: 30%;
	margin-left: 3.3%
}

#art-images .grid3 .col:nth-of-type(3n+1) {
	margin-left: 0;
}

#art-images .grid3 .imageCaption p {
	padding: 0;
	font-size: .9em;
	line-height: 1.2em;
	text-align: left;
	font-family: roboto;
}

/***  END OF CSS STYLES FOR MAIN SECTION - ARTWORK DIV - CODE THAT SHOULD NOT BE CHANGED  *********************/

/******IN MAIN SECTION*****BOOK COVER ART DIV  -  3 COLUMN FORMAT    --   CODE THAT SHOULD NOT BE CHANGED **/

#book-cover-images {     /* did not exist in original template */
	display:block;
	clear:both;
	margin: 10px 0;
	overflow:hidden;
}

#book-cover-images .wrapper {
    padding: 0; /* changed from default for .wrapper of 0 20px */
    position: relative;
    z-index: 1;
}

#book-cover-images p {
	padding: 10px 0;
}

#book-cover-images .grid3 .col {
	width: 30%;
	margin-left: 3.3%

}

#book-cover-images .grid3 .col:nth-of-type(3n+1) {
	margin-left: 0;
}

#book-cover-images .imageCaption p {
	margin: 0;
	padding: 0;
	font-size: .9em;
	line-height: 1.2em;
	font-family: roboto;
}


/**  END OF MAIN SECTION - BOOK COVER DIV - CODE THAT SHOULD NOT BE CHANGED *************************************************/


/*FOOTER STYLES****** - FOR TWO COLUMNS ******CODE SHOULD NOT BE CHANGED;  AFFECTS DISPLAY ON ALL DEVICES EXCEPT SMART PHONES OR TABLETS HELD VERTICALLY**************/
/*  for anything greater than 768 px unless changed in @media css */
.footer-wrapper {
	width: 65%;  /* or set to 60% with padding-left at 0 */
	margin: 0 auto;
	padding-left: 0;
	font-family: roboto;
	
}
.footer-wrapper .grid2 .col {
	width: 42%;  /*  or set to 42% vs 45%*/
	margin-bottom: .5em;
	margin-right: 12%;  /* or set to margin 3% vs 5%*/
}

.footer-wrapper .grid2 .last {
	margin-right: 0%;
}

.footer-wrapper .socialIcons img {
	width: 8%;
	height: auto;
	margin-right: 3%;
	float: left;
}

footer.sites{
	overflow:hidden;
	
}
footer.sites a{
	font-weight:normal;	
}

footer.sites li{
	margin:5px 0;
	padding:7px 0;
	line-height:18px;
}

footer.copyright{
	text-align:center;
	color: #000000;
	font-family: roboto;
}

h3.company-name {  /* for footer company name heading */
	font-size:14px;
	font-weight:bold;
}

/**  END OF FOOTER RELATED CSS CODE THAT SHOULD NOT BE CHANGED  ****************************************************/

/**  DEFAULT CODE FOR LAYOUT ON LAPTOPS & TABLETS HELD HORIZONTALY > 768px) - LEFT HAND SIDE BAR & ARTICLE IN TWO COLUMNS ***********************/

/*LEFT-HAND SIDEBAR  -   for devices wider than 768px - laptops,desktops, tablets held horizontally */
aside.primary{
	width:35%; /* 236 / 1242 */  /* changed  back to 24.60897% from 19.68307%to keep proportions of left sidebar same as when screen size > 1039 px */
	/* or width  32% */
	float:left; 
	clear:left;  /* change to clear: left; from clear: none to match code when screen size > 1039px  ???  */
	max-width:250px;  /*change from 236 */
	padding: 1em 0;  /* change from 0 to get space at top */
	margin:0;
	
}

aside.primary p{  /* code for side bar padding for non testimonial paragraphs */
	padding: 0 1.5em; /* changed from  10px 20px; by jseger in Jan 2016 */

}

/*MAIN TEXT AREA*/
article{
	width:60%; /* 723 / 1242 */  /* change from 68.71741% to 56% to 60% to 65%  to keep same proportions as when screen size is greater than 1039px */
	max-width:750px;  /* changed from 723 px */
	padding: 1.5em 2%;  /* changed from padding:20px;  to fit article main text area between 2 side columns and keep top/bottom padding consistent with side bars */
	margin:0 auto;
	background-color: #fdfaf2; 
	font-family: roboto;
	color: #333333;
}

/**  END OF DEFAULT CODE FOR LAPTOP SIZE SCREENS AND TABLETS HELD HORIZONTALLY (> 768px) - LEFT HAND SIDE BAR & ARTICLE IN TWO COLUMNS ***********************/

/******  RESPONSIVE CODE TO CHANGE FORMAT FOR DIFFERENT DEVICES **  DO NOT CHANGE ANY OF THIS CODE - AFFECTS DISPLAY ON MOBILE DEVICES ****/

/* set display of dropdown menus on hover only for laptops and desktops and tablets / phones held horizontally
                whenever the real menu shows, not the mobile menu icon   *************************************/
@media screen and (min-width: 768px) {  
/*MENU UL STYLES*/

	#menu {
		list-style:none;
		padding:0px 20px 0px 20px;
		font-size: 1em;  /* changed from 18px to reduce font-size and make it more responsive */
		color: #ffffff;
	}
	
	#menu li {
		display:inline-block;
		text-align:center;
		position:relative;
		padding: 4px 10px 4px 10px;
		margin-top: 0;  /* reduced from 7px; by jseger */
		margin-bottom: 2px; /* reduced from 7px; by jseger*/
		line-height: 1.1em;  /* changed by jseger from 12px in Contract Kingdom, so Joelle changed it here too */
		
		/*border-left: 1px solid #333;*/
		color: #ffffff;
	}
	
	
	#menu li:last-child{
		margin-bottom: 0;
		padding-bottom: 0;
		padding-top: 4px;  /* set to 4px by jseger to provide padding on top cart image */
		line-height: 12px;  /* added by jseger */
		color: #ffffff;
	}
	
	
	#menu li a {
		/*font-family:Arial, Helvetica, sans-serif;   REMOVE */
		display:inline-block;
		outline:0;
		text-decoration:none;
		color: #ffffff;  /*  darkened from #333; */
		padding: 0 15px;
	}
	
	.dropdown_1column, 
	.dropdown_2columns, 
	.dropdown_3columns, 
	.dropdown_4columns,
	.dropdown_5columns,
	.dropdown_6columns {
		margin:0px auto;
		float:left;
		position:absolute;
		left:-999em; /* Hides the drop down */
		text-align:left;
		padding:10px 5px 10px 5px;
		color: #ffffff;
	
		/* Rounded Corners */
		-moz-border-radius: 0px 5px 5px 5px;
		-webkit-border-radius: 0px 5px 5px 5px;
		border-radius: 0px 5px 5px 5px;
	}
	
	.dropdown_1column li:last-child, 
	.dropdown_2columns lilast-child, 
	.dropdown_3columns li:last-child, 
	.dropdown_4columns li:last-child,
	.dropdown_5columns li:last-child,
	.dropdown_6columns li:last-child,
	.dropdown_7columns li:last-child {
		background-image:none;
		color: #ffffff;
	}
	
	.dropdown_1column {width: 140px;}
	.dropdown_2columns {width: 280px;}
	.dropdown_3columns {width: 420px;}
	.dropdown_4columns {width: 560px;}
	.dropdown_5columns {width: 700px;}
		
	#menu li:hover .dropdown_1column, 
	#menu li:hover .dropdown_2columns, 
	#menu li:hover .dropdown_3columns,
	#menu li:hover .dropdown_4columns,
	#menu li:hover .dropdown_5columns {
		left:-1px;
		top:auto;
		color: #ffffff;
	}
	
	
	/*  col_1 etc used in dropdown menu */
	.col_1,
	.col_2,
	.col_3,
	.col_4,
	.col_5,
	.col_6 {
		display:inline;
		float: left;
		position: relative;
		margin-left: 5px;
		margin-right: 5px;
		color: #ffffff;
	}
	
	
	.col_1 {width:130px;}
	.col_2 {width:270px;}
	.col_3 {width:410px;}
	.col_4 {width:550px;}
	.col_5 {width:690px;}
		
	#menu li .align_right {
		/* Rounded Corners */
		-moz-border-radius: 5px 0px 5px 5px;
		-webkit-border-radius: 5px 0px 5px 5px;
		border-radius: 5px 0px 5px 5px;
		color: #ffffff;
	}
	
	#menu li:hover .align_right {
		left:auto;
		right:-1px;
		top:auto;
		color: #dbeadc;
}
	
	#menu p {
		line-height:18px;
		margin:0 0 10px 0;
		color: #ffffff;
	}
	
	#menu li:hover div a {
		font-size:12px;
	}
	#menu li:hover div a:hover {
		color: #dbeadc;
	}
	
	#menu li ul {
		list-style:none;
		padding:0;
		margin:0;
		color: #ffffff;
	}
	#menu li ul li {
		font-size:12px;
		line-height:15px;  
		position:relative;
		padding:0 0 3px 0;
		margin:0;
		float:none;
		text-align:left;
		width:130px;
		border-left:none;
		color: #ffffff;
	}
	
	#menu li ul li:hover {
		background:none;
		border:none;
		padding:0 0 3px 0;
		margin:0;
		color: #dbeadc;
	}
	

	nav ul li:last-child a{
		margin-left:10px;
		color: #ffffff;
	}
	nav ul li ul li:last-child a{
		margin-left:0px;
		color: #ffffff;
	}
}

/*  END MENU CODE FOR LAPTOPS AND DESKTOPS WHERE REAL MENU SHOWS  ********************************************************************************/

/*SET MENU FONT SIZE SMALLER ON DEVICES BETWEEN 768px and 801px WIDE ********************/
@media screen and (min-width:768px) and (max-width:801px) {
	#menu{
		font-size: .8em;
}
}

/* CSS FOR LAYOUT ON LARGE DESKTOP MONITORS   */
@media screen and (min-width: 1400px) {
	/* NARROW MAIN CONTENT AREA TO KEEP ARTICLE TEXT AT A READABLE WIDTH */
	/*body {
		background-color: #990000;
	}

	.container {
		background-color: #ffffff;
	}
	
	.wrapper {
		background-color: #ffffff;
	}*/
	
	.main-content {
		width: 65%;
		margin: 0 auto;
		background-color: #fdfaf2; 
		font-family: roboto;
		color: #000000;
	}
	
   /* LEFT AND ONLY SIDEBAR */
	aside.primary{
	width: 28%;  /* changed from 19.68307%; /* 236 / 1242   when second sidebar eliminated */
	float:left;
	clear:left; 
	max-width:300px;  /* changed from 236px */
	padding:1em 0;
	margin: 0;
	background-color: #fdfaf2;
	}
	/*MAIN TEXT AREA*/
	article{
		/*width:60.30025%; /* 723 / 1242 */    /* set width to 56%, then to 60% then to 65% with padding of 2% on each side to fit within 2 side columns on laptops / desktops */
		width: 70;
		max-width: 800px; /* increased from 723px; */
		padding: 1.5em 3%;  /* changed from padding:20px;  to fit article main text area between 2 side columns and keep top/bottom padding consistent with side bars */
		margin:0 auto;
		background-color: #fdfaf2; /* was lighter #f1f7f5 */
		font-family: roboto;
		color: #333333;
	}	
}

/*  CENTER POSITION OF ART IMAGES GRID ON LARGER DESKTOP MONITORS - 120in, 22in, 23in, 24in ********************************************/

@media screen and (min-width:1600px) {
#art-images .grid4 .col:nth-of-type(4n+1) {
margin-left: 10.5%;
}
#art-images .grid4 .col {
margin-left: 1%;
}
}

/* CSS FOR LAYOUT ON TABLETS HELD HORIZONTALLY - IPADS, ANDROID TABLETS   --  LEFT SIDEBAR AND MAIN CONTENT AREA  AND FOOTER   ****************************/
@media screen and (min-width: 769px) and (max-width: 1024px){
	/* LEFT AND ONLY SIDEBAR */
	aside.primary{
	width: 28%;  /* changed from 19.68307%; /* 236 / 1242   when second sidebar eliminated */
	float:left;
	clear:left; 
	max-width:250px;  /* changed from 236px */
	padding:1em 0;
	margin:0;
	background-color: #fdfaf2;
	}
	/*MAIN TEXT AREA*/
	article{
		/*width:60.30025%; /* 723 / 1242 */    /* set width to 56%, then to 60% then to 65% with padding of 2% on each side to fit within 2 side columns on laptops / desktops */
		width: 64%;
		max-width: 750px; /* increased from 723px; */
		padding: 1.5em 2%;  /* changed from padding:20px;  to fit article main text area between 2 side columns and keep top/bottom padding consistent with side bars */
		margin:0 auto;
		font-family: roboto;
		background-color: #fdfaf2;
	}
	
	/* FOOTER LAYOUT */
	.footer-wrapper {
		width: 70%;
		padding-left: 0;
		margin: 0 auto;
		font-family: roboto;
	}
	
	.footer-wrapper .grid2 .col {
			/*width: 31.2%;*/
			width: 42%;
			margin-right: 12%;
		}
	.footer-wrapper .grid2 .last {
		margin-right: 0%;
		}
	
}

/****  FOR IPADS HELD VERTICALLY - 768 PX ************************************************************************************************/
@media screen and (min-width: 768px) and (max-width: 768px){
	/* LEFT AND ONLY SIDEBAR */
		aside.primary{
		width: 28%;  /* changed from 19.68307%; /* 236 / 1242   when second sidebar eliminated */
		float:left;
		clear:left; 
		max-width:250px;  /* changed from 236px */
		padding:1em 0;
		margin:0;
		background-color: #fdfaf2;
	}
	/*MAIN TEXT AREA*/
	article{
		/*width:60.30025%; /* 723 / 1242 */    /* set width to 56%, then to 60% then to 65% with padding of 2% on each side to fit within 2 side columns on laptops / desktops */
		width: 64%;
		max-width: 750px; /* increased from 723px; */
		padding: 1.5em 2%;  /* changed from padding:20px;  to fit article main text area between 2 side columns and keep top/bottom padding consistent with side bars */
		margin:0 auto;
		background-color: #fdfaf2; /* was lighter #f1f7f5 */
		font-family: roboto;
	}
	
	/* FOOTER LAYOUT */
	
	.footer-wrapper {
		margin: 0 auto;
		padding-left: 10%;
		width: 80%;
		font-family: roboto;
	}
	
	.footer-wrapper p { /*  keep footer headers on one line */
		font-size: .9em;
		font-family: roboto;
	}
}	
	

/****   FOR SMART PHONES HELD HORIZONTALLY AND TABLETS HELD VERTICALLY   -  COLUMNS AND FOOTER LAYOUT  ***********************************/

@media screen and (max-width: 767px) {
	.main-content{  /* includes sidebar and main section */
		padding: .5em;
		width: 90%;
		background-color: #fdfaf2; /* was lighter #f1f7f5 */
		font-family: roboto;
	}
	
	/* LEFT AND ONLY SIDEBAR */
	aside.primary{
	width: 28%;  /* changed from 19.68307%; /* 236 / 1242   when second sidebar eliminated */
	float:left;
	clear:left; 
	max-width:  300px;  /* changed from 250px */
	padding:1em 0;
	margin:0;
	}
	/*MAIN TEXT AREA*/
	article{
		/*width:60.30025%; /* 723 / 1242 */    /* set width to 56%, then to 60% then to 65% with padding of 2% on each side to fit within 2 side columns on laptops / desktops */
		width: 64%;
		/* max-width: 750px; /* increased from 723px; */
		padding: 1.5em 2%;  /* changed from padding:20px;  to fit article main text area between 2 side columns and keep top/bottom padding consistent with side bars */
		margin:0 auto;
		background-color: #fdfaf2; 
		font-family: roboto;
		color: #333333;
	}
	/* reset cols to 3-column */
	/* grid4 */
	.grid4 .col {
		/*width: 31.2%;*/
		width:42%;
	}
	.grid4 .col:nth-of-type(4n+1) {
		margin-left: 3.2%;
		clear: none;
	}
	.grid4 .col:nth-of-type(3n+1) {
		/*margin-left: 0;
		clear: left;*/
		
		margin-left: 3%;
	}
	
	.footer-wrapper {
		width: 95%;
		padding-left: 0; /* changed from 10% */
		margin: 0 auto;
		font-family: roboto;
	}
	
	.footer-wrapper p {
		font-size: .9em;
		font-family: roboto;
	}
	
	.footer-wrapper .grid2 .col {
			/*width: 31.2%;*/
			width:45%;  /* changed from 42% */
			margin-right: 3%;
		}
	.footer-wrapper .grid2 .last {
		margin-right: 0%;
		}
	
}

/* reset cols to 2-column */
@media screen and (max-width: 600px) {
	.main-content{  /* includes sidebar and main section */
		padding: .5em;
		width: 90%;
		background-color: #fdfaf2; /* was lighter #f1f7f5 */
		font-family: roboto;
		color: #333333;
	}
	
	/* MAIN CONTENT ARTICLE STYLE */
	article {
		width: 90%;
		margin: 0 auto;
		padding: 0;
		clear: both;
		float: none;
		border: none;
		background-color: #fdfaf2; /* was lighter #f1f7f5 */
		font-family: roboto;
		color: #333333;
	}
	
	/* PRIMARY - LEFT - SIDEBAR STYLE */
	aside.primary {
		float: none;
		clear: both;
		width: 98%;
		margin: 0 auto;
		max-width: 400px;
		background-color: #fdfaf2;
	}
	
	/* art-images grid4 */
	
	#art-images .grid4 .col {
	width: 45%;
	margin-left: 3.5%;
	}
	
	#art-images .grid4 .col:nth-of-type(3n+1) {
		margin-left: 3.5%;
	}
	
	#art-images .grid4 .col:nth-of-type(2n+1) {
		margin-left: 3.5%;
	}
	
	#art-images .imageCaption p {
		padding: 0;
		font-size: .8em;
	}
	

	
	/* grid4 */
	.grid4 .col {
		width: 48.5%;
	}
	.grid4 .col:nth-of-type(3n+1) {
		margin-left: 3.2%;
		clear: none;
	}
	.grid4 .col:nth-of-type(2n+1) {
		margin-left: 0;
		clear: left;
	}
	
	
}


/* adjust footer on phone held vertically */
@media screen and (min-width: 400px) and (max-width: 600px) {
	.footer-wrapper {
	width: 95%;  /* CHANGE FROM 60%   back to 90%*/
	margin: 0 auto;
	padding-left: 0;  /* change from 15% */
	
}
	.footer-wrapper .grid2 .col {
		width: 45%;
		margin-bottom: .5em;
		margin-right: 5%;
		font-size: .8em;
		font-family: roboto;
	}

	.footer-wrapper .grid2 .last {
		margin-right: 0%;
	}
}



/*  FOR PHONES HELD VERTICALLY  -   COLUMNS AND FOOTER    ****************************************************************************************/
/* reset cols to fullwidth  */
@media screen and (max-width: 400px) {
	.main-content{  /* includes sidebar and main section */
		padding: .5em;
		width: 95%;
		background-color: #fdfaf2; /* was lighter #f1f7f5 */
		font-family: roboto;
		color: #333333;
	}
	


	/* grid4 */
	.col {
		width: 100% !important;
		margin-left: 0 !important;
		clear: none !important;
		margin-bottom:0;
		margin-top: 2em;
		text-align:center;
	}
	.grid4 .last{
		text-align:center;
	}
	
	/* make footer sections full width one above the other */
	.footer-wrapper .grid2 .col {
		width: 90% !important;
		margin-left: 0 !important;
		clear: none !important;
		margin-bottom:0;
	}
	
	.footer-wrapper .grid2 .last {
		text-align:center;
	}
	
	.footer-wrapper .col .socialIcons {
		padding-left: 30%;
	}
	

	
	/* MAIN CONTENT ARTICLE STYLE */
	
	article {
		width: 98%;
		margin: 0 auto;
		clear: both;
		float: none;
		border: none;
		padding: 2%;
		background-color: #fdfaf2; 
		font-family: roboto;
		color: #333333;
	}
	
	/*LEFT-HAND SIDEBAR STYLES*/
	
	aside.primary {
		float: none;
		clear: both;
		width: 98%;
		max-width: 300px;
		margin: 0 auto;
		background-color: #fdfaf2;
		color: #333333;
	}
	
}
@media screen and (max-width:479px) {
	header #large-banner {
		display: none;
}
	header #small-banner {
		display: block;
}
}