div.center { text-align: center;  /*to place whole contents of division to centre */
			 margin-right: auto;
			 margin-left: auto;
			 font-size: 18px;
		}
		
body { background: url(p5.jpg) no-repeat center center;
          -webkit-background-size: cover;
		  -moz-background-size: cover;
          -o-background-size: cover;
          background-size: cover;
          min-width: 700px;
		}
.tshadow { text-shadow: 5px 5px 10px black; } /* making shadow of text */

.border { border-style:outset;   /* creating border with specific size and using scroll down in terms of overflow */
			border-color: #DCC4A4 ;
			border-radius: 20px 10px 20px 10px;
			border: 2px solid #DCC4A4;
			text-align: center;
			/* overflow: scroll;  */
			margin-right: auto;
			margin-left: auto;
			width: 750px;
			height: 220px;
			background-color: #FDF5E6;
			padding: 2px;
			color: #412a00;
			}	
			

 /* to show different attributes of a link in terms of visiting , mouse movement and newly visited */

a:link{                
			 color: green;
		}
a:visited{
			 color: green;
		}
a:hover{
			 background-color: #F4A460;
			 font-size:100%;
		}
a:active{
			 color: red;
		}
		
/* creating 2-column fluid layouts in HTML5  */
		
div.contain { width: 100%;   
        margin: auto;
        display: table;
      }

header { 
          	font-weight: bold;
          	text-align: center;
          
          	height : 150px;
			background: #8c5d00;
			border: 5px solid #DCC4A4;
			width 100%;
			margin: 20px auto;
			border-radius: 20px 10px 20px 10px;
			
			font-family: Arabic Typesetting;
			font-size:25pt;
			color: #DCC4A4;
			line-height:150px;
        }
        
aside {  width: 15%;
        float: right;
        display: table-cell;
        background-color: #DCC4A4;
        padding: 30px;
        height: 600px;
        position: relative;
        border-radius: 10px 10px 10px 10px;
        border: 2px solid #8c5d00;
      }
      
section.main { width: 90%;
             display: table-cell;
             }
             
.fix2 { position: absolute;
             right: 20%; 
             top: 3%;   
	 }
.fix1 { position: absolute;
             left: 5%; 
             height : 150px;
               
	 }
             
       
aside, section.main { margin-top: 0px; 
						margin-right: 20px; 
						margin-left: 20px; 
                    }
footer { clear :both;
         background-color: #FAF0E6;
       }
       
 footer.div { position: absolute;
             		bottom: -200px;
             }	      
