@charset "utf-8";
html, body {
	background:url(../images/Background-HarmonyLabels.png) center center fixed;
	background-size:cover;
	font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
	margin: 0;
	padding: 0;
	color: #666;
}

/* ~~ 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 0 0 35px;
}

li {
	list-style:url(../images/arrow2.png);
}

li:before {
    content:"";	
	font-size:8px;
	color:#CCC;
}

h1 {
	color:#236d98;
	text-align:left;
	font-weight:100;
}

h2 {
	font-size:12px;
	text-align:left;
}


h3, h4, h5, h6, p {
	font-weight:100;
	font-size:12px;
	line-height:1.7;
	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-right: 0;
	padding-left: 0; /* 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. */	
}

.titleadjust1 {
	display:block;
	margin-left:200px;
}

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;
}

a {
	text-decoration: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: #666;
	text-decoration: none; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color:#666;
}

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;
}

a.smallerlink {
	color:#666;
	font-size:80%;
}

.content {
	clear:both;
	display:block;
	color:rgba(125, 125, 125, 0.9);
	overflow:auto;
}


/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol { 
	padding: 0 15px 15px 40px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
}


.centercolwrap {
	clear:both;
	display:block;
	overflow:auto;
	margin:0 auto;
	width:700px;
	text-align:justify;
	font-size:12px;
	}

.centercol h1 {
	font-size:18px;
}

.centercol1 {
	width:300px;
	padding:20px;
	float:left;

}

.centercol2 {
	width:300px;
	padding:20px;
	float:right;
}

.centercolwrap2 {
	float:left;
	width:350px;
}

/* ~~ this fixed width container surrounds all other divs~~ */
.container {
	width: 960px;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
}

.container2 {
	width: 960px;
	background: #FFF;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
}

/* ~~ These are the columns for the layout. ~~ 

1) Padding is only placed on the top and/or bottom of the divs. The elements within these divs 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.

2) No margin has been given to the columns since they are all floated. If you must add margin, avoid placing it on the side you're floating toward (for example: a right margin on a div set to float right). Many times, padding can be used instead. For divs where this rule must be broken, you should add a "display:inline" declaration to the div's rule to tame a bug where some versions of Internet Explorer double the margin.

3) Since classes can be used multiple times in a document (and an element can also have multiple classes applied), the columns have been assigned class names instead of IDs. For example, two sidebar divs could be stacked if necessary. These can very easily be changed to IDs if that's your preference, as long as you'll only be using them once per document.

4) If you prefer your nav on the right instead of the left, simply float these columns the opposite direction (all right instead of all left) and they'll render in reverse order. There's no need to move the divs around in the HTML source.

*/
.sidebar1 {
	float: left;
	width: 180px;
	background: #EADCAE;
	padding-bottom: 10px;
}
.headercontent {
	margin: 10px auto 30px auto;
	width: 99%;
	height:15%;
}

.contentleft {
	float:left;
	width:400px;
	margin:10px 0 0 100px;
}

.nav {
	border-top-left-radius:10px;
	-moz-border-top-left-radius:10px;
	-webkit-border-top-left-radius:10px;
	border-top-right-radius:10px;
	-moz-border-top-right-radius:10px;
	-webkit-border-top-right-radius:10px;
	border-bottom-left-radius:0px;
	-moz-border-bottom-left-radius:0px;
	-webkit-border-bottom-left-radius:0px;
	border-bottom-right-radius:0px;
	-moz-border-bottom-right-radius:0px;
	-webkit-border-bottom-right-radius:0px;	
	background:none;
	color:#999;
	margin:30px auto 0 auto;
	clear:both;
	width:865px;
	padding:1px 0 1px 0;
	height:30px;
}

.nav a {
	text-transform:uppercase;
	font-size:10.6px;
	margin:0 22px 0 29px;
	padding:0;
	height:15px;
	border-right:1px;
	letter-spacing:1px;
}

.navlinks {
	width:800px;
	margin:0 auto;
}

a.nospace {
	margin-right:0;
}

.nav a:hover {
-webkit-transition: all 800ms ease;
-moz-transition: all 800ms ease;
-ms-transition: all 800ms ease;
-o-transition: all 800ms ease;
transition: all 800ms ease;	
	color:#236d98;
}

.subnav {
	width:900px;
	position:absolute;
	z-index:2;
	margin:-30px 60px 0 60px;
}

.subnav a {
	text-transform:uppercase;
	margin:0;
	color:#333;
	font-size:10px;
}

.subnav a:hover {
	color:blue;
}


.linevert {
	display:inline;
	height:100%;
	width:1px;
	color:#999;
	font-size:10px; 
	color:#999;
}
	
}

.colright {
	float:right;
}

.colright .picts {
	padding:20px;
}

.sidebar2 {
	float: left;
	width: 180px;
	background: #EADCAE;
	padding: 10px 0;
}

.flagwrap {
	width:340px;
	float:right;
}

img.flag {
	float:left;
	margin:0 10px 0 10px;
	width:30px;
	height:20px;
}

img.flag2 {
	float:left;
	margin:0 0 0 10px;
	width:30px;
	height:20px;
}

.text1 {
	float:right;
	color:#999;
	font-size:11px;
}

.text2 {
	float:left;
	display:block;
	text-align:center;
	width:100%;
	font-size:20px;
	font-weight:100;
	line-height:1.2;
	color:darkgreen;
	margin:0 auto;
	}

.text3 {
	text-align:center;
	width:70%;
	font-size:20px;
	font-weight:100;
	text-align:center;
	line-height:1.2;
	color:darkgreen;
}


/* ~~ The navigation list styles (can be removed if you choose to use a premade flyout menu like Spry) ~~ */
ul.nav {
	list-style: none; /* this removes the list marker */
	border-top: 1px solid #666; /* this creates the top border for the links - all others are placed using a bottom border on the LI */
	margin-bottom: 15px; /* this creates the space between the navigation on the content below */
}
ul.nav li {
	border-bottom: 1px solid #666; /* this creates the button separation */
}
ul.nav a, ul.nav a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
	padding: 5px 5px 5px 15px;
	display: block; /* this gives the link block properties causing it to fill the whole LI containing it. This causes the entire area to react to a mouse click. */
	width: 160px;  /*this width makes the entire button clickable for IE6. If you don't need to support IE6, it can be removed. Calculate the proper width by subtracting the padding on this link from the width of your sidebar container. */
	text-decoration: none;
	background: #C6D580;
}
ul.nav a:hover, ul.nav a:active, ul.nav a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
	background: #ADB96E;
	color: #FFF;
}

/* ~~ 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;
}
.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;
}
.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 overflow:hidden on the .container is removed */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}


.sectiontop {
	display:block;
}

.sectionbottom {
	display:block;
}


.address {
	width:400px;
	color:black;
	margin-top:20px;
	font-weight:100;
	font-size:14px;
	float:right;
	padding-bottom:10px;
	border-bottom:1px solid #236d98;
}

.slogan {
	clear:both;
	display:block;
	padding-top:4px;
	font-weight:100;
	font-size:11px;
	color:#236d98;
	letter-spacing:1.2;
	text-align:center;
	font-style:italic;

}	

.rotator {
	width:960px;
	height:300px;
	clear:both;
	display:block;
	border-radius:20px;
}
	
.rotator2 {
	float:left;
}


.leftnav  {
	display:block;
	clear:both;
	float:left;
	margin:50px 0 5px 0;
	width:150px;
	border-bottom:1px dotted #ccc;
}


.leftnav a {
	display:block;
	padding:2px 0 2px 0;
}


 .social {
	 float:right;
	 width:100px;
	 display:none;
 }

.social img {
	float:left;
	width:25px;
	height:auto;
	padding:0 5px;
}


.contentinside {
	width:980px;
}


#exhibitions {
	display:block;
	clear:both;
	margin:0 auto;
	float:none;
	width:180px;
}

#exhibition {
	float:left;
	padding-top:10px;
	color:darkgreen;
	width:150px;
	min-height:150px;
	overflow:hidden;
	text-align:center;
}

#exhibition2 {
	float:left;
	color:darkgreen;
	width:150px;
	height:auto;
	overflow-y:auto;
	overflow-x:hidden;
}

#exhibition img {
	margin:0 auto;
	text-align:center;
	width:100px;
}

#exhibition h1 {
	text-align:center;
	font-weight:bold;
	font-size:12px;
	color:green;
}

#exhibition a {
	color:green;
	font-size:12px;
}

#exhibition a:hover {
	color:#666;
}

#exhibition p {
	color:green;
	font-size:12px;
	text-align:center;
}

.style1 {
	color:#ccc;
}

.style1 a {
	color:darkgreen;
	font-size:12px;
}

.style1 a:hover {
	color:#666;
}


.contentright {
	float:right;
	margin:50px 0;
	font-size:10px;
	width:250px;
	min-height:400px;
	line-height:1.7;
}

.contentright .box {
	float:right;
	margin:10px 0;
	background:url(../images/boxpic4.jpg);
	width:200px;
	height:130px;
	border:0px solid #ccc;
}

.contentright img {
	float:left;
	margin:0 0 0 25px;
	text-align:center;
}

.contentright .box .boxheader {
	position:absolute;
	z-index:2;
	height:30px;
	width:200px;
  background: -webkit-linear-gradient(darkgreen, #333); /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(darkgreen, #333); /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(darkgreen, #333); /* For Firefox 3.6 to 15 */
  background: linear-gradient(darkgreen, #333); /* Standard syntax */
}
.contentright .box img {
	width:100%;
	height:auto;
}

.contentright p {
	font-size:90%;
}

.contentright2 {
	float:right;
	margin:50px 0;
	font-size:10px;
	max-width:150px;
	line-height:1.7;
}


.contentright2 h1 {
	font-size:14px;
	font-weight:bold;
}

.contentright2 a {
	color:#ccc;
}

.contentright2 li a {
	color:green;
}


.contentright2 .header2 {
	font-weight:100;
	font-size:15px;
	text-align:center;
}

.contentright2 a:hover {
	color:#666;
}


.contentright3 {
	float:right;
	margin:40px 0;
	font-size:10px;
	max-width:150px;
	line-height:1.7;
	padding-left:10px;
	border-left:1px solid #ccc;
	height:100%;
}


.contentright3 h1 {
	font-weight:100;
	font-size:21px;
	text-align:center;
	color:black;
}

.contentright3 p {
	margin:0;
}

.contentright3 a p {
	color:green;
}

.contentright3 a {
	color:#ccc;
}

.contentright3 a:hover {
	color:#666;
}


.contentcenter {
	background:rgba(255,255,255,0.5);
	box-shadow:2px 2px 6px #ccc;	
	margin:0px auto 0 auto;
	padding:30px 40px;
	font-size:12px;
	color:#666;
	border-radius:20px;
}


.contentcenterglossary {
	float:left;
	width:460px;
	margin:10px 40px 0 50px;
	font-size:12px;
	padding-bottom:70px;
	min-height:200px;
}

.contentcenterglossary h4 {
	display:inline;
	color:#333;
	font-weight:bold;
	line-height:1;
}

.contentcenterglossary li	{
	margin-bottom:20px;
}

.contentcenterglossary p	{
	display:inline;
	line-height:1;
}


.indexing {
	float:right;
	font-size:10px;
	color:red;
	text-transform:uppercase;
}

.indexing a {
	color:red;
}

#boxmiddle {
	margin:0 10px 0 10px;
}


.boxwrap2 {
	clear:both;
	display:block;
	margin:0 auto;
}

.boxwrap2 box {
	background:url(../images/boxpic4.jpg);
	float:left;
	width:218px;
	height:130px;
	border:0px solid #ccc;
}

.boxwrap2 .box .boxheader {
	position:absolute;
	z-index:2;
	height:30px;
	width:218px;
  background: -webkit-linear-gradient(darkred, black); /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(darkred, black); /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(darkred, black); /* For Firefox 3.6 to 15 */
  background: linear-gradient(darkred, black); /* Standard syntax */
}

.boxwrap2 .box img {
	width:100%;
	height:auto;
}

#boxmiddle {
	margin:0 10px 0 10px;
}

.rotatingtext {
	display:block;
	margin:10px 0 10px 0;s
}

.slideshow {
	clear:both;
	float:left;
	display:block;
	font-size:14px;
	margin-bottom:20px;
	color:darkred;
	width:400px;
	height:40px;
	margin:0 auto 30px auto;
}

.slide a{
	color:darkred;
}

.centercontent {
	display:block;
	clear:both;
	width:980px;
	margin:10px auto;
}


.footer {
	clear:both;	
	display:block;
	background:rgba(255,255,255,0.5);
	box-shadow:	background:white;
	box-shadow:1px 1px 8px #ccc;;
	width:920px;
	margin:50px auto;
	padding:20px;
	overflow:auto;
	border-radius:20px;
	-webkit-border-radius:20px;
	-moz-border-radius:20px;	
}



table, th, tr, td {
	border:none;
}

th {
	font-size:15px;
	font-weight:100;
}

titles {
	border:none;
}

.col {
	float:left;
	color:#999;
	width:25%;
	padding:0 15px 0 15px;
	font-size: 12px;
}

.col h1 {
	font-weight:100;
	margin:20px 0;
	padding:0;
	font-size:15px;
}

.col p {
	font-size:80%;
}

.col2 {
	color:#999;
	width:45%;
	padding:0 15px 0 15px;
	float:right;
	font-size: 12px;
}

.col2 h1 {
	font-weight:100;
	margin:20px 0;
	padding:0;
	font-size:15px;
}

.col2 p {
	font-size:95%;
}

.header {
	display:block;
	width:100%;
	height:125px;
}

.colform {
	background:#F0F0F0;
	padding:5px 10px;
	float:right;
	margin-top:0px;
	font-size: 12px;
}

.colform h1 {
	font-weight:100;
	margin:20px 0;
	padding:0;
	font-size:15px;
}

.colform p {
	font-size:80%;
}


.formcontentwrap {
	height:auto;
	overflow:auto;
	margin:0 auto;
	background:rgba(255,255,255,0.5);
	border-radius:20px;
	-moz-border-radius:20px;
	-webkit-border-radius:20px;
}

.formmain {
	font-size: 12px;
	padding:25px;
	margin:0 auto;
	vertical-align:text-top;
	 }

.formmain h1 {
	font-weight:100;
	margin:20px 0;
	padding:0;
	font-size:15px;
}

.formmain p {
}

.formquote {
	width:850px;
	float:right;
}

.formcontact {
	width:750px;
}

.address2 {
	clear:both;
	float:left;
	width:250px;
	padding:0 25px;
	font-size:13px;
	color:#999;
	line-height:1.6;
	text-align:justify;
}

.formseo {
	clear:both;
	float:left;
	width:250px;
	padding:15px;
	font-size:12px;
	color:#999;
	line-height:1.6;
	text-align:justify;
}

.formseo2 {
	clear:both;
	width:80%;
	margin:40px auto;
	font-size:12px;
	color:#999;
	line-height:1.6;
	text-align:justify;
}

.rightcoltitle {
	float:right;
	display:inline-block;
	margin:10px 0 0 20px;
	color:#333;
	font-size: 12px;
	max-width:200px;
}


submit {
	padding:0px 10px 0px 10px;
	font-size:10px;
}

submit:hover {
	cursor:poiner;
}

.credit {
	float:left;
	width:200px;
	clear:both;
	display:none;
	/*display:inline-block;*/
	color:#333;
	font-size:10px;
}

.credit a {
	color:#999;
}

.dropdownlanguage {
	position:absolute;
	z-index:2;
	padding:5px 10px 10px 10px;
	margin:20px 0 0 870px;
	max-width:80px;
	background:#CCC;
	border-radius:4px;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}

.dropdownlanguage a {
	display:block;	
	color:#666;
	font-size:10px;
	border-bottom:1px dotted white;
	padding:3px 2px 3px 2px;
}

textarea {
	max-width:250px;
	max-height:40px;
}

.photos {
	padding:30px 0;
	clear:both;
	display:inline;
	max-width:400px;
	height:110%;
	margin:0;
	font-size:140%;
	text-align:center;
}

.webs {
	overflow:auto;
	max-height:1500px;
	width:320px;
	-webkit-overflow-scrolling:touch;
}

.webs a:link .websample {
	float:left;
	width:80px;
	height:54px;
	background:url(../../Restaurant/images/blackbackground.png);
	border:1px solid #fff;
	border-radius:2px;
	-webkit-border-radius:2px;
	-moz-border-radius:2px;
	margin:8px;
}

.webs .websample img {
	width:94px;
	height:114px;
	border-radius:2px;
	-webkit-border-radius:2px;
	-moz-border-radius:2px;
}

img {
	margin-right:0;
}


.optional {
	min-height:160px;
}

.optional img {
	width:94px;
	height:114px;
	margin-right:10px;
}

.optional h2 {
	text-transform:uppercase;
}


.t2 {
	font-size:80%;
	width:560px;
}

.t2 th {
	font-weight:bold;
}

.colrightheader {
	background:#F0F0F0;
	padding:5px 10px;
	margin-top:0px;
	font-size: 12px;
 	max-width:250px; 
	height:253px; 
	float:right; 
	padding:15px; 
	line-height:1.5;
}


.submit:hover {
	background:black;
	cursor:pointer;
	color:white;
}

.pressesinstock {
	float:left;
	margin-bottom:50px;
}

.pressesinstock .listing {
	float:left;
	margin-right:30px;
}

.pressesinstock .listing img {
	float:left;
	max-width:150px;
	height:auto;
}

.pressesinstock .listing .desc {
	float:right;
	font-size:12px;
	max-width:200px;	
}

.red {
	color:red;
	font-size:10px;
}

input {
	padding-left:4px;
	border-radius:7px;
	-moz-border-radius:7px;
	-webkit-border-radius:7px;
	height:30px;
	width:240px;
}

a.color1 {
	color:red;
}

.privacypolicy {
	width:550px;
	list-style:none;
	list-style-type:none;
}

.privacypolicy ol {
	margin:20px 0 10px 0;
	padding:0;
}

.privacypolicy ol li {
	list-style:none;
	text-indent:0px;
	font-size:14px;
	font-weight:bold;
	list-style-type:none;
	color:#333;
	}
	
.myiframe {
	width:auto;
	min-height:350px;
	height:auto;	
}


.boxwrap {
	position:static;
	margin:100px auto 0 auto;
}

.box {
	background:rgba(0,0,0,0.4);
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	float:left;
	width:75px;
	height:150px;
	border:1px solid #121212;
	line-height:1.2;
	margin:0 20px 50px;
}

.boxx {
	background:rgba(0,0,0,0.4);
	border-radius:5%;
	-moz-border-radius:5%;
	-webkit-border-radius:5%;
	float:left;
	width:75px;
	height:150px;
	border:1px solid #121212;
	line-height:1.2;
	margin:0 20px 50px;
}

.box1 {
	display:none;
	width:0;
}

.box2 {
	display:none;
	width:0;
}

.box3 {
	display:none;
	width:0;
}

.box4 {
	display:none;
	width:0;
}

.box5 {
	display:none;
	width:0;
}

.shopnowbtnwrap {
	height:30px;
}

.shopnowbtn {
	display:none;
	position:relative;
	z-index:100;
	width:200px;
	border-radius:20px;
	-webkit-border-radius:20px;
	-moz-border-radius:20px;
	text-align:center;
	background:#96ca53;
	border:2px solid white;
	margin:0 auto;
	padding:5px 10px;
	font-size:18px;
	text-shadow:1px 1px 2px rgba(0,0,0,0.5);
	color:white;
}

.shopnowbtn a:link {
	font-weight:bold;
}

.shopnowbtn:hover {
	background::#96ca53;
	transition:all 0.5s;
	-webkit-transition:all 0.5s;
	-moz-transition:all 0.5s;
}

a.whitetext {
	color:#236d98;
	font-size:20px;
	text-align:center;
}

.whitetext {
	color:#236d98;
	font-size:20px;
	text-align:center;
}

.blackhover {
	margin-top:-60px;
}

.paddingpic {
	float:right;
	display:inline;
	padding: 0 0 20px 20px;
}