/* ############## */
/* DEFAULT STYLES */
/* ############## */

/*
CONTENTS:
- Default HTML element styles (excluding form elements)
- Default form styles
- Default classes (available for use in CMS editor)
- Other default classes (not available for use in CMS editor)
- Edit button styles
*/

/* ##################################################### */
/* DEFAULT HTML ELEMENT STYLES (excluding form elements) */
/* ##################################################### */

/* <a> */
a {

}
a:hover {

}

/* <body> */
body {
	/*font-family: arial,helvetica,sans-serif;*/
}

/* <h1> */
/* Style for main page headings */
h1 {
}

/* <h2> */
/* ('Heading 1' in editor styles dropdown) */
h2 {
}

/* <h3> */
/* ('Heading 2' in editor styles dropdown) */
h3 {
}

/* <h4> */
/* ('Heading 3' in editor styles dropdown) */
h4 {
}

/* <img> */
p img {
}

/* <p> */
p {
	margin: 0 0 10px 0;
}

/* <table> */
table {
	font-size: 100%;
}

/* <ul> & <li> */
ul {
	margin: 0 0 15px 0;
}

/* ################### */
/* DEFAULT FORM STYLES */
/* ################### */
/* Arranged alphabetically by tag */

/* <em> */
form.form_default em {
	margin-left: 2px;
}

/* <input> */
input {
	/*font-family: arial,helvetica,sans-serif;*/
}
form.form_default input {
	background: #F7F7F7;
	border-bottom: 1px solid #D6DDDE;
	border-left: 1px solid #A9B3B5;
	border-right: 1px solid #A9B3B5;
	border-top: 1px solid #999;
	width: 250px;
}
form.form_default input.checkbox {
	background: none;
	border: none;
	width: 15px;
}
form.form_default input.radio {
	background: none;
	border: none;
	width: 15px;
}
form.form_default input.submit {
	background: #E7E7E7;
	border: 3px double #999999;
	border-top-color: #CCCCCC;
	border-left-color: #CCCCCC;
	cursor: pointer;
	font-weight: bold;
	padding: 0.25em 1em;
	width: auto;
}
form.form_default input.submit:active {
	border: 3px double #CCCCCC;
	border-top-color: #999999;
	border-left-color: #999999;
}

/* <label> */
label {
	/*font-family: arial,helvetica,sans-serif;*/
}
form.form_default label {
	width: 70px;
}

/* <ol> & <li> */
form.form_default ol li {
	clear: both;
}

/* <p> */
p#required_note {
	color: #666666;
	font-size: 90%;
	margin-bottom: 5px;
}

/* <select> */
select {
	/*font-family: arial,helvetica,sans-serif;*/
}
form.form_default select {
	background: #F7F7F7;
	border-bottom: 1px solid #D6DDDE;
	border-left: 1px solid #A9B3B5;
	border-right: 1px solid #A9B3B5;
	border-top: 1px solid #999;
	width: 250px;
}

/* <textarea> */
textarea {
	/*font-family: arial,helvetica,sans-serif;*/
}
form.form_default textarea {
	background: #F7F7F7;
	border-bottom: 1px solid #D6DDDE;
	border-left: 1px solid #A9B3B5;
	border-right: 1px solid #A9B3B5;
	border-top: 1px solid #999;
	height: 120px;
	width: 250px;
}

/* ################################################# */
/* DEFAULT CLASSES (AVAILABLE FOR USE IN CMS EDITOR) */
/* ################################################# */
/* Arranged alphabetically by tag, then by class name */
/* Due to the way XStandard works, each class must be associated with a specific HTML element */

/* <div> */
div.clear {
	clear: both;
}
div.textbox {
	background: #672F08;
	margin: 1em 0;
	padding: 10px 10px 1px 10px;
}

/* <h4>, <h5>, <h6> */
h4.notopmargin,
h5.notopmargin,
h6.notopmargin {
	margin-top: 0 !important;
}

/* <img> */
img.float_left { /* used by XStandard editor for image align left property */
	float: left;
	margin: 0 15px 5px 0;
}
img.float_right { /* used by XStandard editor for image align right property */
	float: right;
	margin: 0 0 5px 15px;
}

/* <p> */
p.center {
	text-align: center;
}
p.left {
	text-align: left;
}
p.notopmargin {
	margin-top: 0 !important;	
}
p.right {
	text-align: right;
}

/* <span> */
span.bigtext {
	font-size: 130%;
	font-weight: bold;
}
span.smalltext {
	font-size: 90%;
}
span.highlight {
	color: #FFFFFF;
	font-weight: bold;
}
span.strikethrough {
	text-decoration: line-through;
}
span.underline {
	text-decoration: underline;
}

/* <table> */
table.data_table {
	border: 0;
	border-collapse: collapse;
	border-bottom: 1px solid white;
	border-right: 1px solid white;
	margin: 1em 0;
}
table.data_table caption {
	background: black;
	color: white;
	font-size: 120%;
	font-weight: bold;
	margin-bottom: 2px;
	padding: 4px;
	text-align: center;
}
table.data_table td,
table.data_table th {
	border-left: 1px solid white;
	border-top: 1px solid white;
	line-height: 130%;
	padding: 2px 4px;
}
table.data_table thead th {
	background: #666666;
	color: white;
}
table.data_table tbody th {
	background: #999999;
	color: white;
}
table.data_table td {
	background: #CCCCCC;
	color: black;
}

/* ########################################################### */
/* OTHER DEFAULT CLASSES (NOT AVAILABLE FOR USE IN CMS EDITOR) */
/* ########################################################### */
/* Arranged alphabetically by class name */

.sep {
	left: -10000px;
	position: absolute;
	top: -10000px;
}

/* ################## */
/* EDIT BUTTON STYLES */
/* ###################*/
p#cmsedit {
	font-size: 80%;
	left: 0;
	line-height: 100%;
	margin: 0;
	position: fixed;
	top: 0;
	width: 10em;
}
p#cmsedit a {
	background: white;
	color: #666666;
	display: block;
	font-weight: normal;
	padding: 5px;
	text-decoration: none;
	opacity: 0.7;
	-moz-opacity:0.7;
}
p#cmsedit a:hover {
	color: black;
	opacity: 1;
	-moz-opacity:1;
}

/* Copyright (c) Studio 2 Online Ltd. */
