
/*
 * Row with equal height columns
 * --------------------------------------------------
 */
.row-eq-height {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
	
	    display: -moz-box;
	    display: flex;
    flex:0 auto;
    height:100%;
}


/*
 * Styles copied from the Grid example to make grid rows & columns visible.
 */
.container {
  padding-right: 15px;
  padding-left: 15px;
}
.row {
  margin-bottom: 0px;
}
.row .row {
  margin-top: 15px;
  margin-bottom: 15px;
}
[class*="col-"] {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: none;
  border: 0px solid red;
  border: 0px solid green;
}