@charset "utf-8";

/* root styles */
* {
	margin: 0px;
}

html {
	height: 100%;
}

body {
    margin: auto;
	background: linear-gradient(top, #B4B4B0 0%,#E4E4DD 500px);
	background: -moz-linear-gradient(top, #B4B4B0 0%,#E4E4DD 500px);
    background: -webkit-linear-gradient(top, #B4B4B0 0%, #E4E4DD 500px);
    background-color: #E4E4DD;
    background-repeat: no-repeat;
}

p {
    margin: 8px 0px 12px 0px;
    line-height: 140%;
    padding: 0px;
}

a {
    color: #136CB2;
    text-decoration: none;
}

a:visited {
    color: #136CB2;
    text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

#root {
	width: 706px;
	overflow-x: hidden;
    margin: auto;
    font: 9pt Verdana, Arial, sans-serif;
    color: #333333;
    box-shadow: 0px 0px 8px rgba(0,0,0,0.7);
	-moz-box-shadow: 0px 0px 8px rgba(0,0,0,0.7);
	-webkit-box-shadow: 0px 0px 8px rgba(0,0,0,0.7);
}

/* header.php styles */
#header {
    background-color: #121212;
    padding-top: 1px;
	position: relative;
	height: 50px;
    color: #FFFFFF;
    font: 10pt Verdana, Arial, sans-serif;
}

#logo_holder {
	float: left;
	width: 60px;
	height: 50px;
	background: url(/img/intelicon-logo-icon.png) center no-repeat;
}

#logo_holder a {
	position: relative;
	left: 8px;
	top: 5px;
	width: 46px;
	height: 40px;
	display: block;
}

#main_nav {
	float: left;
    position: relative;
	top: 8px;
}

div#nav_link {
	width: 76px;
	height: 32px;
	padding-left: 5px;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
}

div#nav_link svg {
	float: left;
	margin-top: 4px;
	margin-left: 1px;
	opacity: .6;
	-moz-opacity: .6;
	-webkit-opacity: .6;
	transition: opacity 0.2s;
	-moz-transition: opacity 0.2s;
	-webkit-transition: opacity 0.2s;
}

div#nav_link:hover > svg {
   opacity: 1;
	-moz-opacity: 1;
	-webkit-opacity: 1;
}

div#nav_link:hover {
   background-color: #343434;
}

div#nav_link p {
	float: left;
	position: relative;
	top: -1px;
	left: 2px;
	font: bold 11pt Verdana, Arial, sans-serif;
	letter-spacing: 0.5px;
    outline: none;
	display: block;
	cursor: default;
}

div#brush {
    visibility: hidden;
	width: 420px;
	height: auto;
	padding: 0px 12px 0px 12px;
	float: left;
    position: absolute;
	top: 42px;
	z-index: 10;
    box-shadow: 0px 0px 6px rgba(0,0,0,0.7);
	-moz-box-shadow: 0px 0px 6px rgba(0,0,0,0.7);
	-webkit-box-shadow: 0px 0px 6px rgba(0,0,0,0.7);
	transition-delay: 0.2s;
	-moz-transition-delay: 0.2s;
	-webkit-transition-delay: 0.2s;
	border-radius: 0px 0px 8px 8px;
	-moz-border-radius: 0px 0px 8px 8px;
	-webkit-border-radius: 0px 0px 8px 8px;
	background-color: #121212;
}

#main_nav:hover > div#brush {
   visibility: visible;
}

div#brush p {
	float: left;
	width: 140px;
}

div#brush p a {
	height: 20px;
	color: #FFFFFF;
	font-size: 11pt;
	letter-spacing: 0.5px;
	display: block;
	padding: 2px 0px 0px 12px;
	text-decoration: none;
}

div#brush p a:hover {
	background-color: #343434;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
}

#search_bar {
	float: left;
	position: relative;
	top: 8px;
	left: 8px;
	height: 32px;
}

#search_bar input[type=text] {
	float: left;
	width: 246px;
	height: 28px;
	border-radius: 5px 0px 0px 5px;
	-moz-border-radius: 5px 0px 0px 5px;
	-webkit-border-radius: 5px 0px 0px 5px;
	padding: 0px 10px 0px 10px;
	margin-left: 1px;
	margin-right: 3px;
}

#search_bar select {
	float: left;
	color: #555555;
	width: 150px;
	height: 32px;
	margin-right: 3px;
	padding: 0px 5px 0px 5px;
	box-shadow: inset 0px 0px 1px 1px rgba(0, 0, 0, 0.4);
	-webkit-box-shadow: inset 0px 0px 1px 1px rgba(0, 0, 0, 0.4);
	-moz-box-shadow: inset 0px 0px 1px 1px rgba(0, 0, 0, 0.4);
}

#search_bar button[type=submit] {
	float: left;
	width: 36px;
	height: 32px;
	border-radius: 0px 5px 5px 0px;
	-moz-border-radius: 0px 5px 5px 0px;
	-webkit-border-radius: 0px 5px 5px 0px;
	border-color: #D5AB55 #CC9933 #CC9933 #D5AB55;
	background: linear-gradient(top, #F2F2F2 0%, #F9EC75 20%, #F3CE00 70%);  
	background: -moz-linear-gradient(top, #F2F2F2 0%, #F9EC75 20%, #F3CE00 70%); 
	background: -webkit-linear-gradient(top, #F2F2F2 0%, #F9EC75 20%, #F3CE00 70%);
}
					
#search_bar button[type=submit]:hover {
	background: #F3CE00; 
}

#search_icon {
	width: 20px;
	height: 20px;
	display: block;
	background: url(/img/search-icon.png) no-repeat top left;
}

#basket {
	float: left;
	position: relative;
	top: 8px;
	left: 18px;
}

#basket_icon {
	width: 68px;
	height: 32px;
	padding-left: 5px;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
}

#basket_icon:hover {
	background-color: #343434;
}

#basket_icon p {
	float: left;
	position: relative;
	top: -1px;
	left: 3px;
	font: bold 11pt Verdana, Arial, sans-serif;
	letter-spacing: 0.5px;
	display: block;
	cursor: default;
}

#basket_icon img {
	position: relative;
	left: 5px;
	top: 5px;
	opacity: 0.6;
	-moz-opacity: 0.6;
	-webkit-opacity: 0.6;
	transition: opacity 0.2s;
	-moz-transition: opacity 0.2s;
	-webkit-transition: opacity 0.2s;
	cursor: default;
}

#basket_icon:hover > img {
	opacity: 1;
	-moz-opacity: 1;
	-webkit-opacity: 1;
}

div#basket_contents {
    visibility: hidden;
	color: #FFFFFF;
	padding: 5px 10px 10px 10px;
	width: 300px;
	position: absolute;
	left: -244px;
	top: 42px;
    z-index: 10;
	transition-delay: 0.2s;
	-moz-transition-delay: 0.2s;
	-webkit-transition-delay: 0.2s;
	background-color: #121212;
	border-radius: 0px 0px 8px 8px;
	-moz-border-radius: 0px 0px 8px 8px;
	-webkit-border-radius: 0px 0px 8px 8px;
	box-shadow: 0px 0px 6px rgba(0,0,0,0.7);
	-moz-box-shadow: 0px 0px 6px rgba(0,0,0,0.7);
	-webkit-box-shadow: 0px 0px 6px rgba(0,0,0,0.7);
}

#basket:hover > div#basket_contents {
   visibility: visible;
}

div#basket_contents table {
	border-spacing: 0;
	font-size: 11pt;
	width: 100%;
}

div#basket_contents table th {
	height: 20px;
	text-align: left;
	padding-bottom: 4px;
	cursor: default;
	border-bottom: 1px solid #999999;
}

div#basket_contents table td {
	height: 20px;
	padding-bottom: 2px;
	border-bottom: 1px solid #999999;
}

div#basket_contents table td a {
	color: #FFFFFF;
}

div#basket_contents a#gotocart {
	width: 108px;
	height: 20px;
	padding: 4px 0px 0px 8px;
	display: block;
	position: relative;
	color: #FFFFFF;
	float: right;
	top: 0px;
	text-decoration: none;
}

div#basket_contents a#gotocart:hover {
	background-color: #343434;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
}

/* home.php styles */
#main_content {
	float: left;
	width: 668px;
	min-height: 1280px;
}

#main_content div#browser {
	font-size: 8pt;
	border-bottom: 1px solid #CCCCCC;
	padding-bottom: 5px;
}



#footer {
	background-color: #121212;
	color: #FFFFFF;
	height: 15px;
    font: 10pt Verdana, Geneva, sans-serif;
	border-top: 1px solid #CCCCCC;
	line-height: 15px;
	padding: 12px 16px;
}

#footer div#copyright {
	float: right;
}

#footer div#termeni {
	float: left;
}

#basket_list {
	margin-top: 15px;
	border-spacing: 0;
	text-align: left;
	width: 100%;
	font-size: 9pt;
}

#basket_list div {
	width: 668px;
	height: 110px;
	border: 1px solid #CCCCCC;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	margin: 9px 9px 0px 0px;
}

#basket_list span {
	font-size: 8pt;
	float: left;
	padding: 5px 0px;
	color: #666666;
}

#basket_list span#img {
	width: 142px;
	text-align: center;
	margin-right: 5px;
	border-right: 1px solid #E8E8E8;
}

#basket_list span#product {
	width: 421px;
	padding-right: 5px;
	height: 100px;
	border-right: 1px solid #E8E8E8;
	margin-right: 5px;
}

#basket_list span#product a {
	font-size: 10pt;
	color: #444444;
	font-weight: bold;
}

#basket_list span#information {
	width: 80px;
	height: 100px;
	text-align: right;
}

#basket_list span#pret {
	font-size: 11pt;
	color: #000000;
	font-weight: bold;
	width: 80px;
	text-align: right;
	margin-top: 12px;
}

#basket_list select {
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	color: #555555;
	margin-top: 2px;
	width: 44px;
	height: 24px;
	padding: 0px 2px 0px 2px;
	box-shadow: inset 0px 0px 1px 1px rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: inset 0px 0px 1px 1px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: inset 0px 0px 1px 1px rgba(0, 0, 0, 0.1);
}

#basket_list span#delivery {
	width: 650px;
	padding: 5px 10px 0px 0px;
}

#basket_list span#total {
	clear: both;
	width: 650px;
	height: 16px;
	text-align: right;
	margin: 10px 0px 0px 0px;
	border-radius: 5px 5px 0px 0px;
	-moz-border-radius: 5px 5px 0px 0px;
	-webkit-border-radius: 5px 5px 0px 0px;
	background: #EFEFEF;
	padding: 5px 10px;
	font-size: 11pt;
	color: #000000;
	font-weight: bold;
}

div#order_form {
	clear: both;
	display: none;
	width: 650px;
	background: #EFEFEF;
	padding: 10px;
	font-size: 10pt;
	border-radius: 0px 0px 5px 5px;
	-moz-border-radius: 0px 0px 5px 5px;
	-webkit-border-radius: 0px 0px 5px 5px;
}

div#order_info_pf {
	float: left;
	width: 324px;
}

div#order_info_pj {
	float: left;
	border-left: 1px solid #CCCCCC;
	padding-left: 10px;
	width: 314px;
	min-height: 250px;
}

div#order_form h3 {
	font-size: 12pt;
	margin-bottom: 10px;
}

div#order_form span {
	font-size: 8pt;
	vertical-align: top;
}

div#order_form label {
	display: block;
	width: 290px;
}

div#order_form input[type=text] {
	width: 304px;
	height: 24px;
	margin: 2px 0px 5px 0px;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	padding: 0px 5px;
}

div#order_form span#security_info {
	line-height: 28px;
}

div#order_form input#security {
	width: 20px;
	height: 20px;
	margin: 2px -3px 6px 0px;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	padding: 0px 5px;
	text-align: center;
}

div#order_form textarea {
	resize: none;
	width: 304px;
	height: 66px;
	border-radius: 3px;
	margin: 2px 0px 5px 0px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	padding: 0px 5px 0px 3px;
	border: 2px inset #EEEEEE;
	padding: 5px;
}

div#order_form button[type=submit] {
	clear: both;
	float: right;
	width: 160px;
	height: 26px;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-color: #D5AB55 #CC9933 #CC9933 #D5AB55;
	background: linear-gradient(top, #F2F2F2 0%, #F9EC75 20%, #F3CE00 70%);  
	background: -moz-linear-gradient(top, #F2F2F2 0%, #F9EC75 20%, #F3CE00 70%); 
	background: -webkit-linear-gradient(top, #F2F2F2 0%, #F9EC75 20%, #F3CE00 70%);
}
					
div#order_form button[type=submit]:hover {
	background: #F3CE00; 
}


/* index.php styles */
#page_content {
	margin: auto;
	width: 668px;
    margin-top: -1px;
    margin-bottom: -1px;
	padding: 27px 20px;
	background: linear-gradient(top, rgba(0,0,0,0.3) 0%,rgba(0,0,0,0) 10px);
	background: -moz-linear-gradient(top, rgba(0,0,0,0.3) 0%,rgba(0,0,0,0) 10px);
    background: -webkit-linear-gradient(top, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0) 10px);
    background-repeat: no-repeat;
    background-size: 100% 10px;
    background-color: #FFFFFF;
}

#scroller {
	display: none;
	background: #FFFFFF;
	cursor: pointer;
	position: fixed;
	margin-left: 706px;
	bottom: 74px;
	width: 35px;
	height: 40px;
	border: 1px solid #CCCCCC;
	border-radius: 0px 20px 20px 0px;
	-moz-border-radius: 0px 20px 20px 0px;
	-webkit-border-radius: 0px 20px 20px 0px;
}

#scroller span#up_arrow {
    border-color: transparent transparent #666666 transparent;
    border-style: solid;
    border-width: 0px 8px 8px 8px;
    height: 0;
    line-height: 0;
    position: absolute;
    right: 12px;
    top: 16px;
	transition: .2s;
    -moz-transition: .2s;
    -webkit-transition: .2s;
    width: 0;
}