/* CSS RESET
   http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
   **NOTE: MODIFIED TO INCLUDE GLOBAL STYLES**
*/

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;
	font-size: 12px;
	font-family: Arial, Helvetica, Sans-Serif;
}
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;
}

/* END RESET */

body 
{
    background: #fff;
    padding: 0 10px;
    margin: 20px auto;
}

p
{
    margin: 12px 0;
}

/* FIELDS */
.fieldblock  
{
    padding-bottom:5px;
    border-bottom: 1px solid #dedede;
}
.fieldblock:last-child
{
    border-bottom: none;
} 

.fieldGroup
{
    margin-top: 16px;
}

.fieldGroup .label-primary
{
    display:block;
    margin-top: 7px;
}

.fieldGroup .asLabel
{
    width:30%;
    display:block;
    margin-top: 7px;
}

.fieldGroup .readonly
{
    display:block;
    margin-top: 7px;
    margin-left: 2px;
}
.fieldGroup select,
.fieldGroup input,
.fieldGroup textarea
{
    margin-left: 0px;
}

.errors
{
    vertical-align:top;
    display:block;
    margin-top: 2px;
    color:#f00;
}

/* BUTTONS */

input.submit,
input.clear
{
    border: none;
}
a.button,
input.clear,
input.submit {
  display: inline-block;
  padding: 4px 6px;
  text-decoration: none;
  cursor:pointer;
}

.button-bar
{
    text-align: right;
    margin-top: 12px;
} 
.button-bar .button,
.button-bar .cancel,
.button-bar a
{
    display: inline-block;
    margin: 0 12px;
}
.button-bar .back
{
    float: left;
}

.diagnostic-table {
	border-collapse: collapse
}
/* DIAGNOSTICS*/
.diagnostic-table td, th {
	border: 1px solid black;
	padding: 2px 5px;
}
.diagnostic-table td.Success {
	background-color: #00ff00;
}
.diagnostic-table td.Fail {
	background-color: #ff0000;
}