@charset "UTF-8";
body {
	font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
	background-color: #3366CC;
	margin: 0;
	padding: 0;
}

/* ~~ Element/tag selectors ~~ */
ul {
	padding: 0;
	margin: 0;
}

h1, h2, 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: 15px;
	padding-left: 15px; /* 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: Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", serif;
	padding-top: 5px;
	padding-bottom: 5px;
	text-align: center;
}

p {
	text-align: left;
}

/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #000000;
	text-decoration: none;
	font-family: Constantia, "Lucida Bright", "DejaVu Serif", Georgia, serif;
	font-size: 12pt;
	display: block; /* set to block so padding can be used to put some space between sites */
}

a:visited {
	text-decoration: none;
}

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

nav {
	padding-top: 5px;
	padding-bottom: 5px;
	display: block; /* this gives the link block properties causing it to fill the whole menu item containing it. This causes the entire area to react to a mouse click. */
	width: 210px;  /*this width makes the entire button clickable for IE6. */
	backgrou1d-color: #99FF00;
	list-style-image: none;
}

/* ~~ This fixed width container surrounds all other blocks ~~ */
.container {
	width: 960px;
	background-color: #FFFFFF;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
	border-top-left-radius: 10px; /* needs to be repeated on the header to create the radius */
	border-bottom-right-radius: 10px; /* needs to be repeated on the footer to create the radius */
	-webkit-box-shadow: 5px 5px;
	box-shadow: 5px 5px;
}

hr {
	width:75%;
	color:#FF0000;
	
}

header {
	background-color: #FFFF00;
	color: 000000;
	border-top-left-radius: 10px; /* same as in the .container to create the radius */
	background-image: -webkit-linear-gradient(270deg,rgba(255,255,0,1.00) 2.59%,rgba(255,255,68,1.00) 23.05%,rgba(255,255,136,1.00) 40.69%,rgba(255,255,170,1.00) 61.01%,rgba(255,255,204,1.00) 80.37%,rgba(255,255,255,1.00) 100%);
	background-image: linear-gradient(180deg,rgba(255,255,0,1.00) 2.59%,rgba(255,255,68,1.00) 23.05%,rgba(255,255,136,1.00) 40.69%,rgba(255,255,170,1.00) 61.01%,rgba(255,255,204,1.00) 80.37%,rgba(255,255,255,1.00) 100%);
}
/* ~~ 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.

*/
.sidebar1 {
	float: left;
	width: 220px;
	padding-bottom: 10px;
	position:relative; /* use position to control the menu items. */
	top: 0px;
	left: 0px;
}

.content {
	padding: 5px 0;
	width: 740px;
	float: right;
	text-align: center;
}

/* ~~ The sidebar menu styles ~~ */
#basicMenu {
	visibility: visible;
	position: absolute; 
	top: 5px;
	left: 3px;
	background-color:#99FF00;
	border-top-left-radius: 5px;
	border-bottom-right-radius: 5px;
	-webkit-box-shadow: 5px 5px;
	box-shadow: 5px 5px;
}

#sampleMenu {
	visibility: hidden;
	position: absolute;
	top: 5px;
	left: 3px;
	background-color:#99FF00;
	border-top-left-radius: 5px;
	border-bottom-right-radius: 5px;
	-webkit-box-shadow: 5px 5px;
	box-shadow: 5px 5px;
}

#travelMenu {
	visibility: hidden;
	position: absolute;
	top: 5px;
	left: 3px;
	background-color: #99FF00;
	border-top-left-radius: 5px;
	border-bottom-right-radius: 5px;
	-webkit-box-shadow: 5px 5px;
	box-shadow: 5px 5px;
}

.level1 {
	padding-left: 2px;
}

.level2 {
	padding-left: 1em;
}

p {
	text-align: left;
}

/* ~~ The footer ~~ */
footer {
	padding: 10px 0 10px 0;
	background-color: #FFFF00;
	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 */
	text-align:center;
	border-bottom-right-radius: 10px; /* same as in the .container to create the radius */
	background-image: -webkit-linear-gradient(270deg,rgba(255,255,255,1.00) 2.59%,rgba(255,255,204,1.00) 23.05%,rgba(255,255,170,1.00) 40.69%,rgba(255,255,136,1.00) 61.01%,rgba(255,255,68,1.00) 80.37%,rgba(255,255,0,1.00) 100%);
	background-image: linear-gradient(180deg,rgba(255,255,255,1.00) 2.59%,rgba(255,255,204,1.00) 23.05%,rgba(255,255,170,1.00) 40.69%,rgba(255,255,136,1.00) 61.01%,rgba(255,255,68,1.00) 80.37%,rgba(255,255,0,1.00) 100%);
}

/*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 {
	display: block;
}