/*
* Coupon Creator CSS
*
*
*/

/* Coupon Creator CSS
------------------------------------------------------------ */
.cctor_coupon_container {
	width: 317px;
	margin: 0 10px;
	overflow:hidden;
	text-align: center;
	max-width:100%;
}
.cctor_coupon_container, .cctor_coupon_container * {
   -moz-box-sizing:    border-box;   /* Firefox 1 */
   -webkit-box-sizing: border-box;   /* Safari 3-4 */
    box-sizing:        border-box;   /* Everything else */
}

/* Coupon Contents
------------------------------------------------------------ */
.cctor_coupon {
	width:100%;
	min-height: 150px;
	padding:5px;
	border: 3px dashed black;
}
.cctor_coupon_image {
	padding:1%;
	border: 3px dashed black;
	max-width: 100%;
}
.cctor_coupon_content {
	position:relative;
	width:100%;
	height: 100%;
	border: 2px solid #0030ff;
	background: #fff;
}
.cctor_coupon_content h3 {
	width: 100%;
	min-height: 31px;
	padding:2%;
	margin: 0px;
	background: #ffa300;
	font-size:24px;
	font-weight:bold;
	color: #000;
}
.cctor_deal {
	width:100%;
	min-height: 91px;
	padding: 2% 3%;
	line-height:18px;
	font-size:14px;
	font-weight:bold;
}
.cctor_deal p {
	margin: 0;
}
.cctor_expiration  {
	width:100%;
	font-size:10px;
	min-height: 16px;
	font-weight:bold;
}
.cctor_opencoupon  {
	width:100%;
	height:20px;
	margin-top: 10px;
	font-size:14px;
	line-height: 20px;
}

/* Coupon Align
------------------------------------------------------------ */
.cctor_alignnone {
	display: inline-block;
	margin: 0 0 10px;
}
.cctor_alignleft {
	float: left;
	display: inline;
	margin: 0 10px 10px 0;
}
.cctor_alignright {
	float: right;
	display: inline;
	margin: 0 0 10px 10px;
}
.cctor_aligncenter {
	display: block;
	margin: 10px auto;
}
/* Print View CSS
------------------------------------------------------------ */
.cctor_coupon_container.print_coupon {
	width: 420px;
	margin: 10px auto;
}
.print_coupon .cctor_coupon_content h3 {
	font-size:30px;
	min-height: 31px;
}
.print_coupon .cctor_deal {
	font-size:20px;
	line-height: 22px;
	min-height: 149px;
}
@media print {
.cctor_opencoupon {
	display:none !important;
	}
}
/* Basic IE7 Support
------------------------------------------------------------ */
.cctor_coupon {
	*width:300px;
}
.cctor_coupon_content h3,
.cctor_deal ,
.cctor_expiration {
	*width: 96%;
}