@media screen {
    body {
    background: #eee;		
	background: url('/images/bg.png') top left repeat #ebeef2;
    font: normal 14px Arial, Helvetica, sans-serif;
    color: #6A6A6A;
    }

    .container {
        position: absolute;
		top: 2%;
		right: 2%;
		bottom: 2%;
		left: 2%;
        /*
		top: 80px;
        right: 80px;
        bottom: 80px;
        left: 80px;
		*/
    }

    .content {
		font: normal 15px Arial, Helvetica, sans-serif;
		line-height: 20px;
        color: #3a3b3c;
        width: 100%;
        height: 60%;
        min-height: 60%;
        resize: none;
        overflow-y: auto;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    .print {
        display: none;
    }
}

@media print {
    .container {
        display: none;
    }

    .print {
        font-size: 10px;
    }
}
