@charset "utf-8";
/* CSS Document */

body {
	font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
	background: #ede8e8;
	margin: 0;
	padding: 0;
	color: #000;
}

/* ~~ 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, 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-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: #42413C;
	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: #6E6C64;
	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;
}

/* ~~this fixed width container surrounds the other divs~~ */
/*.container {
	width: 780px;
	background: #ede8e8;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
}

/* ~~ 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 {
	background: #ADB96E;
}

/* ~~ 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. 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.

*/

.content {
	padding: 10px 0;
	width: auto;
	float: left;
}

/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol { 
	padding: 0 50px 50px 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. */
	font-size:12px;
}
.content h1{
	font-size:22px;
	font-weight:bold;
	text-align:center;
}
.content h2{
	font-size:16px;
	font-weight:bold;
}
.content h3{
	font-size:14px;
	font-weight:bold;
}
.content h4{
	font-size:12px;
	font-weight:bold;
}
.content p{
	font-size:12px;
	font-weight:normal;
}
.content table{
	font-size: 12px;
	border-collapse: collapse;
	border: none;
	border-width:thin;
	padding: 20px;
	spacing: 0px;
}
/*

/* ~~ The footer ~~ */
.footer {
	padding: 10px 0;
	background: #625f5f;
	position: relative;/* this gives IE6 hasLayout to properly clear */
	clear: both; /* this clear property forces the .container to understand where the columns end and contain them */	font-size:11px;
	color: #87c2f5;
}
.copyright a {
	font-size:11px;
	color: #87c2f5;
	float:left;
}
.footer_right a {
	font-size:11px;
	color: #a3e5f6;
	float:right;
}
/* ~~ 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;
	max-width: 435px;
}
.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;
	max-width: 530px;
}
.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;
}
.content  .rightimage {
	float: right;
	margin-left: 15px;
	margin-right: 15px;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	padding-bottom: 0px;
	max-width: 100%;
}
.content  .leftimage {
	float: left;
	margin-left: 15px;
	margin-right: 15px;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	max-width: 100%;
}
.content .centerimage{
	text-align:center;
	margin-left: 10px;
	border: none;
	max-width: 100%;
}
.content .rightimage p, .leftimage p, .centerimage p {
	text-align:	left;
	font-size: 12px;
}
.content .centerimage p {
	text-align:center;
	font-size: 12px;
}
.content .inpagenav {
	color: #006699;
	margin-bottom: 10px;
	font-size: 10px;	
}

.menu {max-width:780px; height:32px; position:relative; z-index:100;border-right:1px solid #87c2f5; font-family:arial, sans-serif;}
/* hack to correct IE5.5 faulty box model */
/** html .menu {width:780px; w\idth:780px;}*/
/* remove all the bullets, borders and padding from the default list styling */
/*.menu ul {padding:0;margin:0;list-style-type:none;}
.menu ul ul {width:145px;}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
/*.menu li {float:left;width:156px;position:relative;}
/* style the links for the top level */
.menu a, .menu a:visited {float:left; display:block;font-size:12px;text-decoration:none; color:#fff; width:85px; height:30px; border:1px solid #585752; border-left-width:1px; border-right-width:1px ; background:#93b5d2; padding-left:10px; line-height:29px; font-weight:bold;}
.menu .icon {display:none;}
/* a hack so that IE5.5 faulty box model is corrected */
/** html .menu a, * html .menu a:visited {width:145px; w\idth:145px;}
/* style the first level background */
/*.menu ul a.drop, .menu ul a.drop:visited {background:#87c2f5; 145px center;}
/* style the second level background */
/*.menu ul ul a.drop, .menu ul ul a.drop:visited {background:#87c2f5; 145px center;}
/* style the second level hover */
/*.menu ul ul a.drop:hover{background:#87c2f5; 145px center;}
.menu ul ul :hover > a.drop {background:#87c2f5; 145px center;}
/* style the third level background */
/*.menu ul ul ul a, .menu ul ul ul a:visited {background:#87c2f5;}
/* style the third level hover */
/*.menu ul ul ul a:hover {background:#87c2f5;}


/* hide the sub levels and give them a positon absolute so that they take up no room */
/*.menu ul ul {visibility:hidden; position:absolute;height:0;top:31px;left:0; width:156px;border-top:1px solid #000;}
/* another hack for IE5.5 */
/** html .menu ul ul {top:30px;t\op:31px;}

/* position the third level flyout menu */
/*.menu ul ul ul{left:145px; top:-1px; width:156px;}

/* position the third level flyout menu for a left flyout */
/*.menu ul ul ul.left {left:-145px;}

/* style the table so that it takes no ppart in the layout - required for IE to work */
/*.menu table {position:absolute; top:0; left:0; border-collapse:collapse;;}

/* style the second level links */
/*.menu ul ul a, .menu ul ul a:visited {background:#c6c9cb; color:#000; height:auto; line-height:1em; padding:5px 5px; width:145px;border-width:0 1px 1px 1px;}
/* yet another hack for IE5.5 */
/** html .menu ul ul a, * html .menu ul ul a:visited {width:145px;w\idth:145px;}

/* style the top level hover */
.menu a:hover, .menu ul ul a:hover{color:#000; background:#87c2f5;}
.menu :hover > a, .menu ul ul :hover > a {color:#000; background:#87c2f5;}

/* make the second level visible when hover on first level list OR link */
/*.menu ul li:hover ul,
.menu ul a:hover ul{visibility:visible;}
/* keep the third level hidden when you hover on first level list OR link */
/*.menu ul :hover ul ul{visibility:hidden;}
/* make the third level visible when you hover over second level list OR link */
/*.menu ul :hover ul :hover ul{ visibility:visible;}


/**
*	Really Simple™ Slideshow -- CSS
*/

/*.rs-slideshow {
	border: 12px solid #444;
	border-radius: 12px;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	-khtml-border-radius: 12px;
	height: 240px;
	margin: 24px auto;
	overflow: hidden;
	position: relative;
	width: 620px;
}

.rs-slideshow .slide-container {
	background-color: #444;
	position: absolute;
	height: 100%;
	left: 0;
	overflow: hidden;
	top: 0;
	width: 100%;
}

.rs-slideshow .slide-container img {
	position: relative;
}

.rs-slideshow .slide-container .slide-caption {
	background-color: #000;
	bottom: 0;
	color: #fff;
	display: block;
	left: 0;
	padding: 6px 12px;
	position: absolute;
	text-align: center;
	right: 0;
	filter: alpha(opacity=70); /* internet explorer */
/*	-khtml-opacity: 0.7;      /* khtml, old safari */
/*	-moz-opacity: 0.7;       /* mozilla, netscape */
/*	opacity: 0.7;           /* fx, safari, opera */
/*}

.rs-slideshow .slides {
	display: none;
}

.rs-slideshow .slide-container img,
.rs-slideshow .slide-container .slide-caption,
.rs-slideshow .slide-container a {
	filter: inherit;
}


/**
*	These styles make the list of links to slide images visible to users
*	who don't have JavaScript enabled. By adding the 'no-js' class to 
*	the HTML element, and using Modernizr to remove this class for JS
*	users, we can style for both scenarios.
*	http://www.modernizr.com/
*/

/*.no-js .rs-slideshow {
	height: auto;
}
.no-js .rs-slideshow .slide-container, 
.no-js .rs-slideshow .slide-container img {
	position: relative;
}
.no-js .rs-slideshow .slides {
	display: block;
	margin: 24px 48px;
}
.no-js .rs-slideshow .slides li {
	margin: 0;
}



/**
*	The following styles are used in the demos with slideshow controls, 
*	such as play/pause and prev/next buttons.
*/

/*.rs-controls {
	clear: both;
	margin: 12px auto;
	width: 620px;
}
.rs-play-pause, .rs-prev, .rs-next {
	float: left;
	margin-right: 12px;
}
.rs-controls ul {
	float: left;
	list-style: none;
	margin: 0 6px 0 0;
	padding: 0;
}
.rs-index-list li {
	float: left;
	margin-right: 6px;
}
.rs-controls a {
	background-color: #eee;
	border: 1px solid #ddd;
	/*border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-khtml-border-radius: 3px;*/
/*	color: #444;
	display: block;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	padding: 3px 5px;
	text-decoration: none;
}
.rs-controls a:hover {
	background-color: #ddd;
	color: #444;
}
.rs-controls .rs-active {
	background-color: #444;
	border: 1px solid #444;
	color: #eee;
}


#callback-messages,
#slide-class-message {
	margin: 48px auto;
	width: 620px;
}
.slide-container.some-custom-class .slide-caption {
	background-color: #890;
	font-size: 3em;
	font-style: italic;
	font-weight: bold;
	text-align: right;
	top: 0;
	width: 28%;
}



/*	Clearfix	*/
.clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
.clearfix { display: inline-block; }
* html .clearfix { height: 1%; } /* Hides from IE-mac \*/
.clearfix { display: block; }



.leftmenu {
  float:left;
  width:20%;
  text-align:center;
}
.leftmenu a {
  background-color:#93b5d2;
  padding:8px;
  margin-top:7px;
  display:block;
  width:80%;
  color:black;
}
.main {
  float:left;
  width:80%;
  padding:0 20px;
}
.rightblock {
  background-color:#e5e5e5;
  float:left;
  width:20%;
  padding:15px;
  margin-top:7px;
  text-align:center;
}

/* Dropdown container - needed to position the dropdown content */
.dropdown {
  float: left;
  overflow: hidden;
}

/* Style the dropdown button to fit inside the topnav */
.dropdown .dropbtn {
  font-size: 12px;
  border-right:1px;
  outline: none;
  color: white;
  padding: none;
  background-color: #93b5d2;
  font-family: arial;
  margin: 0;
   width:98px; height:32px; border:1px solid #585752; border-left-width:1px; border-right-width:1px; font-weight:bold;
}

/* Style the dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;

  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
   
}

/* Style the links inside the dropdown */
.dropdown-content a {
  float: none;
  color: black;
  padding: none;
  text-decoration: none;
  display: block;
  text-align: left;
    background-color: #1fb0ae;  
}

/* Add a dark background on topnav links and the dropdown button on hover */
.menu a:hover, .dropdown:hover .dropbtn {
  background-color: #87c2f5;
  color:black;
}

/* Add a grey background to dropdown links on hover */
.dropdown-content a:hover {
  background-color: #1fb0ae;
  color: black;
   
}

/* Show the dropdown menu when the user moves the mouse over the dropdown button */
.dropdown:hover .dropdown-content {
	width:98px;
  display: block;
}

@media only screen and (max-width:620px) {
  /* For mobile phones: */
  .leftmenu, .main, .rightblock {
    width:90%;
  }
}

 /* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 600px) {
  .menu a:not(:first-child), .dropdown .dropbtn  {display: none;}
  .menu a.icon {
    float: right;
    display: block;
  }
}
/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 600px) {
  .menu.responsive {position: relative;}
  .menu.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .menu.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
   .menu.responsive .dropdown {float: none;}
  .menu.responsive .dropdown-content {text-align: left; position: relative;}
  .menu.responsive .dropdown .dropbtn {

    display: block;
    text-align: left;
  }
} 
.burger {
  display: inline-block;
  cursor: pointer;
}

.bar1, .bar2, .bar3 {
  width: 30px;
  height: 2px;
  background-color: #333;
  margin: 6px 0;
  transition: 0.4s;
}