/* Structure */

.column_left {
	float: left;
	margin-right: 10px;
}

.column_right {
	float: right;
	margin-left: 10px;
}

.column_center {
	margin: 0 auto;
	margin-bottom: 10px;
}

.frame_full {
	margin: 0 auto !important;
	margin-bottom: 10px !important;
}	


.frame_left {
	margin: 0 0 10px 10px;
}


.frame_right {
	margin: 0 10px 10px 0;
}

.frame_full, .frame_left, .frame_right {
	border: 1px solid #000;
}

.content {
	padding: 15px;
}

.float_right {
	float: right;
	margin-left: 10px;
	margin-bottom: 10px;
}

.float_left {
	float: left;
	margin-right: 10px;
	margin-bottom: 10px;
}

.clear {
	clear: both;
	height: 1px;
}

.clear_left {
	clear: left;
}

.margin_bottom {
	margin-bottom: 10px !important;
}

.margin_none {
	margin: 0 !important;
}

/* Background */

.background.red {
	background: red;
}

.background.white {
	background: white;
}

.background.blue {
	background: blue;
}

.background.green {
	background: green;
}

.background.black {
	background: black;
}

.background.indigo {
	background: indigo;
}

.background.darkred {
	background: darkred;
}

.background.darkgray {
	background: #1d1d1d;
}

.background.dimgray {
	background: dimgray;
}

.background.none {
	background: none;
}


/* Border */

.solid {
	border-style: solid;
	border-width: 0px;
}

.dashed {
	border-style: dashed;
	border-width: 0px;
}

.dotted {
	border-style: dotted;
	border-width: 0px;
}

.ridge {
	border-style: ridge;
	border-width: 0px;
}

.border {
	border-color: #000;
	border-width: 2px;
}

.border.top {
	border-bottom: none;
	border-left: none;
	border-right: none;
}

.border.bottom {
	border-top: none;
	border-left: none;
	border-right: none;
}

.border.left {
	border-top: none !important;
	border-bottom: none !important;
	border-right: none !important;
}

.border.right {
	border-top: none;
	border-bottom: none;
	border-left: none;
}

.border.none {
	border-top: none;
	border-bottom: none;
	border-left: none;
	border-right: none;
}

.border.red {
	border-color: red;
}

.border.white {
	border-color: white;
}

.border.blue {
	border-color: blue;
}

.border.green {
	border-color: green;
}

.border.black {
	border-color: black;
}

.border.gray {
	border-color: gray;
}

.border.indigo {
	border-color: indigo;
}

.border.darkred {
	border-color: darkred;
}





/* font */

.font.red {
	color: red;
}

.font.white {
	color: white;
}

.font.blue {
	color: blue;
}

.font.green {
	color: green;
}

.font.indigo {
	color: indigo;
}

.font.black {
	color: black;
}

.font.darkred {
	color: darkred;
}

.font.limegreen {
	color: limegreen;
}

.font.dimgray {
	color: dimgray;
}

.font.bold {
	font-weight: bold;
}











/* list */

.disc li {
	list-style: disc;
	margin-left: 10px;
}

.circle li {
	list-style: circle;
	margin-left: 10px;
}
.square li {
	list-style: square;
	margin-left: 10px;
}
.decimal li {
	list-style: decimal;
	margin-left: 10px;
}
.roman li {
	list-style: upper-roman;
	margin-left: 10px;
}






/* Align */

.align-middle {
	vertical-align:middle;
}

.align-center {
	text-align: center;
}

.align-right {
	text-align: right;
}

.align-left {
	text-align: left;
}

.align-justify {
	text-align: justify;
}

.text-indent {
	text-indent: 2em;
}




/* forms */


form label.clear {
	clear: left;
	height: 100%;
}

form label.left,
form label.left input {
	float: left;
	width: 100%;
}

form label.padding_left {
	padding-left: 25px;
}

form label select.left {
	float: left;
	width: 100%;
}

input.submit {
	color: #000;
	cursor: pointer;
	text-align: center;
	width: 100px;
	padding: 0;
}

form fieldset p {
	height: 40px;
}

form a {
	font-weight: bolder;
	color: #f00;
}












