﻿/*!
* ACTi Corporation Copyright © 2015 All Right Reserved.
* http://www.acti.com/
*
* Date: 2015.08.14
* Creator: Eric Lin (Lin SianTing)
* Description :
* 
* Document :
* 
        Responsive design 響應式設計請參照 Foundation.js
        http://foundation.zurb.com/

        採用 small , medium , larger 三種顯示層級，共 12欄式呈現

        <div class="row collapse">
              <div class="small-12 medium-4 large-4 columns"></div>
              <div class="small-12 medium-8 large-8 columns"></div>
        </div>
* 
*/

        #DivInfo {
            background-color: lemonchiffon;
            
            border: 1px solid #E4E4E4;
            border-bottom: 0px solid white;
            border-radius: 5px 5px 5px 5px;
            -moz-border-radius: 5px 5px 5px 5px;
            -webkit-border-radius: 5px 5px 5px 5px;

	        display: block;
	        font-size: 12px;
	        line-height: 22px;
	        color: #000000;
	        text-decoration: none;
	        /*border-bottom: 1px solid #999999;*/
	        padding-top: 5px;
	        padding-left: 13px;
        	
	        background-color: white;
	        min-height: 34px;
        	
            /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#fceabb+0,f9b940+49,fbdf93+100 */
            background: rgb(252,234,187); /* Old browsers */
            background: -moz-linear-gradient(top, rgba(252,234,187,1) 0%, rgba(249,185,64,1) 49%, rgba(251,223,147,1) 100%); /* FF3.6+ */
            background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(252,234,187,1)), color-stop(49%,rgba(249,185,64,1)), color-stop(100%,rgba(251,223,147,1))); /* Chrome,Safari4+ */
            background: -webkit-linear-gradient(top, rgba(252,234,187,1) 0%,rgba(249,185,64,1) 49%,rgba(251,223,147,1) 100%); /* Chrome10+,Safari5.1+ */
            background: -o-linear-gradient(top, rgba(252,234,187,1) 0%,rgba(249,185,64,1) 49%,rgba(251,223,147,1) 100%); /* Opera 11.10+ */
            background: -ms-linear-gradient(top, rgba(252,234,187,1) 0%,rgba(249,185,64,1) 49%,rgba(251,223,147,1) 100%); /* IE10+ */
            background: linear-gradient(to bottom, rgba(252,234,187,1) 0%,rgba(249,185,64,1) 49%,rgba(251,223,147,1) 100%); /* W3C */
            filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fceabb', endColorstr='#fbdf93',GradientType=0 );
        }