/* ===================================================================
 	CSS Styles for previewing PDFs / Emails
----------------------------------------------------------------------*/

body {
	position: relative;
	font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
}

a {
	text-decoration: none;
}

.preview {
	width: 100%;
	background: #F9F9F9;
	position: fixed;
	border-bottom: 1px solid #D5D5D5;
}

.preview__container {
	width: 940px;
	padding: 10px;
	margin: 0 auto;
}

.button {
	display: inline-block;
	padding: 6px 12px;
	margin-bottom: 0;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.42857143;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	cursor: pointer;
	background-image: none;
	border: 1px solid transparent;
	border-radius: 4px;
	color: #303030;
	background: #E5E5E5;
}

.button:hover {
	color: #333;
	background-color: #e6e6e6;
	border-color: #adadad;
}

.button--right {
	float: right;
}


.messages {
	border-top: 1px solid #D5D5D5;
	font-size: 12px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.messages li {

}

.messages li span {
	width: 940px;
	padding: 10px;
	margin: auto;
	display: block;
}

.messages li.info {
	background-color: #ffc;
	color: #333;
}
.messages li.error {
	background: #ff0000;
	color: #f4f379;
}