diff --git a/inc/databap.php b/inc/databap.php index 8b6aad0..b0fe84d 100755 --- a/inc/databap.php +++ b/inc/databap.php @@ -2975,7 +2975,7 @@ class Databap extends PhpObject public static function toBytes($str) { - $val = trim($str); + $val = (int) trim($str); $last = mb_strtolower($str[mb_strlen($str)-1]); switch($last) { case 'g': $val *= 1024; diff --git a/inc/reader.php b/inc/reader.php index 5fb8ec4..10fe452 100644 --- a/inc/reader.php +++ b/inc/reader.php @@ -56,7 +56,7 @@ class Reader extends PhpObject 'ENDON','ENDPROVIDE','ENDSELECT','ENDTRY','ENDWHILE','END-OF_FILE','END-OF-DEFINITION','END-OF-PAGE', 'END-OF-SELECTION','ENTRIES','EQ','ERRORS','EVENT','EVENTS','EXCEPTION','EXCEPTIONS','EXCEPTION-TABLE','EXCLUDE', 'EXCLUDING','EXEC','EXIT','EXIT-COMMAND','EXPORT','EXPORTING','EXTENDED','EXTRACT','FETCH','FIELD','FIELD-GROUPS', - 'FIELDSNO','FIELD-SYMBOLS','FILTER','FINAL','FIND','FIRST','FOR','FORM','FORMAT','FORWARDBACKWARD','FOUND','FRAME', + 'FIELDSNO','FIELD-SYMBOL','FIELD-SYMBOLS','FILTER','FINAL','FIND','FIRST','FOR','FORM','FORMAT','FORWARDBACKWARD','FOUND','FRAME', 'FREE','FRIENDS','FROM','FUNCTION','FUNCTION-POOL','GE','GET','GIVING','GROUP','GT','HANDLER','HASHED','HAVING', 'HEADER','HEADING','HELP-ID','HIDE','HIGHLOW','HOLD','HOTSPOT','ID','IF','IGNORING','IMMEDIATELY','IMPLEMENTATION', 'IMPORT','IMPORTING','IN','INCREMENT','INDEX','INDEX-LINE','INHERITING','INIT','INITIAL','INITIALIZATION','INNER', @@ -96,11 +96,16 @@ class Reader extends PhpObject 'RIGHT','SIGN','SIN','SINH','SQRT','TABLE','TABLENAME','TAN','TANH','TITLE','TO','TRAILING','TRUNC','TYPE','UPPER', 'USING','VALUE','WITH', 'TRANSPORTING', 'TYPE-POOLS'), 'wBwCore'=>array('SOURCE_PACKAGE', 'RESULT_PACKAGE', '', ''), - 'cOperator'=>array('(', ')', ',', '.', ':', '-', '~', '[', ']', '<', '>'), + 'cOperator'=>array('(', ')', ',', '.', ':', '-', '~', '[', ']', '<', '>', '|', '{', '}', '@'), 'cCalculation'=>array('+', '-', '*', '/', '=', '(', ')'), 'cComment'=>array('*'), 'cPartComment'=>array('"'), - 'cString'=>array('"', '''), + 'cString'=>array( + 'quote' => array('"', '"'), + 'quot2' => array(''', '''), + 'pipe' => array('|', '|'), + 'curly' => array('{', '}') + ), 'iNumber'=>array('1', '2', '3', '4', '5', '6', '7', '8', '9', '0'), 'wExpand'=>array('loop'=>'endloop', 'if'=>'endif'), 'wGlobal'=>array('SY'), @@ -208,10 +213,12 @@ class Reader extends PhpObject $sCode = mb_strtolower(implode('', $asColoredLines)); //Strings - foreach($this->getWords('cString') as $sStringWord) + foreach($this->getWords('cString') as $sDelName=>$asDels) { - $sPattern = '/>([^<]*?)'.$sStringWord.'([^<]*?)'.$sStringWord.'/u'; - $sCode = preg_replace($sPattern, '>$1'.$sStringWord.'$2'.$sStringWord.'', $sCode); + $sDelStart = $asDels[0]; + $sDelEnd = $asDels[1]; + $sPattern = '/([^<]*?)'.preg_quote($sDelStart).'([^<]*?)'.preg_quote($sDelEnd).'/u'; + $sCode = preg_replace($sPattern, '$1'.$sDelStart.'$2'.$sDelEnd.'', $sCode); } //Part comment @@ -223,10 +230,12 @@ class Reader extends PhpObject $sCode = preg_replace($sPattern, '>> $1', $sCode); //Core Words - foreach($this->getWords('wCore') as $sCoreWord) + $asCoreWords = $this->getWords('wCore'); + rsort($asCoreWords); + foreach($asCoreWords as $sCoreWord) { $sCoreWord = mb_strtolower($sCoreWord); - $sPattern = '/>(([^<]*)([^\w&<]{1})|.{0})('.$sCoreWord.')([\W])/u'; + $sPattern = '/>(([^<]*)([^\w&<-]{1})|.{0})('.$sCoreWord.')([\W])/u'; $sCode = preg_replace($sPattern, '>$1$4$5', $sCode); } //$sCoreWords = str_replace(' ', '\ ', implode('|', array_map('mb_strtolower', $this->getWords('wCore')))); @@ -238,8 +247,14 @@ class Reader extends PhpObject $asOperators = array_unique(array_merge($this->getWords('cOperator'), $this->getWords('cCalculation'))); foreach($asOperators as $sOpWord) { + $sOpName = ''; + switch($sOpWord) { + case '|': $sOpName = 'pipe'; break; + case '{': + case '}': $sOpName = 'curly'; break; + } $sPattern = '/>([^<]*)\\'.$sOpWord.'/u'; - $sCode = preg_replace($sPattern, '>$1'.$sOpWord.'', $sCode); + $sCode = preg_replace($sPattern, '>$1'.$sOpWord.'', $sCode); } //$sPattern = '/>([^<]*)['.implode(array_map('mb_strtolower', ($this->getWords('cOperator')))).']/'; //echo $sPattern; diff --git a/style/databap.css b/style/databap.css index b652bc4..86cf1a1 100755 --- a/style/databap.css +++ b/style/databap.css @@ -1,5 +1,4 @@ @CHARSET "UTF-8";/*! * Font Awesome 4.2.0 by @davegandy - http://fontawesome.io - @fontawesome * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) - */@font-face{font-family:'FontAwesome';src:url("style/fontawesome-webfont.eot?v=4.2.0");src:url("style/fontawesome-webfont.eot?#iefix&v=4.2.0") format("embedded-opentype"),url("style/fontawesome-webfont.woff?v=4.2.0") format("woff"),url("style/fontawesome-webfont.ttf?v=4.2.0") format("truetype"),url("style/fontawesome-webfont.svg?v=4.2.0#fontawesomeregular") format("svg");font-weight:normal;font-style:normal}.fa{display:inline-block;font-family:FontAwesome;font-style:normal;font-weight:normal;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:0.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:0.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid 0.08em #eeeeee;border-radius:.1em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:spin 2s infinite linear;-moz-animation:spin 2s infinite linear;-o-animation:spin 2s infinite linear;animation:spin 2s infinite linear}@-moz-keyframes spin{0%{-moz-transform:rotate(0deg)}100%{-moz-transform:rotate(359deg)}}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg)}}@-o-keyframes spin{0%{-o-transform:rotate(0deg)}100%{-o-transform:rotate(359deg)}}@keyframes spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg);-o-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);-webkit-transform:scale(-1, 1);-moz-transform:scale(-1, 1);-ms-transform:scale(-1, 1);-o-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);-webkit-transform:scale(1, -1);-moz-transform:scale(1, -1);-ms-transform:scale(1, -1);-o-transform:scale(1, -1);transform:scale(1, -1)}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#ffffff}.fa-inline{margin-right:5px}.fa-10{font-size:1.1111111111111111em;line-height:0.9166666666666666em;vertical-align:-5%}.fa-20,#chat_messages p span.text a.img_box.hidden .banner .button .fa{font-size:1.2222222222222222em;line-height:0.8333333333333333em;vertical-align:-10%}.fa-30{font-size:1.3333333333333333em;line-height:0.75em;vertical-align:-15%}.fa-40{font-size:1.4444444444444444em;line-height:0.6666666666666666em;vertical-align:-20%}.fa-60,a.button .fa{font-size:1.6666666666666666em;line-height:0.5em;vertical-align:-30%}.fa-c-c:before,.fa-c-code:before{content:"\f121"}.fa-c-procedure:before,.fa-c-proc:before,.fa-c-p:before{content:"\f0cb"}.fa-c-table:before,.fa-c-t:before{content:"\f0ce"}.fa-c-documentation:before,.fa-c-doc:before,.fa-c-d:before{content:"\f02d"}.fa-c-article:before,.fa-c-art:before,.fa-c-a:before{content:"\f1ea"}.fa-c-note:before{content:"\f0fa"}.fa-c-list:before{content:"\f0c2"}.fa-c-profile:before{content:"\f007"}.fa-c-chat:before{content:"\f086"}.fa-c-news:before{content:"\f0e7"}.fa-c-version:before{content:"\f005"}.fa-c-details:before{content:"\f112"}.fa-c-bug:before{content:"\f188"}.fa-c-date:before{content:"\f073"}.fa-c-git:before{content:"\f1d3"}.fa-c-afk:before{content:"\f017"}.fa-c-comment{color:#04357B}.fa-c-comment:before{content:"\f075"}.fa-c-options:before{content:"\f085"}.fa-c-param:before{content:"\f1de"}.fa-c-wip:before{content:"\f013"}.fa-c-rss:before{content:"\f09e"}.fa-c-logmeout:before,.fa-c-logout:before{content:"\f08b"}.fa-c-fold{color:#04357B}.fa-c-fold:before{content:"\f191"}.fa-c-success:before,.fa-c-ok:before,.available .fa:before{content:"\f00c"}.fa-c-warning{color:orange}.fa-c-warning:before{content:"\f071"}.fa-c-error{color:red}.fa-c-error:before{content:"\f071"}.fa-c-ko{color:red}.fa-c-ko:before,.unavailable .fa:before{content:"\f00d"}.fa-c-search:before{content:"\f002"}.fa-c-welcome:before{content:"\f015"}.fa-c-loading:before{content:"\f110"}.fa-c-edit:before{content:"\f040"}.fa-c-save:before{content:"\f0c7"}.fa-c-raw:before{content:"\f15c"}.fa-c-print:before{content:"\f02f"}.fa-c-share:before{content:"\f0ac"}.fa-c-refresh:before,.fa-c-switch:before{content:"\f021"}.fa-c-plus:before,.fa-c-add:before{content:"\f055"}.fa-c-minus:before,.fa-c-delete:before{content:"\f056"}.fa-c-up:before{content:"\f01b"}.fa-c-down:before{content:"\f01a"}.fa-c-next:before{content:"\f054"}.fa-c-prev:before{content:"\f053"}.fa-c-close:before{content:"\f05c"}.fa-c-desc:before{content:"\f05a"}.fa-c-company:before{content:"\f0f7"}.fa-c-name:before{content:"\f02b"}.fa-c-assignment:before{content:"\f0b1"}.fa-c-lock:before{content:""}.fa-c-unlock:before{content:"\f09c"}.fa-c-search:before{content:"\f002"}.fa-c-mail:before{content:"\f0e0"}.fa-c-upcoming:before{content:"\f135"}.fa-c-changelog:before{content:"\f0d0"}.fa-c-checked:before{content:"\f046"}.fa-c-unchecked:before{content:"\f096"}.fa-c-kpi:before{content:"\f0e4"}.fa-c-file-xls,.fa-c-file-xlsx{color:#247648}.fa-c-file-xls:before,.fa-c-file-xlsx:before{content:"\f1c3"}.fa-c-file-doc,.fa-c-file-docx{color:#2B5796}.fa-c-file-doc:before,.fa-c-file-docx:before{content:"\f1c2"}.fa-c-file-ppt,.fa-c-file-pptx{color:#D04423}.fa-c-file-ppt:before,.fa-c-file-pptx:before{content:"\f1c4"}.fa-c-file-pdf{color:#D20F0B}.fa-c-file-pdf:before{content:"\f1c1"}.fa-c-file-zip:before{content:"\f1c6"}.fa-c-file-png:before,.fa-c-file-gif:before,.fa-c-file-jpg:before,.fa-c-file-jpeg:before{content:"\f1c5"}.fa-c-image:before{content:"\f03e"}.fa-c-on:before,.fa-c-1:before{content:"\f205"}.fa-c-off:before,.fa-c-0:before{content:"\f204"}.fa-c-ban:before{content:"\f05e"}.lightboxOverlay{position:absolute;top:0;left:0;z-index:9999;background-color:white;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=80);opacity:0.8;display:none}.lightbox{position:absolute;left:0;width:100%;z-index:10000;text-align:center;line-height:0;font-weight:normal}.lightbox .lb-image{display:block;height:auto;max-width:inherit;-webkit-border-radius:3px;-moz-border-radius:3px;-ms-border-radius:3px;-o-border-radius:3px;border-radius:3px}.lightbox a img{border:none}.lb-outerContainer{position:relative;background-color:#04357B;*zoom:1;width:250px;height:250px;margin:0 auto;-webkit-border-radius:4px;-moz-border-radius:4px;-ms-border-radius:4px;-o-border-radius:4px;border-radius:4px}.lb-outerContainer:after{content:"";display:table;clear:both}.lb-container{padding:4px}.lb-loader{position:absolute;top:43%;left:0;height:25%;width:100%;text-align:center;line-height:0}.lb-cancel{display:block;width:32px;height:32px;margin:0 auto;font-size:32px;color:#88B2F0}.lb-nav{position:absolute;top:0;left:0;height:100%;width:100%;z-index:10}.lb-container>.nav{left:0}.lb-nav a{outline:none;background-image:url("data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==")}.lb-prev,.lb-next{height:100%;cursor:pointer;display:block}.lb-nav a.lb-prev{width:34%;left:0;float:left;text-align:left;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0);opacity:0;-webkit-transition:opacity 0.6s;-moz-transition:opacity 0.6s;-o-transition:opacity 0.6s;transition:opacity 0.6s}.lb-nav a.lb-prev:hover{filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);opacity:1}.lb-nav a.lb-next{width:64%;right:0;float:right;text-align:right;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0);opacity:0;-webkit-transition:opacity 0.6s;-moz-transition:opacity 0.6s;-o-transition:opacity 0.6s;transition:opacity 0.6s}.lb-nav a.lb-next:hover{filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);opacity:1}.lb-prev .fa,.lb-next .fa{position:relative;top:50%;font-size:45px;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);color:#04357B;padding:0 20px}.lb-prev .fa{text-shadow:-1px 2px 1px #88B2F0}.lb-next .fa{text-shadow:1px 1px 1px #88B2F0}.lb-dataContainer{margin:0 auto;padding-top:5px;*zoom:1;width:100%;-moz-border-radius-bottomleft:4px;-webkit-border-bottom-left-radius:4px;border-bottom-left-radius:4px;-moz-border-radius-bottomright:4px;-webkit-border-bottom-right-radius:4px;border-bottom-right-radius:4px}.lb-dataContainer:after{content:"";display:table;clear:both}.lb-data{padding:0 4px;color:#04357B}.lb-data .lb-details{width:85%;float:left;text-align:left;line-height:1.1em}.lb-data .lb-caption{font-size:13px;font-weight:bold;line-height:1em}.lb-data .lb-number{display:block;clear:left;padding-bottom:1em;font-size:12px;color:#04357B}.lb-data .lb-close{display:block;float:right;width:30px;height:30px;font-size:30px;color:#04357B;text-align:right;outline:none;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=70);opacity:0.7;-webkit-transition:opacity 0.2s;-moz-transition:opacity 0.2s;-o-transition:opacity 0.2s;transition:opacity 0.2s}.lb-data .lb-close:hover{cursor:pointer;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);opacity:1}@font-face{font-family:'Databap';font-style:normal;font-weight:400;src:local("Databap"),url(style/databap_normal_normal.woff) format("woff")}@font-face{font-family:'Databap';font-style:normal;font-weight:700;src:local("Databap Bold"),local("Databap-Bold"),url(style/databap_normal_bold.woff) format("woff")}@font-face{font-family:'Databap';font-style:italic;font-weight:400;src:local("Databap Italic"),local("Databap-Italic"),url(style/databap_italic_normal.woff) format("woff")}@font-face{font-family:'Databap';font-style:italic;font-weight:700;src:local("Databap Bold Italic"),local("Databap-BoldItalic"),url(style/databap_italic_bold.woff) format("woff")}body,html{background:#fff;font-family:'Databap', sans-serif;color:#04357B;background:#04357B;padding:0;margin:0;min-width:1024px}table{border:none;background:none;text-align:center;margin:0;padding:0;border-spacing:0}table td{padding:0}input,textarea,select{font-family:'Databap', sans-serif;font-size:11px;background:#fff;border:none}input[type=text],input[type=password]{padding:5px;width:200px}input[type=button]:hover,input[type=submit]:hover,input[type=password]:hover,input[type=text]:hover,input[type=text]:focus{background-color:#EFAB00}input[disabled="disabled"],textarea[disabled="disabled"],input:disabled,textarea:disabled{background-color:#88B2F0}input[disabled="disabled"]:hover,textarea[disabled="disabled"]:hover,input:disabled:hover,textarea:disabled:hover{background-color:#88B2F0}button::-moz-focus-inner,input[type="reset"]::-moz-focus-inner,input[type="button"]::-moz-focus-inner,input[type="submit"]::-moz-focus-inner,input[type="file"]>input[type="button"]::-moz-focus-inner{border:none}input[type=button],.clickable{cursor:pointer}iframe{width:100%;height:100%;margin:0;overflow:hidden;background:#D9E5F2;border:none}select{background:#fff;padding:5px;color:#04357B;margin:0}textarea{min-height:30px}input,select,textarea,h1,h2,h3,h4,p,a{color:#04357B}p{margin:0;padding:0}a,a:visited{text-decoration:none}a:active,a:focus,input:active,input:focus{outline:none}img{border:none}.round_top{-moz-border-radius:10px 10px 0 0;-webkit-border-radius:10px 10px 0 0;-khtml-border-radius:10px 10px 0 0;border-radius:10px 10px 0 0}.round_bottom{-moz-border-radius:0 0 10px 10px;-webkit-border-radius:0 0 10px 10px;-khtml-border-radius:0 0 10px 10px;border-radius:0 0 10px 10px}.round_right{-moz-border-radius:0 10px 10px 0;-webkit-border-radius:0 10px 10px 0;-khtml-border-radius:0 10px 10px 0;border-radius:0 10px 10px 0}.round_left{-moz-border-radius:10px 0 0 10px;-webkit-border-radius:10px 0 0 10px;-khtml-border-radius:10px 0 0 10px;border-radius:10px 0 0 10px}.round_bottom_left{-moz-border-radius:0 0 0 10px;-webkit-border-radius:0 0 0 10px;-khtml-border-radius:0 0 0 10px;border-radius:0 0 0 10px}.round{-moz-border-radius:10px 10px 10px 10px;-webkit-border-radius:10px 10px 10px 10px;-khtml-border-radius:10px 10px 10px 10px;border-radius:10px 10px 10px 10px}.tiny_round{-moz-border-radius:5px 5px 5px 5px;-webkit-border-radius:5px 5px 5px 5px;-khtml-border-radius:5px 5px 5px 5px;border-radius:5px 5px 5px 5px}.tiny_top_right{-moz-border-radius:5px 0 5px 5px;-webkit-border-radius:5px 0 5px 5px;-khtml-border-radius:5px 0 5px 5px;border-radius:5px 0 5px 5px}.inc_border{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.loading{font-size:20px;margin:5px;text-align:center}.error,.warning,.success{margin:10px 0;border-width:1px;border-style:solid;padding:3px;-moz-border-radius:5px;-webkit-border-radius:5px;-khtml-border-radius:5px;border-radius:5px;clear:both}.error a,.warning a,.success a{text-decoration:underline}.error,.error a{color:red;border-color:red;font-size:13px;font-weight:bold}.warning,.warning a{color:orange;border-color:orange;font-size:13px;font-style:italic}.success,.success a{color:green;border-color:green;font-size:13px}.default_text{color:#88B2F0 !important}a.button{padding:7px;margin-right:5px;background:#D9E5F2;font-size:13px;cursor:pointer;display:inline-block}a.button:hover{background-color:#EFAB00}a.button:active{background-color:#04357B;color:#fff}a.button .fa{margin-right:5px}a.button.no_text .fa{margin-right:0}a.button.no_bg,a.button.no_bg:hover{background:none;color:#fff;margin:0.33333em 0;padding:0}a.button.no_bg:hover .fa{color:#EFAB00}a.button.strong .value{font-weight:bold}a.button.inverse{background-color:#04357B;color:#88B2F0}a.button.inverse:hover{background-color:#EFAB00;color:#04357B}a.button.heavy{border-width:2px;font-weight:bold}a.button.gimmespace{margin-left:10px;margin-right:10px}.addr{cursor:text}.addr:hover{background-color:#fff}.maximized{width:100%}.righty{text-align:right}.glue-right{float:right}.lefty{text-align:left}.side_margins{margin:0 12px 10px}a.internal_link{text-decoration:underline;font-style:normal;background:#88B2F0;padding:1px 8px 1px 5px;margin:0}a.internal_link:visited,a.external_link:visited{color:grey}a.internal_link span.type{text-transform:capitalize}a[href^="table"].internal_link span.item{text-transform:uppercase}.author_box{padding:5px 10px;color:#04357B;font-style:italic;font-size:11px}.author_box:nth-child(odd){background:#fff}.author_box:nth-child(even){background:#f2f5f9}.author_box:hover a{color:#EFAB00}.author_box a{background:none;padding:0;display:block;width:100%}.author_box i.fa-30{vertical-align:-5%}.author_box span.description{font-weight:bold;font-style:normal;font-size:13px}.author_box span.rank{font-weight:bold;margin-left:10px}.standalone .author_box{margin-top:10px}.hide,.mobile{display:none}.step_box{margin-top:5px;margin-bottom:5px;padding:10px;background:#D9E5F2;color:#04357B}.step_box:nth-child(even){background:#f2f5f9}.step_box input,.step_box textarea,.step_box select,.step_box .read.textarea,.step_box .read.input{margin-top:10px;background:#fff;font-size:13px;border-width:1px}.step_box input:disabled,.step_box textarea:disabled,.step_box select:disabled,.step_box input:hover:disabled,.step_box textarea:hover:disabled,.step_box select:hover:disabled{background-color:#fff}.step_box input[type=text],.step_box textarea,.step_box .read.textarea,.step_box .read.input{width:100%}.step_box textarea,.step_box .read.textarea{height:200px;padding:5px;background:#fff}.step_box .read.textarea,.step_box .read.input{border-color:#88B2F0;font-weight:bold}.step_box .read.textarea{background-color:#D9E5F2}.step_box:nth-child(even) .read.textarea{background-color:#f2f5f9}.step_box .read.input{background-color:#88B2F0;padding-left:0}.step_box .step_nb_box,.step_box .step_box_title{border-bottom:1px solid #04357B;padding:0}.scrollbar_box{position:relative;height:0px;overflow:hidden}.scrollbar_box .scrollbar_subbox{position:absolute;left:0;top:0;width:100%}.scrollbar{position:relative;float:right;width:15px;margin-left:5px}.scrollbar .thumb,.scrollbar .thumb .end{background-color:#04357B;width:13px}.scrollbar .track{background-color:#88B2F0;height:100%;width:13px;position:relative;padding:0}.scrollbar .thumb{position:absolute;top:0;overflow:hidden}.scrollbar .thumb .end{overflow:hidden;height:20px}.disable{display:none}.uploader_box{position:relative;width:100%}.uploader_droparea{position:absolute;top:-10px;left:0;width:100%;height:100%;height:210px;z-index:2;background:#fff;text-align:center}.uploader_droparea-active{background:#EFAB00}.uploader_droparea span{display:block;position:absolute;top:50%;width:100%;margin-top:-8px;font-size:16px}.uploader_buffer{width:100%;height:8px}.uploader_list{margin-top:0;padding:0;list-style:none}.uploader_list li{margin:0 0 10px 10px}.uploader_item_file,.uploader_item_loading,.uploader_item_size,.uploader_item_cancel,.uploader_item_failed{margin-right:5px}.uploader_item_size,.uploader_item_cancel{font-size:11px;font-weight:normal}a.uploader_item_cancel{text-decoration:underline;color:#04357B}.uploader_box .image_description{border-width:1px;padding:3px 5px;background:#fff}.uploader_box .image_action{font-size:11px}.uploader_box .image_action input{width:200px;margin:0}.uploader_item_failed_notice{display:none}.uploader_item_failed .uploader_item_failed_notice{display:inline}.uploader_item_failed{color:red}.uploader_item_success .fa-c-delete:hover,.uploader_item_cancel .fa-c-delete:hover{color:#EFAB00}#container{background:#04357B;padding:10px 10px 1px 1px}#header{padding:0 0 10px 0;margin:0}#header table td.cell{width:50%;height:35px;margin:0}#header .logo{position:absolute;top:9px;width:200px;height:35px;margin-left:36px}#header #query,#header #search_btn_submit{height:25px;color:#04357B;border:none;float:right;padding:0 10px;font-size:15px}#header #query{background:#fff;width:250px}#header #search_btn_submit{background:#88B2F0;height:20px;padding-top:5px}#header #search_btn_submit:hover{background-color:#EFAB00}#main_container{background:#88B2F0;margin-left:35px;position:relative;overflow:hidden;border:10px solid #88B2F0}#page_title .side_margins{margin:0 0 10px 0}#page_title h1{padding:2px 0;margin:0;width:100%;font-family:'Databap', sans-serif;font-size:32px;line-height:32px;font-style:italic;font-weight:bold}#page_title h1 #title_feedback{text-align:right}#title_feedback .feedback{margin:0;padding:0 5px;border:none;position:absolute;right:10px;top:14px}#main{margin:0;padding:0;overflow:hidden}#menu{position:absolute;width:auto;padding:10px 0;z-index:10}#menu #menu_title{position:relative;padding:0;margin:21px 0 0 0;text-align:center;cursor:pointer;font-size:20px;line-height:20px;font-weight:bold}#menu #menu_box ul{margin:0;padding:0;text-align:left;font-size:20px;list-style:none}#menu #menu_box ul li{padding:10px 10px 10px 0;margin:0;list-style:none;cursor:pointer;line-height:20px;height:20px;font-size:20px;text-transform:capitalize}#menu #menu_box ul li:FIRST-CHILD{padding-top:0}#menu #menu_box ul li:FIRST-CHILD a{padding-top:8px}#menu #menu_box ul li a{padding:10px 0 10px 0;color:#88B2F0;display:inline-block;width:100%}#menu #menu_box ul li:hover a{color:#EFAB00}#menu #menu_box a.active{background:#88B2F0;color:#EFAB00;padding-right:10px;-moz-border-radius:10px 10px 10px 10px;-webkit-border-radius:10px 10px 10px 10px;-khtml-border-radius:10px 10px 10px 10px;border-radius:10px 10px 10px 10px}#menu #menu_box ul li a span{display:none}#menu #menu_box a.active span{display:inline-block;text-transform:capitalize;background:#04357B}#menu #menu_box ul li a.active .fa{margin-right:10px}#menu #menu_box ul li#rss_ln a{color:#04357B}#welcome #welcome_container{background:#D9E5F2;padding:10px}#welcome p.welcome_text{font-weight:bold;padding-top:0;padding-bottom:5px;border-bottom:1px solid #04357B;margin-bottom:20px}#welcome #welcome_container ul{margin-top:0px}#welcome #welcome_container ul li{font-size:13px;margin-top:10px;font-weight:bold}#welcome #welcome_container ul li .fa-li{top:0.242857em}#welcome #welcome_container ul li ul{font-size:11px;margin-top:2px}#welcome #welcome_container ul li ul li{font-weight:normal}#welcome #welcome_container ul li:FIRST-CHILD,#welcome #welcome_container ul li ul li{margin-top:0px}#welcome span.milestone{margin-left:5px;padding:2px 5px;font-weight:bold;border:1px solid #04357B;cursor:pointer;background:#fff;background:-moz-linear-gradient(top, #fff 15%, #88B2F0 85%);background:-webkit-gradient(linear, left top, left bottom, color-stop(15%, #fff), color-stop(85%, #88B2F0));background:-webkit-linear-gradient(top, #fff 15%, #88B2F0 85%);background:-o-linear-gradient(top, #fff 15%, #88B2F0 85%);background:-ms-linear-gradient(top, #fff 15%, #88B2F0 85%);background:linear-gradient(to bottom, #fff 15%, #88B2F0 85%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='$col_none', endColorstr='$col_main_2',GradientType=0 )}#welcome span.milestone:hover{color:#EFAB00;border-color:#EFAB00;background:-moz-linear-gradient(top, #fff 15%, #F2E1B5 85%);background:-webkit-gradient(linear, left top, left bottom, color-stop(15%, #fff), color-stop(85%, #F2E1B5));background:-webkit-linear-gradient(top, #fff 15%, #F2E1B5 85%);background:-o-linear-gradient(top, #fff 15%, #F2E1B5 85%);background:-ms-linear-gradient(top, #fff 15%, #F2E1B5 85%);background:linear-gradient(to bottom, #fff 15%, #F2E1B5 85%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='$col_none', endColorstr='$col_hover_2',GradientType=0 )}#welcome span.milestone .fa{margin-right:5px}#welcome a{text-decoration:underline}#add_code_container,#add_code_container input{font-size:13px}#add_code_container table{text-align:left}#add_code_container table tr td{padding:5px 5px 5px 0}#add_code_container table tr td:first-child{font-weight:bold}#add_code_container table tr td.last{padding-bottom:0px}#add_code_container textarea,#edit_container textarea{margin:0 -10px;padding:10px 6px 10px 10px;width:100%;min-height:100px;height:300px;font-family:Courier New, Courier;color:#000;font-size:13px}#add_code_container .loggued{margin:0 12px}#add_code_container input[type=text]{width:400px;padding:5px;color:#04357B}#auth_company_container{display:none}#add_code_container #add_code_btn{margin-top:10px;float:left}#add_code_container input:hover,#add_code_container input[type=text]:focus{background-color:#EFAB00}#link_result,#available_phrase{display:none;margin-left:15px;padding:5px;font-size:13px}#link_result{color:#04357B}#available_phrase{display:none}#available_phrase.available{color:green;background:#B2D6B2}#available_phrase.unavailable{color:red;background:#F6D3D3}#reader{margin:0;padding:0}#reader #code_menu{padding:0;margin:0}#code_container .code_reader{margin:10px 0 0 0;padding:0;background:#b5b5c6;background:#04357B}#reader #code_container .code_reader{margin:0}#code_container .code_reader ol li ::selection{background:#306897;color:#fff}#code_container .code_reader ol li ::-moz-selection{background:#306897;color:#fff}#code_container .code_reader .author_box{background:#04357B;border:none;color:#fff}#code_container .code_reader .author_box *{color:#fff}#code_container .code_reader .tab_left{margin:0;padding:0 0 0 19px;background:#f7efde;border:none}#code_container .code_reader ol{border-left:1px solid #848484;background:#fff;margin:0}#code_container .code_reader ol li{margin:0;padding:0;border-left:1px dotted #398c8c;background:#fff;font-family:Courier New, Courier;font-size:11px;line-height:12px;text-indent:20px;color:#398c8c}#code_container .code_reader ol li:first-child,#code_container .code_reader ol li:first-child span.expand_line{padding-top:5px}#code_container .code_reader ol li.bigline,#code_container .code_reader ol li.bigline span.expand_line{padding-top:5px;padding-bottom:5px}#code_container .code_reader ol li:hover,#code_container .code_reader ol li.code_hover{background-color:#D9E5F2}#code_container .code_reader .core{color:#0000ff;text-transform:uppercase}#code_container .code_reader .comment{color:#848484}#code_container .code_reader .number{color:#319cff}#code_container .code_reader .operator{color:#840084}#code_container .code_reader .string{color:#4aa518;text-transform:uppercase}#code_container .code_reader .string span{color:#4aa518}#code_container .code_reader .field-symbol{color:#848484}#code_container .code_reader .line{color:#848484}#code_container .code_reader .line-number,#code_container .code_reader .line-post-number{color:#398c8c}#code_container .code_reader .global{color:#000}#code_container .code_reader .expand{font-weight:bold}#code_container .code_reader .comment span.code_part{color:#04357B;font-weight:bold;text-transform:capitalize}#code_container .code_reader pre{white-space:pre-wrap;white-space:-moz-pre-wrap !important;white-space:-pre-wrap;white-space:-o-pre-wrap;word-wrap:break-word;margin:0;padding:0;border:none}#code_container .code_reader ol li span{color:#000}#code_container .code_reader ol li span.code,ol li span.comment{font-size:13px;margin-left:15px}#code_container .code_reader ol li span.comment span,#code_container .code_reader ol li span.code span.comment{color:#848484;text-transform:none;font-weight:normal}#code_container .code_reader ol li a.internal_link,#code_container .code_reader ol li a.external_link{color:#04357B;border:none;font-weight:normal;text-indent:0;text-decoration:underline}#code_container .code_reader ol li a.internal_link span{color:#04357B;font-weight:normal}#code_container .code_reader a.internal_link:hover,#code_container .code_reader a.internal_link:hover span{color:#EFAB00}#code_container .code_reader ol li span.hide span{color:#848484}#code_container .code_reader ol li span.expand_line{border-left:1px solid #424242;color:#424242;text-align:center;width:5px;position:relative}#reader #code_container .code_reader ol li span.expand_line span:before{content:'';position:absolute;margin-left:-21px}#reader #code_container .code_reader ol li span.expand_line input{position:absolute;margin:3px 0 0 -4px;cursor:pointer;padding:0;z-index:1000;background:#fff 0 0 no-repeat;width:9px;height:9px}#reader #code_container .code_reader ol li span.expand_line input.minus{background-image:url("images/expand_minus.png")}#reader #code_container .code_reader ol li span.expand_line input.plus{background-image:url("images/expand_plus.png")}#reader #code_container .code_reader ol li span.expand_line input:hover{background-position:0 -9px}#edit_container{display:none;margin-bottom:10px}#edit_container textarea{margin-top:10px;margin-bottom:20px;height:200px}#edit_container #edit_btn{margin-left:-10px}#search .summary{margin:10px 0 0px 5px;font-size:13px;font-style:italic}#search .code_reader:hover .tab_left,#search .code_reader:hover ol,#search .code_reader:hover li{background-color:#88B2F0;cursor:pointer}#search .step_box{margin-bottom:10px}#search #repeat_query{padding-bottom:6px}#search #sub_button_box{display:inline}#profile #avatar{width:96px;height:96px;background:url("images/avatar_96.png") 0 0 no-repeat;float:left}#profile #profile_company_logo{width:24px;height:24px;vertical-align:middle;margin-right:5px}#profile .user{margin-left:110px;padding:10px 16px;height:76px;background:#D9E5F2}#profile .user .fa{margin-right:2px}#profile .user p{font-size:16px;line-height:25px}#profile .user p span{font-weight:bold}#profile .user_history_title{margin:30px 0 0 0;padding:0 10px 0 25px;font-size:25px;color:#04357B;border-bottom:2px solid #04357B;background:url(images/logo_25.png) 0 1px no-repeat}#profile #history_subbox{margin-top:10px}#profile #user_history p.history_line{padding:5px 10px;font-size:13px}#profile #user_history p.history_line:nth-child(odd){background:#fff}#profile #user_history p.history_line:nth-child(even){background:#f2f5f9}#profile #user_history p.history_line:FIRST-CHILD{-moz-border-radius-topleft:10px;-moz-border-radius-topright:10px;-khtml-border-top-left-radius:10px;-khtml-border-top-right-radius:10px;-webkit-border-top-left-radius:10px;-webkit-border-top-right-radius:10px;border-top-left-radius:10px;border-top-right-radius:10px}#profile #user_history p.history_line:LAST-CHILD{-moz-border-radius-bottomright:10px;-moz-border-radius-bottomleft:10px;-khtml-border-bottom-left-radius:10px;-khtml-border-bottom-right-radius:10px;-webkit-border-bottom-right-radius:10px;-webkit-border-bottom-left-radius:10px;border-bottom-right-radius:10px;border-bottom-left-radius:10px}#profile #user_history p.history_line .fa{margin-left:5px;margin-right:5px}#profile #user_history a{text-decoration:underline}#article .loading_box{font-size:16px}#chat #chat_room{margin-right:175px;background:#fff;height:100%;padding:5px;position:relative}.g_white_transparent{background:#000 url("images/grad_white_transparent_50.png") repeat-x top}#chat #chat_room #chat_shades{position:absolute;width:0;left:18px;margin-top:5px;height:50px;background:url("images/grad_white_transparent_50.png") repeat-x top}#chat #chat_room #chat_container{clear:both;padding-bottom:5px}#chat #chat_room #chat_container #chat_messages_box{position:relative;height:20px;overflow:hidden;background:#fff url("images/sap_gold_332.jpg") 50% 50% no-repeat}#chat #chat_room #chat_container #chat_messages{position:absolute;left:0;top:0;list-style:none;background:rgba(255,255,255,0.7);width:100%}.noSelect{user-select:none;-o-user-select:none;-moz-user-select:none;-khtml-user-select:none;-webkit-user-select:none}#chat_messages p{color:#04357B}#chat_messages p.A,#chat_messages p.PA,#chat_messages p.E,#chat_messages p.PE,#chat_messages p.N{background-color:#D9E5F2;font-style:italic}#chat_messages p.C{color:#CCC;text-decoration:none;font-style:normal}#chat_messages p span.time{color:#EFAB00;font-size:9px;font-style:normal}#chat_messages p a.user,#chat_messages p span.console{font-size:10px;font-weight:bold;color:#04357B}#chat_messages p a.user{margin-left:5px}#chat_messages p a.user:hover{text-decoration:underline}#chat_messages p span.text{margin-left:5px;font-size:11px}#chat_messages p span.action{font-style:italic}#chat_messages p span.text a{text-decoration:underline;font-style:normal}#chat_messages p span.text a:visited{color:grey}#chat_messages p span.highlight{color:red}#chat_messages p span.chan_link{font-weight:bold}#chat_messages p span.news{font-weight:bold}#chat_messages p img.proxy{vertical-align:middle;border:1px solid #04357B;padding:5px;background:#fff}#chat_messages p span.text a.img_box{position:relative}#chat_messages p .banner{position:absolute;display:none;z-index:1000;right:0px;top:0;width:100%;margin:0;padding:0;background:rgba(4,53,123,0.7)}#chat_messages p .banner a.button{margin:calc(0.33333em + 5px) 6px;float:right}#chat_messages p span.text a.img_box:hover .banner,#chat_messages p span.text a.img_box.hidden .banner{display:inherit}#chat_messages p .banner .banner_title{color:#fff;font-size:13px;line-height:25px;margin:0 0 0 6px;padding:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:inline-block}#chat_messages p span.text a.img_box.hidden{position:inherit}#chat_messages p span.text a.img_box.hidden img{display:none}#chat_messages p span.text a.img_box.hidden .banner{top:0 !important;position:inherit;background:none}#chat_messages p span.text a.img_box.hidden .banner_title{display:none}#chat_messages p span.text a.img_box.hidden .banner .button{color:#04357B;margin:0;padding:0;float:none}#chat_messages .help{border:1px dashed #666666;padding:0 0 5px 0;margin:5px 0;background:#fff}#chat_messages .help p{padding:0 5px;color:#666666;font-size:10px}#chat_messages .help p.title{font-size:11px;padding:3px 5px;border-bottom:1px dashed #666666;letter-spacing:0;display:inline-block;width:calc(50% - 10px);float:left}#chat_messages .help p.subtitle{margin-top:5px;font-size:10px}#chat_messages .help p.item{margin-top:1px}#chat_messages .help p.subtitle span{font-style:italic;border-bottom:1px dashed #666666}#chat_messages .help p span.key{font-weight:bold;margin-right:5px}#chat #chat_input{background:#D9E5F2;color:#94BDF9;overflow:hidden}#chat #c1_file{display:none}#chat .uploader_box{position:inherit;width:auto}#chat #upload_img{cursor:pointer;margin-top:2px}#chat i.fa#upload_img:hover{color:#EFAB00}#chat #chat_form .uploader_box>*{float:left;padding:7px 0px}#chat .uploader_droparea{background:#D9E5F2;height:100%;top:0}#chat .uploader_droparea-active{background:#EFAB00;color:white}#chat #chat_input .fa{color:#04357B;margin-right:5px;margin-left:5px}#chat #chat_input input#message{background:#D9E5F2;margin:0;border:none;min-width:200px;width:calc(100% - 72px);font-size:13px}#chat #chat_input input#message:hover,#chat #chat #chat_input input#message:focus{background-color:transparent}#chat #sidebar{position:absolute;right:0;width:165px}#chat #sidebar div{padding:5px}#chat #sidebar .sidebar_box{position:relative;font-weight:bold;padding:0;margin-bottom:10px;overflow:hidden}#chat #sidebar .sidebar_box_title{background-color:#D9E5F2;text-align:center;font-size:16px}#chat #sidebar .sidebar_box_content{background:#fff;font-size:10px;font-weight:normal}#chat #sidebar .help_paperclip{background:#fff url("images/ms_paperclip_112.jpg") 50% 50% no-repeat;height:109px}#chat #sidebar .sidebar_box_content p{padding:3px 0;overflow:hidden}#chat #sidebar .sidebar_box_content p span.key{font-weight:bold;padding-right:5px}#chat #sidebar p.connected_user{font-size:13px}#chat #sidebar a.connected_user_logo img{vertical-align:middle}#chat #sidebar a.connected_user_name{display:inline-block;width:calc(100% - 24px - 5px);font-style:italic;font-weight:normal;color:#04357B;text-decoration:underline;margin-left:5px}#chat #sidebar a.connected_user:hover{color:#EFAB00}#chat .afk{position:absolute;font-size:20px;line-height:20px;text-shadow:1px 1px 1px #88B2F0;margin-left:-20px;margin-top:2px}#chat #chat_chan .tab_bar{font-weight:bold;margin:0 0 0 5px}#chat #chat_chan .tab_bar span.chan{display:inline-block;background-color:#D9E5F2;padding:2px 8px;margin-left:5px;color:#04357B;font-size:15px}#chat #chat_chan .tab_bar span#join_chan{padding:2px;border-bottom:#04357B}#chat #chat_chan .tab_bar span#join_chan:hover #join_chan_button{color:#EFAB00}#chat #chat_chan .tab_bar span.chan:hover,#chat #chat_chan .tab_bar span#join_chan.active{background-color:#04357B;color:#fff}#chat #chat_chan .tab_bar span.chan span.chan_title{text-transform:capitalize}#chat #chat_chan .tab_bar span.chan span.chan_unread{font-weight:normal;font-style:italic}#chat #chat_chan .tab_bar a.quit_chan{margin-left:5px;color:#04357B}#chat #chat_chan .tab_bar span.chan.active:hover a.quit_chan{color:#04357B}#chat #chat_chan .tab_bar span.chan:hover a.quit_chan{color:#88B2F0}#chat #chat_chan .tab_bar span.chan a.quit_chan:hover,#chat #chat_chan .tab_bar .fa:hover{color:#EFAB00}#chat #chat_chan .tab_bar span#join_chan .hash{margin-left:5px}#chat #chat_chan .tab_bar span#join_chan input,#chat #chat_chan .tab_bar span#join_chan input:hover{border:none;font-size:15px;padding:0;margin:0;width:70px;background-color:#04357B;color:#fff;font-weight:bold}#chat #chat_chan .tab_bar span.active,#chat #chat_chan .tab_bar span.active:hover{border-bottom-color:#fff;background-color:#fff;color:#000}#chat #chat_chan .tab_bar span.light_up{background-color:#EFAB00}#chat #sidebar #news,#chat #sidebar #news p{padding:0}#chat #sidebar #news .new{padding:6px 5px}#chat #news .new:nth-child(even){background:#fff}#chat #news .new:nth-child(odd){background:#f2f5f9}#chat #news .new:last-child{-moz-border-radius:0 0 10px 10px;-webkit-border-radius:0 0 10px 10px;-khtml-border-radius:0 0 10px 10px;border-radius:0 0 10px 10px}#chat #news .new .signature{font-size:0.75em;text-align:right}#chat #news .new .signature .news_time{font-style:italic}#options .options_box{background:#D9E5F2;width:calc(50% - 25px);float:left;margin:0 10px 10px 0;padding:10px}#options .options_box:nth-child(even){margin-right:0}#options .options_box .loading{padding:10px}#options .options_box h2{color:#04357B;font-size:20px;margin:0 0 10px 0;border-bottom:2px solid #04357B}#options .options_box .option_line{margin:5px 0;float:left;width:100%}#options .options_box input[type=text],#options .options_box input[type=color],#options .options_box input[type=password],#options .options_box select,#options .options_box .checkbox{background:#f2f5f9;border-width:1px;font-size:14px;padding:5px;float:right;width:calc(50% - 10px)}#options .options_box input[type=color]{width:50%;padding:3px 5px}#options .options_box .option_line .clear{margin-left:10px;float:right;clear:inherit;color:#04357B}#options .options_box .option_line .clear+input{width:calc(50% - 10px - 30px)}#options .options_box .button{float:left;clear:both}#options .options_box select{color:#04357B}#options .options_box .checkbox{text-align:center;padding-top:0;padding-bottom:0;background:none;font-size:1.7em}#options .options_box .option_line p{float:left;width:50%;padding:5px 0;font-size:14px}#options .options_box .button{margin-top:5px;float:none}#options #admin{clear:both;width:calc(100% - 20px);padding-bottom:0}#options #admin .magic_box{font-size:14px;padding:5px 10px 10px;background:#f2f5f9;float:left;margin:0 10px 10px 0}#options #admin .magic_box form{text-align:center}#options #admin .magic_box:last-child{margin-right:0}#options #admin .magic_box h3{margin:0;font-style:italic;text-align:center;padding:5px 0}#options #admin .magic_box input,#options #admin .magic_box select{width:calc(100% - 10px);margin:5px 0;float:left;background:white}#options #admin .magic_box select{width:100%}#procedure #procedure_steps .button{background-color:#fff}#procedure #procedure_steps .button:hover{background-color:#EFAB00}#procedure #procedure_steps .step_box:LAST-CHILD{margin-bottom:0}#titles_read p.read_title{border-bottom:1px solid #04357B;font-weight:bold}#titles_read p.read_details{font-size:11px;font-style:italic;margin:3px 0 15px 0}#titles_read p.read_description{font-size:13px}#titles_read p.read_description .fa{margin-right:5px}#procedure table.step_box{width:100%}#procedure table.step_box td{text-align:left;margin:0}#procedure table.step_box td.step_margin{width:50%}#procedure table.step_box td.step_buttons{padding-top:10px}#procedure table.step_box td.image_box_container{vertical-align:top;padding-top:18px;padding-left:22px;min-width:350px}#procedure table.step_box .image_box{margin:10px 0 15px;padding:0}#procedure table.step_box input[type=file]{margin:0 10px;max-width:250px;border:1px solid #04357B;background:#fff}#procedure #procedure_title{margin-top:0}#procedure #bottom_menu{margin:10px 0 0 0}#procedure #top_menu{margin:0 0 10px 0}#procedure #validation_button .button{margin-right:10px}#procedure .thumbnail_box{margin:10px 0;height:100px}#procedure .thumbnail_image{background:#fff;border:1px solid #04357B;width:100px;height:100px;vertical-align:middle}#procedure .thumbnail_image:hover{border-color:#EFAB00}#procedure .thumbnail_desc{font-size:11px}#procedure .error{margin:0 0 15px 0}#procedure .uploader_box .error{font-size:11px;margin:10px 0}#doc_container,#doc{margin:0;padding:0}#doc .step_box{margin-bottom:10px}#doc .step_box:nth-child(odd){background:#f2f5f9}#doc #attach_file{margin-top:10px}#doc .uploader_droparea{height:150px}#doc #doc_links{padding:20px 10px 10px 0px}#doc #doc_links a.button{margin-top:5px}#table #system{width:80px}#table input#title{width:20%}#table input#description{width:calc(80% - 92px)}#table .step_box_title a{color:#04357B}#table #validation{margin-top:15px}#table .table_info{margin-top:20px;font-size:0.8em}#table #read_title{font-weight:bold}#table #read_description{font-style:italic}#table #read_formated_keywords{margin:10px 0 0 0;font-size:0.9em}#table #read_formatted_keywords a.internal_link{padding:0 0 0 2px}#table input:disabled{color:#88B2F0;background-color:#04357B}#table .form_success{display:none}#filters_container{margin-bottom:10px}#list_container div:FIRST-CHILD{margin-top:0}#err_404 p{margin-top:20px;color:#04357B}#footer{padding-right:10px;text-align:right}#footer p,#footer a{color:#fff;margin:0;font-size:9px}#footer a{font-weight:bold}#note{height:100%}#note_form{margin-bottom:10px}#note_form a.button{padding:5px 7px}.line_h{position:fixed;top:0;height:1px;width:100%;border-bottom:1px solid red;z-index:1000}.line_v{position:fixed;left:0;height:100%;width:1px;border-left:1px solid red;z-index:1000} -/*# sourceMappingURL=databap.css.map */ + */@font-face{font-family:"FontAwesome";src:url("style/fontawesome-webfont.eot?v=4.2.0");src:url("style/fontawesome-webfont.eot?#iefix&v=4.2.0") format("embedded-opentype"),url("style/fontawesome-webfont.woff?v=4.2.0") format("woff"),url("style/fontawesome-webfont.ttf?v=4.2.0") format("truetype"),url("style/fontawesome-webfont.svg?v=4.2.0#fontawesomeregular") format("svg");font-weight:normal;font-style:normal}.fa{display:inline-block;font-family:FontAwesome;font-style:normal;font-weight:normal;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:spin 2s infinite linear;-moz-animation:spin 2s infinite linear;-o-animation:spin 2s infinite linear;animation:spin 2s infinite linear}@-moz-keyframes spin{0%{-moz-transform:rotate(0deg)}100%{-moz-transform:rotate(359deg)}}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg)}}@-o-keyframes spin{0%{-o-transform:rotate(0deg)}100%{-o-transform:rotate(359deg)}}@keyframes spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg);-o-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);-webkit-transform:scale(-1, 1);-moz-transform:scale(-1, 1);-ms-transform:scale(-1, 1);-o-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);-webkit-transform:scale(1, -1);-moz-transform:scale(1, -1);-ms-transform:scale(1, -1);-o-transform:scale(1, -1);transform:scale(1, -1)}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-inline{margin-right:5px}.fa-10{font-size:1.1111111111em;line-height:.9166666667em;vertical-align:-5%}.fa-20,#chat_messages p span.text a.img_box.hidden .banner .button .fa{font-size:1.2222222222em;line-height:.8333333333em;vertical-align:-10%}.fa-30{font-size:1.3333333333em;line-height:.75em;vertical-align:-15%}.fa-40{font-size:1.4444444444em;line-height:.6666666667em;vertical-align:-20%}.fa-60,a.button .fa{font-size:1.6666666667em;line-height:.5em;vertical-align:-30%}.fa-c-c:before,.fa-c-code:before{content:""}.fa-c-procedure:before,.fa-c-proc:before,.fa-c-p:before{content:""}.fa-c-table:before,.fa-c-t:before{content:""}.fa-c-documentation:before,.fa-c-doc:before,.fa-c-d:before{content:""}.fa-c-article:before,.fa-c-art:before,.fa-c-a:before{content:""}.fa-c-note:before{content:""}.fa-c-list:before{content:""}.fa-c-profile:before{content:""}.fa-c-chat:before{content:""}.fa-c-news:before{content:""}.fa-c-version:before{content:""}.fa-c-details:before{content:""}.fa-c-bug:before{content:""}.fa-c-date:before{content:""}.fa-c-git:before{content:""}.fa-c-afk:before{content:""}.fa-c-comment{color:#04357b}.fa-c-comment:before{content:""}.fa-c-options:before{content:""}.fa-c-param:before{content:""}.fa-c-wip:before{content:""}.fa-c-rss:before{content:""}.fa-c-logmeout:before,.fa-c-logout:before{content:""}.fa-c-fold{color:#04357b}.fa-c-fold:before{content:""}.fa-c-success:before,.fa-c-ok:before,.available .fa:before{content:""}.fa-c-warning{color:orange}.fa-c-warning:before{content:""}.fa-c-error{color:red}.fa-c-error:before{content:""}.fa-c-ko{color:red}.fa-c-ko:before,.unavailable .fa:before{content:""}.fa-c-search:before{content:""}.fa-c-welcome:before{content:""}.fa-c-loading:before{content:""}.fa-c-edit:before{content:""}.fa-c-save:before{content:""}.fa-c-raw:before{content:""}.fa-c-print:before{content:""}.fa-c-share:before{content:""}.fa-c-refresh:before,.fa-c-switch:before{content:""}.fa-c-plus:before,.fa-c-add:before{content:""}.fa-c-minus:before,.fa-c-delete:before{content:""}.fa-c-up:before{content:""}.fa-c-down:before{content:""}.fa-c-next:before{content:""}.fa-c-prev:before{content:""}.fa-c-close:before{content:""}.fa-c-desc:before{content:""}.fa-c-company:before{content:""}.fa-c-name:before{content:""}.fa-c-assignment:before{content:""}.fa-c-lock:before{content:""}.fa-c-unlock:before{content:""}.fa-c-search:before{content:""}.fa-c-mail:before{content:""}.fa-c-upcoming:before{content:""}.fa-c-changelog:before{content:""}.fa-c-checked:before{content:""}.fa-c-unchecked:before{content:""}.fa-c-kpi:before{content:""}.fa-c-file-xls,.fa-c-file-xlsx{color:#247648}.fa-c-file-xls:before,.fa-c-file-xlsx:before{content:""}.fa-c-file-doc,.fa-c-file-docx{color:#2b5796}.fa-c-file-doc:before,.fa-c-file-docx:before{content:""}.fa-c-file-ppt,.fa-c-file-pptx{color:#d04423}.fa-c-file-ppt:before,.fa-c-file-pptx:before{content:""}.fa-c-file-pdf{color:#d20f0b}.fa-c-file-pdf:before{content:""}.fa-c-file-zip:before{content:""}.fa-c-file-png:before,.fa-c-file-gif:before,.fa-c-file-jpg:before,.fa-c-file-jpeg:before{content:""}.fa-c-image:before{content:""}.fa-c-on:before,.fa-c-1:before{content:""}.fa-c-off:before,.fa-c-0:before{content:""}.fa-c-ban:before{content:""}.lightboxOverlay{position:absolute;top:0;left:0;z-index:9999;background-color:#fff;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=80);opacity:.8;display:none}.lightbox{position:absolute;left:0;width:100%;z-index:10000;text-align:center;line-height:0;font-weight:normal}.lightbox .lb-image{display:block;height:auto;max-width:inherit;-webkit-border-radius:3px;-moz-border-radius:3px;-ms-border-radius:3px;-o-border-radius:3px;border-radius:3px}.lightbox a img{border:none}.lb-outerContainer{position:relative;background-color:#04357b;*zoom:1;width:250px;height:250px;margin:0 auto;-webkit-border-radius:4px;-moz-border-radius:4px;-ms-border-radius:4px;-o-border-radius:4px;border-radius:4px}.lb-outerContainer:after{content:"";display:table;clear:both}.lb-container{padding:4px}.lb-loader{position:absolute;top:43%;left:0;height:25%;width:100%;text-align:center;line-height:0}.lb-cancel{display:block;width:32px;height:32px;margin:0 auto;font-size:32px;color:#88b2f0}.lb-nav{position:absolute;top:0;left:0;height:100%;width:100%;z-index:10}.lb-container>.nav{left:0}.lb-nav a{outline:none;background-image:url("data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==")}.lb-prev,.lb-next{height:100%;cursor:pointer;display:block}.lb-nav a.lb-prev{width:34%;left:0;float:left;text-align:left;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0);opacity:0;-webkit-transition:opacity .6s;-moz-transition:opacity .6s;-o-transition:opacity .6s;transition:opacity .6s}.lb-nav a.lb-prev:hover{filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);opacity:1}.lb-nav a.lb-next{width:64%;right:0;float:right;text-align:right;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0);opacity:0;-webkit-transition:opacity .6s;-moz-transition:opacity .6s;-o-transition:opacity .6s;transition:opacity .6s}.lb-nav a.lb-next:hover{filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);opacity:1}.lb-prev .fa,.lb-next .fa{position:relative;top:50%;font-size:45px;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);color:#04357b;padding:0 20px}.lb-prev .fa{text-shadow:-1px 2px 1px #88b2f0}.lb-next .fa{text-shadow:1px 1px 1px #88b2f0}.lb-dataContainer{margin:0 auto;padding-top:5px;*zoom:1;width:100%;-moz-border-radius-bottomleft:4px;-webkit-border-bottom-left-radius:4px;border-bottom-left-radius:4px;-moz-border-radius-bottomright:4px;-webkit-border-bottom-right-radius:4px;border-bottom-right-radius:4px}.lb-dataContainer:after{content:"";display:table;clear:both}.lb-data{padding:0 4px;color:#04357b}.lb-data .lb-details{width:85%;float:left;text-align:left;line-height:1.1em}.lb-data .lb-caption{font-size:13px;font-weight:bold;line-height:1em}.lb-data .lb-number{display:block;clear:left;padding-bottom:1em;font-size:12px;color:#04357b}.lb-data .lb-close{display:block;float:right;width:30px;height:30px;font-size:30px;color:#04357b;text-align:right;outline:none;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=70);opacity:.7;-webkit-transition:opacity .2s;-moz-transition:opacity .2s;-o-transition:opacity .2s;transition:opacity .2s}.lb-data .lb-close:hover{cursor:pointer;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);opacity:1}@font-face{font-family:"Databap";font-style:normal;font-weight:400;src:local("Databap"),url(style/databap_normal_normal.woff) format("woff")}@font-face{font-family:"Databap";font-style:normal;font-weight:700;src:local("Databap Bold"),local("Databap-Bold"),url(style/databap_normal_bold.woff) format("woff")}@font-face{font-family:"Databap";font-style:italic;font-weight:400;src:local("Databap Italic"),local("Databap-Italic"),url(style/databap_italic_normal.woff) format("woff")}@font-face{font-family:"Databap";font-style:italic;font-weight:700;src:local("Databap Bold Italic"),local("Databap-BoldItalic"),url(style/databap_italic_bold.woff) format("woff")}body,html{background:#fff;font-family:"Databap",sans-serif;color:#04357b;background:#04357b;padding:0;margin:0;min-width:1024px}table{border:none;background:none;text-align:center;margin:0;padding:0;border-spacing:0}table td{padding:0}input,textarea,select{font-family:"Databap",sans-serif;font-size:11px;background:#fff;border:none}input[type=text],input[type=password]{padding:5px;width:200px}input[type=button]:hover,input[type=submit]:hover,input[type=password]:hover,input[type=text]:hover,input[type=text]:focus{background-color:#efab00}input[disabled=disabled],textarea[disabled=disabled],input:disabled,textarea:disabled{background-color:#88b2f0}input[disabled=disabled]:hover,textarea[disabled=disabled]:hover,input:disabled:hover,textarea:disabled:hover{background-color:#88b2f0}button::-moz-focus-inner,input[type=reset]::-moz-focus-inner,input[type=button]::-moz-focus-inner,input[type=submit]::-moz-focus-inner,input[type=file]>input[type=button]::-moz-focus-inner{border:none}input[type=button],.clickable{cursor:pointer}iframe{width:100%;height:100%;margin:0;overflow:hidden;background:#d9e5f2;border:none}select{background:#fff;padding:5px;color:#04357b;margin:0}textarea{min-height:30px}input,select,textarea,h1,h2,h3,h4,p,a{color:#04357b}p{margin:0;padding:0}a,a:visited{text-decoration:none}a:active,a:focus,input:active,input:focus{outline:none}img{border:none}.round_top{-moz-border-radius:10px 10px 0 0;-webkit-border-radius:10px 10px 0 0;-khtml-border-radius:10px 10px 0 0;border-radius:10px 10px 0 0}.round_bottom{-moz-border-radius:0 0 10px 10px;-webkit-border-radius:0 0 10px 10px;-khtml-border-radius:0 0 10px 10px;border-radius:0 0 10px 10px}.round_right{-moz-border-radius:0 10px 10px 0;-webkit-border-radius:0 10px 10px 0;-khtml-border-radius:0 10px 10px 0;border-radius:0 10px 10px 0}.round_left{-moz-border-radius:10px 0 0 10px;-webkit-border-radius:10px 0 0 10px;-khtml-border-radius:10px 0 0 10px;border-radius:10px 0 0 10px}.round_bottom_left{-moz-border-radius:0 0 0 10px;-webkit-border-radius:0 0 0 10px;-khtml-border-radius:0 0 0 10px;border-radius:0 0 0 10px}.round{-moz-border-radius:10px 10px 10px 10px;-webkit-border-radius:10px 10px 10px 10px;-khtml-border-radius:10px 10px 10px 10px;border-radius:10px 10px 10px 10px}.tiny_round{-moz-border-radius:5px 5px 5px 5px;-webkit-border-radius:5px 5px 5px 5px;-khtml-border-radius:5px 5px 5px 5px;border-radius:5px 5px 5px 5px}.tiny_top_right{-moz-border-radius:5px 0 5px 5px;-webkit-border-radius:5px 0 5px 5px;-khtml-border-radius:5px 0 5px 5px;border-radius:5px 0 5px 5px}.inc_border{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.loading{font-size:20px;margin:5px;text-align:center}.error,.warning,.success{margin:10px 0;border-width:1px;border-style:solid;padding:3px;-moz-border-radius:5px;-webkit-border-radius:5px;-khtml-border-radius:5px;border-radius:5px;clear:both}.error a,.warning a,.success a{text-decoration:underline}.error,.error a{color:red;border-color:red;font-size:13px;font-weight:bold}.warning,.warning a{color:orange;border-color:orange;font-size:13px;font-style:italic}.success,.success a{color:green;border-color:green;font-size:13px}.default_text{color:#88b2f0 !important}a.button{padding:7px;margin-right:5px;background:#d9e5f2;font-size:13px;cursor:pointer;display:inline-block}a.button:hover{background-color:#efab00}a.button:active{background-color:#04357b;color:#fff}a.button .fa{margin-right:5px}a.button.no_text .fa{margin-right:0}a.button.no_bg,a.button.no_bg:hover{background:none;color:#fff;margin:.33333em 0;padding:0}a.button.no_bg:hover .fa{color:#efab00}a.button.strong .value{font-weight:bold}a.button.inverse{background-color:#04357b;color:#88b2f0}a.button.inverse:hover{background-color:#efab00;color:#04357b}a.button.heavy{border-width:2px;font-weight:bold}a.button.gimmespace{margin-left:10px;margin-right:10px}.addr{cursor:text}.addr:hover{background-color:#fff}.maximized{width:100%}.righty{text-align:right}.glue-right{float:right}.lefty{text-align:left}.side_margins{margin:0 12px 10px}a.internal_link{text-decoration:underline;font-style:normal;background:#88b2f0;padding:1px 8px 1px 5px;margin:0}a.internal_link:visited,a.external_link:visited{color:gray}a.internal_link span.type{text-transform:capitalize}a[href^=table].internal_link span.item{text-transform:uppercase}.author_box{padding:5px 10px;color:#04357b;font-style:italic;font-size:11px}.author_box:nth-child(odd){background:#fff}.author_box:nth-child(even){background:#f2f5f9}.author_box:hover a{color:#efab00}.author_box a{background:none;padding:0;display:block;width:100%}.author_box i.fa-30{vertical-align:-5%}.author_box span.description{font-weight:bold;font-style:normal;font-size:13px}.author_box span.rank{font-weight:bold;margin-left:10px}.standalone .author_box{margin-top:10px}.hide,.mobile{display:none}.step_box{margin-top:5px;margin-bottom:5px;padding:10px;background:#d9e5f2;color:#04357b}.step_box:nth-child(even){background:#f2f5f9}.step_box input,.step_box textarea,.step_box select,.step_box .read.textarea,.step_box .read.input{margin-top:10px;background:#fff;font-size:13px;border-width:1px}.step_box input:disabled,.step_box textarea:disabled,.step_box select:disabled,.step_box input:hover:disabled,.step_box textarea:hover:disabled,.step_box select:hover:disabled{background-color:#fff}.step_box input[type=text],.step_box textarea,.step_box .read.textarea,.step_box .read.input{width:100%}.step_box textarea,.step_box .read.textarea{height:200px;padding:5px;background:#fff}.step_box .read.textarea,.step_box .read.input{border-color:#88b2f0;font-weight:bold}.step_box .read.textarea{background-color:#d9e5f2}.step_box:nth-child(even) .read.textarea{background-color:#f2f5f9}.step_box .read.input{background-color:#88b2f0;padding-left:0}.step_box .step_nb_box,.step_box .step_box_title{border-bottom:1px solid #04357b;padding:0}.scrollbar_box{position:relative;height:0px;overflow:hidden}.scrollbar_box .scrollbar_subbox{position:absolute;left:0;top:0;width:100%}.scrollbar{position:relative;float:right;width:15px;margin-left:5px}.scrollbar .thumb,.scrollbar .thumb .end{background-color:#04357b;width:13px}.scrollbar .track{background-color:#88b2f0;height:100%;width:13px;position:relative;padding:0}.scrollbar .thumb{position:absolute;top:0;overflow:hidden}.scrollbar .thumb .end{overflow:hidden;height:20px}.disable{display:none}.uploader_box{position:relative;width:100%}.uploader_droparea{position:absolute;top:-10px;left:0;width:100%;height:100%;height:210px;z-index:2;background:#fff;text-align:center}.uploader_droparea-active{background:#efab00}.uploader_droparea span{display:block;position:absolute;top:50%;width:100%;margin-top:-8px;font-size:16px}.uploader_buffer{width:100%;height:8px}.uploader_list{margin-top:0;padding:0;list-style:none}.uploader_list li{margin:0 0 10px 10px}.uploader_item_file,.uploader_item_loading,.uploader_item_size,.uploader_item_cancel,.uploader_item_failed{margin-right:5px}.uploader_item_size,.uploader_item_cancel{font-size:11px;font-weight:normal}a.uploader_item_cancel{text-decoration:underline;color:#04357b}.uploader_box .image_description{border-width:1px;padding:3px 5px;background:#fff}.uploader_box .image_action{font-size:11px}.uploader_box .image_action input{width:200px;margin:0}.uploader_item_failed_notice{display:none}.uploader_item_failed .uploader_item_failed_notice{display:inline}.uploader_item_failed{color:red}.uploader_item_success .fa-c-delete:hover,.uploader_item_cancel .fa-c-delete:hover{color:#efab00}#container{background:#04357b;padding:10px 10px 1px 1px}#header{padding:0 0 10px 0;margin:0}#header table td.cell{width:50%;height:35px;margin:0}#header .logo{position:absolute;top:9px;width:200px;height:35px;margin-left:36px}#header #query,#header #search_btn_submit{height:25px;color:#04357b;border:none;float:right;padding:0 10px;font-size:15px}#header #query{background:#fff;width:250px}#header #search_btn_submit{background:#88b2f0;height:20px;padding-top:5px}#header #search_btn_submit:hover{background-color:#efab00}#main_container{background:#88b2f0;margin-left:35px;position:relative;overflow:hidden;border:10px solid #88b2f0}#page_title .side_margins{margin:0 0 10px 0}#page_title h1{padding:2px 0;margin:0;width:100%;font-family:"Databap",sans-serif;font-size:32px;line-height:32px;font-style:italic;font-weight:bold}#page_title h1 #title_feedback{text-align:right}#title_feedback .feedback{margin:0;padding:0 5px;border:none;position:absolute;right:10px;top:14px}#main{margin:0;padding:0;overflow:hidden}#menu{position:absolute;width:auto;padding:10px 0;z-index:10}#menu #menu_title{position:relative;padding:0;margin:21px 0 0 0;text-align:center;cursor:pointer;font-size:20px;line-height:20px;font-weight:bold}#menu #menu_box ul{margin:0;padding:0;text-align:left;font-size:20px;list-style:none}#menu #menu_box ul li{padding:10px 10px 10px 0;margin:0;list-style:none;cursor:pointer;line-height:20px;height:20px;font-size:20px;text-transform:capitalize}#menu #menu_box ul li:FIRST-CHILD{padding-top:0}#menu #menu_box ul li:FIRST-CHILD a{padding-top:8px}#menu #menu_box ul li a{padding:10px 0 10px 0;color:#88b2f0;display:inline-block;width:100%}#menu #menu_box ul li:hover a{color:#efab00}#menu #menu_box a.active{background:#88b2f0;color:#efab00;padding-right:10px;-moz-border-radius:10px 10px 10px 10px;-webkit-border-radius:10px 10px 10px 10px;-khtml-border-radius:10px 10px 10px 10px;border-radius:10px 10px 10px 10px}#menu #menu_box ul li a span{display:none}#menu #menu_box a.active span{display:inline-block;text-transform:capitalize;background:#04357b}#menu #menu_box ul li a.active .fa{margin-right:10px}#menu #menu_box ul li#rss_ln a{color:#04357b}#welcome #welcome_container{background:#d9e5f2;padding:10px}#welcome p.welcome_text{font-weight:bold;padding-top:0;padding-bottom:5px;border-bottom:1px solid #04357b;margin-bottom:20px}#welcome #welcome_container ul{margin-top:0px}#welcome #welcome_container ul li{font-size:13px;margin-top:10px;font-weight:bold}#welcome #welcome_container ul li .fa-li{top:.242857em}#welcome #welcome_container ul li ul{font-size:11px;margin-top:2px}#welcome #welcome_container ul li ul li{font-weight:normal}#welcome #welcome_container ul li:FIRST-CHILD,#welcome #welcome_container ul li ul li{margin-top:0px}#welcome span.milestone{margin-left:5px;padding:2px 5px;font-weight:bold;border:1px solid #04357b;cursor:pointer;background:#fff;background:-moz-linear-gradient(top, #FFFFFF 15%, #88B2F0 85%);background:-webkit-gradient(linear, left top, left bottom, color-stop(15%, #FFFFFF), color-stop(85%, #88B2F0));background:-webkit-linear-gradient(top, #FFFFFF 15%, #88B2F0 85%);background:-o-linear-gradient(top, #FFFFFF 15%, #88B2F0 85%);background:-ms-linear-gradient(top, #FFFFFF 15%, #88B2F0 85%);background:linear-gradient(to bottom, #FFFFFF 15%, #88B2F0 85%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr="$col_none", endColorstr="$col_main_2",GradientType=0 )}#welcome span.milestone:hover{color:#efab00;border-color:#efab00;background:-moz-linear-gradient(top, #FFFFFF 15%, #F2E1B5 85%);background:-webkit-gradient(linear, left top, left bottom, color-stop(15%, #FFFFFF), color-stop(85%, #F2E1B5));background:-webkit-linear-gradient(top, #FFFFFF 15%, #F2E1B5 85%);background:-o-linear-gradient(top, #FFFFFF 15%, #F2E1B5 85%);background:-ms-linear-gradient(top, #FFFFFF 15%, #F2E1B5 85%);background:linear-gradient(to bottom, #FFFFFF 15%, #F2E1B5 85%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr="$col_none", endColorstr="$col_hover_2",GradientType=0 )}#welcome span.milestone .fa{margin-right:5px}#welcome a{text-decoration:underline}#add_code_container,#add_code_container input{font-size:13px}#add_code_container table{text-align:left}#add_code_container table tr td{padding:5px 5px 5px 0}#add_code_container table tr td:first-child{font-weight:bold}#add_code_container table tr td.last{padding-bottom:0px}#add_code_container textarea,#edit_container textarea{margin:0 -10px;padding:10px 6px 10px 10px;width:100%;min-height:100px;height:300px;font-family:Courier New,Courier;color:#000;font-size:13px}#add_code_container .loggued{margin:0 12px}#add_code_container input[type=text]{width:400px;padding:5px;color:#04357b}#auth_company_container{display:none}#add_code_container #add_code_btn{margin-top:10px;float:left}#add_code_container input:hover,#add_code_container input[type=text]:focus{background-color:#efab00}#link_result,#available_phrase{display:none;margin-left:15px;padding:5px;font-size:13px}#link_result{color:#04357b}#available_phrase{display:none}#available_phrase.available{color:green;background:#b2d6b2}#available_phrase.unavailable{color:red;background:#f6d3d3}#reader{margin:0;padding:0}#reader #code_menu{padding:0;margin:0}#code_container .code_reader{margin:10px 0 0 0;padding:0;background:#b5b5c6;background:#04357b}#reader #code_container .code_reader{margin:0}#code_container .code_reader ol li ::selection{background:#306897;color:#fff}#code_container .code_reader ol li ::-moz-selection{background:#306897;color:#fff}#code_container .code_reader .author_box{background:#04357b;border:none;color:#fff}#code_container .code_reader .author_box *{color:#fff}#code_container .code_reader .tab_left{margin:0;padding:0 0 0 19px;background:#f7efde;border:none}#code_container .code_reader ol{border-left:1px solid #848484;background:#fff;margin:0}#code_container .code_reader ol li{margin:0;padding:0;border-left:1px dotted #398c8c;background:#fff;font-family:Courier New,Courier;font-size:11px;line-height:12px;text-indent:20px;color:#398c8c}#code_container .code_reader ol li:first-child,#code_container .code_reader ol li:first-child span.expand_line{padding-top:5px}#code_container .code_reader ol li.bigline,#code_container .code_reader ol li.bigline span.expand_line{padding-top:5px;padding-bottom:5px}#code_container .code_reader ol li:hover,#code_container .code_reader ol li.code_hover{background-color:#d9e5f2}#code_container .code_reader .core{color:blue;text-transform:uppercase}#code_container .code_reader .comment{color:#848484}#code_container .code_reader .number{color:#319cff}#code_container .code_reader .operator{color:#840084}#code_container .code_reader .string{color:#4aa518;text-transform:uppercase}#code_container .code_reader .string span{color:#4aa518}#code_container .code_reader .string.curly{color:#000}#code_container .code_reader .string .operator.pipe,#code_container .code_reader .string .operator.curly{color:#840084}#code_container .code_reader .field-symbol{color:#848484}#code_container .code_reader .line{color:#848484}#code_container .code_reader .line-number,#code_container .code_reader .line-post-number{color:#398c8c}#code_container .code_reader .global{color:#000}#code_container .code_reader .expand{font-weight:bold}#code_container .code_reader .comment span.code_part{color:#04357b;font-weight:bold;text-transform:capitalize}#code_container .code_reader pre{white-space:pre-wrap;white-space:-moz-pre-wrap !important;white-space:-pre-wrap;white-space:-o-pre-wrap;word-wrap:break-word;margin:0;padding:0;border:none}#code_container .code_reader ol li span{color:#000}#code_container .code_reader ol li span.code,ol li span.comment{font-size:13px;margin-left:15px}#code_container .code_reader ol li span.comment span,#code_container .code_reader ol li span.code span.comment{color:#848484;text-transform:none;font-weight:normal}#code_container .code_reader ol li a.internal_link,#code_container .code_reader ol li a.external_link{color:#04357b;border:none;font-weight:normal;text-indent:0;text-decoration:underline}#code_container .code_reader ol li a.internal_link span{color:#04357b;font-weight:normal}#code_container .code_reader a.internal_link:hover,#code_container .code_reader a.internal_link:hover span{color:#efab00}#code_container .code_reader ol li span.hide span{color:#848484}#code_container .code_reader ol li span.expand_line{border-left:1px solid #424242;color:#424242;text-align:center;width:5px;position:relative}#reader #code_container .code_reader ol li span.expand_line span:before{content:"";position:absolute;margin-left:-21px}#reader #code_container .code_reader ol li span.expand_line input{position:absolute;margin:3px 0 0 -4px;cursor:pointer;padding:0;z-index:1000;background:#fff 0 0 no-repeat;width:9px;height:9px}#reader #code_container .code_reader ol li span.expand_line input.minus{background-image:url("images/expand_minus.png")}#reader #code_container .code_reader ol li span.expand_line input.plus{background-image:url("images/expand_plus.png")}#reader #code_container .code_reader ol li span.expand_line input:hover{background-position:0 -9px}#edit_container{display:none;margin-bottom:10px}#edit_container textarea{margin-top:10px;margin-bottom:20px;height:200px}#edit_container #edit_btn{margin-left:-10px}#search .summary{margin:10px 0 0px 5px;font-size:13px;font-style:italic}#search .code_reader:hover .tab_left,#search .code_reader:hover ol,#search .code_reader:hover li{background-color:#88b2f0;cursor:pointer}#search .step_box{margin-bottom:10px}#search #repeat_query{padding-bottom:6px}#search #sub_button_box{display:inline}#profile #avatar{width:96px;height:96px;background:url("images/avatar_96.png") 0 0 no-repeat;float:left}#profile #profile_company_logo{width:24px;height:24px;vertical-align:middle;margin-right:5px}#profile .user{margin-left:110px;padding:10px 16px;height:76px;background:#d9e5f2}#profile .user .fa{margin-right:2px}#profile .user p{font-size:16px;line-height:25px}#profile .user p span{font-weight:bold}#profile .user_history_title{margin:30px 0 0 0;padding:0 10px 0 25px;font-size:25px;color:#04357b;border-bottom:2px solid #04357b;background:url(images/logo_25.png) 0 1px no-repeat}#profile #history_subbox{margin-top:10px}#profile #user_history p.history_line{padding:5px 10px;font-size:13px}#profile #user_history p.history_line:nth-child(odd){background:#fff}#profile #user_history p.history_line:nth-child(even){background:#f2f5f9}#profile #user_history p.history_line:FIRST-CHILD{-moz-border-radius-topleft:10px;-moz-border-radius-topright:10px;-khtml-border-top-left-radius:10px;-khtml-border-top-right-radius:10px;-webkit-border-top-left-radius:10px;-webkit-border-top-right-radius:10px;border-top-left-radius:10px;border-top-right-radius:10px}#profile #user_history p.history_line:LAST-CHILD{-moz-border-radius-bottomright:10px;-moz-border-radius-bottomleft:10px;-khtml-border-bottom-left-radius:10px;-khtml-border-bottom-right-radius:10px;-webkit-border-bottom-right-radius:10px;-webkit-border-bottom-left-radius:10px;border-bottom-right-radius:10px;border-bottom-left-radius:10px}#profile #user_history p.history_line .fa{margin-left:5px;margin-right:5px}#profile #user_history a{text-decoration:underline}#article .loading_box{font-size:16px}#chat #chat_room{margin-right:175px;background:#fff;height:100%;padding:5px;position:relative}.g_white_transparent{background:#000 url("images/grad_white_transparent_50.png") repeat-x top}#chat #chat_room #chat_shades{position:absolute;width:0;left:18px;margin-top:5px;height:50px;background:url("images/grad_white_transparent_50.png") repeat-x top}#chat #chat_room #chat_container{clear:both;padding-bottom:5px}#chat #chat_room #chat_container #chat_messages_box{position:relative;height:20px;overflow:hidden;background:#fff url("images/sap_gold_332.jpg") 50% 50% no-repeat}#chat #chat_room #chat_container #chat_messages{position:absolute;left:0;top:0;list-style:none;background:rgba(255,255,255,.7);width:100%}.noSelect{user-select:none;-o-user-select:none;-moz-user-select:none;-khtml-user-select:none;-webkit-user-select:none}#chat_messages p{color:#04357b}#chat_messages p.A,#chat_messages p.PA,#chat_messages p.E,#chat_messages p.PE,#chat_messages p.N{background-color:#d9e5f2;font-style:italic}#chat_messages p.C{color:#ccc;text-decoration:none;font-style:normal}#chat_messages p span.time{color:#efab00;font-size:9px;font-style:normal}#chat_messages p a.user,#chat_messages p span.console{font-size:10px;font-weight:bold;color:#04357b}#chat_messages p a.user{margin-left:5px}#chat_messages p a.user:hover{text-decoration:underline}#chat_messages p span.text{margin-left:5px;font-size:11px}#chat_messages p span.action{font-style:italic}#chat_messages p span.text a{text-decoration:underline;font-style:normal}#chat_messages p span.text a:visited{color:gray}#chat_messages p span.highlight{color:red}#chat_messages p span.chan_link{font-weight:bold}#chat_messages p span.news{font-weight:bold}#chat_messages p img.proxy{vertical-align:middle;border:1px solid #04357b;padding:5px;background:#fff}#chat_messages p span.text a.img_box{position:relative}#chat_messages p .banner{position:absolute;display:none;z-index:1000;right:0px;top:0;width:100%;margin:0;padding:0;background:rgba(4,53,123,.7)}#chat_messages p .banner a.button{margin:calc(0.33333em + 5px) 6px;float:right}#chat_messages p span.text a.img_box:hover .banner,#chat_messages p span.text a.img_box.hidden .banner{display:inherit}#chat_messages p .banner .banner_title{color:#fff;font-size:13px;line-height:25px;margin:0 0 0 6px;padding:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:inline-block}#chat_messages p span.text a.img_box.hidden{position:inherit}#chat_messages p span.text a.img_box.hidden img{display:none}#chat_messages p span.text a.img_box.hidden .banner{top:0 !important;position:inherit;background:none}#chat_messages p span.text a.img_box.hidden .banner_title{display:none}#chat_messages p span.text a.img_box.hidden .banner .button{color:#04357b;margin:0;padding:0;float:none}#chat_messages .help{border:1px dashed #666;padding:0 0 5px 0;margin:5px 0;background:#fff}#chat_messages .help p{padding:0 5px;color:#666;font-size:10px}#chat_messages .help p.title{font-size:11px;padding:3px 5px;border-bottom:1px dashed #666;letter-spacing:0;display:inline-block;width:calc(50% - 10px);float:left}#chat_messages .help p.subtitle{margin-top:5px;font-size:10px}#chat_messages .help p.item{margin-top:1px}#chat_messages .help p.subtitle span{font-style:italic;border-bottom:1px dashed #666}#chat_messages .help p span.key{font-weight:bold;margin-right:5px}#chat #chat_input{background:#d9e5f2;color:#94bdf9;overflow:hidden}#chat #c1_file{display:none}#chat .uploader_box{position:inherit;width:auto}#chat #upload_img{cursor:pointer;margin-top:2px}#chat i.fa#upload_img:hover{color:#efab00}#chat #chat_form .uploader_box>*{float:left;padding:7px 0px}#chat .uploader_droparea{background:#d9e5f2;height:100%;top:0}#chat .uploader_droparea-active{background:#efab00;color:#fff}#chat #chat_input .fa{color:#04357b;margin-right:5px;margin-left:5px}#chat #chat_input input#message{background:#d9e5f2;margin:0;border:none;min-width:200px;width:calc(100% - 72px);font-size:13px}#chat #chat_input input#message:hover,#chat #chat #chat_input input#message:focus{background-color:transparent}#chat #sidebar{position:absolute;right:0;width:165px}#chat #sidebar div{padding:5px}#chat #sidebar .sidebar_box{position:relative;font-weight:bold;padding:0;margin-bottom:10px;overflow:hidden}#chat #sidebar .sidebar_box_title{background-color:#d9e5f2;text-align:center;font-size:16px}#chat #sidebar .sidebar_box_content{background:#fff;font-size:10px;font-weight:normal}#chat #sidebar .help_paperclip{background:#fff url("images/ms_paperclip_112.jpg") 50% 50% no-repeat;height:109px}#chat #sidebar .sidebar_box_content p{padding:3px 0;overflow:hidden}#chat #sidebar .sidebar_box_content p span.key{font-weight:bold;padding-right:5px}#chat #sidebar p.connected_user{font-size:13px}#chat #sidebar a.connected_user_logo img{vertical-align:middle}#chat #sidebar a.connected_user_name{display:inline-block;width:calc(100% - 24px - 5px);font-style:italic;font-weight:normal;color:#04357b;text-decoration:underline;margin-left:5px}#chat #sidebar a.connected_user:hover{color:#efab00}#chat .afk{position:absolute;font-size:20px;line-height:20px;text-shadow:1px 1px 1px #88b2f0;margin-left:-20px;margin-top:2px}#chat #chat_chan .tab_bar{font-weight:bold;margin:0 0 0 5px}#chat #chat_chan .tab_bar span.chan{display:inline-block;background-color:#d9e5f2;padding:2px 8px;margin-left:5px;color:#04357b;font-size:15px}#chat #chat_chan .tab_bar span#join_chan{padding:2px;border-bottom:#04357b}#chat #chat_chan .tab_bar span#join_chan:hover #join_chan_button{color:#efab00}#chat #chat_chan .tab_bar span.chan:hover,#chat #chat_chan .tab_bar span#join_chan.active{background-color:#04357b;color:#fff}#chat #chat_chan .tab_bar span.chan span.chan_title{text-transform:capitalize}#chat #chat_chan .tab_bar span.chan span.chan_unread{font-weight:normal;font-style:italic}#chat #chat_chan .tab_bar a.quit_chan{margin-left:5px;color:#04357b}#chat #chat_chan .tab_bar span.chan.active:hover a.quit_chan{color:#04357b}#chat #chat_chan .tab_bar span.chan:hover a.quit_chan{color:#88b2f0}#chat #chat_chan .tab_bar span.chan a.quit_chan:hover,#chat #chat_chan .tab_bar .fa:hover{color:#efab00}#chat #chat_chan .tab_bar span#join_chan .hash{margin-left:5px}#chat #chat_chan .tab_bar span#join_chan input,#chat #chat_chan .tab_bar span#join_chan input:hover{border:none;font-size:15px;padding:0;margin:0;width:70px;background-color:#04357b;color:#fff;font-weight:bold}#chat #chat_chan .tab_bar span.active,#chat #chat_chan .tab_bar span.active:hover{border-bottom-color:#fff;background-color:#fff;color:#000}#chat #chat_chan .tab_bar span.light_up{background-color:#efab00}#chat #sidebar #news,#chat #sidebar #news p{padding:0}#chat #sidebar #news .new{padding:6px 5px}#chat #news .new:nth-child(even){background:#fff}#chat #news .new:nth-child(odd){background:#f2f5f9}#chat #news .new:last-child{-moz-border-radius:0 0 10px 10px;-webkit-border-radius:0 0 10px 10px;-khtml-border-radius:0 0 10px 10px;border-radius:0 0 10px 10px}#chat #news .new .signature{font-size:.75em;text-align:right}#chat #news .new .signature .news_time{font-style:italic}#options .options_box{background:#d9e5f2;width:calc(50% - 25px);float:left;margin:0 10px 10px 0;padding:10px}#options .options_box:nth-child(even){margin-right:0}#options .options_box .loading{padding:10px}#options .options_box h2{color:#04357b;font-size:20px;margin:0 0 10px 0;border-bottom:2px solid #04357b}#options .options_box .option_line{margin:5px 0;float:left;width:100%}#options .options_box input[type=text],#options .options_box input[type=color],#options .options_box input[type=password],#options .options_box select,#options .options_box .checkbox{background:#f2f5f9;border-width:1px;font-size:14px;padding:5px;float:right;width:calc(50% - 10px)}#options .options_box input[type=color]{width:50%;padding:3px 5px}#options .options_box .option_line .clear{margin-left:10px;float:right;clear:inherit;color:#04357b}#options .options_box .option_line .clear+input{width:calc(50% - 10px - 30px)}#options .options_box .button{float:left;clear:both}#options .options_box select{color:#04357b}#options .options_box .checkbox{text-align:center;padding-top:0;padding-bottom:0;background:none;font-size:1.7em}#options .options_box .option_line p{float:left;width:50%;padding:5px 0;font-size:14px}#options .options_box .button{margin-top:5px;float:none}#options #admin{clear:both;width:calc(100% - 20px);padding-bottom:0}#options #admin .magic_box{font-size:14px;padding:5px 10px 10px;background:#f2f5f9;float:left;margin:0 10px 10px 0}#options #admin .magic_box form{text-align:center}#options #admin .magic_box:last-child{margin-right:0}#options #admin .magic_box h3{margin:0;font-style:italic;text-align:center;padding:5px 0}#options #admin .magic_box input,#options #admin .magic_box select{width:calc(100% - 10px);margin:5px 0;float:left;background:#fff}#options #admin .magic_box select{width:100%}#procedure #procedure_steps .button{background-color:#fff}#procedure #procedure_steps .button:hover{background-color:#efab00}#procedure #procedure_steps .step_box:LAST-CHILD{margin-bottom:0}#titles_read p.read_title{border-bottom:1px solid #04357b;font-weight:bold}#titles_read p.read_details{font-size:11px;font-style:italic;margin:3px 0 15px 0}#titles_read p.read_description{font-size:13px}#titles_read p.read_description .fa{margin-right:5px}#procedure table.step_box{width:100%}#procedure table.step_box td{text-align:left;margin:0}#procedure table.step_box td.step_margin{width:50%}#procedure table.step_box td.step_buttons{padding-top:10px}#procedure table.step_box td.image_box_container{vertical-align:top;padding-top:18px;padding-left:22px;min-width:350px}#procedure table.step_box .image_box{margin:10px 0 15px;padding:0}#procedure table.step_box input[type=file]{margin:0 10px;max-width:250px;border:1px solid #04357b;background:#fff}#procedure #procedure_title{margin-top:0}#procedure #bottom_menu{margin:10px 0 0 0}#procedure #top_menu{margin:0 0 10px 0}#procedure #validation_button .button{margin-right:10px}#procedure .thumbnail_box{margin:10px 0;height:100px}#procedure .thumbnail_image{background:#fff;border:1px solid #04357b;width:100px;height:100px;vertical-align:middle}#procedure .thumbnail_image:hover{border-color:#efab00}#procedure .thumbnail_desc{font-size:11px}#procedure .error{margin:0 0 15px 0}#procedure .uploader_box .error{font-size:11px;margin:10px 0}#doc_container,#doc{margin:0;padding:0}#doc .step_box{margin-bottom:10px}#doc .step_box:nth-child(odd){background:#f2f5f9}#doc #attach_file{margin-top:10px}#doc .uploader_droparea{height:150px}#doc #doc_links{padding:20px 10px 10px 0px}#doc #doc_links a.button{margin-top:5px}#table #system{width:80px}#table input#title{width:20%}#table input#description{width:calc(80% - 92px)}#table .step_box_title a{color:#04357b}#table #validation{margin-top:15px}#table .table_info{margin-top:20px;font-size:.8em}#table #read_title{font-weight:bold}#table #read_description{font-style:italic}#table #read_formated_keywords{margin:10px 0 0 0;font-size:.9em}#table #read_formatted_keywords a.internal_link{padding:0 0 0 2px}#table input:disabled{color:#88b2f0;background-color:#04357b}#table .form_success{display:none}#filters_container{margin-bottom:10px}#list_container div:FIRST-CHILD{margin-top:0}#err_404 p{margin-top:20px;color:#04357b}#footer{padding-right:10px;text-align:right}#footer p,#footer a{color:#fff;margin:0;font-size:9px}#footer a{font-weight:bold}#note{height:100%}#note_form{margin-bottom:10px}#note_form a.button{padding:5px 7px}.line_h{position:fixed;top:0;height:1px;width:100%;border-bottom:1px solid red;z-index:1000}.line_v{position:fixed;left:0;height:100%;width:1px;border-left:1px solid red;z-index:1000}/*# sourceMappingURL=databap.css.map */ diff --git a/style/databap.css.map b/style/databap.css.map index f12093b..9818bf6 100755 --- a/style/databap.css.map +++ b/style/databap.css.map @@ -1,7 +1 @@ -{ -"version": 3, -"mappings": "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", -"sources": ["_variables.scss","_fa.scss","_fa-custom.scss","_lightbox.scss","_common.scss","databap.scss"], -"names": [], -"file": "databap.css" -} +{"version":3,"sourceRoot":"","sources":["_variables.scss","_fa.scss","_fa-custom.scss","_lightbox.scss","_common.scss","databap.scss"],"names":[],"mappings":"CAAA;AAAA;AAAA;AAAA,GCMA,WACE,0BACA,iDACA,+RACA,mBACA,kBAEF,IACE,qBACA,wBACA,kBACA,mBACA,cACA,mCACA,kCAGF,OACE,uBACA,kBACA,oBAEF,OACE,cAEF,OACE,cAEF,OACE,cAEF,OACE,cAEF,OACE,mBACA,kBAEF,OACE,eACA,yBACA,qBAEF,UACE,kBAEF,OACE,kBACA,mBACA,mBACA,gBACA,kBAEF,aACE,mBAEF,WACE,yBACA,wBACA,mBAEF,YACE,YAEF,WACE,WAEF,cACE,kBAEF,eACE,iBAEF,SACE,0CACA,uCACA,qCACA,kCAEF,qBACE,GACE,4BAEF,KACE,+BAGJ,wBACE,GACE,+BAEF,KACE,kCAGJ,mBACE,GACE,0BAEF,KACE,6BAGJ,gBACE,GACE,+BACA,uBAEF,KACE,iCACA,0BAGJ,cACE,gEACA,gCACA,6BACA,4BACA,2BACA,wBAEF,eACE,gEACA,iCACA,8BACA,6BACA,4BACA,yBAEF,eACE,gEACA,iCACA,8BACA,6BACA,4BACA,yBAEF,oBACE,0EACA,+BACA,4BACA,2BACA,0BACA,uBAEF,kBACE,0EACA,+BACA,4BACA,2BACA,0BACA,uBAEF,UACE,kBACA,qBACA,UACA,WACA,gBACA,sBAEF,0BAEE,kBACA,OACA,WACA,kBAEF,aACE,oBAEF,aACE,cAEF,YACE,WCnLF,WACC,iBAUD,OACC,yBACA,0BACA,mBAED,uEACC,yBACA,0BACA,oBAED,OACC,yBACA,kBACA,oBAED,OACC,yBACA,0BACA,oBAED,oBACC,yBACA,iBACA,oBAGD,iCACE,YAGF,wDACC,YAGD,kCACC,YAGD,2DACC,YAGD,qDACC,YAGD,kBACC,YAGD,kBACC,YAGD,qBACE,YAGF,kBACC,YAGD,kBACC,YAGD,qBACC,YAGD,qBACC,YAGD,iBACC,YAGD,kBACC,YAGD,iBACC,YAGD,iBACC,YAGD,cACC,MFnGY,QEqGb,qBACC,YAGD,qBACC,YAGD,mBACC,YAGD,iBACC,YAGD,iBACE,YAGF,0CACE,YAGF,WACC,MF9HY,QEgIb,kBACC,YAGD,2DACC,YAGD,cACC,MF7Ha,OE+Hd,qBACC,YAGD,YACC,MFnIW,IEqIZ,mBACC,YAGD,SACC,MF1IW,IE4IZ,wCACC,YAGD,oBACE,YAGF,qBACE,YAGF,qBACC,YAGD,kBACC,YAGD,kBACC,YAGD,iBACC,YAGD,mBACC,YAGD,mBACC,YAGD,yCACC,YAGD,mCACC,YAGD,uCACC,YAGD,gBACC,YAGD,kBACC,YAGD,kBACC,YAGD,kBACC,YAGD,mBACC,YAGD,kBACC,YAGD,qBACC,YAGD,kBACC,YAGD,wBACC,YAGD,kBACC,YAED,oBACC,YAGD,oBACC,YAGD,kBACC,YAGD,sBACC,YAGD,uBACC,YAGD,qBACC,YAGD,uBACC,YAGD,iBACC,YAGD,+BACC,cAED,6CACC,YAGD,+BACC,cAED,6CACC,YAGD,+BACC,cAED,6CACC,YAGD,eACC,cAED,sBACC,YAGD,sBACC,YAGD,yFACC,YAGD,mBACC,YAGD,+BACC,YAED,gCACC,YAGD,iBACC,YCrUD,iBACE,kBACA,MACA,OACA,aACA,sBACA,2DACA,WACA,aAGF,UACE,kBACA,OACA,WACA,cACA,kBACA,cACA,mBAGF,oBACE,cACA,YACA,kBACA,0BACA,uBACA,sBACA,qBACA,kBAGF,gBACE,YAGF,mBACE,kBACA,iBHjCW,QGkCX,QACA,YACA,aACA,cACA,0BACA,uBACA,sBACA,qBACA,kBAGF,yBACE,WACA,cACA,WAGF,cACE,YAGF,WACE,kBACA,QACA,OACA,WACA,WACA,kBACA,cAGF,WACE,cACA,WACA,YACA,cACA,eACA,MHtEuB,QGyEzB,QACE,kBACA,MACA,OACA,YACA,WACA,WAGF,mBACE,OAGF,UACE,aACA,2GAGF,kBACE,YACA,eACA,cAGF,kBACE,UACA,OACA,WACA,gBACA,0DACA,UACA,+BACA,4BACA,0BACA,uBAGF,wBACE,4DACA,UAGF,kBACE,UACA,QACA,YACA,iBACA,0DACA,UACA,+BACA,4BACA,0BACA,uBAGF,wBACE,4DACA,UAGF,0BACC,kBACA,QACA,eACA,mCACA,+BACA,2BACA,MH7IY,QG8IZ,eAGD,aACC,iCAGD,aACC,gCAGD,kBACE,cACA,gBACA,QACA,WACA,kCACA,sCACA,8BACA,mCACA,uCACA,+BAGF,wBACE,WACA,cACA,WAGF,SACE,cACA,MH9KW,QGiLb,qBACE,UACA,WACA,gBACA,kBAGF,qBACE,eACA,iBACA,gBAGF,oBACE,cACA,WACA,mBACA,eACA,MHnMW,QGsMb,mBACE,cACA,YACA,WACA,YACA,eACA,MH5MW,QG6MX,iBACA,aACA,2DACA,WACA,+BACA,4BACA,0BACA,uBAGF,yBACE,eACA,4DACA,UC7NF,WACE,sBACA,kBACA,gBACA,0EAEF,WACE,sBACA,kBACA,gBACA,mGAEF,WACE,sBACA,kBACA,gBACA,yGAEF,WACE,sBACA,kBACA,gBACA,gHAKF,UACC,WJRU,KISV,iCACA,MJ3BY,QI4BZ,WJ5BY,QI6BZ,UACA,SACA,iBAGD,MACC,YACA,gBACA,kBACA,SACA,UACA,iBAGD,SACC,UAGD,sBACC,iCACA,UJzBS,KI0BT,WJjCU,KIkCV,YAED,sCACC,YACA,YAGD,2HACC,iBJrDa,QIwDd,sFACC,iBJ9DwB,QIiEzB,8GACC,iBJlEwB,QIqEzB,6LACC,YAGD,8BACC,eAGD,OACC,WACA,YACA,SACA,gBACA,WJjFwB,QIkFxB,YAGD,OACC,WJvEU,KIwEV,YACA,MJ1FY,QI2FZ,SAGD,SACC,gBAGD,sCACC,MJnGY,QIsGb,EACC,SACA,UAGD,YACC,qBAGD,0CACC,aAGD,IACC,YAyBD,WARC,iCACA,oCACA,mCACA,4BAQD,cAXC,iCACA,oCACA,mCACA,4BAWD,aAdC,iCACA,oCACA,mCACA,4BAcD,YAjBC,iCACA,oCACA,mCACA,4BAiBD,mBApBC,8BACA,iCACA,gCACA,yBAoBD,OAvBC,uCACA,0CACA,yCACA,kCAuBD,YA1BC,mCACA,sCACA,qCACA,8BA0BD,gBA7BC,iCACA,oCACA,mCACA,4BA8BD,YACC,sBACA,2BACA,8BAGD,SACC,eACA,WACA,kBAGD,yBACC,cACA,iBACA,mBACA,YACA,uBACA,0BACA,yBACA,kBACA,WAGD,+BACC,0BAGD,gBACC,MJtLW,IIuLX,aJvLW,IIwLX,UJ5KU,KI6KV,iBAGD,oBACC,MJ9La,OI+Lb,aJ/La,OIgMb,UJnLU,KIoLV,kBAGD,oBACC,MJvMa,MIwMb,aJxMa,MIyMb,UJ1LU,KI6LX,cACC,yBAGD,SACC,YACA,iBACA,WJ3NwB,QI4NxB,UJrMU,KIsMV,eAEA,qBAED,eACC,iBJ9Na,QIgOd,gBACC,iBJvOY,QIwOZ,MJvNU,KI0NX,aAEC,iBAGD,qBACC,eAGD,oCACC,gBACA,MJrOU,KIsOV,kBACA,UAED,yBACC,MJrPa,QIwPd,uBACC,iBAGD,iBACC,iBJnQY,QIoQZ,MJnQwB,QIsQzB,uBACC,iBJlQa,QImQb,MJzQY,QI4Qb,eACC,iBACA,iBAGD,oBACC,iBACA,kBAGD,MACC,YAGD,YACC,iBJ1QU,KI6QX,WACC,WAGD,QACC,iBAGD,YACC,YAGD,OACC,gBAGD,cACC,mBAGD,gBACC,0BACA,kBACA,WJpTwB,QIqTxB,wBACA,SAED,gDACC,WAED,0BACC,0BAED,uCACC,yBAGD,YACC,iBACA,MJrUY,QIsUZ,kBACA,UJ/SS,KIiTV,2BACC,WJzTU,KI2TX,4BACC,WJ1UW,QI4UZ,oBACC,MJ1Ua,QI6Ud,cACC,gBACA,UACA,cACA,WAGD,oBACC,mBAGD,6BACC,iBACA,kBACA,UJxUU,KI2UX,sBACC,iBACA,iBAGD,wBACC,gBAGD,cACC,aAKD,UACC,eACA,kBACA,aACA,WJrXwB,QIsXxB,MJxXY,QI0Xb,0BACC,WJxXW,QI2XZ,mGACC,gBACA,WJ/WU,KIgXV,UJxWU,KIyWV,iBAED,gLACC,iBJpXU,KIsXX,6FACC,WAED,4CACC,aACA,YACA,WJ5XU,KI8XX,+CACC,aJ/YwB,QIgZxB,iBAED,yBACC,iBJlZwB,QIoZzB,yCACC,iBJpZW,QIsZZ,sBACC,iBJzZwB,QI0ZxB,eAGD,iDACC,gCACA,UAKD,eACC,kBACA,WACA,gBAGD,iCACC,kBACA,OACA,MACA,WAGD,WACC,kBACA,YACA,WACA,gBAGD,yCACC,iBJ1bY,QI2bZ,WAED,kBACC,iBJ7bwB,QI8bxB,YACA,WACA,kBACA,UAED,kBACC,kBACA,MACA,gBAED,uBACC,gBACA,YAGD,SACC,aAKD,cACC,kBACA,WAGD,mBACI,kBACA,UACA,OACA,WACA,YACA,aACA,UACA,WJhdO,KIidP,kBAGJ,0BACC,WJhea,QIked,wBACI,cACA,kBACA,QACA,WACA,gBACA,eAGJ,iBACC,WACA,WAGD,eACc,aACb,UACA,gBAED,kBACC,qBAGD,2GACI,iBAGJ,0CACC,UJ5eS,KI6eT,mBAGD,uBACC,0BACA,MJ1gBY,QI6gBb,iCACC,iBACA,gBACA,WJ/fU,KImgBX,4BACC,UJ7fS,KIggBV,kCACC,YACA,SAGD,6BACC,aAED,mDACC,eAGD,sBACC,MJxhBW,II2hBZ,mFACC,MJniBa,QKDd,WACC,WLNY,QKOZ,0BAKD,QACC,mBACA,SAEA,sBACC,UACA,YACA,SAGD,cACC,kBACA,QACA,YACA,YACA,iBAGD,0CACC,YACA,MLhCW,QKiCX,YACA,YACA,eACA,eAGD,eACC,WLvBS,KKwBT,YAGD,2BACC,WL5CuB,QK6CvB,YACA,gBAGD,iCACC,iBL7CY,QKmDd,gBACC,WLzDwB,QK0DxB,iBACA,kBACA,gBACA,0BAGD,0BACC,kBAGD,eACC,cACA,SACA,WACA,iCACA,eACA,iBACA,kBACA,iBAGD,+BACC,iBAGD,0BACC,SACA,cACA,YACA,kBACA,WACA,SAGD,MACC,SACA,UACA,gBAKD,MACC,kBACA,WACA,eACA,WAEA,kBACC,kBACA,UACA,kBACA,kBACA,eACA,eACA,iBACA,iBAGD,mBACC,SACA,UACA,gBACA,eACA,gBAGD,sBACC,yBACA,SACA,gBACA,eACA,iBACA,YACA,eACA,0BAGD,kCACC,cAGD,oCACC,gBAGD,wBACC,sBACA,MLlJuB,QKmJvB,qBACA,WAGD,8BACC,MLnJY,QKsJb,yBACC,mBACA,MLxJY,QKyJZ,mBD1BD,uCACA,0CACA,yCACA,kCC2BA,6BACC,aAGD,8BACC,qBACA,0BACA,mBAGD,mCACC,kBAID,+BACC,MLnLW,QKyLb,4BACC,WLxLwB,QKyLxB,aAGD,wBACC,iBACA,cACA,mBACA,gCACA,mBAGD,+BACC,eAGD,kCACC,ULlLU,KKmLV,gBACA,iBAED,yCACC,cAGD,qCACC,UL5LS,KK6LT,eAGD,wCACC,mBAGD,sFACC,eAGD,wBACC,gBACA,gBACA,iBACA,yBACA,eACA,WLrNU,KKsNV,+DACA,+GACA,kEACA,6DACA,8DACA,gEACA,yHAED,8BACC,ML1Oa,QK2Ob,aL3Oa,QK4Ob,+DACA,+GACA,kEACA,6DACA,8DACA,gEACA,0HAED,4BACC,iBAGD,WACC,0BAKD,8CACC,UL5OU,KK+OX,0BACC,gBAGD,gCACC,sBAGD,4CACC,iBAGD,qCACC,mBAGD,sDACC,eACA,2BACA,WACA,iBACA,aACA,gCACA,ML7QW,KK8QX,ULvQU,KK0QX,6BACC,cAGD,qCACC,YACA,YACA,ML1SY,QK6Sb,wBACC,aAGD,kCACC,gBACA,WAGD,2EACC,iBLjTa,QKoTd,+BACC,aACA,iBACA,YACA,ULrSU,KKwSX,aACC,MLlUY,QKqUb,kBACC,aAGD,4BACC,MLhUa,MKiUb,WLhUc,QKkUf,8BACC,MLjUW,IKkUX,WLjUY,QKsUb,QACC,SACA,UAGD,mBACC,UACA,SAGD,6BACC,kBACA,UACA,mBACA,WLlWY,QKqWb,qCACC,SAGD,+CACC,mBACA,ML1VU,KK4VX,oDACC,mBACA,ML9VU,KKiWX,yCACC,WLnXY,QKoXZ,YACA,MLpWU,KKuWX,2CACC,MLxWU,KK2WX,uCAEC,SACA,mBACA,mBACA,YAGD,gCACC,8BACA,WLrXU,KKsXV,SAID,mCAEC,SACA,UACA,+BACA,WL/XU,KKgYV,gCACA,UL1XS,KK2XT,iBACA,iBACA,cAGD,+GACC,gBAGD,uGACC,gBACA,mBAGD,uFACC,iBLhawB,QKmazB,uEACA,oDACA,mDACA,qDACA,4EACA,wDACA,sDACA,yGACsD,cACtD,yDACA,iDACA,uGACA,2CL/ZY,KKgaZ,sDACA,qDACC,MLpbY,QKqbZ,iBACA,0BAGD,iCACC,qBACA,qCACA,sBACA,wBACA,qBACA,SACA,UACA,YAID,wCACC,MLpbW,KKsbZ,gEACC,ULhbU,KKibV,iBAED,+GACC,cACA,oBACA,mBAGD,sGACC,MLndY,QKodZ,YACA,mBACA,cACA,0BAED,wDACC,ML1dY,QK2dZ,mBAED,2GACC,MLxda,QK2dd,kDACC,cAID,oDACC,8BACA,cACA,kBACA,UACA,kBAGD,wEACC,WACA,kBACA,kBAGD,kEACC,kBACA,oBACA,eACA,UACA,aACA,8BACA,UACA,WAGD,wEACC,gDAGD,uEACC,+CAGD,wEACC,2BAGD,gBACC,aACA,mBAGD,yBACC,gBACA,mBACA,aAGD,0BACC,kBAKD,iBACC,sBACA,ULrgBU,KKsgBV,kBAGD,iGAGC,iBLpiBwB,QKqiBxB,eAGD,kBACC,mBAGD,sBACC,mBAGD,wBACC,eAKD,iBACC,WACA,YACA,qDACA,WAGD,+BACC,WACA,YACA,sBACA,iBAGD,eACC,kBACA,kBACA,YACA,WLvkBwB,QK0kBzB,mBACC,iBAGD,iBACC,eACA,iBAGD,sBACC,iBAGD,6BACC,kBACA,sBACA,eACA,ML7lBY,QK8lBZ,gCACA,mDAGD,yBACC,gBAGD,sCACC,iBACA,UL/kBU,KKilBX,qDACC,WL1lBU,KK4lBX,sDACC,WL3mBW,QK6mBZ,kDACC,gCACA,iCACA,mCACA,oCACA,oCACA,qCACA,4BACA,6BAED,iDACC,oCACA,mCACA,sCACA,uCACA,wCACA,uCACA,gCACA,+BAED,0CACC,gBACA,iBAGD,yBACC,0BAKD,sBACC,eAKD,iBACC,mBACA,WLtoBU,KKuoBV,YACA,YACA,kBAGD,qBACC,yEAkBD,8BACC,kBACA,QACA,UACA,eACA,YACA,oEAGD,iCACC,WACA,mBAED,oDACC,kBACA,YACA,gBACA,iEAGD,gDACC,kBACA,OACA,MACA,gBACA,gCACA,WAGD,UACC,4GAGD,iBACC,MLltBY,QKutBb,iGACC,iBLttBwB,QKutBxB,kBAED,mBACC,WACA,qBACA,kBAED,2BACC,ML3tBa,QK4tBb,UL5sBW,IK6sBX,kBAED,sDACC,UL/sBY,KKgtBZ,iBACA,MLxuBY,QK0uBb,wBACC,gBAED,8BACC,0BAED,2BACC,gBACA,UL1tBS,KK4tBV,6BACC,kBAED,6BACC,0BACA,kBAED,qCACC,WAED,gCACC,MLlvBW,IKovBZ,gCACC,iBAED,2BACC,iBAGD,2BACC,sBACA,yBACA,YACA,WL3vBU,KK6vBX,qCACC,kBAED,yBACC,kBACA,aACA,aACA,UACA,MACA,WACA,SACA,UACA,6BAED,kCACC,iCACA,YAED,uGACC,gBAGD,uCACC,MLpxBU,KKqxBV,UL7wBU,KK8wBV,iBACA,iBACA,UACA,mBACA,gBACA,uBACA,qBAGD,4CACC,iBAED,gDACC,aAED,oDACC,iBACA,iBACA,gBAED,0DACC,aAED,4DACC,ML/zBY,QKg0BZ,SACA,UACA,WAMD,qBACC,uBACA,kBACA,aACA,WL3zBU,KK6zBX,uBACC,cACA,WACA,UL1zBY,KK4zBb,6BACC,UL5zBS,KK6zBT,gBACA,8BACA,iBACA,qBACA,uBACA,WAED,gCACC,eACA,ULv0BY,KKy0Bb,4BACC,eAED,qCACC,kBACA,8BAED,gCACC,iBACA,iBAOA,kBACC,WL/2BuB,QKg3BvB,cACA,gBAGD,eACC,aAGD,oBACC,iBACA,WAGD,kBACC,eACA,eAED,4BACC,cAGD,iCACC,WACA,gBAGD,yBACC,mBACA,YACA,MAGD,gCACC,mBACA,WAGD,sBACC,MLx5BW,QKy5BX,iBACA,gBAGD,gCACC,WL55BuB,QK65BvB,SACA,YACA,gBACA,wBACA,UL14BS,KK64BV,kFACC,6BAMF,eACC,kBACA,QACA,YAGD,mBACC,YAGD,4BACC,kBACA,iBACA,UACA,mBACA,gBAGD,kCACC,iBL97BwB,QK+7BxB,kBACA,ULv6Bc,KK06Bf,oCACC,WLr7BU,KKs7BV,ULh7BY,KKi7BZ,mBAGD,+BACC,qEACA,aAGD,sCACC,cACA,gBAGD,+CACC,iBACA,kBAGD,gCACC,ULl8BU,KKo8BX,yCACC,sBAED,qCACC,qBACA,8BACA,kBACA,mBACA,MLr+BY,QKs+BZ,0BACA,gBAED,sCACC,MLp+Ba,QKu+Bd,WACC,kBACA,eACA,iBACA,gCACA,kBACA,eAMD,0BACC,iBACA,iBAGD,oCACC,qBACA,iBL9/BwB,QK+/BrB,gBACA,gBACH,MLngCY,QKogCZ,UL1+BW,KK6+BZ,yCACC,YACA,cLzgCY,QK2gCb,iEACC,MLtgCa,QKwgCd,0FACC,iBL/gCY,QKghCZ,ML//BU,KKigCX,oDACI,0BAEJ,qDACI,mBACA,kBAEJ,sCACC,gBACA,ML3hCY,QK6hCb,6DACC,ML9hCY,QKgiCb,sDACC,MLhiCwB,QKkiCzB,0FAEC,ML/hCa,QKkiCd,+CACC,gBAED,oGACC,YACA,ULnhCW,KKohCX,UACA,SACA,WACA,iBLjjCY,QKkjCZ,MLjiCU,KKkiCV,iBAED,kFACC,oBLriCU,KKsiCV,iBLtiCU,KKuiCV,MLtiCW,KKyiCZ,wCACC,iBLtjCa,QKyjCd,4CACC,UAED,0BACC,gBAED,iCACC,WLrjCU,KKujCX,gCACC,WLtkCW,QKwkCZ,4BACC,iCACA,oCACA,mCACA,4BAED,4BACC,gBACA,iBAED,uCACC,kBAKD,sBACC,WL1lCwB,QK2lCxB,uBACA,WACA,qBACA,aAED,sCACC,eAED,+BACC,aAGD,yBACC,ML1mCY,QK2mCZ,eACA,kBACA,gCAGD,mCACC,aACA,WACA,WAGD,uLAKC,WLxnCW,QKynCX,iBACA,eACA,YACA,YACA,uBAGD,wCACC,UACA,gBAGD,0CACC,iBACA,YACA,cACA,ML5oCY,QK8oCb,gDACC,8BAGD,8BACC,WACA,WAGD,6BACC,MLxpCY,QK2pCb,gCACC,kBACA,cACA,iBACA,gBACA,gBAGD,qCACC,WACA,UACA,cACA,eAGD,8BACC,eACA,WAGD,gBACC,WACA,wBACA,iBAGD,2BACC,eACA,sBACA,WLrrCW,QKsrCX,WACA,qBAGD,gCACC,kBAGD,sCACC,eAGD,8BACC,SACA,kBACA,kBACA,cAGD,mEACC,wBACA,aACA,WACA,gBAED,kCACC,WAKD,oCACC,iBLxsCU,KK2sCX,0CACC,iBLvtCa,QK0tCd,iDACC,gBAGD,0BACC,gCACA,iBAGD,4BACC,ULltCS,KKmtCT,kBACA,oBAGD,gCACC,ULvtCU,KK0tCX,oCACC,iBAGD,0BACC,WAGD,6BACC,gBACA,SAGD,yCACC,UAGD,0CACC,iBAGD,iDACC,mBACA,iBACA,kBACA,gBAGD,qCACC,mBACA,UAGD,2CACC,cACA,gBACA,yBACA,WLvwCU,KK0wCX,4BACC,aAGD,wBACC,kBAGD,qBACC,kBAGD,sCACC,kBAKD,0BACC,cACA,aAGD,4BACC,WLlyCU,KKmyCV,yBACA,YACA,aACA,sBAED,kCACC,aLpzCa,QKuzCd,2BACC,ULtyCS,KK2yCV,kBACC,kBAGD,gCACC,ULhzCS,KKizCT,cAKD,oBACC,SACA,UAGD,eACC,mBAGD,8BACC,WLr1CW,QKw1CZ,kBACC,gBAGD,wBACC,aAGD,gBACC,2BAGD,yBACC,eAKD,eACC,WAGD,mBACC,UAED,yBACC,uBAGD,yBACC,MLz3CY,QK43Cb,mBACC,gBAGD,mBACC,gBACA,eAGD,mBACC,iBAGD,yBACC,kBAGD,+BACC,kBACA,eAGD,gDACC,kBAGD,sBACC,MLt5CwB,QKu5CxB,iBLx5CY,QK25Cb,qBACC,aAKD,mBACC,mBAGD,gCACC,aAKD,WACC,gBACA,ML76CY,QKk7Cb,QACC,mBACA,iBAGD,oBACC,MLv6CU,KKw6CV,SACA,ULp6CW,IKu6CZ,UACC,iBAKD,MACC,YAGD,WACC,mBAGD,oBACC,gBAKD,QACC,eACA,MACA,WACA,WACA,4BACA,aAED,QACC,eACA,OACA,YACA,UACA,0BACA","file":"databap.css"} \ No newline at end of file diff --git a/style/databap.scss b/style/databap.scss index 672faf8..8784d91 100644 --- a/style/databap.scss +++ b/style/databap.scss @@ -430,6 +430,9 @@ #code_container .code_reader .operator {color:#840084;} #code_container .code_reader .string {color:#4aa518;text-transform:uppercase;} #code_container .code_reader .string span {color:#4aa518;} /* override syntax coloring in strings */ +#code_container .code_reader .string.curly {color:#000000;} +#code_container .code_reader .string .operator.pipe, +#code_container .code_reader .string .operator.curly {color:#840084;} #code_container .code_reader .field-symbol {color:#848484;} #code_container .code_reader .line {color:#848484;} #code_container .code_reader .line-number, #code_container .code_reader .line-post-number {color:#398c8c;} diff --git a/style/scss.bat b/style/scss.bat new file mode 100644 index 0000000..8eb3b12 --- /dev/null +++ b/style/scss.bat @@ -0,0 +1 @@ +sass --style=compressed --watch databap.scss:databap.css --poll \ No newline at end of file