
/*------Price--------------------------------------------------------*/
.priceContent{
	margin: 30px 0px;
	padding: 10px 0px;
	background-color: white;
	box-shadow: 0px 0px 20px  #cccccc;
}
.PriceTable{
	width: 80%;
	border-collapse: collapse;
	margin: 0px auto 40px auto;
}
.PriceTable tr:nth-child(even) {
    background-color: #eaeaea;
}

.PriceTable tr:hover,
.PriceTable tr:nth-child(even):hover{
	background-color: #dddddd;

}

.PriceTable td{
	padding: 5px 10px;
	border-bottom: 1px solid #cccccc;
}
.PriceTable td a{
	color: black;
}
.PriceTable td a:hover{
	color: #73231C;
	font-weight: bold;
}

.PriceTable th,
.PriceTableTitleRow{
	background-color: #bbbbbb;
	padding: 10px;
	border-bottom: 1px solid #a1a1a1;
}
.PriceTableTitleRow{
	background-color: #cccccc;
	text-align: center;
}
.PriceTableRecommendText{
	display: inline-block;
	padding-left: 10px;
	color: red;
	font-weight: bold;
}
.PriceTitlePanel{
	width: 80%;
	border-collapse: collapse;
	margin: 20px auto;
}
.PriceTitle{
	font-size: 28px;
	font-weight: bold;
}
.PricePrintButtonPanel{
	width: 80%;
	text-align: right;
	margin: 0px auto 40px auto;
}
.PricePrintButton{
	border: 1px solid #c0c0c0;
    color: #333333;
	margin: 0px 4px 2px 4px;
    padding: 5px 10px;
    cursor: pointer;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}
.PricePrintButton:hover{
	background-color: #73231C;
    color: white;
}

@media print {
	@page {
		margin: 20px;
	}
	body{
		background-color: #ffffff;
		background-image: none;
	}
	.priceContent{
		margin: 0px;
		padding-top: 0px;
		box-shadow: none;
	}
	.PriceTable,
	.PriceTitlePanel{
        width: 100%;
	}
	.PriceTableTitleRow{
		background-color: #fecc00;
	}
	.PriceTable th{
		background-color: black;
		color: white;
		font-weight: normal;
	}
	.PriceTableHeadTitleRow{
		page-break-inside: avoid;

	}
	.PriceTitle{
		font-size: 20px;
		font-weight: bold;
		margin: 0px auto;
	}
	
}