.custom-body {
	background-color: #EEE;
}

.container {
	max-width: 600px;
	background-color: #FFF
}

.flash {
  -moz-animation: flash 3s ease-out;
  -moz-animation-iteration-count: 1;

  -webkit-animation: flash 3s ease-out;
  -webkit-animation-iteration-count: 1;

  -ms-animation: flash 3s ease-out;
  -ms-animation-iteration-count: 1;

}

@-webkit-keyframes flash {
    0% { background-color:none;}
    50% { background-color:#fbf8b2;}        
    100% {background-color:none;}
}

@-moz-keyframes flash {
    0% { background-color:none;}
    50% { background-color:#fbf8b2;}        
    100% {background-color:none;}
}

@-ms-keyframes flash {
    0% { background-color:none;}
    50% { background-color:#fbf8b2;}        
    100% {background-color:none;}
}

.bg-info, .bg-danger {
	padding: 10px;
}