/* Copyright (C) YOOtheme GmbH, YOOtheme Proprietary Use License (http://www.yootheme.com/license) */

@import url(../warp/css/tools.css);


/* Buttons (Needed for System Markup)
----------------------------------------------------------------------------------------------------*/

/* Default */
.button-default {
	padding: 3px 10px;
	border: 1px solid #ddd;
	background: #EEE;
	border-radius: 4px;
	color: #444;
	text-shadow: 0 1px 1px #FFF;
}

.button-default:hover {
	border-color: #CCC;
	background: #DDD;
	color: #444;
}

/* Red Pill */
.button-redpill { display: inline-block; }
.button-redpill, a.button-redpill {
-webkit-border-radius: 1000px;
-moz-border-radius: 100px;
border-radius: 100px;
font-size: 1.8em;
    color: #fafafa;
    padding: 10px 25px;
    border: 1px solid #B50000;
    background-color: #ff3019;
    background-image: -moz-linear-gradient(top,  #ff3019 0%, #bc0000 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ff3019), color-stop(100%,#bc0000));
    background-image: -webkit-linear-gradient(top,  #ff3019 0%,#bc0000 100%);
    background-image: -o-linear-gradient(top,  #ff3019 0%,#bc0000 100%);
    background-image: -ms-linear-gradient(top,  #ff3019 0%,#bc0000 100%);
    background-image: linear-gradient(top,  #ff3019 0%,#bc0000 100%);
    /*filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff3019', endColorstr='#bc0000',GradientType=0 );*/
    
    text-shadow: 0 -1px 0 rgba(0, 0, 0, .2);
    -webkit-box-shadow: inset 0 1px rgba(255,255,255, .4), inset 1px 0 rgba(255,255,255, .1), inset -1px 0 rgba(255,255,255, .1);          
    -moz-box-shadow: inset 0 1px rgba(255,255,255, .4), inset 1px 0 rgba(255,255,255, .1), inset -1px 0 rgba(255,255,255, .1);          
    box-shadow: inset 0 1px rgba(255,255,255, .4), inset 1px 0 rgba(255,255,255, .1), inset -1px 0 rgba(255,255,255, .1);       
}
.button-redpill:active, .button-redpill.active, a.button-redpill:active, a.button-redpill.active { background-color: #C40000; background-image: none; }

/* Blue Pill */
.button-bluepill, a.button-bluepill {
padding: 10px 25px;
display:inline-block;
-webkit-border-radius: 1000px;
-moz-border-radius: 100px;
border-radius: 100px;
font-size: 1.8em;
    color: #fafafa;
    border: solid 1px #1c3b7d;
    background-color: #3054a1;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #3054a1), color-stop(100%, #1c3b7d));
background-image: -webkit-linear-gradient(#3054a1, #1c3b7d);
background-image: -moz-linear-gradient(#3054a1, #1c3b7d);
background-image: -o-linear-gradient(#3054a1, #1c3b7d);
-pie-background: linear-gradient(#3054a1, #1c3b7d);
border: 1px solid #1d3d81;
text-shadow: 0 -1px 0 rgba(0, 0, 0, .6);
-webkit-box-shadow: inset 0 1px rgba(255,255,255, .3), inset 1px 0 rgba(255,255,255, .1), inset -1px 0 rgba(255,255,255, .1);
-moz-box-shadow: inset 0 1px rgba(255,255,255, .3), inset 1px 0 rgba(255,255,255, .1), inset -1px 0 rgba(255,255,255, .1);
box-shadow: inset 0 1px rgba(255,255,255, .3), inset 1px 0 rgba(255,255,255, .1), inset -1px 0 rgba(255,255,255, .1);
    
}
.button-bluepill:active, .button-bluepill.active, a.button-bluepill:active, a.button-bluepill.active { 
background-color: #1c3b7d; background-image: none; -pie-background: #1c3b7d;
}
/* Primary */
.button-primary {
	padding: 3px 10px;
	border: 1px solid #469bdb;
	background: #469bdb;
	border-radius: 4px;
	text-shadow: 0 1px 0 rgba(0,0,0,0.2);
	color: #FFF;
}

.button-primary:hover {
	border-color: #444;
	background: #444;
	color: #FFF;
}


/* Images and Objects (Needed for System Markup)
----------------------------------------------------------------------------------------------------*/

img.border-box { border: 1px solid #ddd; }


/* Lists and Tables (Needed for System Markup)
----------------------------------------------------------------------------------------------------*/

/* Line */
ul.line > li { border-top: 1px solid #ddd; }
ul.line > li:first-child { border: none; }

/* Check */
ul.check > li {
	padding: 4px 0 0 30px;
	background: url(../images/tools/list_check.png) 0 0 no-repeat;
}

/* Zebra List and Table */
ul.zebra > li,
table.zebra tbody td { border-bottom: 1px solid #ddd; }
ul.zebra > li:first-child,
table.zebra tbody tr:first-child td { border-top: 1px solid #ddd; }

ul.zebra > li.odd,
table.zebra tbody tr.odd { background: #fafafa; }
ul.zebra > li:nth-of-type(odd),
table.zebra tbody tr:nth-of-type(odd) { background: #fafafa; }

table.zebra caption { color: #999; }


/* Definition Lists
----------------------------------------------------------------------------------------------------*/

dl.separator dt {	
	position: relative;
	padding-top: 5px;
	padding-bottom: 5px;
	text-transform: uppercase;
}

/* border code because of RTL */
dl.separator dd {
	padding-top: 5px;
	padding-bottom: 5px;
	border-width: 0 0 0 1px;
	border-style: solid;
	border-color: #DDD;
}

dl.separator dt:before {
	content: "";
	position: absolute;
	top: 0;
	right: -15px;
	width: 30px;
	border-top: 1px solid #DDD;
}

dl.separator dt:after {
	content: "";
	position:absolute;
	top: -3px;
	right: -4px;
	width: 5px;
	height: 5px;
	background: #FFF;
	border: 1px solid #DDD;
	border-radius:6px;
}

dl.separator dt:first-child:before,
dl.separator dt:first-child:after { display: none; }


/* Text
----------------------------------------------------------------------------------------------------*/

/* Inline Text Box */
em.box { 
	border: 1px dotted #bbb;
	background: #fafafa;
	color: #444;
}

/* Dotted Horizontal Rule */
hr.dotted { background: url(../images/tools/line_dotted.png) 0 0 repeat-x; }


/* Boxes
----------------------------------------------------------------------------------------------------*/

.box-content {
	background: #fafafa;
	border: 1px solid #ddd;
}

.box-note,
.box-info,
.box-warning,
.box-hint,
.box-download {
	background: #eee;
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
}

.box-info {
	background: #ebf5fa url(../images/tools/box_info.png) 0 0 no-repeat;
	border-color: #d2dce1;
}

.box-warning {
	background: #fff0eb url(../images/tools/box_warning.png) 0 0 no-repeat;
	border-color: #ffd7cd;
}

.box-hint {
	background: #fffae6 url(../images/tools/box_hint.png) 0 0 no-repeat;
	border-color: #fae6be;
}

.box-download {
	background: #eee url(../images/tools/box_download.png) 0 0 no-repeat;
	border-color: #ccc;
}


/* Forms (Needed for System Markup)
----------------------------------------------------------------------------------------------------*/

form.box fieldset { border: 1px solid #ddd; }
form.box legend { background: #fff; }

