@charset "utf-8";
/* CSS Document */
<style type="text/css">

/* control appearance of ribbon select form table */
table.ribbonformtable {
	border-width: 0px;
	border-color: #666666;
	border-collapse: collapse;
}
table.ribbonformtable th {
	border-width: 0px;
	padding: 2px;
	border-style: solid;
	border-color: #666666;
}
table.ribbonformtable td {
	border-width: 0px;
	padding: 2px;
	border-style: solid;
	border-color: #666666;
}

/* control appearance of inner tables of the ribbon select form table  BEST NOT TO CHANGE THESE*/
table.innerribbonformtable {
	border-width: 0px;
	border-color: #666666;
	border-collapse: collapse;
}
table.innerribbonformtable th {
	border-width: 0px;
	padding: 2px;
	border-style: solid;
	border-color: #666666;
}
table.innerribbonformtable td {
	border-width: 0px;
	padding: 2px;
	border-style: solid;
	border-color: #666666;
}


/* control appearance of ribbons */
.hwmribbon{
	text-align:center;
	border:1px solid #000;
}

/* control appearance of ribbon name text */
.hwmribbonname{
	text-align:center;
	font-family:Tahoma, Geneva, sans-serif;
	font-size:14px;
	font-weight:bold;
}

/* control appearance of ribbon serno text */
.hwmribbonserno{
	text-align: center;
	font-family:Tahoma, Geneva, sans-serif;
	font-size:14px;
	font-weight:bold;
}

/* control appearance of ribbon description text */
.hwmribbondesc{
	text-align: left;
	font-family:Tahoma, Geneva, sans-serif;
	font-size:14px;

}

/* control appearance of ribbon select form header text */
.forminstructions{
	text-align: center;
	padding:30px;
	font-family:Tahoma, Geneva, sans-serif;
	font-size:14px;
}

/* control size of checkboxes in the ribbon select form */
.largerCheckbox{
	width: 30px;
	height: 30px;
}

/* control the appearance of the ribbon select form submit button */
.button{
  color: #000;
  font-weight: bold;
  font-size: 150%;
  text-transform: uppercase;
  width: 500px;
}

/* control appearance of sort again text */
.sortagain{
	text-align: left;
	font-family:Tahoma, Geneva, sans-serif;
	font-size:14px;
}

/* control appearance of the body tag */
body{
	 background: #E5E4C8;
}

/* ~~ this container surrounds all other divs giving them their percentage-based width ~~ */
.container {
	width: 85%;
	max-width: 1260px;/* a max-width may be desirable to keep this layout from getting too wide on a large monitor. This keeps line length more readable. IE6 does not respect this declaration. */
	min-width: 780px;/* a min-width may be desirable to keep this layout from getting too narrow. This keeps line length more readable in the side columns. IE6 does not respect this declaration. */
	background: #E9E3CD;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout. It is not needed if you set the .container's width to 100%. */
	overflow: hidden; /* this declaration makes the .container clear all floated columns within it. */
}

/* ~~ 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 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 divs around in the HTML source.

*/
.sidebar1 {
	float: right;
	width: 15%;
	background: #E9E3CD;
	padding-bottom: 10px;
}
.content {
	padding: 10px 0;
	width: 80%;
	float: right;
}






</style>
