
.article{
    margin-right: 10px;
    margin-bottom: 10px; 
    position:relative;
    float:left;
}

.oneColumn .article{
    width: 100%;
    margin-right: 0px;
}

/*
    total margin = 10px
    margin / cell = 5px
*/
.twoColumn .article{
    width: calc(50% - 5px);
}

.twoColumn .article:nth-child(2n){
   margin-right: 0px;
}

/*
    total margin = 20px
    margin / cell = 6.66px
*/
.threeColumn .article{
    width: calc(33.33% - 6.66px);
}

.threeColumn .article:nth-child(3n){
   margin-right: 0px;
}

/*
    total margin = 30px
    margin / cell = 7.5px
*/
.fourColumn .article{
    width: calc(25% - 7.5px);
}

.fourColumn .article:nth-child(4n){
   margin-right: 0px;
}


.articles{
    padding: 0;
    margin: 0;
    list-style: none; 
}

.gridCellTop{
    margin-bottom:10px;
}

.textContainer, .imageContainer{
    min-height: 220px;
}

div.imageContainer {
	background-color: none;
}

.textContainer {
	padding: 25px 25px 0px 25px;
	position: relative;
}


.gridCellLink{
    position:absolute;
    right: 20px;
    bottom: 20px;
}



.textContainer p,
.textContainer a{
    text-transform: uppercase;
}

.textContainer p{
    color: white;
}

.textContainer .articleButton{
    color: #474747;
    padding: 5px 10px;
    background-color: #D6D6D6;
    display: block;
    border-radius: 5px;
}

.textContainer .articleButton:hover{
    text-decoration: none;
}

.textContainer .headline{
    font-weight: bold;
}


.oneColumn .article .textContainer .gridCellSummary p{
   margin-bottom: 10px;
   margin-left: 15px;
}

.oneColumn .article .textContainer .gridCellSummary .headline{
    margin-bottom: 0px;
}


.imageContainer img{
    height: 100%;
    width: 100%;
}

.gridCellTop .textContainer,
 .gridCellBottom .textContainer{
    z-index: 40;

}
.gridCellTop .imageContainer,
.gridCellBottom .imageContainer{
    z-index: 10;
}

.gridCellArrow{
    position: absolute;
    left: 50%;
    -ms-transform: rotate(45deg); /* IE 9 */
    -ms-transform-origin: 0% 0%; /* IE 9 */
    -webkit-transform: rotate(45deg); /* Chrome, Safari, Opera */
    -webkit-transform-origin: 0% 0%; /* Chrome, Safari, Opera */
    transform: rotate(45deg);
    transform-origin:0% 0%;
}

.coloredGridCellArrow{
    height: 60px;
    width: 60px;
    z-index: 25;
}

.whiteGridCellArrow{
    height: 80px;
    width: 80px;
    background-color:white;
    z-index: 20;
}

.arrowPointUp .whiteGridCellArrow{
    margin-top: -57px;
}

.arrowPointDown .whiteGridCellArrow{
    margin-top: -67px;
}

.arrowPointUp .coloredGridCellArrow{
    margin-top: -42px;
}

.arrowPointDown .coloredGridCellArrow{
    margin-top: -52px;
}

.hideArrow .gridCellArrow{
    display:none;
}

.clear{
    clear:both;
}

.searchAndFilterContainer{
    margin-bottom: 20px;
}

.searchForm{
    margin-bottom: 0px;
}


/*****************************
    Font Sizes
******************************/
.defaultFont .gridCellSummary p{
    font-size:16px;
}

.smallFont .gridCellSummary p{
    font-size:16px;
}

.defaultFont .gridCellLink .articleButton{
    font-size: 16px;
}

.smallFont .gridCellLink .articleButton{
    font-size: 14px;
}
