/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
  background-color: #353c48;
  color: #2d2e2e;
  font-family: Tahoma, Geneva, sans-serif;
  font-size: 11px;
  line-height: 14px;
  margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  text-align: center; /* Centers the page content container in IE 5 browsers. */
}
/* Commonly used to style page titles. */
h1 {
  color: #69c;
  font-size: 14px;
  font-weight: bold;
  line-height: 17px;
  padding-bottom: 5px;
}
/* Commonly used to style section titles. */
h2 {
  color: #69c;
  font-size: 12px;
  font-weight: bold;
  line-height: 14px;
}
/* Sets the style for unvisited links. */
a,  a:link {
  color: #4095df;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
  color: #4870aa;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
  color: #2170bd;
  text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #2170bd;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
  color: #039;
}
/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
  background-color: #fff;
  background-image: url(../p7ap/images/wrapback.jpg);
  background-repeat: repeat-y;
  margin: 20px auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  text-align: left; /* Redefines the text alignment defined by the body element. */
  width: 780px;
}
#outerWrapper #header {
  background-color: #9bb6d2;
  border-bottom: solid 1px #4b647f; /* Sets the bottom border properties for an element using shorthand notation */
  font-size: 18px;
  font-weight: bold;
  height: 51px;
  line-height: 15px;
  padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
#outerWrapper #contentWrapper #sidebar {
  background-color: #eaeff5;
  border-right: solid 1px #9bb6d2; /* Sets the right border properties for an element using shorthand notation */
  float: left;
  padding: 0px 0px 10px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 200px;
}
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content {
  margin-bottom: 0;
  margin-left: 200px;
  margin-top: 0;
  padding: 20px 20px 20px 20px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  background-color: #FFFFFF;
	background-image: url(../p7ap/images/p7ap_light_gray_bevel.jpg);
	background-repeat: repeat-x;
}
/* Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and before the close of the container with floated elements. */
#outerWrapper #contentWrapper .clearFloat {
  clear: left;
  display: block;
}
#outerWrapper #footer {
  background-color: #eaeff5;
  border-top: solid 1px #9bb6d2; /* Sets the top border properties for an element using shorthand notation */
  padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
.imgfloatright {
	float: right;
	margin-left: 20px;
	
}
.imgfloatright img, .collimg img  {
	border: 1px solid #9BB6D2;
}
.imgborder {
	border: 1px solid #9BB6D2;
}
.imgfloatleft {
	float: left;
	border: 1px solid #9BB6D2;
	margin-right: 20px;
	margin-top: 10px;
}
.center, .collimg {
	text-align: center;
}

#crest {
	width: 160px;
	background-color: #fff;
	padding: 20px;
	border-bottom: 1px solid #9BB6D2;
	background-image: url(../p7ap/images/p7ap_light_gray_bevel.jpg);
	background-repeat: repeat-x;
}
#sideadd {
	margin: 10px;
}
.redtext {
	color: #F00;
}
#charmwrap {
	float: left;
	width: 100%;
	margin-top: 10px;
	border-bottom: 1px dotted #353c48;
	padding: 10px 0px;
	margin-bottom: 10px;
}
#charmwrap p {
	margin: 5px;
}
.engraving {
	width: 75px;
}
.alignField { margin-bottom: 7px; }
.addToCart {
	width: 100%;
	border-bottom: 1px dotted #353c48;
	margin-top: 20px;
}
.addToCart td {
	padding: 10px 0px;
}
.textright {
	text-align: right;
}
#EngWrap, #sizer {
	background-color: #EAEFF5;
	padding: 20px;
	text-align: left;
}
.hidden, .hidden1, .hidden2, .hidden3 {
	display: none;
}
.show, .show1, .show2, .show3 {
	display: block;
}
#CartAdd {
	margin-top: 10px;
	border-top: 1px solid #9bb6d2;
	padding-top: 10px;
}
li strong {
	color: #4b647f;
}
.indent {
	margin-left: 40px;
}
.imglink {
	border: 0;
}
.eC_Clean_Nautica_Arial{
	font-family:Arial, Helvetica, sans-serif; /* Font Style */
	font-size:x-small;
	color: #2A2D2E; /* Neutral_Black */
	width:514px;
}

.eC_Clean_Nautica_Arial a:link,  .eC_Clean_Nautica_Arial a:visited, .eC_Clean_Nautica_Arial a:hover,  .eC_Clean_Nautica_Arial a:active {
	color:#CA0009; /* Link */	
}

.eC_Clean_Nautica_Arial h1, .eC_Clean_Nautica_Arial h2, .eC_Clean_Nautica_Arial h3{
	color:#3B62A6; /* Accent_1 */
	margin-bottom:7px;
}

.eC_Clean_Nautica_Arial h1{
	font-size:large;
}

.eC_Clean_Nautica_Arial h2{
	font-size:medium;
}

.eC_Clean_Nautica_Arial h3{
	font-size:small;
}

.eC_Clean_Nautica_Arial table {
	font-size:x-small;
	width:100%;
}

.eC_Clean_Nautica_Arial form{
	margin:0;
	padding:0;
}

.eC_Clean_Nautica_Arial strong{
	font-weight:bold;
}

.eC_Clean_Nautica_Arial input, .eC_Clean_Nautica_Arial textarea{
	font-size:x-small;
}
.eC_Clean_Nautica_Arial .eC_ButtonWrapper{

}

.eC_Clean_Nautica_Arial .eC_ButtonWrapper th{
	text-align:left;
	padding:7px 0px 5px 0px;
	border:solid 0px #AEBBC2; /* Neutral_Dark */
}

.eC_Clean_Nautica_Arial .eC_ButtonWrapper td{
	text-align:right;
	padding:7px 0px 5px 0px;

}

.eC_Clean_Nautica_Arial .eC_ButtonWrapper input{

}
.eC_Clean_Nautica_Arial_QuickCart{
	border-top:solid 1px #AEBBC2; /* Neutral_Dark */
	border-bottom:solid 1px #AEBBC2; /* Neutral_Dark */
	color:#2E3645; /* Accent5 */
	width:160px;
}


.eC_Clean_Nautica_Arial .eC_QuickCartHeader{
	border-bottom:solid 1px #AEBBC2; /* Neutral_Dark */
}

.eC_Clean_Nautica_Arial .eC_QuickCartLabel{
	padding:10px 0px 10px 7px;
}

.eC_Clean_Nautica_Arial .eC_QuickCartQuantity{
	text-align:left;
	padding:10px 0px 10px 7px;
}

.eC_Clean_Nautica_Arial .eC_QuickCartTotal{
	text-align:right;
	padding:10px 10px 10px 7px;
}
#shipvatdiv {
	background-color: #EAEFF5;
	width: 80%;
	margin: auto;
	padding: 20px;
}
#shipvatdiv table {
	background-color: #FFF;
	width: 90%;
	margin: auto;
}
#cform p {
	margin-left: 20px;
}
#cform label {
	width: 150px;
	float: left;
	margin-left: 50px;
}
#cform input, #cform textarea {
	background-color: #EAEFF5;
	border: 1px solid #69C;
}
.submit {
	text-align: right;
	border-top: 1px solid #69C;
	width: 80%;
	margin: auto;
	padding-top: 10px;
}
#mapwrap {
	
	margin: 10px auto;
	border: 1px solid #597DA2;
	padding: 5px;
}
#mapwrap div {
	margin: auto;
	
}
#logolist, #logolist2, #logolist3 {
	width: 176px;
	margin: auto;
	border: 1px solid #FFF;
}
#logolist td.logo, #logolist2 td.logo, #logolist3 td.logo {
	height: 111px;
	vertical-align: middle;
	text-align: center;
}
#logolist td.caption, #logolist2 td.caption, #logolist3 td.caption {
	height: 25px;
	vertical-align: middle;
	text-align: center;
	background-color: #EAEFF5;
}
#logolist td.caption a, #logolist2 td.caption a, #logolist3 td.caption a {
	font-weight: normal;
}
#logowrap, #logowrap2, #logowrap3, #logowrap4 {
	width: 528px;
	margin: auto;
}
h3.indexHeader {
	background-color:#EAEFF5; /* Global_Gray_Light */
	color: #69c;
	padding: 5px 7px; 
	border-top:solid 1px #AEBBC2; /* Neutral_Dark */
	border-bottom:solid 1px #AEBBC2; /* Neutral_Dark */
	font-size: small;
	margin-top: 10px;
	
}
h3.indexheader a {
	display: block;
}
.noborder {
	border: 0px solid #FFF!important;
}
#header img {
	border: 0px;
}.adminbak {
	background-color: #FFFFFF;
	text-align: left;
	padding: 6px;
}
.bigblue {
	color: #69c;
  font-size: 14px;
  font-weight: bold;
}
.smallfont {
	font-size: 0.9em;
}
.orange {
	background-color: #FFA042!important;
}
.uline {
	border-bottom: 1px solid #69c;
	padding-bottom: 5px;
}
#cc_form table.botborder {
	border-bottom: solid 1px #AEBBC2;
	padding-bottom: 8px;
	margin-bottom: 10px;
}