/* CSS Hoja de estilo. ejemplo_13_fijo.css para ejemplo_13_fijo.html */

div#fijo_izquierda {
   		position: fixed;
   		left: 10%;
   		top: 50px;
   		width: 120px;
   		height: 100px;
   		border: #663366 5px double;
  		}
    div#fijo_derecha {
   		position: fixed;
  		right: 10%;
   		top: 50px;
   		width: 120px;
   		height: 100px;
   		border: #663366 5px double;
   		}
    div#columna {
   		width: 50%;
   		margin: auto;
   		}
    .verde, .azul {
   		height: 500px;
   		border: #006666 5px dashed;
   		border-width: 0 5px 5px 5px;
   		position: relative;
   		}
    .verde {
   		background-color: #66CC99;
   		}
    .azul {
   		background-color:#6699FF;
    		}