
/* default 0 paddings */
html, 
body, 
form {
	padding: 0px ;
	margin: 0px ; 
}

/* general font sizing */
body, 
input, 
select, 
textarea, 
button, 
h1, 
h2,
h3
h4,
h5, 
h6 {
	font-family: 'Armata', sans-serif;
	font-size: 12px ;
	line-height: 1.25; /* should never change */
}

/* general font color */
body {
	color: #000000;
}

p,
.par {
	margin: 12px 0px; /* top and bottom padding should match font-size */
}

p:first-child,
.par:first-child {
	/*margin-top: 0px; */
}

p,
.par, 
blockquote,
ul,
ol, 
menu,
.lh {
	line-height: 1.75; /* set general line height if different than standard (no units is multiplied by font size) */
}

/* set heading styles - always set top and bottom margins */
h1 {
	font-size: 24px ;
	font-weight: bold ;
	letter-spacing: -2px ;
	color: #1F6F71 ;
	margin-top: 0px ;
	margin-bottom: 12px;
}

.content > h1:first-child {
	margin-top: 0px; 
}

h2 {
	font-size: 18px ;
	font-weight: normal ;
	letter-spacing: -1px ;
	color: #1F6F71 ;
	margin-top: 12px; 
	margin-bottom: 12px; 
}

h3 {
	margin-top: 12px; 
	margin-bottom: 12px; 
}

h3,
.inline_h,
.h {
	color: #1F6F71 ;
	font-size: 13px ;
	font-weight: bold ;
	letter-spacing: -1px ;
}

h4 {
	font-size: 1.5em;
	margin-top: 11px; 
	margin-bottom: 0px; 
}

h5 {
	font-size: 1.25em;
	margin-top: 11px; 
	margin-bottom: 0px; 
}

h6 {
	margin-top: 11px; 
	margin-bottom: 0px; 
}

.inline {
	display: inline; 
}


/* set anchor styles */
a, 
a:link {
	color: #1f6f71;
}

a:active, 
a:visited {
	color: #113c3d;
}

a:hover {
	color: #ff9c01;
}

/* default table properties */
table {
	border-collapse: collapse ;
}

/* default image properties */
img {
	; 
	border-collapse: separate; /* for ie9 */
}

/* hr styles */
hr {
	margin: 6px 0px; 
	padding: 0px;
	border: none; 
	border-top: solid 1px #000;
	border-bottom: solid 1px #fff;
	opacity: 0.4;
}

/*	template styles	*/

body {
	background-image: url(/images/page-bg.jpg) ;
	background-position: center;
	background-repeat: no-repeat ;
	background-attachment: fixed ;
	background-size: auto auto ;
	background-color: #fff ;
}

.body {
	margin: 0px; /* never change cos of ie6 */
	padding: 0px ;
	position: relative; 
}

.container {
	width: 980px;
	margin: auto;
	border: solid 1px #ffffff;
}

.page_top {
	background-color: #111111;
	border-bottom: solid 1px #ffffff;
}

.page_top a img {
	border: 0px !important; 
}

.info_bar {
	background-color: #ff5900;
	padding: 15px;
	text-align: center;
	
	font-weight: bold;
	color: #fff;
}

.navigation_bar {
	background-color: #ff5900;
	border: solid 0px #ffffff;
}

.page_body_div {
	border-top: solid 1px #ffffff;
}

.page_body_table {
	width: 100%;
}

.nav_cell {
	background-color: #111111;
	width: 250px;
	border: solid 0px #ffffff;
	vertical-align: top;
}

.content_cell {
	background-color: #ffffff;
	border: solid 0px #ffffff;
	vertical-align: top;
}

.content {
	padding: 20px ;
}

/* nav button styles */

a.button, 
a.button:link, 
a.button:active, 
a.button:visited {
	display: block ;
	color: #fff ;
	text-decoration: none ;
	font-size: 18px ;
	font-weight: bold ;
	letter-spacing: -1px ;
	text-align: center ;
	padding: 8px 12px ;
	background: none ;
	border-left: 1px solid #1F6F71 ;
	border-right: 1px solid #113C3D ;
}

a.button:hover {
	background: url(/images/button-up.png) center no-repeat ;
}

/* nav sub */

.nav li ul li a {
	width: 250px; 
}

a.button_sub, 
a.button_sub:link, 
a.button_sub:active, 
a.button_sub:visited {
	font-size: 12px ;
	font-weight: normal ;
	text-decoration: none ;
	color: #fff ;
	background: #111 ;
	padding: 3px 12px ;
}

a.button_sub:hover {
	background: #333 ;
}

/* footer styles */

.foot,
.foot a:link,
.foot a:active,
.foot a:visited {
	color: #666666 ;
	text-decoration: none ;
}
.foot a:hover {
	text-decoration: underline ;
}

/* link_white */

a.link_white, 
a.link_white:link, 
a.link_white:active, 
a.link_white:visited {
	color: #ffffff ;
	text-decoration: none ;
}

a.link_white:hover {
	text-decoration: underline ;
}

/* nav */

.nav {
	margin: 0px;
	padding: 0px;
	overflow: visible;
	list-style: none;
	list-style-image: none;
	clear: both;
}

.nav li {
	display: inline-block;
}


.nav li a {
	display: block ;
}

.nav li {
	width: 100%; 
	margin: 0px;
	padding: 0px;
	position: relative;
}

/* sub nav */
.nav li ul {
	display: none;
	margin: 0px ;
	padding: 0px ;
	position: absolute;
	list-style: none;
	list-style-image: none;
}
.nav_horizontal li ul {
	left: 0;
	top: 100%;
}
.nav_vertical li ul {
	left: 100%;
	top: 0;
}

.nav li:hover > ul {
	display: block;
	z-index: 2;
}
.nav li ul li a {
	display: block;
}

/* sub-sub nav */
.nav li ul li ul {
	display: none;
}
.nav li ul li:hover ul {
	left: 100%;
	top: 0;
}


/* misc standard styles */

img.img_float {
	clear: right; 
	float: right;
	border: solid 1px #111111;
	margin: 0px 0px 10px 10px; 
}

.box {
	border: solid 1px #ffffff; 
}

.box_h {
	border: solid 1px #ffffff; 
	background-color: #ffffff;
	color: #ffffff; 
	font-weight: bold; 
	padding: 5px; 
}

.box_c {
	padding: 5px; 
}

.gb {
	font-weight: bold; 
	color: #999999;
}

.google_info_win {
	font-size: 12px ;
	margin-top: 10px ;
	line-height: 1.5 ;
}

/* overlay */


.overlay_cont {
	position: relative; 
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.5);
	border-collapse: separate; 
	margin: 10px; 
	border: solid 6px #d5d5d5; 
	border-radius: 20px; 
	background-color: #ffffff;
	padding: 0px 20px; 
}

.overlay_cont h2 {
	text-shadow: 2px 2px .1em rgba(0, 0, 0, 0.2);
}

.overlay_close {
	display: block; 
	position: absolute ;
	top: -9px; 
	right: 14px; 
	border: solid 1px #b5b5b5;
	border-top-right-radius: 2px;
	border-top-left-radius: 2px; 
	border-bottom-right-radius: 6px;
	border-bottom-left-radius: 6px; 
	background-color: #dddddd; 
	background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.15) , rgba(0, 0, 0, 0.1) ); 
	padding: 3px 6px; 
	text-decoration: none; 
	line-height: 1;
	color: #7f7f7f !important; 
	text-shadow: 0px 0px .1em rgba(255, 255, 255, 1);
}

.overlay_close:hover {
	background-color: #cacaca; 
	border-color: #aaaaaa;
	color: #6a6a6a !important; 
}

.proc_win {
	padding: 40px 75px; 
	background-color: #eee; 
	text-align: center; 
}

.proc_win h2 {
	font-size: 26px; 
	font-weight: normal;
	margin-top: 0px;
	margin-bottom: 12px; 
}

/* done box */


.done {
	margin-bottom: 12px; 
	background-color: #e7e7e7; 
	text-align: center; 
	color: #111111; 
	border: solid 1px #111111; 
}

.done_standard, 
.done_message {
	margin: 6px; 
}

.done_message p {
	margin: 6px 0px; 
}

.done_message > *:first-child {
	margin-top: 0px; 
}
.done_message > *:last-child {
	margin-bottom: 0px; 
}

.done_1 {
	
}
.done_0 {
	font-style: italic; 
}

.done_1 .done_standard {
	font-weight: bold; 
}

.done_0 .done_standard {
	font-weight: bold; 
}

.done_message {
	
}

/* missing items box */

.missing {
	margin-bottom: 12px;
	background-color: #e7e7e7; 
	padding: 6px;
	text-align: center; 
	color: #111111; 
	font-size: 1.6em; 
	border: solid 1px #111111; 
}

/* jquery */

.ui-datepicker {
	font-family: Verdana,Arial,Sans-Serif;
	font-size: 12px !important; 
	font-weight: normal; 
	z-index: 4000 !important;
}

img.ui-datepicker-trigger {
	cursor: pointer;
	position: relative;
	left: 0px; 
	top: 5px;
}

/* share this */

.shareThis, .addThis {
	float: right ;
	margin-left: 20px ;
	margin-bottom: 10px; 
}

.shareThis a, 
.shareThis a:link,
.shareThis a:active,
.shareThis a:visited,
.addThis a, 
.addThis a:link,
.addThis a:active,
.addThis a:visited {
	text-decoration: none ;
	color: #1C6E35 ;
	font-size: 12px ;
}

.addThis a:hover,
.shareThis a:hover {
	text-decoration: underline ;
}

.addThis a, 
.addThis a:link, 
.addThis a:active,
.addThis a:hover,
.addThis a:visited {
	color: #FE6D4C ;
}

}
<br />
<b>Warning</b>:  include_once(E:/admin/websites/customers/flangebolts.com/s10/common/style.css) [<a href='function.include-once'>function.include-once</a>]: failed to open stream: No such file or directory in <b>E:\admin\websites\customers\flangebolts.com\s10\style.css</b> on line <b>302</b><br />
<br />
<b>Warning</b>:  include_once() [<a href='function.include'>function.include</a>]: Failed opening 'E:/admin/websites/customers/flangebolts.com/s10/common/style.css' for inclusion (include_path='.;E:/AppServ/php/pear/pear') in <b>E:\admin\websites\customers\flangebolts.com\s10\style.css</b> on line <b>302</b><br />

.top_search {
	border: 1px solid #e0e0e0 ;
	background: #fff ;
	padding: 2px 10px ;
	padding-left: 10px ;
}

.top_input {
	padding: 0px ;
	margin: 0px ;
	border: 0px ;
	background: #fff ;
	width: 100% ;
	position: relative ;
	color: #999 ;
}

/* Mega menu styles */
#menu {
    list-style:none;
    width: 100% ;
    margin: 0px auto 0px auto;
    padding:0px ;
}

#menu li {
    display:block;
    position:relative;
}

#menu li:hover {
}

#menu li a {  
}

#menu li .drop {  
}  

#menu li:hover .drop {  
}  

.dropdown_1column,  
.dropdown_2columns,  
.dropdown_3columns,  
.dropdown_4columns,  
.dropdown_5columns {  
    margin: 0px auto;  
    position:absolute;  
    left:-999em; /* Hides the drop down */  
    text-align:left;  
    padding: 10px ;
    margin-left: 1px ;
    border-top: none ;
    background: #113C3D ;
    z-index: 10000 ;
} 

.dropdown_1column {width: 140px;}  
.dropdown_2columns {width: 280px;}  
.dropdown_3columns {width: 420px;}  
.dropdown_4columns {width: 560px;}  
.dropdown_5columns {width: 700px;}  

#menu li:hover .dropdown_1column,  
#menu li:hover .dropdown_2columns,  
#menu li:hover .dropdown_3columns,  
#menu li:hover .dropdown_4columns,  
#menu li:hover .dropdown_5columns {  
	left:-1px;
	top:auto;  
}  

.col_1,  
.col_2,  
.col_3,  
.col_4,  
.col_5 {  
    display:inline;  
    float: left;  
    position: relative;  
    margin-left: 5px;  
    margin-right: 5px;  
}  
.col_1 {width:130px;}  
.col_2 {width:270px;}  
.col_3 {width:410px;}  
.col_4 {width:550px;}  
.col_5 {width:690px;}  

/* End mega menu */

a img {
	border: 0px !important ;
}

.name_small {
	font-size: 12px ;
	font-weight: bold ;
	letter-spacing: 0px ;
}

a.cart-add:link,
a.cart-add:active,
a.cart-add:visited {
	display: inline-block ;
	background: #FF5900 ;
	color: #fff ;
	padding: 8px 12px ;
	text-decoration: none ;
	border-radius: 12px ;
}
a.cart-add:hover {
	background: #FF9C01 ;
	color: #000 ;
}

.side_holder {
	margin: 15px ;
	border: 1px solid #ccc ;
}

.side_heading {
	background: #333 ;
	border-bottoM: 1px solid #ccc ;
	padding: 8px 12px ;
}

.side_heading,
.side_heading a:link,
.side_heading a:active,
.side_heading a:visited {
	color: #fff ;
	font-size: 14px ;
	letter-spacing: -1px ;
	text-decoration: none ;
	font-weight: bold ;
}
.side_heading a:hover {
	text-decoration: underline ;
}

.side_content {
	padding: 1px 13px ;
	background: #fff ;
}

.side_links {
	margin: 8px 0px ;
}
.side_links a:link,
.side_links a:active,
.side_links a:visited {
}
.side_links a:hover {
}

.holder {
	width: 980px ;
	margin: auto ;
}

div.cart_id.list.total_cont {
	margin: 12px 0px ;
}

.social img {
	height: 30px ;
	margin: 0px 0px 0px 5px ;
	border: 0px !important ;
}
.top_blurb {
	text-align: center ; 
	color: #666 ;
	line-height: 1 ;
	padding: 5px ;
	border-bottom: 0px solid #ccc ;
	font-size: 11px ;
	letter-spacing: 3px ;
}
.top_blurb p {
	margin: 0px ;
	padding: 0px ;
}
.top_blurb a {
	color: #666 ;
	text-decoration: none ;
}
.top_blurb a:hover {
	text-decoration: none ;
}


.cols_5 {
	font-size: 0 ;
	text-align: center ;
}

.col {
	display: inline-block ;
	vertical-align: top ;	
}

.cols_5 .col {
	width: 18% ;
	margin: 12px 1% ;