/**********************************************************************************/
/*                                                                                */
/* INTRINSIC WEB FRAMEWORK                                                        */
/* _______________________________________________________________________________*/
/*                                                                                */
/* Copyright (c) 2015 Patrick Thomas Unwin <patrick@forwardme.co.uk>              */
/*                                                                                */
/* All rights reserved. No warranty, explicit or implicit, provided.              */
/*                                                                                */
/* NOTICE:  All information contained herein is, and remains the property         */
/* of Patrick Thomas Unwin. The intellectual and technical concepts contained     */
/* herein are proprietary to Patrick Thomas Unwin and are protected by            */
/* trade secret or copyright law. Dissemination of this information or            */
/* reproduction of this material is strictly forbidden unless prior written       */
/* permission is obtained from Patrick Thomas Unwin.                              */
/*                                                                                */
/**********************************************************************************/

/* ------------------------------------ */
/* CSS Reset for Browser compatibility  */
/* ------------------------------------ */

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, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* ------------------- */
/* Typography          */
/* ------------------- */

h1, h2, h3, h4, h5 {
    font-weight: bold;
    text-transform: uppercase;
}

h1 {
	font-size:1.4em; 
	line-height:1.2;
	/* 17px */
}

h2 {
	font-size:1.3em; 
	line-height:1.12;
	/* 15px */
}

h3, select, p, a {
	font-size:1.1em;
}

p a {
	font-size:1em;
}

h4, h5 {
	font-size:1.3em;
}

strong {
	font-weight: bold;
}

i, cite, em, var, dfn {
    font-style: italic;
}

input.submitButton_, 
a.submitButton_, 
a.ucs_submitButton, 
.homePg .usedSearchBox select {
    font: 1.1em/1 Arial,Verdana,Helvetica,sans-serif;
}

/* ------------------- */
/* Main Setup          */
/* ------------------- */

body {
    background-color: #FFFFFF;
    color: #000000;
    font-size: 87.5%; /* base font size is 14px */
    font-family: Arial, 'Lucida Sans Unicode';
    line-height: 1.5;
    text-align: left;
    margin: 0;
    width: 100%;
}

a {
    text-decoration: none;
}

a:link, a:visited {
    color: #0000EE;
}

a:hover, a:active {
    color: #0000EE;
}

.fw-clear {
	clear: both;
}

.fw-rounded {
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
}

/* ---------------------------- */
/* 480px - Mobile Device        */
/* ---------------------------- */

@media only screen and (max-width: 480px) {

    body {  	
        font-size: 90%; /* base font size is 14px */
    }
    
}

/* ---------------------------- */
/* 768px - Tablet Device        */
/* ---------------------------- */

@media only screen and (min-width:481px) and (max-width: 768px) {

    body {
        font-size: 95%; /* base font size is 14px */
    }
    
}
