/* GLOBAL CONTENT STYLES FOR CMS PAGES */

/* Flex cards */
.content-card-main {
    display: flex;
  flex-flow: row wrap;
  padding: 0px;
  margin: 0 -5px;
  list-style: none;
}

.content-card {
    flex: 1 auto; 
  width: 250px;
  border: 1px solid #aaa;
  max-width: 100%;
  text-align: left;
  flex-grow: 1;
  justify-content: flex-end;
  margin: 5px;
  padding: 10px;
}

.rtl  .content-card {
  text-align: right;
}


/* two column list */

  #leftColumn .richtextcontent .table-main {
    display: table;
    width: 100%;
}

  #leftColumn .richtextcontent .table-main .table-left {
    display: table-cell;
    width: 49%;
    vertical-align: top;
}

   #leftColumn .richtextcontent .table-main .table-right {
    display: table-cell;
    width: 49%;
    vertical-align: top;
}

  #leftColumn .richtextcontent .table-main div.table-heading,
  #leftColumn .richtextcontent .table-main div.table-heading-blank:not(:empty) {
    font-weight: bold;
}

  #leftColumn .richtextcontent .table-main div.table-heading-blank:empty {
    border: 1px solid white;
    height: 15px;
}


@media screen and (max-width:700px) {

  #leftColumn .richtextcontent .table-main .table-left ul:nth-child(2n) {
    margin: 0 4px 0;
  }
  
  #leftColumn .richtextcontent .table-main .table-right ul {
    margin: 0 4px 0;
  }

  #leftColumn .richtextcontent .table-main .table-left {
    display: table;
    width: 100%;
  }

  #leftColumn .richtextcontent .table-main .table-right {
    display: table;
    width: 100%;
    margin: 0 0 10px;
  }
  
  #leftColumn .richtextcontent .table-main div.table-heading-blank:empty {
  margin: 0;
  padding: 0;
  }
  
  #leftColumn .richtextcontent .table-main div.table-heading-blank:not(:empty) {
  margin: 0;
  padding: 0;
  }
  
  #leftColumn .richtextcontent .table-main div.table-heading,
  #leftColumn .richtextcontent .table-main div.table-heading-blank:not(:empty) {
  margin: 10px 0;
  }

  #leftColumn .richtextcontent .table-main div.table-heading-blank:empty {
  height: 0px;
  border: none;
  display: none;
  }
   
}

/* image location content.css nominee */
.image_left, 
.image_center, 
.image_right {
  display: table;
  margin: 5px auto;
}

.image_left {
  margin-right: 20px;
  float: left;
}

.rtl .image_left {
  margin-left: 20px;
  float: right;
}

.image_right {
  margin-left: 20px;
  float: right;
}

.rtl .image_right {
  margin-right: 20px;
  float: left;
}

.image_left span, 
.image_center span, 
.image_right span {
  display: table-caption; 
  caption-side: bottom;
  text-align: center;
  font-size:12px;
  line-height:normal;
  padding-bottom:10px; 
}

.image_center img {
  width: 100%;
  height: auto;
}

.image_left img,
.image_right img {
  width: 100%;
  height: auto;
  max-width: 450px;
}

@media screen and (max-width:400px) {
    .image_left, 
    .image_center, 
    .image_right {
      margin: 30px auto;
      width: 60%;
      height: auto;
      float: none;
    }
}