.red{
	height: 600px;
	background-color: red;

}

.btn-custom{
	background-color: skyblue;
}

.blink_me {
     text-align:center;
    -webkit-animation-name: blinker;
    -webkit-animation-duration: 1s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
	

    -moz-animation-name: blinker;
    -moz-animation-duration: 1s;
    -moz-animation-timing-function: linear;
    -moz-animation-iteration-count: infinite;

    animation-name: blinker;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@-moz-keyframes blinker {  
    0% { opacity: 1.0; }
    50% { opacity: 0.0; }
    100% { opacity: 1.0; }
}

@-webkit-keyframes blinker {  
    0% { opacity: 1.0; }
    50% { opacity: 0.0; }
    100% { opacity: 1.0; }
}

@keyframes blinker {  
    0% { opacity: 1.0; }
    50% { opacity: 0.0; }
    100% { opacity: 1.0; }
}




.table-hover{
		width:100%; 
		border-collapse:collapse; 
	}
	.table-hover td{ 
		padding:7px; border:red 1px solid;
	}
	/* Define the default color for all the table rows */
	.table-hover tr{
		background: #b8d1f3;
	}
	/* Define the hover highlight color for the table row */
    .table-hover tr:hover {
          background-color:white;
    }