/*
 * default.css
 * standard xhtml selector only to be defined in this file
 * These styles apply unless overidden in layout styles
 *
 * A Kitson
*/
/* ----------------------------------------------------------------
 * GLOBAL
 * ----------------------------------------------------------------
*/
/* Zero down margin and padding on all elements */
* {
  margin: 0;
  padding: 0;
}

body {
  font: 62.5%/1.6 "Arial", "Helvetica", "Lucida Grande", "Lucida Sans", "Lucida Sans Unicode", Verdana, sans-serif;
  color: #2e2e2e;
  background-color:#fff;
  text-align: left;
}
/* ----------------------------------------------------------------
 * GLOBAL > HEADERS
 * ----------------------------------------------------------------
*/
h1, h2, h3, h4, h5, h6 {
margin: 0;
padding: 0;
clear: left;}

h1 {
  font-size: 2.4em;
  font-weight: normal;
  margin-bottom: 20px;
  padding: 30px 0 0;
}

h2 {
  font-size: 2.1em;
  font-weight: normal;
  margin-bottom: 20px;
  padding-top: 30px;
}

h3 {
  font-size: 1.8em;
  font-weight: normal;
  margin-bottom: 15px;
  padding-top: 30px;
}

h4 {
  font-size: 1.5em;
  font-weight: normal;
  margin-bottom: 10px;
  padding-top: 30px;
}

h5 {
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 5px;
  padding-top: 30px;
}

h6 {
  font-size: 1.0em;
  font-weight: bold;
  margin-bottom: 0px;
  padding-top: 20px;
}

/* ----------------------------------------------------------------
 * GLOBAL > TEXT
 * ----------------------------------------------------------------
*/

p {
  margin: 15px 0;
  font-size: 1.0em;
}

pre, code, blockquote {
  display: block;
  margin: 25px 0;
  padding: 15px;
  clear: both;
  font-size: 1.4em;
}

blockquote {
  padding-top: 0;
  padding-bottom: 20px;
}

blockquote > div {
  padding: 1px;
}

blockquote p {
  margin-bottom: 0;
}

/* ----------------------------------------------------------------
 * GLOBAL > LINKS
 * ----------------------------------------------------------------
*/
a {
  white-space: nowrap;
}

a.btn {
  padding: 3px 8px;
  margin: 0px 3px 10px 0;
  display: inline-block;
}

/* ----------------------------------------------------------------
 * GLOBAL > IMAGES
 * ----------------------------------------------------------------
*/
img {
  padding: 5px;
  border-style: none;
}

img.right {
  margin: 5px 0 15px 30px;
}

img.left {
  margin: 5px 30px 15px 0;
}


/* ----------------------------------------------------------------
 * GLOBAL > LISTS
 * ----------------------------------------------------------------
*/
ul, ol, dl {
  margin: 15px 0 15px 20px;
  padding: 0;
}

ul ul, ol ol {
  margin-top: 0;
  margin-bottom: 0;}

ol {
  margin-left: 25px;}

dl {
  margin-left: 0;}

dl dt {
  margin-top: 15px;
  font-weight: bold;
}

dl dd {
  margin: 0;
}

li {
  padding-left: 5px;

}


/* ----------------------------------------------------------------
 * GLOBAL > TABLES
 * ----------------------------------------------------------------
*/
table {
  margin: 20px 0;
  border-collapse: collapse;
}

table thead th,
table tfoot th,
table tfoot td {
  padding: 5px 15px;
}

table tbody th,
table tbody td {
  padding: 5px 15px;
}

/* ----------------------------------------------------------------
 * GLOBAL > COLOURS
 * ----------------------------------------------------------------
*/

.grey_text {
	color: #999;
}
/* ----------------------------------------------------------------
 * GLOBAL > STANDARD CLASSES
 * ----------------------------------------------------------------
*/

.noShow {
	display: none;
}
.cleardiv {
	clear:both;
	
}

