<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* CSS Document */

body {
	font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
	margin: 0;
	padding: 0;
	color: #000;
	background-color: #52D0DE;
	width: 100%;
}
/* ~~ 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 {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing block. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 1em;
	padding-left: 1em; /* adding the padding to the sides of the elements within the blocks, instead of the block elements themselves, gets rid of any box model math. A nested block with side padding can also be used as an alternate method. */
}
h1 {
	font-family: covered-by-your-grace;
	font-style: normal;
	font-weight: 400;
	margin-left: -21px;
	min-height: 0px;
	padding-top: 0px;
	padding-bottom: 0px;
	margin-top: -80px;
}
.logo {
	float: none;
	width: 75px;
	margin-left: 12px;
	visibility: hidden;
}
h2 {
	text-align: center;
}
p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing block. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 1.5em;
	padding-left: 1.5em; /* adding the padding to the sides of the elements within the blocks, instead of the block elements themselves, gets rid of any box model math. A nested block with side padding can also be used as an alternate method. */
	margin-bottom: .5em;
}
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: #f78ccd;
	text-decoration: none;
	text-shadow: 0px 2px #000000;
}
a:visited {
	text-decoration: underline;
	color: #f78ccd;
}
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;
	color: #2958b6;
}
/* ~~ This fixed width container surrounds all other blocks ~~ */
.container {
	width: 100%;
	background-color: #FFFFFF;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 6em;
}
aside {
	width: 40%;
	margin-left: 16px;
	padding-left: 10px;
	padding-right: 10px;
	float: right;
	margin-bottom: 0px;
}
/* ~~ The header is not given a width. It will extend the full width of your layout. ~~ */
header {
	padding-top: 5px;
	padding-right: 0;
	padding-left: 0;
	width: 100%;
	height: 71px;
	line-height: 50px;
	background-color: #000034;
	color: #FFFFFF;
	padding-bottom: 0px;
}
.map {
	width: 743px;
	margin-left: auto;
	margin-right: auto;
}
header a:hover, header a:active, header a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
	color: #FFF;
}
header a, header a:link, header a:visited {
	color: #fff;
}
/* ~~ These are the columns for the layout. ~~

1) Padding is only placed on the top and/or bottom of the block elements. The elements within these blocks 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 block 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 block element and place a second block element 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 block set to float right). Many times, padding can be used instead. For blocks where this rule must be broken, you should add a "display:inline" declaration to the block element'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 blocks 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 left instead of the right, simply float these columns the opposite direction (all left instead of all right) and they'll render in reverse order. There's no need to move the blocks around in the HTML source.

*/

.content {
	margin-top: 1em;
	color: #000000;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol {
	padding-top: 1em;
	padding-right: 1em;
	padding-left: 1em;
	padding-bottom: 1em;
}

/* ~~ The navigation list styles (can be removed if you choose to use a premade flyout menu like Spry) ~~ */
nav {
}

nav ul{
}
nav li {
	float: none;
}
nav a:hover, nav a:active, nav a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
	color: #FFF;
}
nav a, nav a:link, nav a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
	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: 100%;  /*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;
	text-align: center;
	margin-bottom: 0.5em;
	padding-top: 0.5em;
	padding-bottom: 0.5em;
	color: #000000;
	font-size: 1.25em;
}

/* ~~ The footer ~~ */
footer {
	visibility: hidden;
}

/*HTML 5 support - Sets new HTML 5 tags to display:block so browsers know how to render the tags properly. */
header, section, footer, aside, article, figure {
	display: block;
}
.clearfloat {
	clear: both;
}
img {
	max-width: 100%;
	height: auto;
}
.hamburger{
	background: none;
	position: absolute;
	top: 0;
	right: 0;
	line-height: 45px;
	padding-right: 30px;
	padding-left: 15px;
	padding-bottom: 0px;
	color: #fff;
	border: 0;
	font-size: 1.4em;
	font-weight: bold;
	cursor: pointer;
	outline: none;
	z-index: 10000000000000;
	padding-top: 15px;
} .cross{
	background: none;
	position: absolute;
	top: 0px;
	right: 0;
	padding-top: 15px;
	padding-right: 30px;
	padding-left: 15px;
	padding-bottom: 0px;
	color: #fff;
	border: 0;
	font-size: 3em;
	line-height: 65px;
	font-weight: bold;
	cursor: pointer;
	outline: none;
	z-index: 10000000000000;
}
.menu{
	z-index: 1000000;
	font-weight: 400;
	font-size: 1.1em;
	width: 100%;
	background-color: #2958b6;
	position: absolute;
	text-align: center;
	font-family: aclonica;
	font-style: normal;
}
.menu ul {margin: 0; padding: 0; list-style-type: none; list-style-image: none;}
.menu li {display: block; padding:15px 0 15px 0; border-bottom:#1d1f20 1px solid;}
.menu li:hover{
	display: block;
	background-color: #f78ccd;
	padding-top: 15px;
	padding-right: 0;
	padding-left: 0;
	padding-bottom: 15px;
	border-bottom: #1d1f20 1px solid;
}
.menu ul li a { text-decoration:none; margin: 0px; color:#fff;}
.menu ul li a:hover { color: #fff; text-decoration:none;}
.menu a{text-decoration:none; color:white;}
.menu a:hover{text-decoration:none; color:white;}
.glyphicon-home{
	color: white;
	font-size: 1.5em;
	margin-top: 5px;
	margin: 0 auto;
}
.sale {
	text-align: center;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 1em;
	font-weight: bold;
}
@media all and (min-width: 641px) {
	body {
	font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
	margin: 0;
	padding: 0;
	color: #000;
	background-color: #68EBE1;
	background-image: -webkit-linear-gradient(270deg,rgba(104,235,225,1.00) 0%,rgba(228,188,150,1.00) 100%);
	background-image: -moz-linear-gradient(270deg,rgba(104,235,225,1.00) 0%,rgba(228,188,150,1.00) 100%);
	background-image: -o-linear-gradient(270deg,rgba(104,235,225,1.00) 0%,rgba(228,188,150,1.00) 100%);
	background-image: linear-gradient(180deg,rgba(104,235,225,1.00) 0%,rgba(228,188,150,1.00) 100%);
	}
	h1 {
	font-family: covered-by-your-grace;
	font-style: normal;
	font-weight: 400;
	margin-left: 140px;
	min-height: 0px;
	padding-top: 0px;
	padding-bottom: 0px;
	margin-top: -80px;
}
.logo {
	float: none;
	width: 75px;
	margin-left: 90px;
	visibility: visible;
}
	.container {
	max-width: 60em;
	background-color: #FFFFFF;
	margin-top: 3em;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 1em;
	border-radius: 15px;
	padding-top: 6px;
	}
.safety {
	margin-left: auto;
	margin-right: auto;
	width: 764px;
}
	nav {
		border-top: .0625em solid #666;
		border-bottom: .125em solid #666;
		height: 1.9em;
		background-color: #C6D580;
		margin-bottom: 1em; /* this creates the space between the navigation on the content below */
		padding-left: 1em;
	}

	nav ul{
		list-style: none; /* this removes the list marker */

	}
	nav li {
		float: left;
	}
	nav a, nav a:link, nav a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
	padding: .25em .25em .25em 1em;
	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;
	text-align: left;
	font-size: 1em;
	}
	nav a:hover, nav a:active, nav a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
	color: #FFF;
	}
	footer {
	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 */
	visibility: visible;
	padding-left: 1em;
	padding-bottom: 1em;
	padding-top: 1em;
	padding-right: 1em;
	text-align: center;
	}
h5 {
}
}
</pre></body></html>