﻿.flex{
	
	display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width:100%;
    margin:auto;
   -ms-flex-pack: justify;
    justify-content: space-between;
 
}
.flex-item{
	
				flex: 0 0 95%;
  				-ms-flex: 0 0 95%;
 				-webkit-flex: 0 0 95%;
 				margin:0 0 20px 0;
 				padding-bottom:8px;
 				
 				
 				
 			
		}
		
 .CenterImg{
	align-self: center;
	padding:8px 0
	
	}


.flex-item:last-child{
	
	
}
 .flex-itemstart:nth-child(2)
		   {
				display:none
			}


@media all and (min-width: 720px) {
			
				.flex-item{
	
				flex: 1 1 auto;
  				-ms-flex: 1 1 auto;
 				-webkit-flex: 1 1 auto;
 				border-bottom:0px silver dotted; 			
 				padding-bottom:8px;
 				
				}
								
				.flex-itemstart{
	
				flex: 1 1 auto;
  				-ms-flex: 1 1 auto;
 				-webkit-flex: 1 1 auto;
 				border-bottom:0px silver dotted; 			
 				padding:12px 0px;
 				align-self:center;
 				text-align:left
				}
			
								
}

@media screen and (min-width: 880px) {
			
		   .flex-itemstart:nth-child(2)
		   {
				display:block
			}

}
