@media screen {
    body {
	/*background: url('/images/back.jpg') top left repeat #ebeef2;*/
    font: normal 14px Arial, Helvetica, sans-serif;
    color: #6A6A6A;
   height: 1500px;
    }
    
    .backpic{
        width: 100%;
    }

    .container {
        position: absolute;
		top: 10%;
		right: 10%;
		bottom: 10%;
		left: 10%;
        /*
		top: 80px;
        right: 80px;
        bottom: 80px;
        left: 80px;
		*/
    }

    .contentdiv{
        width: 100%;
        height: 100%;
        border-radius: 20px;
        opacity: 0.7;
        -webkit-filter: blur(3px);
        -moz-filter: blur(3px);
        -ms-filter: blur(3px);
        -o-filter: blur(3px);
        filter: blur(3px);
        position: absolute;
        background-color: white;
    }
    
    .content {
        overflow: hidden;
		font: normal 15px Arial, Helvetica, sans-serif;
		line-height: 20px;
        color: #3a3b3c;
        width: 100%;
        height: 100%;
        min-height: 100%;
        resize: none;
        overflow-y: auto;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        border-radius: 30px;
        padding: 30px;
        border: none;
        background-position: center top;
        background-size: cover;
        position: absolute;
        background: transparent;
        
        font: 500 15px/1.5 Consolas, Monaco, 'Courier New', monospace;
        letter-spacing: 0.01em;
        color: #2d2d2d;
        tab-size: 4;
        text-rendering: optimizeSpeed;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    .content::after {
        background-image: url('/images/back.jpg');
        background-position: center top;
        background-size: cover;
        background-attachment: fixed;
        -webkit-filter: blur(20px);
        -moz-filter: blur(20px);
        -ms-filter: blur(20px);
        -o-filter: blur(20px);
        filter: blur(20px);
    }

    .print {
        display: none;
    }
}

@media print {
    .container {
        display: none;
    }

    .print {
        font-size: 10px;
    }
}
