.block-gallery ul.block-data {
    list-style: none;    
}

.block-gallery ul.block-data li {
    padding: 5px;
    
    display: inline-block;
    zoom: 1;
    *display: none;
}

.block-gallery ul.block-data a {
    background-color: white;
    border: 1px solid #e0e0e0;
    vertical-align: bottom;
    
    -moz-border-radius: 2px; /* Firefox */
    -webkit-border-radius: 2px; /* Safari, Chrome */
    border-radius: 2px; /* CSS3 */
    
    display: inline-block;
    zoom: 1;
    *display: none;
}
.block-gallery ul.block-data a:hover {
    opacity: 0.75;
}

.block-gallery ul.block-data a div {
    width: 100px;
    height: 100px;
    background-position: center center;
    background-repeat: no-repeat;
    
}

.notice {
    background-repeat: no-repeat;
    background-position: 7px 10px;
    border: 1px blue solid;
    background-color: skyblue;
    padding: 8px;
    padding-left: 28px;
    margin-bottom: 16px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -moz-box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
}

.notice.notice_warning {
    background-color: #ffffcc;
    border-color: #c3c39e;
    background-image: url("../images/warning-icon.png");
}

.notice.notice_error {
    background-color: #fff3f2;
    border-color: #c00000;
    background-image: url("../images/error-icon.png");
}
.notice.notice_success {
    background-color: #ddebdf;
    border-color: #339933;
    background-image: url("../images/success-icon.png");
}
.notice.notice_loading {
    background-color: #dcebf2;
    border-color: #179ae8;
    background-image: url("../images/loading-icon.gif");
    background-position: 7px 10px;
}
.notice.notice_information {
    background-color: #dcebf2;
    border-color: #179ae8;
    background-image: url("../images/information-icon.png");
}

/* cms row styles */
.cms_content_cell {

}
.cms_cell_content {
    margin: 10px 0;
} 

.cms-token {display:inline-block;}

/* LISTS */
.cms_cell_content ul li {list-style: disc; margin-left:27px;margin-bottom:7px;}
.cms_cell_content ul li p {margin-bottom:0px;}
.cms_cell_content ul.block-data li { margin-left:0px;}

ul.cms_bullet_arrow , ul.cms_bullet_arrow li {
    list-style: inside none none;
    padding-left: 24px;
}
ul.cms_bullet_arrow > li {
    position: relative;
}
ul.cms_bullet_arrow li:before {
    content: "\f105";
    font-family: "FontAwesome";
    position: absolute;
    left: -18px;
}
ul.cms_bullet_checkmark {
    list-style:none;
    margin-left:0px !important;
    padding-left:15px !important;
    margin-bottom:7px;
    position: relative;
}
ul.cms_bullet_checkmark li {
    position: relative;
}
ul.cms_bullet_checkmark li:before {
    font-family: "FontAwesome";
    content:"\f00C";
    left: -18px;
    position: absolute;
}
ul.cms_bullet_custom_1 {
    list-style:none;
    margin-left:0px !important;
    padding-left:15px !important;
    margin-bottom:7px;
    position: relative;
}
ul.cms_bullet_custom_1 li {
    position: relative;
}
ul.cms_bullet_custom_1 li:before {
    font-family: "FontAwesome";
    content:"\f005"; /* star */
    left: -18px;
    position: absolute;
}
ul.cms_bullet_custom_2 {
    list-style:none;
    margin-left:0px !important;
    padding-left:15px !important;
    margin-bottom:7px;
    position: relative;
}
ul.cms_bullet_custom_2 li {
    position: relative;
}
ul.cms_bullet_custom_2 li:before {
    font-family: "FontAwesome";
    content:"\f067"; /* plus */
    left: -18px;
    position: absolute;
}