/**
 * Mini-Typro
 * @author  Jan Pecha, 2013
 * @license New BSD License (BSD-3)
 */
body {
	margin: 0;
	padding: 1em; /* 0 */
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	line-height: 1.6;
	text-align: left;
	font-family: 'Arial CE', 'Helvetica CE', Arial, Verdana, Helvetica, sans-serif;
	color: #222;
}
/* headings */
h1, h2, h3, h4, h5, h6 {
	font-weight: bold;
	margin-bottom: 0.15em;
	line-height: 1.4;
	color: #444;
}
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child {
	margin-top: 0;
}
h1 {
	margin-top: 0;
	font-size: 250%;
}
/* forms */
textarea, input, select {
	display: block;
	margin-bottom: 1em;
	padding: 1em;
	font-size: 90%;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
textarea {
	width: 100%;
	-moz-resize: vertical;
	resize: vertical;
}
input, select {
	padding-top: 0.5em;
	padding-bottom: 0.5em;
}
/* grid */
.row {
	overflow: hidden;
}
.column {
	display: block;
	float: left;
	width: 50%;
	text-align: left;
	padding-left: 0.5em;
	padding-right: 0.5em;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.column:last-child {
	padding-right: 0;
}
.column:first-child {
	padding-left: 0;
}
.column-1p2 {
	width: 50%;
}
.column-1p3 {
	width: 33.33333333333333%;
}
.column-1p4 {
	width: 25%;
}
.column-2p3 {
	width: 66.66666666666666%;
}
.column-3p4 {
	width: 75%;
}
/* box */
.box {
	background: #eee;
	padding: 1em;
	margin-bottom: 1em;
}
.box.info {
	background: #C3E0FF;
}
.box.success {
	background: #C3F1AF;
}
.box.warning {
	background: #FFF991;
}
.box.error,
.box.danger {
	background: #FECCC8;
}
.box p:last-child {
	margin-bottom: 0;
}
/* elements */
p {
	margin-top: 0;
}
a:link {
	color: #0044aa;
}
a:visited {
	color: #00255c;
}
a:hover {
	color: #d22;
}
input,
select {
	vertical-align: baseline;
	margin: 0.4em 0;
	display: inline-block;
}
th {
	padding-right: 1em;
	text-align: right;
	/*outline: 1px solid green;*/
	width: 8em;
}
table {
	width: 100%;
	/*outline: 1px solid red;*/
}
#link {
	width: 100%;
}
#output {
	color: gray;
	word-wrap: break-word;
	overflow-wrap: break-word;
}
.utm_medium {
	color: green;
}
.utm_source {
	color: blue;
}
.utm_campaign {
	color: red;
}
.utm_content {
	color: #C71585;
}
.hide {
	display: none;
}
.social-share {
	margin: 4em 0 1em;
}
.social-share p {
	color: #666;
}
.social-share .button {
	color: #fff;
	padding: 0.6em 1.4em;
	border-radius: 0.2em;
	text-decoration: none;
	display: inline-block;
	margin-bottom: 0.2em;
}
.social-share .facebook {
	background-color: #2D609B;
}
.social-share .facebook:hover,
.social-share .facebook:focus {
	background-color: #3570B5;
}
.social-share .twitter {
	background-color: #4099FF;
}
.social-share .twitter:hover,
.social-share .twitter:focus {
	background-color: #59A7FF;
}
.social-share .gplus {
	background-color: #EB4026;
}
.social-share .gplus:hover,
.social-share .gplus:focus {
	background-color: #FF4529;
}
.int-media {
	text-decoration: none;
}
.int-media span {
	text-decoration: underline;
}
#footer {
	margin-top: 4em;
	color: gray;
}
@media only screen and (max-width: 55em) {
	.column {
		width: auto;
		float: none;
		margin-bottom: 2em;
	}
}
