/*Copyright (C) YOOtheme GmbH, http://www.gnu.org/licenses/gpl.html GNU/GPL

* Tools Style Sheet - Provides a useful set of CSS classes to style your content
* Some classes are used in the Joomla and WordPress system markup
 
Useful Classes for Content Creation
----------------------------------------------------------------------------------------------------*/
.display-block
{
	display: block;
}
.remove-margin
{
	margin: 0;
}
.remove-margin-t
{
	margin-top: 0;
}
.remove-margin-b
{
	margin-bottom: 0;
}
.hidden
{
	display: none;
	visibility: hidden;
}
/*Fluid images and objects*/
.size-auto
{
	max-width: 100%;
	height: auto;
}
/*Block Alignment (Needed for System Markup, without hyphen needed for WP)*/
.align-left, .alignleft
{
	display: block;
	margin-right: 15px;
	float: left;
}
.align-right, .alignright
{
	display: block;
	margin-left: 15px;
	float: right;
}
.align-center, .aligncenter
{
	display: block;
	margin: auto;
	margin-bottom: 10px;
}
/*Text Alignment*/
.text-left
{
	text-align: left;
}
.text-right
{
	text-align: right;
}
.text-center
{
	text-align: center;
}
.text-justify
{
	text-align: justify;
}
/*Buttons (Needed for System Markup)
----------------------------------------------------------------------------------------------------
Note: .button-more is deprecated since Warp 6.2*/
.button-more, .button-default, .button-primary
{
	display: inline-block;
}
.button-more + [class*=button-], .button-default + [class*=button-], .button-primary + [class*=button-]
{
	margin-left: 10px;
}
/*Lists (Needed for System Markup)
----------------------------------------------------------------------------------------------------*/
UL.blank, UL.space, UL.line, UL.check, UL.zebra
{
	list-style: none;
	margin: 0;
	padding: 0;
}
/*Space*/
UL.space LI
{
	margin-top: 15px;
}
UL.space LI:first-child
{
	margin-top: 0;
}
/*Line*/
UL.line > LI
{
	margin-top: 5px;
	padding-top: 5px;
}
UL.line > LI:first-child
{
	margin-top: 0;
	padding-top: 0;
}
/*Check*/
UL.check > LI
{
	margin-top: 5px;
}
UL.check > LI:first-child
{
	margin-top: 0;
}
/*Zebra*/
UL.zebra > LI
{
	padding: 5px;
}
UL.line > LI > A:first-child, UL.check > LI > A:first-child
{
	display: block;
}
/*Tables (Needed for System Markup)
----------------------------------------------------------------------------------------------------*/
TABLE.zebra
{
	width: 100%;
}
TABLE.zebra TH
{
	font-size: 16px;
	font-weight: normal;
	text-align: left;
}
TABLE.zebra TH, TABLE.zebra TD
{
	padding: 5px;
}
TABLE.zebra TBODY, TABLE.zebra TFOOT
{
	font-size: 12px;
}
TABLE.zebra .bold
{
	font-weight: bold;
}
TABLE.zebra .center
{
	text-align: center;
}
TABLE.zebra TD *
{
	vertical-align: middle;
}
TABLE.zebra TFOOT
{
	font-style: italic;
}
TABLE.zebra CAPTION
{
	font-size: 11px;
	text-align: left;
	font-style: italic;
}
/*Definition Lists
----------------------------------------------------------------------------------------------------*/
DL.separator
{
	padding: 0;
	overflow: hidden;
}
DL.separator DT
{
	width: 160px;
	padding-right: 10px;
	float: left;
	clear: both;
}
DL.separator DD
{
	margin-left: 170px;
	padding-left: 20px;
}
/*Text
----------------------------------------------------------------------------------------------------
Inline Text Box*/
EM.box
{
	padding: 0 3px;
	white-space: nowrap;
}
/*Dotted Horizontal Rule*/
HR.dotted
{
	border: none;
}
/*Drop Caps*/
P.dropcap:first-letter
{
	display: block;
	margin: 7px 4px 0px 0px;
	float: left;
	font-size: 280%;
	font-family: Georgia, "Times New Roman", Times, serif;
}
/*Boxes
----------------------------------------------------------------------------------------------------*/
.box-content, .box-note, .box-info, .box-warning, .box-hint, .box-download
{
	margin: 15px 0;
	padding: 10px;
}
.box-content
{
	padding: 20px;
}
.box-info, .box-warning, .box-hint, .box-download
{
	padding-left: 40px;
}
/*Forms (Needed for System Markup)
----------------------------------------------------------------------------------------------------
Box*/
FORM.box FIELDSET
{
	margin-bottom: 30px;
	padding: 0 10px 10px;
}
FORM.box LEGEND
{
	padding: 0 10px;
}
FORM.box FIELDSET > DIV
{
	margin: 15px 0;
}
FORM.box BUTTON, FORM.box INPUT[type='button'], FORM.box INPUT[type='reset']
{
	vertical-align: middle;
}
/*Short*/
FORM.short > DIV
{
	margin: 10px 0;
}
FORM.short INPUT
{
	color: #333;
}
FORM.short INPUT:-moz-placeholder
{
	color: #999;
}
FORM.short INPUT::-webkit-input-placeholder
{
	color: #999;
}
FORM.short INPUT.placeholder
{
	color: #999;
}
/*Mobile Switcher (Needed for Mobile)
----------------------------------------------------------------------------------------------------
Note: .mobile-switcher is deprecated since Warp 6.2*/
.mobile-switcher
{
	display: block;
	width: 80%;
	margin: 20px auto 40px;
	padding: 40px 0;
	font-size: 50px;
	text-align: center;
}
