﻿/* -----------------------------------------------------------------------------------------------------------------

	Mardix iControl - Web Portal
	
	SCREEN - Base Stylesheet
	
	Web					: http://web.furness.net/j4756
	Filename    		: css/base.css
	Last Updated		: 24. 01. 2012
	Copyright			: (c) 2012 Chris Sharp
	Author				: Chris Sharp - Furness Internet
	Web					: http://www.csharpdesign.co.uk | http://webteam.furness.net | http://www.furness.net
	
--------------------------------------------------------------------------------------------------------------------*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	vertical-align: baseline;
}

/* To enable HTML5 elements in IE */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
display : block; }

html {
  	height: 100%;
  	overflow-y: scroll;
}

/* remember to define focus styles! */
:focus {
	outline: 0;
}

body {
	background: #fff;
	color: rgb(102,102,102); /* #666 */
	font-family: Helvetica, Arial, sans-serif;
	font-size: 62.5%;
	font-weight: normal;
	line-height: 1;	
}

/* this choice of font-family is supposed to render text the same across platforms
 * letter-spacing makes the font a bit more legible
 */
body, input, button, textarea, select {
	font-family: Helvetica, Arial, sans-serif;
}

p {
	color: #666;
	font-weight: normal;
	line-height: 1.6;
	margin-bottom: 1.5em;
}

ol, ul {
	font-family: Helvetica, Arial, sans-serif;
	font-weight: normal;
	list-style: none;
}

strong {
	font-weight: bold;
}

/* Links */
a { 
	color: #24599b;
	text-decoration: none; 
}

a:link {
	color: #173a66;
	
	-webkit-transition: all 0.3s ease-in-out; /*safari and chrome */
	   -moz-transition: all 0.3s ease-in; /* opera */
 	     -o-transition: all 0.3s ease-in-out; /* opera */
 	        transition: all 0.3s ease-in-out;
}

a:hover, a:focus {
	color: #173a66;
	text-decoration: underline;
}

/*
a:visited {color: #40a3d0;}*/

/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: separate;
	border-spacing: 0;
}

/* all th should be centered unless they are in tbody (table body)
 */
th {text-align: center;} 
tbody th {text-align: left;}
caption, th, td {
	text-align: left;
	font-weight: normal;
}

th, strong, dt {
  font-weight: bold;
}

hr {
	background-color: #dfdbd3;
	border: 0;
	color: #dfdbd3;
	height: 1px;
	margin-bottom: 30px;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}

blockquote, q {
	quotes: "" "";
}

/* Clearfix */
.group:before,
.group:after {
    content:"";
    display:table;
}
.group:after {
    clear:both;
}
.group {
    zoom:1; /* For IE 6/7 (trigger hasLayout) */
}