			/*** MY SUPER DUPER CB FLEX CLASSES BELOW***/
			.cb-flex
			{
			  display: -webkit-box;
			  display: -moz-box;
			  display: -ms-flexbox;
			  display: -webkit-flex;
			  display: flex;
			}

			.cb-center
			{
			  -webkit-justify-content: center;
			  -moz-justify-content: center;
			  -ms-justify-content: center;
			  justify-content: center;
			}

			.cb-middle
			{
			  -webkit-align-items: center;
			  -ms-flex-align: center;
			  align-items: center;
			}

			.cb-vert
			{
			  -webkit-flex-direction: column;
			  -ms-flex-direction: column;
			  flex-direction: column;
			}

			.cb-wrap
			{
			    -webkit-flex-wrap: wrap;
			    -ms-flex-wrap: wrap;
			    flex-wrap: wrap;
			}
			/*** END SUPER DUPER CB FLEX CLASSES ***/
