/*
 * This is the extras CSS for datafalken.no. It contains the style for extra elements on 
 * the website, e.g. form style, table style, etc.
 *
 * Copyright (c) Falkenberg Data AS 2011
 *
 * @author Olai Solheim <olai@datafalken.no>
 */

/************************************************\
	default form
\************************************************/

.default_form {
	margin-bottom: 1em;
}

.default_form fieldset {
	border: none;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	padding: 10px;
}

.default_form legend {
	text-transform: uppercase;
}

.default_form ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.default_form label {
	width: 150px;
	float: left;
	padding: 4px;
	margin: 3px;
}

.default_form textarea,
.default_form input,
.default_form select {
	font-family: inherit;
	font-size: inherit;
}

.default_form textarea {
	width: 25em;
	height: 10em;
}

.default_form textarea,
.default_form input[type="text"],
.default_form select {
	border: 1px solid #ccc;
	padding: 3px;
	margin: 3px;
}

.default_form input[type="submit"],
.default_form input[type="button"] {
	padding: 3px 10px;
	margin: 3px;
}

.default_form textarea:focus,
.default_form input[type="text"]:focus,
.default_form select:focus {
	border: 1px solid #999;
}

ul.fieldMessages {
	color: red;
	margin-left: 171px;
	background: url(icons/form-error.png) no-repeat left center;
	padding-left: 21px;
}

div.form_messages span {
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	margin: 3px;
	padding: 10px;
	padding-left: 31px;
	display: block;
	background-repeat: no-repeat;
	background-position: 10px 10px;
	background-color: #eee;
}

div.form_messages span.error {
	border: 1px solid #f99;
	background-image: url(icons/exclamation.png);
}

div.form_messages span.success {
	border: 1px solid #9f9;
	background-image: url(icons/accept.png);
}

/************************************************\
	default table
\************************************************/

table.default_table {
	margin-bottom: 1em;
	border-spacing: 1px;
	background-color: #999;
	-moz-border-radius: 1px;
	-webkit-border-radius: 1px;
	border-radius: 1px;
	-moz-box-shadow: #777 0 2px 5px;
	-webkit-box-shadow: #777 0 2px 5px;
	box-shadow: #777 0 2px 5px;
}

table.default_table th,
table.default_table td {
	padding: 3px;
	border: 1px solid #fff;
	-moz-border-radius: 1px;
	-webkit-border-radius: 1px;
	border-radius: 1px;
}

table.default_table th {
	text-transform: uppercase;
	font-weight: normal;
	background-color: #eee;
}

table.default_table td {
	background-color: #fff;
}

table.default_table tr.odd td {
	background: #e0e0f0;
}

table.default_table span.tick {
	background: url(icons/accept.png) no-repeat left center;
	padding-left: 19px;
}

table.default_table span.untick {
	background-image: url(icons/exclamation.png) no-repeat left center;
	padding-left: 19px;
}

table.default_table span.checkmark {
	background: url(icons/accept.png) no-repeat left center;
	text-indent: -999px;
	overflow: hidden;
	display: block;
}

/************************************************\
	downloads
\************************************************/

ul.download-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

ul.download-list li {
	float: left;
	margin: 5px;
}

ul.download-list li img {
	display: block;
}

ul.download-list li span {
	display: block;
	text-align: center;
}

/************************************************\
	references
\************************************************/

ul.references {
	list-style: none;
	margin: 0;
	padding: 0;
	margin-bottom: 1em;
}

ul.references li {
	width: 400px;
	height: 320px;
	padding: 5px;
	margin: 5px;
	float: left;
    -webkit-box-shadow: 0px 1px 5px 0px #4a4a4a;
    -moz-box-shadow: 0px 1px 5px 0px #4a4a4a;
    box-shadow: 0px 1px 5px 0px #4a4a4a;
}

ul.references li:hover {
	margin: 4px;
	border: 1px solid #999;
}

ul.references a.ref-wrap {
	display: block;
	width: 400px;
	height: 200px;
	position: relative;
}

ul.references a.ref-wrap div.ref-cut {
	position: absolute;
	top: 0;
	left: 0;
	width: 400px;
	height: 200px;
	background: url(ui/reference-bg.png) no-repeat;
}

ul.references h3 {
	margin: 0;
	margin-bottom: 3px;
}

ul.references-others {
	list-style: none;
	margin: 0;
	padding: 0;
}

ul.references-others h3 {
	margin-bottom: 3px;
}

/************************************************\
	gallery preview
\************************************************/

ul.gallery_preview {
	list-style: none;
	margin: 0;
	padding: 0;
	margin-bottom: 1em;
}

ul.gallery_preview li {
	float: left;
}

ul.gallery_preview li a {
	display: block;
	border: 1px solid #ff9900;
	padding: 1px;
	margin: 5px;
}

ul.gallery_preview li a:hover {
	border: 1px solid #ffcc55;
}

ul.gallery_preview li a img {
	display: block;
}

/************************************************\
	logoes
\************************************************/

ul.logoer {
	list-style: none;
	margin: 0;
	padding: 0;
}

/************************************************\
	icon anchors
\************************************************/

a.icon {
	padding: 3px;
	padding-left: 21px;
	background-repeat: no-repeat;
	background-position: left center;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
}

a.icon:hover {
}

a.icon:focus {
}

a.icon.cart {
	background-image: url(icons/cart.png);
}

a.icon.user_go {
	background-image: url(icons/user_go.png);
}

a.icon.email_go {
	background-image: url(icons/email_go.png);
}

a.icon.page_white {
	background-image: url(icons/page_white.png);
}

/************************************************\
	button anchors
\************************************************/

a.button {
	padding: 3px;
	padding-left: 21px;
	background-repeat: no-repeat;
	background-position: left center;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
}

a.button:hover {
}

a.button:focus {
}

/************************************************\
	promo (frontpage)
\************************************************/

ul.promo {
	list-style: none;
	margin: 15px auto;
	padding: 0;
	width: 800px;
	font-size: 10px;
	font-weight: bold; 
}

ul.promo li {
	width: 156px;
	height: 186px;
	padding: 22px;
	-moz-border-radius: 10px;
	float: left;
	cursor: pointer;
	background-image: url(ui/product-bgs_75_3.png);
}

ul.promo li a {
	color: #ffffff;
	text-decoration: none;
	font-size: 12px;
}

ul.promo li.web { background-position: 0px; }
ul.promo li.backup { background-position: 600px; }
ul.promo li.filserver { background-position: 400px; }
ul.promo li.kontakt { background-position: 200px; }

ul.promo img {
	float: right;
	margin: 0 -30px 0 0;
}

ul.promo a {
	color: white;
	font-size: 18px;
	font-family: Lucida Sans Unicode, sans-serif;
	text-shadow: #000 0 -1px 0;
	font-weight: bold;
}

ul.promo p {
	text-align: left;
	color: white;
}

/************************************************\
	image gallery
\************************************************/

ul.image-gallery {
	list-style: none;
	margin: 0;
	padding: 0;
	margin-bottom: 1em;
}

ul.image-gallery li {
	float: left;
	margin: 4px;
	padding: 5px;
	border: 1px solid #999;
    -webkit-box-shadow: 0px 1px 5px 0px #4a4a4a;
    -moz-box-shadow: 0px 1px 5px 0px #4a4a4a;
    box-shadow: 0px 1px 5px 0px #4a4a4a;
}

ul.image-gallery li:hover {
	margin: 3px;
	border: 2px solid #999;
}

ul.image-gallery li a {
	display: block;
}

ul.image-gallery li img {
	display: block;
}

ul.image-gallery li div.caption {
	font-size: 0.8em;
	text-transform: uppercase;
	padding: 3px 10px;
	background: #333;
	color: white;
}

/************************************************\
	products
\************************************************/

ul.products {
	list-style: none;
	margin: 0;
	padding: 0;
	margin-bottom: 1em;
}

ul.products > li {
	float: left;
	margin: 4px;
	padding: 5px;
	border: 1px solid #999;
    -webkit-box-shadow: 0px 1px 5px 0px #4a4a4a;
    -moz-box-shadow: 0px 1px 5px 0px #4a4a4a;
    box-shadow: 0px 1px 5px 0px #4a4a4a;
}

ul.products h1 {
	margin: 0;
	font-weight: normal;
}

ul.products h1 a {
	color: #fff;
	text-shadow: #000 0 1px 2px;
}

ul.products span {
	display: block;
}

ul.products span.head {
	font-size: 15px;
	text-transform: uppercase;
}

ul.products span.sub-head {
	font-size: 11px;
}

ul.products ul {
	list-style-image: url(icons/bullet.png);
	margin: 0;
	padding: 0 16px;
	font-size: 11px;
	color: #000;
}

ul.products li.domenenavn {
	background: url(ui/products-blue-bg.png) no-repeat top left;
}

ul.products li.webhotell {
	background: url(ui/products-green-bg.png) no-repeat top left;
}

ul.products li.database {
	background: url(ui/products-red-bg.png) no-repeat top left;
}