﻿@import url(/includes/css/grid-flex.css);
@charset "UTF-8";
/* Web Solutions 4.0 Compatible */

main .topRibbon {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
main .left, main .right {float:left; padding: 2em 0; width: 50%;}

@media (max-width: 1000px) {
	main .topRibbon {display: block;}
	main .left, main .right {width: 100%;}
}