diff --git a/inc/databap.php b/inc/databap.php
index c6ef477..5469e26 100755
--- a/inc/databap.php
+++ b/inc/databap.php
@@ -1924,6 +1924,7 @@ class Databap extends PhpObject
$iUserId = $asMessageInfo[MySqlManager::getId(self::USER_TABLE)];
$sMessageType = $asMessageInfo['type'];
$asMessages['messages'][$iMessageId]['id_chan'] = $iChanId;
+ $asMessages['messages'][$iMessageId]['id_user'] = $iUserId;
$asMessages['messages'][$iMessageId]['message'] = $asMessageInfo[$sMsgTextCol];
$asMessages['messages'][$iMessageId]['msg_class'] = $sMessageType;
$asMessages['messages'][$iMessageId]['time'] = self::getDateFormat($asMessageInfo['led'], self::TIME_FORMAT);
diff --git a/jquery/databap.js b/jquery/databap.js
index 76db492..47c3aea 100644
--- a/jquery/databap.js
+++ b/jquery/databap.js
@@ -852,6 +852,18 @@ function Databap()
if(self.tmp('scrollbar')) self.tmp('scrollbar').tinyscrollbar_update(sPos);
};
+ this.isScrollBarAtBottom = function()
+ {
+ return self.tmp('scrollbar').tinyscrollbar_isBottom();
+ };
+
+ this.unifyWidth = function($ItemsSet)
+ {
+ var iMaxWidth = 0;
+ $ItemsSet.each(function(){iMaxWidth = Math.max(iMaxWidth, $(this).width());});
+ $ItemsSet.each(function(){if($(this).width() < iMaxWidth) $(this).width(iMaxWidth);});
+ };
+
this.shareEvent = function(sType, iId)
{
if(iId!='')
diff --git a/jquery/jquery.mods.js b/jquery/jquery.mods.js
index b2c78ac..b3e9fce 100644
--- a/jquery/jquery.mods.js
+++ b/jquery/jquery.mods.js
@@ -10,6 +10,9 @@
$.tiny.scrollbar = {options:{axis:'y',wheel:40,scroll:true,size:'auto',sizethumb:'auto'}};
$.fn.tinyscrollbar=function(options){var options=$.extend({},$.tiny.scrollbar.options,options);this.each(function(){$(this).data('tsb',new Scrollbar($(this),options));});return this;};
$.fn.tinyscrollbar_update=function(sScroll){return $(this).data('tsb').update(sScroll);};
+ /* Adding getPos function - Start */
+ $.fn.tinyscrollbar_isBottom=function(){return $(this).data('tsb').isBottom();};
+ /* Adding getPos function - End */
function Scrollbar(root,options)
{
@@ -49,6 +52,13 @@
setSize();
};
+ /* Adding isBottom function - Start */
+ this.isBottom=function()
+ {
+ return (iScroll == (oContent[options.axis] - oViewport[options.axis]));
+ };
+ /* Adding isBottom function - End */
+
function setSize()
{
oThumb.obj.css(sDirection,iScroll/oScrollbar.ratio);
diff --git a/masks/chat.html b/masks/chat.html
index ad6ac4f..45be83c 100755
--- a/masks/chat.html
+++ b/masks/chat.html
@@ -97,9 +97,6 @@ databap.pageInit = function()
//Loading the chat
self.initScrollBar('#chat_container', '#chat_messages_box', '#chat_messages');
- $('#chat_container').find('.thumb')
- .mousedown(function(){self.tmp('scrolling', true);})
- .mouseup(function(){self.tmp('scrolling', false);});
//Loading Chans
setChanButton();
@@ -387,6 +384,8 @@ function switchChan(sChanKeyName)
//Show current channel messages
databap.getMainElem('#chat_messages').find('p').hide();
databap.getMainElem('#chat_messages').find('p.class_'+sChanKeyName+', p.class_'+databap.consts.all_chan_id).show();
+
+ //Update scrollbar
databap.updateScrollBar(self.tmp('scrolling')?'relative':'bottom');
//Show Current channel members
@@ -403,7 +402,6 @@ function syncUnreadMsg()
databap.tmp('unread_msg'),
function(sChanName, iUnreadMsg)
{
- //debug('chan '+sChanName+' : '+iUnreadMsg+' unread messages');
iCountUnread += iUnreadMsg;
}
);
@@ -644,6 +642,7 @@ function add_message(e)
function refresh_chat(bReset)
{
var bReset = (typeof bReset != 'undefined' && bReset == true);
+ self.tmp('scrolling', (!bReset && !databap.isScrollBarAtBottom()));
if(typeof oChatTimer != "undefined") clearTimeout(oChatTimer);
if(databap.vars.current_page == 'chat')
{
@@ -822,6 +821,9 @@ function addMessage(message_info, bReset)
iUnreadCount = (databap.tmp(['unread_msg', sUnreadChanName]) || 0) + 1;
databap.tmp(['unread_msg', sUnreadChanName], iUnreadCount);
}
+
+ //Move to bottom if user is typing
+ if(message_info.id_user===databap.vars.user_id) self.tmp('scrolling', false);
}
}
diff --git a/masks/index.html b/masks/index.html
index 33f744f..78d7756 100755
--- a/masks/index.html
+++ b/masks/index.html
@@ -49,6 +49,7 @@
ajouter une table
ajouter une doc
liste complète
+ Note OSS
profil
chat
paramètres
diff --git a/masks/list.html b/masks/list.html
index 906988e..fa423bf 100755
--- a/masks/list.html
+++ b/masks/list.html
@@ -20,6 +20,13 @@ databap.pageInit = function()
databap.updateScrollBar('top');
}, i);
}
+ $FilterBox.addButton('delete', 'Supprimer les filtres', function($This)
+ {
+ $ListBox.children().show();
+ databap.updateScrollBar('top');
+ }, 'delete gimmespace');
+
+ //self.unifyWidth($FilterBox.children());
//Liste
self.getInfo
diff --git a/masks/welcome.html b/masks/welcome.html
index 7c5c334..269f6fc 100755
--- a/masks/welcome.html
+++ b/masks/welcome.html
@@ -16,6 +16,8 @@
Plantage lors de la recherche infructueuse de table
Bon rafraichissement de la barre de défilement dans la recherche
Réinsertion des nicknames absent du chan lors des tab dans le cas d'un /invite
+ Suppression de la redescente automatique de la scrollbar dans le chat si elle n'est pas déjà en bas
+ Liste complète: ajout d'un bouton pour supprimer les filtres appliqués
Changelog .
diff --git a/style/_common.scss b/style/_common.scss
index 56ca7b2..b57aa78 100644
--- a/style/_common.scss
+++ b/style/_common.scss
@@ -248,6 +248,11 @@ a.button.heavy {
font-weight:bold;
}
+a.button.gimmespace {
+ margin-left:10px;
+ margin-right:10px;
+}
+
.addr {
cursor:text;
}
@@ -508,6 +513,7 @@ a.uploader_item_cancel {
background:white;
}
+
.uploader_box .image_action {
font-size:12px;
}
diff --git a/style/databap.css b/style/databap.css
index 2724e28..d38b54a 100755
--- a/style/databap.css
+++ b/style/databap.css
@@ -1,2739 +1,4 @@
-@charset "UTF-8";
-/* Librairies */
-@CHARSET "UTF-8";
-/*!
+@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 PATH
- * -------------------------- */
-@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; }
-/* line 14, _fa.scss */
-.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; }
-
-/* makes the font 33% larger relative to the icon container */
-/* line 24, _fa.scss */
-.fa-lg {
- font-size: 1.33333333em;
- line-height: 0.75em;
- vertical-align: -15%; }
-
-/* line 29, _fa.scss */
-.fa-2x {
- font-size: 2em; }
-
-/* line 32, _fa.scss */
-.fa-3x {
- font-size: 3em; }
-
-/* line 35, _fa.scss */
-.fa-4x {
- font-size: 4em; }
-
-/* line 38, _fa.scss */
-.fa-5x {
- font-size: 5em; }
-
-/* line 41, _fa.scss */
-.fa-fw {
- width: 1.28571429em;
- text-align: center; }
-
-/* line 45, _fa.scss */
-.fa-ul {
- padding-left: 0;
- margin-left: 2.14285714em;
- list-style-type: none; }
-
-/* line 50, _fa.scss */
-.fa-ul > li {
- position: relative; }
-
-/* line 53, _fa.scss */
-.fa-li {
- position: absolute;
- left: -2.14285714em;
- width: 2.14285714em;
- top: 0.14285714em;
- text-align: center; }
-
-/* line 60, _fa.scss */
-.fa-li.fa-lg {
- left: -1.85714286em; }
-
-/* line 63, _fa.scss */
-.fa-border {
- padding: .2em .25em .15em;
- border: solid 0.08em #eeeeee;
- border-radius: .1em; }
-
-/* line 68, _fa.scss */
-.pull-right {
- float: right; }
-
-/* line 71, _fa.scss */
-.pull-left {
- float: left; }
-
-/* line 74, _fa.scss */
-.fa.pull-left {
- margin-right: .3em; }
-
-/* line 77, _fa.scss */
-.fa.pull-right {
- margin-left: .3em; }
-
-/* line 80, _fa.scss */
-.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); } }
-/* line 120, _fa.scss */
-.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); }
-
-/* line 128, _fa.scss */
-.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); }
-
-/* line 136, _fa.scss */
-.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); }
-
-/* line 144, _fa.scss */
-.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); }
-
-/* line 152, _fa.scss */
-.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); }
-
-/* line 160, _fa.scss */
-.fa-stack {
- position: relative;
- display: inline-block;
- width: 2em;
- height: 2em;
- line-height: 2em;
- vertical-align: middle; }
-
-/* line 168, _fa.scss */
-.fa-stack-1x,
-.fa-stack-2x {
- position: absolute;
- left: 0;
- width: 100%;
- text-align: center; }
-
-/* line 175, _fa.scss */
-.fa-stack-1x {
- line-height: inherit; }
-
-/* line 178, _fa.scss */
-.fa-stack-2x {
- font-size: 2em; }
-
-/* line 181, _fa.scss */
-.fa-inverse {
- color: #ffffff; }
-
-/* Font Awesome */
-/* line 3, _fa-custom.scss */
-.fa-inline {
- margin-right: 5px; }
-
-/*
-size +0% +10% +20% +30% +40% +50% +60%
-font-size 1em 1.111em 1.222em 1.333em 1.444em 1.555em 1.666em
-line-height 1em 0.917em 0.833em 0.750em 0.666em 0.583em 0.500em
-vertical-align 0% -5% -10% -15% -20% -25% -30%
-*/
-/* line 14, _fa-custom.scss */
-.fa-10 {
- font-size: 1.1111111111111111em;
- line-height: 0.9166666666666666em;
- vertical-align: -5%; }
-
-/* line 19, _fa-custom.scss */
-.fa-20 {
- font-size: 1.2222222222222222em;
- line-height: 0.8333333333333333em;
- vertical-align: -10%; }
-
-/* line 24, _fa-custom.scss */
-.fa-30 {
- font-size: 1.3333333333333333em;
- line-height: 0.75em;
- vertical-align: -15%; }
-
-/* line 29, _fa-custom.scss */
-.fa-40 {
- font-size: 1.4444444444444444em;
- line-height: 0.6666666666666666em;
- vertical-align: -20%; }
-
-/* line 34, _fa-custom.scss */
-.fa-60, a.button .fa {
- font-size: 1.6666666666666666em;
- line-height: 0.5em;
- vertical-align: -30%; }
-
-/* line 40, _fa-custom.scss */
-.fa-c-c:before, .fa-c-code:before {
- content: "\f121"; }
-
-/* line 44, _fa-custom.scss */
-.fa-c-procedure:before, .fa-c-proc:before, .fa-c-p:before {
- content: "\f0cb"; }
-
-/* line 48, _fa-custom.scss */
-.fa-c-table:before, .fa-c-t:before {
- content: "\f0ce"; }
-
-/* line 52, _fa-custom.scss */
-.fa-c-documentation:before, .fa-c-doc:before, .fa-c-d:before {
- content: "\f15b"; }
-
-/* line 56, _fa-custom.scss */
-.fa-c-article:before, .fa-c-art:before, .fa-c-a:before {
- content: "\f14c"; }
-
-/* line 60, _fa-custom.scss */
-.fa-c-note:before {
- content: "\f0fa"; }
-
-/* line 64, _fa-custom.scss */
-.fa-c-list:before {
- content: "\f02d"; }
-
-/* line 68, _fa-custom.scss */
-.fa-c-profile:before {
- content: "\f007"; }
-
-/* line 72, _fa-custom.scss */
-.fa-c-chat:before {
- content: "\f086"; }
-
-/* line 76, _fa-custom.scss */
-.fa-c-news:before {
- content: "\f0e7"; }
-
-/* line 80, _fa-custom.scss */
-.fa-c-version:before {
- content: "\f005"; }
-
-/* line 84, _fa-custom.scss */
-.fa-c-details:before {
- content: "\f112"; }
-
-/* line 88, _fa-custom.scss */
-.fa-c-bug:before {
- content: "\f188"; }
-
-/* line 92, _fa-custom.scss */
-.fa-c-date:before {
- content: "\f073"; }
-
-/* line 96, _fa-custom.scss */
-.fa-c-git:before {
- content: "\f1d3"; }
-
-/* line 100, _fa-custom.scss */
-.fa-c-afk:before {
- content: "\f017"; }
-
-/* line 104, _fa-custom.scss */
-.fa-c-comment {
- color: #04357B; }
-
-/* line 107, _fa-custom.scss */
-.fa-c-comment:before {
- content: "\f075"; }
-
-/* line 111, _fa-custom.scss */
-.fa-c-options:before {
- content: "\f085"; }
-
-/* line 115, _fa-custom.scss */
-.fa-c-param:before {
- content: "\f1de"; }
-
-/* line 119, _fa-custom.scss */
-.fa-c-wip:before {
- content: "\f013"; }
-
-/* line 123, _fa-custom.scss */
-.fa-c-rss:before {
- content: "\f09e"; }
-
-/* line 127, _fa-custom.scss */
-.fa-c-logmeout:before, .fa-c-logout:before {
- content: "\f08b"; }
-
-/* line 131, _fa-custom.scss */
-.fa-c-fold {
- color: #04357B; }
-
-/* line 134, _fa-custom.scss */
-.fa-c-fold:before {
- content: "\f191"; }
-
-/* line 138, _fa-custom.scss */
-.fa-c-success:before, .fa-c-ok:before, .available .fa:before {
- content: "\f00c"; }
-
-/* line 142, _fa-custom.scss */
-.fa-c-warning {
- color: #EFAB00; }
-
-/* line 145, _fa-custom.scss */
-.fa-c-warning:before {
- content: "\f071"; }
-
-/* line 149, _fa-custom.scss */
-.fa-c-error {
- color: red; }
-
-/* line 152, _fa-custom.scss */
-.fa-c-error:before {
- content: "\f071"; }
-
-/* line 156, _fa-custom.scss */
-.fa-c-ko {
- color: red; }
-
-/* line 159, _fa-custom.scss */
-.fa-c-ko:before, .unavailable .fa:before {
- content: "\f00d"; }
-
-/* line 163, _fa-custom.scss */
-.fa-c-search:before {
- content: "\f002"; }
-
-/* line 167, _fa-custom.scss */
-.fa-c-welcome:before {
- content: "\f015"; }
-
-/* line 171, _fa-custom.scss */
-.fa-c-loading:before {
- content: "\f110"; }
-
-/* line 175, _fa-custom.scss */
-.fa-c-edit:before {
- content: "\f040"; }
-
-/* line 179, _fa-custom.scss */
-.fa-c-save:before {
- content: "\f0c7"; }
-
-/* line 183, _fa-custom.scss */
-.fa-c-raw:before {
- content: "\f15c"; }
-
-/* line 187, _fa-custom.scss */
-.fa-c-print:before {
- content: "\f02f"; }
-
-/* line 191, _fa-custom.scss */
-.fa-c-share:before {
- content: "\f0ac"; }
-
-/* line 195, _fa-custom.scss */
-.fa-c-refresh:before, .fa-c-switch:before {
- content: "\f021"; }
-
-/* line 199, _fa-custom.scss */
-.fa-c-plus:before, .fa-c-add:before {
- content: "\f055"; }
-
-/* line 203, _fa-custom.scss */
-.fa-c-minus:before, .fa-c-delete:before {
- content: "\f056"; }
-
-/* line 207, _fa-custom.scss */
-.fa-c-up:before {
- content: "\f01b"; }
-
-/* line 211, _fa-custom.scss */
-.fa-c-down:before {
- content: "\f01a"; }
-
-/* line 215, _fa-custom.scss */
-.fa-c-next:before {
- content: "\f054"; }
-
-/* line 219, _fa-custom.scss */
-.fa-c-prev:before {
- content: "\f053"; }
-
-/* line 223, _fa-custom.scss */
-.fa-c-close:before {
- content: "\f05c"; }
-
-/* line 227, _fa-custom.scss */
-.fa-c-desc:before {
- content: "\f05a"; }
-
-/* line 231, _fa-custom.scss */
-.fa-c-company:before {
- content: "\f0f7"; }
-
-/* line 235, _fa-custom.scss */
-.fa-c-name:before {
- content: "\f02b"; }
-
-/* line 239, _fa-custom.scss */
-.fa-c-assignment:before {
- content: "\f0b1"; }
-
-/* line 243, _fa-custom.scss */
-.fa-c-lock:before {
- content: ""; }
-
-/* line 247, _fa-custom.scss */
-.fa-c-search:before {
- content: "\f002"; }
-
-/* line 251, _fa-custom.scss */
-.fa-c-mail:before {
- content: "\f0e0"; }
-
-/* line 255, _fa-custom.scss */
-.fa-c-upcoming:before {
- content: "\f135"; }
-
-/* line 259, _fa-custom.scss */
-.fa-c-changelog:before {
- content: "\f0d0"; }
-
-/* line 263, _fa-custom.scss */
-.fa-c-checked:before {
- content: "\f046"; }
-
-/* line 267, _fa-custom.scss */
-.fa-c-unchecked:before {
- content: "\f096"; }
-
-/* line 271, _fa-custom.scss */
-.fa-c-kpi:before {
- content: "\f0e4"; }
-
-/* line 275, _fa-custom.scss */
-.fa-c-file-xls, .fa-c-file-xlsx {
- color: #247648; }
-
-/* line 278, _fa-custom.scss */
-.fa-c-file-xls:before, .fa-c-file-xlsx:before {
- content: "\f1c3"; }
-
-/* line 282, _fa-custom.scss */
-.fa-c-file-doc, .fa-c-file-docx {
- color: #2B5796; }
-
-/* line 285, _fa-custom.scss */
-.fa-c-file-doc:before, .fa-c-file-docx:before {
- content: "\f1c2"; }
-
-/* line 289, _fa-custom.scss */
-.fa-c-file-ppt, .fa-c-file-pptx {
- color: #D04423; }
-
-/* line 292, _fa-custom.scss */
-.fa-c-file-ppt:before, .fa-c-file-pptx:before {
- content: "\f1c4"; }
-
-/* line 296, _fa-custom.scss */
-.fa-c-file-pdf {
- color: #D20F0B; }
-
-/* line 299, _fa-custom.scss */
-.fa-c-file-pdf:before {
- content: "\f1c1"; }
-
-/* line 303, _fa-custom.scss */
-.fa-c-file-zip:before {
- content: "\f1c6"; }
-
-/* line 307, _fa-custom.scss */
-.fa-c-file-png:before, .fa-c-file-gif:before, .fa-c-file-jpg:before, .fa-c-file-jpeg:before {
- content: "\f1c5"; }
-
-/* line 1, _lightbox.scss */
-.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; }
-
-/* line 12, _lightbox.scss */
-.lightbox {
- position: absolute;
- left: 0;
- width: 100%;
- z-index: 10000;
- text-align: center;
- line-height: 0;
- font-weight: normal; }
-
-/* line 22, _lightbox.scss */
-.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; }
-
-/* line 33, _lightbox.scss */
-.lightbox a img {
- border: none; }
-
-/* line 37, _lightbox.scss */
-.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; }
-
-/* line 51, _lightbox.scss */
-.lb-outerContainer:after {
- content: "";
- display: table;
- clear: both; }
-
-/* line 57, _lightbox.scss */
-.lb-container {
- padding: 4px; }
-
-/* line 61, _lightbox.scss */
-.lb-loader {
- position: absolute;
- top: 43%;
- left: 0;
- height: 25%;
- width: 100%;
- text-align: center;
- line-height: 0; }
-
-/* line 71, _lightbox.scss */
-.lb-cancel {
- display: block;
- width: 32px;
- height: 32px;
- margin: 0 auto;
- font-size: 32px;
- color: #D9E5F2; }
-
-/* line 80, _lightbox.scss */
-.lb-nav {
- position: absolute;
- top: 0;
- left: 0;
- height: 100%;
- width: 100%;
- z-index: 10; }
-
-/* line 89, _lightbox.scss */
-.lb-container > .nav {
- left: 0; }
-
-/* line 93, _lightbox.scss */
-.lb-nav a {
- outline: none;
- background-image: url("data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="); }
-
-/* line 98, _lightbox.scss */
-.lb-prev, .lb-next {
- height: 100%;
- cursor: pointer;
- display: block; }
-
-/* line 104, _lightbox.scss */
-.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; }
-
-/* line 117, _lightbox.scss */
-.lb-nav a.lb-prev:hover {
- filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
- opacity: 1; }
-
-/* line 122, _lightbox.scss */
-.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; }
-
-/* line 135, _lightbox.scss */
-.lb-nav a.lb-next:hover {
- filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
- opacity: 1; }
-
-/* line 140, _lightbox.scss */
-.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; }
-
-/* line 151, _lightbox.scss */
-.lb-prev .fa {
- text-shadow: -1px 2px 1px #D9E5F2; }
-
-/* line 155, _lightbox.scss */
-.lb-next .fa {
- text-shadow: 1px 1px 1px #D9E5F2; }
-
-/* line 159, _lightbox.scss */
-.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; }
-
-/* line 172, _lightbox.scss */
-.lb-dataContainer:after {
- content: "";
- display: table;
- clear: both; }
-
-/* line 178, _lightbox.scss */
-.lb-data {
- padding: 0 4px;
- color: #04357B; }
-
-/* line 183, _lightbox.scss */
-.lb-data .lb-details {
- width: 85%;
- float: left;
- text-align: left;
- line-height: 1.1em; }
-
-/* line 190, _lightbox.scss */
-.lb-data .lb-caption {
- font-size: 13px;
- font-weight: bold;
- line-height: 1em; }
-
-/* line 196, _lightbox.scss */
-.lb-data .lb-number {
- display: block;
- clear: left;
- padding-bottom: 1em;
- font-size: 12px;
- color: #04357B; }
-
-/* line 204, _lightbox.scss */
-.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; }
-
-/* line 221, _lightbox.scss */
-.lb-data .lb-close:hover {
- cursor: pointer;
- filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
- opacity: 1; }
-
-/* Standard Tags */
-/* line 3, _common.scss */
-body, html {
- background: white;
- font-family: Verdana, Arial;
- color: #04357B;
- background: #04357B;
- padding: 0;
- margin: 0;
- min-width: 1024px; }
-
-/* line 13, _common.scss */
-table {
- border: none;
- background: none;
- text-align: center;
- margin: 0;
- padding: 0;
- border-spacing: 0; }
-
-/* line 22, _common.scss */
-table td {
- padding: 0; }
-
-/* line 26, _common.scss */
-input, textarea, select {
- font-family: Verdana, Arial;
- font-size: 12px;
- background: none;
- border: none; }
-
-/* line 32, _common.scss */
-input[type=text], input[type=password] {
- border: 2px solid #04357B;
- padding: 5px;
- width: 200px; }
-
-/* line 38, _common.scss */
-input[type=button]:hover, input[type=submit]:hover, input[type=password]:hover, input[type=text]:hover, input[type=text]:focus {
- background-color: #EFAB00; }
-
-/* line 42, _common.scss */
-input[disabled="disabled"], textarea[disabled="disabled"], input:disabled, textarea:disabled {
- background-color: #D9E5F2;
- border-color: #D9E5F2;
- border: 2px solid #04357B; }
-
-/* line 48, _common.scss */
-input[disabled="disabled"]:hover, textarea[disabled="disabled"]:hover, input:disabled:hover, textarea:disabled:hover {
- background-color: #D9E5F2; }
-
-/* line 52, _common.scss */
-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; }
-
-/* line 56, _common.scss */
-input[type=button], .clickable {
- cursor: pointer; }
-
-/* line 60, _common.scss */
-select {
- background: white;
- border: 2px solid #04357B;
- padding: 5px;
- color: #04357B;
- margin: 0; }
-
-/* line 68, _common.scss */
-textarea {
- min-height: 30px; }
-
-/* line 72, _common.scss */
-input, select, textarea, h1, h2, h3, h4, p, a {
- color: #04357B; }
-
-/* line 76, _common.scss */
-p {
- margin: 0;
- padding: 0; }
-
-/* line 81, _common.scss */
-a, a:visited {
- text-decoration: none; }
-
-/* line 85, _common.scss */
-a:active, a:focus, input:active, input:focus {
- outline: none; }
-
-/* line 89, _common.scss */
-img {
- border: none; }
-
-/* Functions */
-/* Classes */
-/* line 108, _common.scss */
-.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; }
-
-/* line 114, _common.scss */
-.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; }
-
-/* line 120, _common.scss */
-.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; }
-
-/* line 126, _common.scss */
-.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; }
-
-/* line 132, _common.scss */
-.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; }
-
-/* line 138, _common.scss */
-.round {
- -moz-border-radius: 10px;
- -webkit-border-radius: 10px;
- -khtml-border-radius: 10px;
- border-radius: 10px; }
-
-/* line 144, _common.scss */
-.tiny_round {
- -moz-border-radius: 5px;
- -webkit-border-radius: 5px;
- -khtml-border-radius: 5px;
- border-radius: 5px; }
-
-/* line 150, _common.scss */
-.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; }
-
-/* line 157, _common.scss */
-.inc_border {
- box-sizing: border-box;
- -moz-box-sizing: border-box;
- -webkit-box-sizing: border-box; }
-
-/* line 163, _common.scss */
-.loading {
- font-size: 20px;
- margin: 5px;
- text-align: center; }
-
-/* line 169, _common.scss */
-.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; }
-
-/* line 181, _common.scss */
-.error a, .warning a, .success a {
- text-decoration: underline; }
-
-/* line 185, _common.scss */
-.error, .error a {
- color: red;
- border-color: red;
- font-size: 14px;
- font-weight: bold; }
-
-/* line 192, _common.scss */
-.warning, .warning a {
- color: orange;
- border-color: orange;
- font-size: 13px;
- font-style: italic; }
-
-/* line 199, _common.scss */
-.success, .success a {
- color: green;
- border-color: green;
- font-size: 13px; }
-
-/* line 205, _common.scss */
-.default_text {
- color: #D9E5F2 !important; }
-
-/* line 209, _common.scss */
-a.button {
- padding: 7px;
- margin-right: 5px;
- background: #D9E5F2;
- font-size: 12px;
- cursor: pointer;
- border: 1px solid #04357B;
- /*position:relative;*/
- display: inline-block; }
-
-/* line 219, _common.scss */
-a.button:hover {
- background-color: #EFAB00; }
-
-/* line 222, _common.scss */
-a.button:active {
- background-color: #04357B;
- color: white; }
-
-/* line 227, _common.scss */
-a.button .fa {
- margin-right: 5px; }
-
-/* line 232, _common.scss */
-a.button.strong .value {
- font-weight: bold; }
-
-/* line 236, _common.scss */
-a.button.inverse {
- background-color: #04357B;
- color: #D9E5F2; }
-
-/* line 241, _common.scss */
-a.button.inverse:hover {
- background-color: #EFAB00;
- color: #04357B; }
-
-/* line 246, _common.scss */
-a.button.heavy {
- border-width: 2px;
- font-weight: bold; }
-
-/* line 251, _common.scss */
-.addr {
- cursor: text; }
-
-/* line 255, _common.scss */
-.addr:hover {
- background-color: white; }
-
-/* line 259, _common.scss */
-.maximized {
- width: 100%; }
-
-/* line 263, _common.scss */
-.righty {
- text-align: right; }
-
-/* line 267, _common.scss */
-.glue-right {
- float: right; }
-
-/* line 271, _common.scss */
-.lefty {
- text-align: left; }
-
-/* line 275, _common.scss */
-.side_margins {
- margin: 0 12px 10px; }
-
-/* line 279, _common.scss */
-a.internal_link {
- text-decoration: underline;
- font-style: normal;
- background: #D9E5F2;
- padding: 1px 8px 1px 5px;
- margin: 0; }
-
-/* line 286, _common.scss */
-a.internal_link:visited, a.external_link:visited {
- color: grey; }
-
-/* line 289, _common.scss */
-a.internal_link span.type {
- text-transform: capitalize; }
-
-/* line 292, _common.scss */
-a[href^="table"].internal_link span.item {
- text-transform: uppercase; }
-
-/* line 296, _common.scss */
-.author_box {
- padding: 5px 10px;
- border: 1px solid #04357B;
- color: #04357B;
- font-style: italic;
- font-size: 12px; }
-
-/* line 303, _common.scss */
-.author_box:nth-child(odd) {
- background: #DCF2FB; }
-
-/* line 306, _common.scss */
-.author_box:nth-child(even) {
- background: #D9E5F2; }
-
-/* line 309, _common.scss */
-.author_box:hover {
- border-color: #EFAB00; }
-
-/* line 313, _common.scss */
-.author_box a {
- background: none;
- padding: 0;
- display: block;
- width: 100%; }
-
-/* line 320, _common.scss */
-.author_box i.fa-30 {
- vertical-align: -5%; }
-
-/* line 324, _common.scss */
-.author_box span.description {
- font-weight: bold;
- font-style: normal;
- font-size: 13px; }
-
-/* line 330, _common.scss */
-.author_box span.rank {
- font-weight: bold;
- margin-left: 10px; }
-
-/* line 335, _common.scss */
-.standalone .author_box {
- margin-top: 10px; }
-
-/* line 338, _common.scss */
-.standalone .author_box:hover {
- color: #EFAB00; }
-
-/* line 342, _common.scss */
-.hide, .mobile {
- display: none; }
-
-/* Step Box */
-/* line 348, _common.scss */
-.step_box {
- margin-top: 5px;
- margin-bottom: 5px;
- padding: 10px;
- background: #D9E5F2;
- color: #04357B;
- border: 2px solid #04357B; }
-
-/* line 356, _common.scss */
-.step_box:nth-child(even) {
- background: #DCF2FB; }
-
-/* line 360, _common.scss */
-.step_box input, .step_box textarea, .step_box select, .step_box .read.textarea, .step_box .read.input {
- margin-top: 10px;
- background: white;
- font-size: 14px;
- border-width: 1px; }
-
-/* line 366, _common.scss */
-.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: white; }
-
-/* line 369, _common.scss */
-.step_box input[type=text], .step_box textarea, .step_box .read.textarea, .step_box .read.input {
- width: 100%; }
-
-/* line 372, _common.scss */
-.step_box textarea, .step_box .read.textarea {
- height: 200px;
- padding: 5px;
- background: white;
- border: 1px solid #04357B; }
-
-/* line 378, _common.scss */
-.step_box .read.textarea, .step_box .read.input {
- border-color: #D9E5F2;
- font-weight: bold; }
-
-/* line 382, _common.scss */
-.step_box .read.textarea {
- background-color: #DCF2FB; }
-
-/* line 385, _common.scss */
-.step_box:nth-child(even) .read.textarea {
- background-color: #D9E5F2; }
-
-/* line 388, _common.scss */
-.step_box .read.input {
- background-color: #D9E5F2;
- padding-left: 0; }
-
-/* line 393, _common.scss */
-.step_box .step_nb_box, .step_box .step_box_title {
- border-bottom: 1px solid #04357B;
- padding: 0; }
-
-/* Scrollbar */
-/* line 400, _common.scss */
-.scrollbar_box {
- position: relative;
- height: 0px;
- overflow: hidden; }
-
-/* line 406, _common.scss */
-.scrollbar_box .scrollbar_subbox {
- position: absolute;
- left: 0;
- top: 0;
- width: 100%; }
-
-/* line 413, _common.scss */
-.scrollbar {
- position: relative;
- float: right;
- width: 15px;
- margin-left: 5px; }
-
-/* line 420, _common.scss */
-.scrollbar .thumb, .scrollbar .thumb .end {
- background-color: #04357B;
- width: 13px; }
-
-/* line 424, _common.scss */
-.scrollbar .track {
- background-color: #D9E5F2;
- height: 100%;
- width: 13px;
- position: relative;
- padding: 0; }
-
-/* line 431, _common.scss */
-.scrollbar .thumb {
- position: absolute;
- top: 0;
- overflow: hidden; }
-
-/* line 436, _common.scss */
-.scrollbar .thumb .end {
- overflow: hidden;
- height: 20px; }
-
-/* line 441, _common.scss */
-.disable {
- display: none; }
-
-/* Uploader */
-/* line 447, _common.scss */
-.uploader_box {
- position: relative;
- width: 100%; }
-
-/* line 452, _common.scss */
-.uploader_droparea {
- position: absolute;
- top: -10px;
- left: 0;
- width: 100%;
- height: 100%;
- height: 210px;
- z-index: 2;
- border: 1px solid #04357B;
- background: white;
- text-align: center; }
-
-/* line 465, _common.scss */
-.uploader_droparea-active {
- background: #EFAB00; }
-
-/* line 468, _common.scss */
-.uploader_droparea span {
- display: block;
- position: absolute;
- top: 50%;
- width: 100%;
- margin-top: -8px;
- font-size: 16px; }
-
-/* line 477, _common.scss */
-.uploader_buffer {
- width: 100%;
- height: 8px; }
-
-/* line 482, _common.scss */
-.uploader_list {
- /*margin:0;*/
- margin-top: 0;
- padding: 0;
- list-style: none; }
-
-/* line 487, _common.scss */
-.uploader_list li {
- margin: 0 0 10px 10px; }
-
-/* line 491, _common.scss */
-.uploader_item_file, .uploader_item_loading, .uploader_item_size, .uploader_item_cancel, .uploader_item_failed {
- margin-right: 5px; }
-
-/* line 495, _common.scss */
-.uploader_item_size, .uploader_item_cancel {
- font-size: 12px;
- font-weight: normal; }
-
-/* line 500, _common.scss */
-a.uploader_item_cancel {
- text-decoration: underline;
- color: #04357B; }
-
-/* line 505, _common.scss */
-.uploader_box .image_description {
- border-width: 1px;
- padding: 3px 5px;
- background: white; }
-
-/* line 511, _common.scss */
-.uploader_box .image_action {
- font-size: 12px; }
-
-/* line 515, _common.scss */
-.uploader_box .image_action input {
- width: 200px;
- margin: 0; }
-
-/* line 520, _common.scss */
-.uploader_item_failed_notice {
- display: none; }
-
-/* line 523, _common.scss */
-.uploader_item_failed .uploader_item_failed_notice {
- display: inline; }
-
-/* line 527, _common.scss */
-.uploader_item_failed {
- color: red; }
-
-/* line 531, _common.scss */
-.uploader_item_success .fa-c-delete:hover, .uploader_item_cancel .fa-c-delete:hover {
- color: #EFAB00; }
-
-/* Container */
-/* line 11, databap.scss */
-#container {
- background: #04357B;
- padding: 10px 10px 1px; }
-
-/* Header */
-/* line 18, databap.scss */
-#header {
- padding: 0 0 10px 0;
- margin: 0; }
- /* line 22, databap.scss */
- #header table td.cell {
- width: 50%;
- height: 35px;
- margin: 0; }
- /* line 28, databap.scss */
- #header .logo {
- position: absolute;
- top: 9px;
- width: 200px;
- height: 35px;
- margin-left: 36px; }
- /* line 36, databap.scss */
- #header #query, #header #search_btn_submit {
- height: 25px;
- color: #04357B;
- border: none;
- float: right;
- padding: 0 10px;
- font-size: 15px; }
- /* line 45, databap.scss */
- #header #query {
- background: white;
- width: 250px; }
- /* line 50, databap.scss */
- #header #search_btn_submit {
- background: #D9E5F2;
- border-left: 2px solid #04357B;
- height: 20px;
- padding-top: 5px; }
- /* line 57, databap.scss */
- #header #search_btn_submit:hover {
- background-color: #EFAB00; }
-
-/* Main */
-/* line 64, databap.scss */
-#main_container {
- background: white;
- /*padding:10px;*/
- margin-left: 30px;
- position: relative;
- overflow: hidden;
- border: 10px solid white; }
-
-/* line 73, databap.scss */
-#page_title {
- margin-bottom: 10px; }
-
-/* line 77, databap.scss */
-#page_title h1 {
- margin: 0 -12px 12px;
- padding: 12px 10px;
- width: 100%;
- border: 2px solid #04357B;
- font-family: Arial;
- font-size: 32px;
- line-height: 32px;
- font-style: italic;
- font-weight: 600;
- background: #D9E5F2;
- background: -moz-linear-gradient(45deg, #D9E5F2 25%, #FFFFFF 75%);
- background: -webkit-gradient(linear, left bottom, right top, color-stop(25%, #D9E5F2), color-stop(75%, #FFFFFF));
- background: -webkit-linear-gradient(45deg, #D9E5F2 25%, #FFFFFF 75%);
- background: -o-linear-gradient(45deg, #D9E5F2 25%, #FFFFFF 75%);
- background: -ms-linear-gradient(45deg, #D9E5F2 25%, #FFFFFF 75%);
- background: linear-gradient(45deg, #D9E5F2 25%, #FFFFFF 75%);
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$fromColor', endColorstr='$ToColor',GradientType=1 ); }
-
-/* line 90, databap.scss */
-#page_title h1 #title_feedback {
- text-align: right; }
-
-/* line 94, databap.scss */
-#title_feedback .feedback {
- margin: 0;
- padding: 0 5px;
- border: none;
- position: absolute;
- right: 10px;
- top: 14px; }
-
-/* line 103, databap.scss */
-#main {
- margin: 0;
- padding: 0;
- overflow: hidden; }
-
-/* Menu */
-/* line 111, databap.scss */
-#menu {
- position: absolute;
- width: 20px;
- padding: 10px 0;
- z-index: 10;
- border-right: 0 solid #04357B;
- background: #D9E5F2;
- background: -moz-linear-gradient(top, #D9E5F2 0%, #FFFFFF 25%);
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #D9E5F2), color-stop(25%, #FFFFFF));
- background: -webkit-linear-gradient(top, #D9E5F2 0%, #FFFFFF 25%);
- background: -o-linear-gradient(top, #D9E5F2 0%, #FFFFFF 25%);
- background: -ms-linear-gradient(top, #D9E5F2 0%, #FFFFFF 25%);
- background: linear-gradient(to bottom, #D9E5F2 0%, #FFFFFF 25%);
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$col_bright_blue', endColorstr='#FFFFFF',GradientType=0 ); }
-
-/* line 127, databap.scss */
-#menu.opened {
- background: white;
- background: -moz-linear-gradient(left, #FFFFFF 75%, rgba(255, 255, 255, 0) 100%);
- background: -webkit-gradient(linear, left top, right top, color-stop(75%, #FFFFFF), color-stop(100%, rgba(255, 255, 255, 0)));
- background: -webkit-linear-gradient(left, #FFFFFF 75%, rgba(255, 255, 255, 0) 100%);
- background: -o-linear-gradient(left, #FFFFFF 75%, rgba(255, 255, 255, 0) 100%);
- background: -ms-linear-gradient(left, #FFFFFF 75%, rgba(255, 255, 255, 0) 100%);
- background: linear-gradient(to right, #FFFFFF 75%, rgba(255, 255, 255, 0) 100%);
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FFFFFF', endColorstr='#00ffffff',GradientType=1 ); }
-
-/* line 138, databap.scss */
-#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; }
-
-/* line 149, databap.scss */
-#menu #menu_box {
- display: none;
- color: #04357B;
- text-align: center; }
-
-/* line 155, databap.scss */
-#menu #menu_box ul {
- margin: 0;
- padding: 0;
- text-align: left;
- font-size: 20px;
- list-style: none; }
-
-/* line 163, databap.scss */
-#menu #menu_box ul li {
- margin: 0;
- padding: 5px 3px 5px 15px;
- list-style: none;
- cursor: pointer;
- line-height: 20px;
- height: 20px;
- font-size: 20px;
- text-transform: capitalize; }
-
-/* line 174, databap.scss */
-#menu #menu_box ul li:FIRST-CHILD {
- padding-left: 5px;
- font-weight: bold; }
-
-/* line 179, databap.scss */
-#menu #menu_box ul li a {
- color: #04357B;
- display: block;
- width: 100%; }
-
-/* line 184, databap.scss */
-#menu #menu_box ul li:hover a {
- color: #EFAB00; }
-
-/* line 188, databap.scss */
-#menu #menu_box ul li#rss_ln a {
- color: #04357B; }
-
-/* line 192, databap.scss */
-#menu #menu_box ul li#quick_code_access_ln input {
- border: 2px solid #04357B;
- width: 60px;
- padding: 0 5px;
- font-size: 16px;
- color: #04357B; }
-
-/* line 200, databap.scss */
-#menu #menu_box ul li .fa {
- margin-right: 5px; }
-
-/* line 204, databap.scss */
-#menu .useless_button {
- width: 0;
- height: 0;
- position: absolute;
- bottom: 5px;
- left: 5px;
- border: 5px solid #04357B; }
-
-/* Welcome */
-/* line 215, databap.scss */
-#welcome #welcome_container {
- border: 2px solid #04357B;
- background: #D9E5F2;
- padding: 10px; }
-
-/* line 221, databap.scss */
-#welcome p.welcome_text {
- font-weight: bold;
- padding-top: 0;
- padding-bottom: 5px;
- border-bottom: 1px solid #000000;
- margin-bottom: 20px; }
-
-/* line 229, databap.scss */
-#welcome #welcome_container ul {
- margin-top: 0px; }
-
-/* line 233, databap.scss */
-#welcome #welcome_container ul li {
- font-size: 13px;
- margin-top: 10px;
- font-weight: bold; }
-
-/* line 239, databap.scss */
-#welcome #welcome_container ul li ul {
- font-size: 12px;
- margin-top: 2px; }
-
-/* line 244, databap.scss */
-#welcome #welcome_container ul li ul li {
- font-weight: normal; }
-
-/* line 248, databap.scss */
-#welcome #welcome_container ul li:FIRST-CHILD, #welcome #welcome_container ul li ul li {
- margin-top: 0px; }
-
-/* line 252, databap.scss */
-#welcome span.milestone {
- margin-left: 5px;
- padding: 2px 5px;
- font-weight: bold;
- border: 1px solid #04357B;
- cursor: pointer;
- background: #FFFFFF;
- background: -moz-linear-gradient(top, #FFFFFF 15%, #D9E5F2 85%);
- background: -webkit-gradient(linear, left top, left bottom, color-stop(15%, #FFFFFF), color-stop(85%, #D9E5F2));
- background: -webkit-linear-gradient(top, #FFFFFF 15%, #D9E5F2 85%);
- background: -o-linear-gradient(top, #FFFFFF 15%, #D9E5F2 85%);
- background: -ms-linear-gradient(top, #FFFFFF 15%, #D9E5F2 85%);
- background: linear-gradient(to bottom, #FFFFFF 15%, #D9E5F2 85%);
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FFFFFF', endColorstr='$col_bright_blue',GradientType=0 ); }
-
-/* line 267, databap.scss */
-#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='#FFFFFF', endColorstr='$col_bright_orange',GradientType=0 ); }
-
-/* line 278, databap.scss */
-#welcome span.milestone .fa {
- margin-right: 5px; }
-
-/* line 282, databap.scss */
-#welcome a {
- text-decoration: underline; }
-
-/* Add Code */
-/* line 288, databap.scss */
-#add_code_container, #add_code_container input {
- font-size: 14px; }
-
-/* line 292, databap.scss */
-#add_code_container table {
- text-align: left; }
-
-/* line 296, databap.scss */
-#add_code_container table tr td {
- padding: 5px 5px 5px 0; }
-
-/* line 300, databap.scss */
-#add_code_container table tr td:first-child {
- font-weight: bold; }
-
-/* line 304, databap.scss */
-#add_code_container table tr td.last {
- padding-bottom: 0px; }
-
-/* line 308, databap.scss */
-#add_code_container textarea, #edit_container textarea {
- margin: 0 -10px;
- padding: 10px 6px 10px 10px;
- width: 100%;
- border: 2px solid #04357B;
- min-height: 100px;
- height: 300px;
- font-family: courier;
- color: black;
- font-size: 14px; }
-
-/* line 320, databap.scss */
-#add_code_container .loggued {
- margin: 0 12px; }
-
-/* line 324, databap.scss */
-#add_code_container input[type=text] {
- border: 2px solid #04357B;
- width: 400px;
- padding: 5px;
- color: #04357B; }
-
-/* line 331, databap.scss */
-#auth_company_container {
- display: none; }
-
-/* line 335, databap.scss */
-#add_code_container #add_code_btn {
- margin-top: 10px;
- float: left; }
-
-/* line 340, databap.scss */
-#add_code_container input:hover, #add_code_container input[type=text]:focus {
- background-color: #EFAB00; }
-
-/* line 344, databap.scss */
-#link_result, #available_phrase {
- display: none;
- border: 2px solid;
- margin-left: 15px;
- padding: 5px;
- font-size: 14px; }
-
-/* line 352, databap.scss */
-#link_result {
- color: #04357B;
- border-color: #04357B; }
-
-/* line 357, databap.scss */
-#available_phrase {
- display: none; }
-
-/* line 361, databap.scss */
-#available_phrase.available {
- color: green;
- border-color: green; }
-
-/* line 365, databap.scss */
-#available_phrase.unavailable {
- color: red;
- border-color: red; }
-
-/* read code */
-/* line 372, databap.scss */
-#reader {
- margin: 0;
- padding: 0; }
-
-/* line 377, databap.scss */
-#reader #code_menu {
- padding: 0;
- margin: 0; }
-
-/* line 382, databap.scss */
-#code_container .code_reader {
- margin: 10px 0 0 0;
- border: 2px solid #04357B;
- padding: 0;
- background: #b5b5c6;
- background: #04357B; }
-
-/* line 390, databap.scss */
-#reader #code_container .code_reader {
- margin: 0; }
-
-/* line 394, databap.scss */
-#code_container .code_reader ol li ::selection {
- background: #306897;
- color: #FFFFFF; }
-
-/* line 398, databap.scss */
-#code_container .code_reader ol li ::-moz-selection {
- background: #306897;
- color: #FFFFFF; }
-
-/* line 403, databap.scss */
-#code_container .code_reader .author_box {
- background: #04357B;
- border: none;
- color: white; }
-
-/* line 409, databap.scss */
-#code_container .code_reader .author_box * {
- color: white; }
-
-/* line 413, databap.scss */
-#code_container .code_reader .tab_left {
- /* margin: -13px 0; */
- margin: 0;
- padding: 0 0 0 19px;
- background: #f7efde;
- border: none; }
-
-/* line 421, databap.scss */
-#code_container .code_reader ol {
- border-left: 1px solid #848484;
- background: white;
- margin: 0;
- /*list-style-type:decimal-leading-zero;*/ }
-
-/* line 428, databap.scss */
-#code_container .code_reader ol li {
- /*margin:-1px 0 0 0;*/
- margin: 0;
- padding: 0;
- border-left: 1px dotted #398c8c;
- background: white;
- font-family: Courier New, Courier;
- font-size: 12px;
- line-height: 12px;
- text-indent: 20px;
- color: #398c8c; }
-
-/* line 441, databap.scss */
-#code_container .code_reader ol li:first-child, #code_container .code_reader ol li:first-child span.expand_line {
- padding-top: 5px; }
-
-/* line 445, databap.scss */
-#code_container .code_reader ol li.bigline, #code_container .code_reader ol li.bigline span.expand_line {
- padding-top: 5px;
- padding-bottom: 5px; }
-
-/* line 450, databap.scss */
-#code_container .code_reader ol li:hover, #code_container .code_reader ol li.code_hover {
- background-color: #D9E5F2; }
-
-/* line 454, databap.scss */
-#code_container .code_reader .core {
- color: #0000ff;
- text-transform: uppercase; }
-
-/* line 455, databap.scss */
-#code_container .code_reader .comment {
- color: #848484; }
-
-/* line 456, databap.scss */
-#code_container .code_reader .number {
- color: #319cff; }
-
-/* line 457, databap.scss */
-#code_container .code_reader .operator {
- color: #840084; }
-
-/* line 458, databap.scss */
-#code_container .code_reader .string {
- color: #4aa518;
- text-transform: uppercase; }
-
-/* line 459, databap.scss */
-#code_container .code_reader .string span {
- color: #4aa518; }
-
-/* override syntax coloring in strings */
-/* line 460, databap.scss */
-#code_container .code_reader .field-symbol {
- color: #848484; }
-
-/* line 461, databap.scss */
-#code_container .code_reader .line {
- color: #848484; }
-
-/* line 462, databap.scss */
-#code_container .code_reader .line-number, #code_container .code_reader .line-post-number {
- color: #398c8c; }
-
-/* line 463, databap.scss */
-#code_container .code_reader .global {
- color: #000000; }
-
-/* line 464, databap.scss */
-#code_container .code_reader .expand {
- font-weight: bold; }
-
-/* line 465, databap.scss */
-#code_container .code_reader .comment span.code_part {
- color: #04357B;
- font-weight: bold;
- text-transform: capitalize; }
-
-/* line 471, databap.scss */
-#code_container .code_reader pre {
- white-space: pre-wrap;
- /* css-3 */
- white-space: -moz-pre-wrap !important;
- /* Mozilla, since 1999 */
- white-space: -pre-wrap;
- /* Opera 4-6 */
- white-space: -o-pre-wrap;
- /* Opera 7 */
- word-wrap: break-word;
- /* Internet Explorer 5.5+ */
- margin: 0;
- padding: 0;
- border: none; }
-
-/* Default code line */
-/* line 483, databap.scss */
-#code_container .code_reader ol li span {
- color: #000000; }
-
-/* line 486, databap.scss */
-#code_container .code_reader ol li span.code, ol li span.comment {
- font-size: 14px;
- margin-left: 15px; }
-
-/* line 490, databap.scss */
-#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; }
-
-/* line 496, databap.scss */
-#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; }
-
-/* line 503, databap.scss */
-#code_container .code_reader ol li a.internal_link span {
- color: #04357B;
- font-weight: normal; }
-
-/* line 507, databap.scss */
-#code_container .code_reader a.internal_link:hover, #code_container .code_reader a.internal_link:hover span {
- color: #EFAB00; }
-
-/* line 511, databap.scss */
-#code_container .code_reader ol li span.hide span {
- color: #848484; }
-
-/* Expanding */
-/* line 516, databap.scss */
-#code_container .code_reader ol li span.expand_line {
- border-left: 1px solid #424242;
- color: #424242;
- text-align: center;
- width: 5px;
- position: relative; }
-
-/* line 524, databap.scss */
-#reader #code_container .code_reader ol li span.expand_line span:before {
- content: '';
- position: absolute;
- margin-left: -21px; }
-
-/* line 530, databap.scss */
-#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: white 0 0 no-repeat;
- width: 9px;
- height: 9px; }
-
-/* line 541, databap.scss */
-#reader #code_container .code_reader ol li span.expand_line input.minus {
- background-image: url("images/expand_minus.png"); }
-
-/* line 545, databap.scss */
-#reader #code_container .code_reader ol li span.expand_line input.plus {
- background-image: url("images/expand_plus.png"); }
-
-/* line 549, databap.scss */
-#reader #code_container .code_reader ol li span.expand_line input:hover {
- background-position: 0 -9px; }
-
-/* line 553, databap.scss */
-#edit_container {
- display: none;
- margin-bottom: 10px; }
-
-/* line 558, databap.scss */
-#edit_container textarea {
- margin-top: 10px;
- margin-bottom: 20px;
- height: 200px; }
-
-/* line 564, databap.scss */
-#edit_container #edit_btn {
- margin-left: -10px; }
-
-/* Search */
-/* line 570, databap.scss */
-#search .summary {
- margin: 10px 0 0px 5px;
- font-size: 14px;
- font-style: italic; }
-
-/* line 576, databap.scss */
-#search .code_reader:hover .tab_left,
-#search .code_reader:hover ol,
-#search .code_reader:hover li {
- background-color: #D9E5F2;
- cursor: pointer; }
-
-/* line 583, databap.scss */
-#search .step_box {
- margin-bottom: 10px; }
-
-/* line 587, databap.scss */
-#search #repeat_query {
- padding-bottom: 6px; }
-
-/* line 591, databap.scss */
-#search #sub_button_box {
- display: inline; }
-
-/* Profile */
-/* line 597, databap.scss */
-#profile #avatar {
- width: 96px;
- height: 96px;
- background: url("images/avatar_96.png") 0 0 no-repeat;
- border: 2px solid #04357B;
- float: left; }
-
-/* line 605, databap.scss */
-#profile #profile_company_logo {
- width: 24px;
- height: 24px;
- vertical-align: middle;
- margin-right: 5px; }
-
-/* line 612, databap.scss */
-#profile .user {
- margin-left: 110px;
- /* 96 (picture) + 10 (margin) + 4 (borders) */
- padding: 10px 16px;
- height: 76px;
- /* 96 (picture height) - 20 (padding) */
- border: 2px solid #04357B;
- background: #D9E5F2; }
-
-/* line 620, databap.scss */
-#profile .user .fa {
- margin-right: 2px; }
-
-/* line 624, databap.scss */
-#profile .user p {
- font-size: 16px;
- line-height: 25px; }
-
-/* line 629, databap.scss */
-#profile .user p span {
- font-weight: bold; }
-
-/* line 633, databap.scss */
-#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; }
-
-/* line 642, databap.scss */
-#profile #history_subbox {
- margin-top: 10px;
- border: 2px solid #04357B; }
-
-/* line 647, databap.scss */
-#profile #user_history p.history_line {
- padding: 5px 10px;
- font-size: 14px; }
-
-/* line 651, databap.scss */
-#profile #user_history p.history_line:nth-child(odd) {
- background: #D9E5F2; }
-
-/* line 654, databap.scss */
-#profile #user_history p.history_line:nth-child(even) {
- background: #FFFFFF; }
-
-/* line 657, databap.scss */
-#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; }
-
-/* line 667, databap.scss */
-#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; }
-
-/* line 677, databap.scss */
-#profile #user_history p.history_line .fa {
- margin-left: 5px;
- margin-right: 5px; }
-
-/* line 682, databap.scss */
-#profile #user_history a {
- text-decoration: underline; }
-
-/* Article */
-/* line 688, databap.scss */
-#article .loading_box {
- font-size: 16px; }
-
-/* Chat */
-/* line 694, databap.scss */
-#chat #chat_room {
- margin-right: 175px;
- /* 165px + 10px (margin-left) */
- border: 2px solid #04357B;
- background: white;
- height: 100%; }
-
-/* line 701, databap.scss */
-.g_white_transparent {
- background: #000000 url("images/grad_white_transparent_50.png") repeat-x top;
- /*-o-background-size: 100% 100%;
- -moz-background-size: 100% 100%;
- -webkit-background-size: 100% 100%;
- background-size: 100% 100%;
- background: -moz-linear-gradient(
- top,
- #FFFFFF,
- rgba(255,255,255,0)
- );
- background: -webkit-gradient(
- linear,
- left top, left bottom,
- from(#FFFFFF),
- to(rgba(255,255,255,0))
- );*/ }
-
-/* line 720, databap.scss */
-#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; }
-
-/* line 729, databap.scss */
-#chat #chat_room #chat_container {
- clear: both;
- margin: 5px 5px 0; }
-
-/* line 733, databap.scss */
-#chat #chat_room #chat_container #chat_messages_box {
- position: relative;
- height: 20px;
- overflow: hidden;
- background: white url("images/sap_gold_332.jpg") 50% 50% no-repeat; }
-
-/* line 740, databap.scss */
-#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%; }
-
-/* line 749, databap.scss */
-.noSelect {
- user-select: none;
- -o-user-select: none;
- -moz-user-select: none;
- -khtml-user-select: none;
- -webkit-user-select: none; }
-
-/* line 753, databap.scss */
-#chat_messages p {
- color: #04357B; }
-
-/* line 756, databap.scss */
-#chat_messages p img.proxy {
- vertical-align: middle;
- border: 1px solid #04357B;
- padding: 5px;
- background: #FFFFFF; }
-
-/* line 762, databap.scss */
-#chat_messages p.U {
- /*background-color:white;*/ }
-
-/* line 765, databap.scss */
-#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; }
-
-/* line 769, databap.scss */
-#chat_messages p.C {
- color: #CCC;
- text-decoration: none;
- font-style: normal; }
-
-/* line 774, databap.scss */
-#chat_messages p span.time {
- color: #EFAB00;
- font-size: 10px;
- font-style: normal; }
-
-/* line 779, databap.scss */
-#chat_messages p a.user, #chat_messages p span.console {
- font-size: 12px;
- font-weight: bold;
- color: #04357B; }
-
-/* line 784, databap.scss */
-#chat_messages p a.user {
- margin-left: 5px; }
-
-/* line 787, databap.scss */
-#chat_messages p a.user:hover {
- text-decoration: underline; }
-
-/* line 790, databap.scss */
-#chat_messages p span.text {
- margin-left: 5px;
- font-size: 13px; }
-
-/* line 794, databap.scss */
-#chat_messages p span.action {
- font-style: italic; }
-
-/* line 797, databap.scss */
-#chat_messages p span.text a {
- text-decoration: underline;
- font-style: normal; }
-
-/* line 801, databap.scss */
-#chat_messages p span.text a:visited {
- color: grey; }
-
-/* line 804, databap.scss */
-#chat_messages p span.highlight {
- color: red; }
-
-/* line 807, databap.scss */
-#chat_messages p span.chan_link {
- font-weight: bold; }
-
-/* line 810, databap.scss */
-#chat_messages p span.news {
- font-weight: bold; }
-
-/* line 814, databap.scss */
-#chat_messages .help {
- border: 1px dashed #666666;
- padding: 0 0 5px 0;
- margin: 5px 0;
- background: white; }
-
-/* line 820, databap.scss */
-#chat_messages .help p {
- padding: 0 5px;
- color: #666666;
- font-size: 10px; }
-
-/* line 825, databap.scss */
-#chat_messages .help p.title {
- font-size: 14px;
- padding: 3px 5px;
- border-bottom: 1px dashed #666666;
- letter-spacing: 0;
- display: inline-block;
- width: calc(50% - 10px);
- float: left; }
-
-/* line 834, databap.scss */
-#chat_messages .help p.subtitle {
- margin-top: 5px;
- font-size: 12px; }
-
-/* line 838, databap.scss */
-#chat_messages .help p.item {
- margin-top: 1px; }
-
-/* line 841, databap.scss */
-#chat_messages .help p.subtitle span {
- font-style: italic;
- border-bottom: 1px dashed #666666; }
-
-/* line 845, databap.scss */
-#chat_messages .help p span.key {
- font-weight: bold;
- margin-right: 5px; }
-
-/* line 850, databap.scss */
-#chat #chat_input {
- margin: 5px;
- padding: 0 5px;
- background: #04357B; }
-
-/* line 856, databap.scss */
-#chat #chat_input .fa {
- color: #D9E5F2;
- margin-right: 2px; }
-
-/* line 861, databap.scss */
-#chat #chat_input input#message {
- color: white;
- margin: 0;
- padding: 7px 0;
- border: none;
- min-width: 200px;
- font-size: 13px;
- line-height: 13px; }
-
-/* line 871, databap.scss */
-#chat #chat_input input#message:hover, #chat #chat_input input#message:focus {
- background-color: transparent; }
-
-/* line 875, databap.scss */
-#chat #sidebar {
- position: absolute;
- right: 0;
- width: 165px; }
-
-/* line 881, databap.scss */
-#chat #sidebar div {
- padding: 5px; }
-
-/* line 885, databap.scss */
-#chat #sidebar .sidebar_box {
- position: relative;
- border: 2px solid #04357B;
- font-weight: bold;
- padding: 0;
- margin-bottom: 10px; }
-
-/* line 893, databap.scss */
-#chat #sidebar .sidebar_box_title {
- background-color: #D9E5F2;
- text-align: center; }
-
-/* line 898, databap.scss */
-#chat #sidebar .sidebar_box_content {
- border-top: 2px solid #04357B;
- font-size: 12px;
- font-weight: normal; }
-
-/* line 904, databap.scss */
-#chat #sidebar .help_paperclip {
- background: transparent url("images/ms_paperclip_112.jpg") 50% 50% no-repeat;
- height: 109px; }
-
-/* line 909, databap.scss */
-#chat #sidebar .sidebar_box_content p {
- padding: 3px 0;
- overflow: hidden; }
-
-/* line 914, databap.scss */
-#chat #sidebar .sidebar_box_content p span.key {
- font-weight: bold;
- padding-right: 5px; }
-
-/* line 919, databap.scss */
-#chat #sidebar p.connected_user {
- font-size: 16px; }
-
-/* line 922, databap.scss */
-#chat #sidebar a.connected_user_logo img {
- vertical-align: middle; }
-
-/* line 925, databap.scss */
-#chat #sidebar a.connected_user_name {
- display: inline-block;
- width: calc(100% - 24px - 5px);
- /* logo + right margin */
- font-style: italic;
- font-weight: normal;
- color: #04357B;
- text-decoration: underline;
- margin-left: 5px; }
-
-/* line 934, databap.scss */
-#chat #sidebar a.connected_user:hover {
- color: #EFAB00; }
-
-/* line 938, databap.scss */
-#chat .afk {
- position: absolute;
- font-size: 20px;
- line-height: 20px;
- text-shadow: 1px 1px 1px #D9E5F2;
- margin-left: -20px;
- margin-top: 2px;
- /* (24 - 20)/2 */ }
-
-/* line 947, databap.scss */
-#chat #chat_chan {
- margin-bottom: -2px; }
-
-/* line 951, databap.scss */
-#chat #chat_chan .tab_bar {
- font-weight: bold;
- text-align: right;
- margin: 0 184px 0 0;
- /* 165px + the round corner */ }
-
-/* line 957, databap.scss */
-#chat #chat_chan .tab_bar span.chan {
- display: inline-block;
- background-color: #D9E5F2;
- padding: 2px 8px;
- border: 2px solid #04357B;
- margin-left: 5px;
- color: #04357B; }
-
-/* line 966, databap.scss */
-#chat #chat_chan .tab_bar span#join_chan {
- padding: 2px;
- border-bottom: #04357B; }
-
-/* line 970, databap.scss */
-#chat #chat_chan .tab_bar span#join_chan:hover #join_chan_button {
- color: #EFAB00; }
-
-/* line 973, databap.scss */
-#chat #chat_chan .tab_bar span.chan:hover, #chat #chat_chan .tab_bar span#join_chan.active {
- background-color: #04357B;
- color: #FFFFFF; }
-
-/* line 977, databap.scss */
-#chat #chat_chan .tab_bar span.chan span.chan_title {
- text-transform: capitalize; }
-
-/* line 980, databap.scss */
-#chat #chat_chan .tab_bar span.chan span.chan_unread {
- font-weight: normal;
- font-style: italic; }
-
-/* line 984, databap.scss */
-#chat #chat_chan .tab_bar a.quit_chan {
- margin-left: 5px;
- color: #04357B; }
-
-/* line 988, databap.scss */
-#chat #chat_chan .tab_bar span.chan.active:hover a.quit_chan {
- color: #04357B; }
-
-/* line 991, databap.scss */
-#chat #chat_chan .tab_bar span.chan:hover a.quit_chan {
- color: #D9E5F2; }
-
-/* line 994, databap.scss */
-#chat #chat_chan .tab_bar span.chan a.quit_chan:hover,
-#chat #chat_chan .tab_bar .fa:hover {
- color: #EFAB00; }
-
-/* line 999, databap.scss */
-#chat #chat_chan .tab_bar span#join_chan input, #chat #chat_chan .tab_bar span#join_chan input:hover {
- border: none;
- font-size: 14px;
- padding: 0;
- margin: 0;
- width: 70px;
- background-color: #04357B;
- color: white;
- font-weight: bold; }
-
-/* line 1009, databap.scss */
-#chat #chat_chan .tab_bar span.active, #chat #chat_chan .tab_bar span.active:hover {
- border-bottom-color: #FFFFFF;
- background-color: #FFFFFF;
- color: #000000; }
-
-/* line 1015, databap.scss */
-#chat #chat_chan .tab_bar span.light_up {
- background-color: #EFAB00; }
-
-/* line 1019, databap.scss */
-#chat #sidebar #news, #chat #sidebar #news p {
- padding: 0; }
-
-/* line 1022, databap.scss */
-#chat #sidebar #news .new {
- padding: 6px 5px; }
-
-/* line 1025, databap.scss */
-#chat #news .new:nth-child(even) {
- background: #DCF2FB; }
-
-/* line 1028, databap.scss */
-#chat #news .new:nth-child(odd) {
- background: #D9E5F2; }
-
-/* line 1031, databap.scss */
-#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; }
-
-/* line 1037, databap.scss */
-#chat #news .new .signature {
- font-size: 0.75em;
- text-align: right; }
-
-/* line 1041, databap.scss */
-#chat #news .new .signature .news_time {
- font-style: italic; }
-
-/* Options */
-/* line 1047, databap.scss */
-#options .options_box {
- background: #D9E5F2;
- border: 2px solid #04357B;
- width: 490px;
- float: left;
- margin: 0 10px 10px 0;
- padding: 10px; }
-
-/* line 1056, databap.scss */
-#options .options_box .loading {
- padding: 10px; }
-
-/* line 1060, databap.scss */
-#options .options_box h2 {
- color: #04357B;
- font-size: 20px;
- margin: 0 0 10px 0;
- border-bottom: 2px solid #04357B; }
-
-/* line 1067, databap.scss */
-#options .options_box .option_line {
- margin: 10px 0; }
-
-/* line 1071, databap.scss */
-#options .options_box input[type=text], #options .options_box input[type=password], #options .options_box select {
- font-size: 14px;
- background: white;
- border-width: 1px;
- font-size: 14px;
- padding: 5px;
- float: right; }
-
-/* line 1080, databap.scss */
-#options .options_box .button {
- float: left;
- clear: both; }
-
-/* line 1085, databap.scss */
-#options .options_box select {
- border: 1px solid #04357B;
- color: #04357B; }
-
-/* line 1090, databap.scss */
-#options .options_box .option_line p {
- float: left;
- width: 250px;
- padding: 5px 0;
- margin: 5px 0; }
-
-/* Procedure */
-/* line 1099, databap.scss */
-#procedure #procedure_steps .button {
- background-color: white; }
-
-/* line 1103, databap.scss */
-#procedure #procedure_steps .button:hover {
- background-color: #EFAB00; }
-
-/* line 1107, databap.scss */
-#titles_read p.read_title {
- border-bottom: 1px solid #04357B;
- font-weight: bold; }
-
-/* line 1112, databap.scss */
-#titles_read p.read_details {
- font-size: 12px;
- font-style: italic;
- margin: 3px 0 15px 0; }
-
-/* line 1118, databap.scss */
-#titles_read p.read_description {
- font-size: 14px; }
-
-/* line 1122, databap.scss */
-#titles_read p.read_description .fa {
- margin-right: 5px; }
-
-/* line 1126, databap.scss */
-#procedure table.step_box {
- width: 100%; }
-
-/* line 1130, databap.scss */
-#procedure table.step_box td {
- text-align: left;
- margin: 0; }
-
-/* line 1135, databap.scss */
-#procedure table.step_box td.step_margin {
- width: 50%; }
-
-/* line 1139, databap.scss */
-#procedure table.step_box td.step_buttons {
- padding-top: 10px; }
-
-/* line 1143, databap.scss */
-#procedure table.step_box td.image_box_container {
- vertical-align: top;
- padding-top: 18px;
- padding-left: 22px;
- /* 5*2 (padding) + 1*2 (border) + 10 (own padding) */
- min-width: 350px; }
-
-/* line 1150, databap.scss */
-#procedure table.step_box .image_box {
- margin: 10px 0 15px;
- padding: 0; }
-
-/* line 1155, databap.scss */
-#procedure table.step_box input[type=file] {
- margin: 0 10px;
- max-width: 250px;
- border: 1px solid #04357B;
- background: white; }
-
-/* line 1162, databap.scss */
-#procedure #bottom_menu {
- margin: 10px 0 0 0; }
-
-/* line 1166, databap.scss */
-#procedure #top_menu {
- margin: 0 0 10px 0; }
-
-/* line 1170, databap.scss */
-#procedure #validation_button .button {
- margin-right: 10px; }
-
-/* Procedure - Read */
-/* line 1176, databap.scss */
-#procedure .thumbnail_box {
- margin: 10px 0;
- height: 100px; }
-
-/* line 1181, databap.scss */
-#procedure .thumbnail_image {
- background: white;
- border: 1px solid #04357B;
- width: 100px;
- height: 100px;
- vertical-align: middle; }
-
-/* line 1188, databap.scss */
-#procedure .thumbnail_image:hover {
- border-color: #EFAB00; }
-
-/* line 1192, databap.scss */
-#procedure .thumbnail_desc {
- font-size: 12px; }
-
-/* Procedure - Uploader */
-/* line 1198, databap.scss */
-#procedure .error {
- margin: 0 0 15px 0; }
-
-/* line 1202, databap.scss */
-#procedure .uploader_box .error {
- font-size: 12px;
- margin: 10px 0; }
-
-/* Doc */
-/* line 1209, databap.scss */
-#doc_container, #doc {
- margin: 0;
- padding: 0; }
-
-/* line 1214, databap.scss */
-#doc .step_box {
- margin-bottom: 10px; }
-
-/* line 1218, databap.scss */
-#doc #attach_file {
- margin-top: 10px; }
-
-/* line 1222, databap.scss */
-#doc .uploader_droparea {
- height: 150px; }
-
-/* line 1226, databap.scss */
-#doc #doc_links {
- padding: 20px 10px 10px 0px; }
-
-/* Table */
-/* line 1232, databap.scss */
-#table #system {
- width: 80px; }
-
-/* line 1236, databap.scss */
-#table input#title {
- width: 20%; }
-
-/* line 1239, databap.scss */
-#table input#description {
- width: calc(80% - 92px); }
-
-/* line 1243, databap.scss */
-#table .step_box_title a {
- color: #04357B; }
-
-/* line 1247, databap.scss */
-#table #validation {
- margin-top: 15px; }
-
-/* line 1251, databap.scss */
-#table .table_info {
- margin-top: 20px;
- font-size: 0.8em; }
-
-/* line 1256, databap.scss */
-#table #read_title {
- font-weight: bold; }
-
-/* line 1260, databap.scss */
-#table #read_description {
- font-style: italic; }
-
-/* line 1264, databap.scss */
-#table #read_formated_keywords {
- margin: 10px 0 0 0;
- font-size: 0.9em; }
-
-/* line 1269, databap.scss */
-#table #read_formatted_keywords a.internal_link {
- padding: 0 0 0 2px; }
-
-/* line 1273, databap.scss */
-#table input:disabled {
- color: #D9E5F2;
- background-color: #04357B; }
-
-/* line 1278, databap.scss */
-#table .form_success {
- display: none; }
-
-/* List */
-/* line 1284, databap.scss */
-#filters_container {
- margin-bottom: 10px; }
-
-/* line 1288, databap.scss */
-#list_container div:FIRST-CHILD {
- margin-top: 0; }
-
-/* 404 */
-/* line 1294, databap.scss */
-#err_404 p {
- margin-top: 20px;
- color: #04357B; }
-
-/* Footer */
-/* line 1301, databap.scss */
-#footer {
- padding-right: 10px;
- text-align: right; }
-
-/* line 1306, databap.scss */
-#footer p, #footer a {
- color: white;
- margin: 0;
- font-size: 9px; }
-
-/* line 1312, databap.scss */
-#footer a {
- font-weight: bold; }
-
-/* Log Out */
-/* line 1318, databap.scss */
-#logout p {
- font-size: 18px;
- color: #04357B;
- margin-top: 25px; }
-
-/* Note */
-/* line 1326, databap.scss */
-#note {
- height: 100%; }
-
-/* line 1330, databap.scss */
-#note_frame {
- width: calc(100% - 4px);
- height: calc(100% - 4px);
- border: 2px solid #04357B;
- margin: 0;
- overflow: hidden; }
-
-/* line 1338, databap.scss */
-#note_form {
- margin-bottom: 10px; }
-
-/* line 1342, databap.scss */
-#note_form a.button {
- padding: 5px 7px; }
-
-/* Debug*/
-/* line 1348, databap.scss */
-.line_h {
- position: fixed;
- top: 0;
- height: 1px;
- width: 100%;
- border-bottom: 1px solid red;
- z-index: 1000; }
-
-/* line 1356, databap.scss */
-.line_v {
- position: fixed;
- left: 0;
- height: 100%;
- width: 1px;
- border-left: 1px solid red;
- z-index: 1000; }
-
-/*# sourceMappingURL=style/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: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{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:"\f15b"}.fa-c-article:before,.fa-c-art:before,.fa-c-a:before{content:"\f14c"}.fa-c-note:before{content:"\f0fa"}.fa-c-list:before{content:"\f02d"}.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:#EFAB00}.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-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"}.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:#D9E5F2}.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 #D9E5F2}.lb-next .fa{text-shadow:1px 1px 1px #D9E5F2}.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}body,html{background:white;font-family:Verdana, Arial;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:Verdana, Arial;font-size:12px;background:none;border:none}input[type=text],input[type=password]{border:2px solid #04357B;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:#D9E5F2;border-color:#D9E5F2;border:2px solid #04357B}input[disabled="disabled"]:hover,textarea[disabled="disabled"]:hover,input:disabled:hover,textarea:disabled:hover{background-color:#D9E5F2}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}select{background:white;border:2px solid #04357B;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;-webkit-border-radius:10px;-khtml-border-radius:10px;border-radius:10px}.tiny_round{-moz-border-radius:5px;-webkit-border-radius:5px;-khtml-border-radius:5px;border-radius: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:14px;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:#D9E5F2 !important}a.button{padding:7px;margin-right:5px;background:#D9E5F2;font-size:12px;cursor:pointer;border:1px solid #04357B;display:inline-block}a.button:hover{background-color:#EFAB00}a.button:active{background-color:#04357B;color:white}a.button .fa{margin-right:5px}a.button.strong .value{font-weight:bold}a.button.inverse{background-color:#04357B;color:#D9E5F2}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:white}.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:#D9E5F2;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;border:1px solid #04357B;color:#04357B;font-style:italic;font-size:12px}.author_box:nth-child(odd){background:#DCF2FB}.author_box:nth-child(even){background:#D9E5F2}.author_box:hover{border-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}.standalone .author_box:hover{color:#EFAB00}.hide,.mobile{display:none}.step_box{margin-top:5px;margin-bottom:5px;padding:10px;background:#D9E5F2;color:#04357B;border:2px solid #04357B}.step_box:nth-child(even){background:#DCF2FB}.step_box input,.step_box textarea,.step_box select,.step_box .read.textarea,.step_box .read.input{margin-top:10px;background:white;font-size:14px;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:white}.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:white;border:1px solid #04357B}.step_box .read.textarea,.step_box .read.input{border-color:#D9E5F2;font-weight:bold}.step_box .read.textarea{background-color:#DCF2FB}.step_box:nth-child(even) .read.textarea{background-color:#D9E5F2}.step_box .read.input{background-color:#D9E5F2;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:#D9E5F2;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;border:1px solid #04357B;background:white;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:12px;font-weight:normal}a.uploader_item_cancel{text-decoration:underline;color:#04357B}.uploader_box .image_description{border-width:1px;padding:3px 5px;background:white}.uploader_box .image_action{font-size:12px}.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}#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:white;width:250px}#header #search_btn_submit{background:#D9E5F2;border-left:2px solid #04357B;height:20px;padding-top:5px}#header #search_btn_submit:hover{background-color:#EFAB00}#main_container{background:white;margin-left:30px;position:relative;overflow:hidden;border:10px solid white}#page_title{margin-bottom:10px}#page_title h1{margin:0 -12px 12px;padding:12px 10px;width:100%;border:2px solid #04357B;font-family:Arial;font-size:32px;line-height:32px;font-style:italic;font-weight:600;background:#D9E5F2;background:-moz-linear-gradient(45deg, #D9E5F2 25%, #fff 75%);background:-webkit-gradient(linear, left bottom, right top, color-stop(25%, #D9E5F2), color-stop(75%, #fff));background:-webkit-linear-gradient(45deg, #D9E5F2 25%, #fff 75%);background:-o-linear-gradient(45deg, #D9E5F2 25%, #fff 75%);background:-ms-linear-gradient(45deg, #D9E5F2 25%, #fff 75%);background:linear-gradient(45deg, #D9E5F2 25%, #fff 75%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='$fromColor', endColorstr='$ToColor',GradientType=1 )}#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:20px;padding:10px 0;z-index:10;border-right:0 solid #04357B;background:#D9E5F2;background:-moz-linear-gradient(top, #D9E5F2 0%, #fff 25%);background:-webkit-gradient(linear, left top, left bottom, color-stop(0%, #D9E5F2), color-stop(25%, #fff));background:-webkit-linear-gradient(top, #D9E5F2 0%, #fff 25%);background:-o-linear-gradient(top, #D9E5F2 0%, #fff 25%);background:-ms-linear-gradient(top, #D9E5F2 0%, #fff 25%);background:linear-gradient(to bottom, #D9E5F2 0%, #fff 25%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='$col_bright_blue', endColorstr='#FFFFFF',GradientType=0 )}#menu.opened{background:white;background:-moz-linear-gradient(left, #fff 75%, rgba(255,255,255,0) 100%);background:-webkit-gradient(linear, left top, right top, color-stop(75%, #fff), color-stop(100%, rgba(255,255,255,0)));background:-webkit-linear-gradient(left, #fff 75%, rgba(255,255,255,0) 100%);background:-o-linear-gradient(left, #fff 75%, rgba(255,255,255,0) 100%);background:-ms-linear-gradient(left, #fff 75%, rgba(255,255,255,0) 100%);background:linear-gradient(to right, #fff 75%, rgba(255,255,255,0) 100%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#FFFFFF', endColorstr='#00ffffff',GradientType=1 )}#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{display:none;color:#04357B;text-align:center}#menu #menu_box ul{margin:0;padding:0;text-align:left;font-size:20px;list-style:none}#menu #menu_box ul li{margin:0;padding:5px 3px 5px 15px;list-style:none;cursor:pointer;line-height:20px;height:20px;font-size:20px;text-transform:capitalize}#menu #menu_box ul li:FIRST-CHILD{padding-left:5px;font-weight:bold}#menu #menu_box ul li a{color:#04357B;display:block;width:100%}#menu #menu_box ul li:hover a{color:#EFAB00}#menu #menu_box ul li#rss_ln a{color:#04357B}#menu #menu_box ul li#quick_code_access_ln input{border:2px solid #04357B;width:60px;padding:0 5px;font-size:16px;color:#04357B}#menu #menu_box ul li .fa{margin-right:5px}#menu .useless_button{width:0;height:0;position:absolute;bottom:5px;left:5px;border:5px solid #04357B}#welcome #welcome_container{border:2px solid #04357B;background:#D9E5F2;padding:10px}#welcome p.welcome_text{font-weight:bold;padding-top:0;padding-bottom:5px;border-bottom:1px solid #000000;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 ul{font-size:12px;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:#FFFFFF;background:-moz-linear-gradient(top, #fff 15%, #D9E5F2 85%);background:-webkit-gradient(linear, left top, left bottom, color-stop(15%, #fff), color-stop(85%, #D9E5F2));background:-webkit-linear-gradient(top, #fff 15%, #D9E5F2 85%);background:-o-linear-gradient(top, #fff 15%, #D9E5F2 85%);background:-ms-linear-gradient(top, #fff 15%, #D9E5F2 85%);background:linear-gradient(to bottom, #fff 15%, #D9E5F2 85%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#FFFFFF', endColorstr='$col_bright_blue',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='#FFFFFF', endColorstr='$col_bright_orange',GradientType=0 )}#welcome span.milestone .fa{margin-right:5px}#welcome a{text-decoration:underline}#add_code_container,#add_code_container input{font-size:14px}#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%;border:2px solid #04357B;min-height:100px;height:300px;font-family:courier;color:black;font-size:14px}#add_code_container .loggued{margin:0 12px}#add_code_container input[type=text]{border:2px solid #04357B;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;border:2px solid;margin-left:15px;padding:5px;font-size:14px}#link_result{color:#04357B;border-color:#04357B}#available_phrase{display:none}#available_phrase.available{color:green;border-color:green}#available_phrase.unavailable{color:red;border-color:red}#reader{margin:0;padding:0}#reader #code_menu{padding:0;margin:0}#code_container .code_reader{margin:10px 0 0 0;border:2px solid #04357B;padding:0;background:#b5b5c6;background:#04357B}#reader #code_container .code_reader{margin:0}#code_container .code_reader ol li ::selection{background:#306897;color:#FFFFFF}#code_container .code_reader ol li ::-moz-selection{background:#306897;color:#FFFFFF}#code_container .code_reader .author_box{background:#04357B;border:none;color:white}#code_container .code_reader .author_box *{color:white}#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:white;margin:0}#code_container .code_reader ol li{margin:0;padding:0;border-left:1px dotted #398c8c;background:white;font-family:Courier New, Courier;font-size:12px;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:#000000}#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:#000000}#code_container .code_reader ol li span.code,ol li span.comment{font-size:14px;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:white 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:14px;font-style:italic}#search .code_reader:hover .tab_left,#search .code_reader:hover ol,#search .code_reader:hover li{background-color:#D9E5F2;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;border:2px solid #04357B;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;border:2px solid #04357B;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;border:2px solid #04357B}#profile #user_history p.history_line{padding:5px 10px;font-size:14px}#profile #user_history p.history_line:nth-child(odd){background:#D9E5F2}#profile #user_history p.history_line:nth-child(even){background:#FFFFFF}#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;border:2px solid #04357B;background:white;height:100%}.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;margin:5px 5px 0}#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 img.proxy{vertical-align:middle;border:1px solid #04357B;padding:5px;background:#FFFFFF}#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:10px;font-style:normal}#chat_messages p a.user,#chat_messages p span.console{font-size:12px;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:13px}#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 .help{border:1px dashed #666666;padding:0 0 5px 0;margin:5px 0;background:white}#chat_messages .help p{padding:0 5px;color:#666666;font-size:10px}#chat_messages .help p.title{font-size:14px;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:12px}#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{margin:5px;padding:0 5px;background:#04357B}#chat #chat_input .fa{color:#D9E5F2;margin-right:2px}#chat #chat_input input#message{color:white;margin:0;padding:7px 0;border:none;min-width:200px;font-size:13px;line-height:13px}#chat #chat_input input#message:hover,#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;border:2px solid #04357B;font-weight:bold;padding:0;margin-bottom:10px}#chat #sidebar .sidebar_box_title{background-color:#D9E5F2;text-align:center}#chat #sidebar .sidebar_box_content{border-top:2px solid #04357B;font-size:12px;font-weight:normal}#chat #sidebar .help_paperclip{background:transparent 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:16px}#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 #D9E5F2;margin-left:-20px;margin-top:2px}#chat #chat_chan{margin-bottom:-2px}#chat #chat_chan .tab_bar{font-weight:bold;text-align:right;margin:0 184px 0 0}#chat #chat_chan .tab_bar span.chan{display:inline-block;background-color:#D9E5F2;padding:2px 8px;border:2px solid #04357B;margin-left:5px;color:#04357B}#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:#FFFFFF}#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:#D9E5F2}#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 input,#chat #chat_chan .tab_bar span#join_chan input:hover{border:none;font-size:14px;padding:0;margin:0;width:70px;background-color:#04357B;color:white;font-weight:bold}#chat #chat_chan .tab_bar span.active,#chat #chat_chan .tab_bar span.active:hover{border-bottom-color:#FFFFFF;background-color:#FFFFFF;color:#000000}#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:#DCF2FB}#chat #news .new:nth-child(odd){background:#D9E5F2}#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;border:2px solid #04357B;width:490px;float:left;margin:0 10px 10px 0;padding:10px}#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:10px 0}#options .options_box input[type=text],#options .options_box input[type=password],#options .options_box select{font-size:14px;background:white;border-width:1px;font-size:14px;padding:5px;float:right}#options .options_box .button{float:left;clear:both}#options .options_box select{border:1px solid #04357B;color:#04357B}#options .options_box .option_line p{float:left;width:250px;padding:5px 0;margin:5px 0}#procedure #procedure_steps .button{background-color:white}#procedure #procedure_steps .button:hover{background-color:#EFAB00}#titles_read p.read_title{border-bottom:1px solid #04357B;font-weight:bold}#titles_read p.read_details{font-size:12px;font-style:italic;margin:3px 0 15px 0}#titles_read p.read_description{font-size:14px}#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:white}#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:white;border:1px solid #04357B;width:100px;height:100px;vertical-align:middle}#procedure .thumbnail_image:hover{border-color:#EFAB00}#procedure .thumbnail_desc{font-size:12px}#procedure .error{margin:0 0 15px 0}#procedure .uploader_box .error{font-size:12px;margin:10px 0}#doc_container,#doc{margin:0;padding:0}#doc .step_box{margin-bottom:10px}#doc #attach_file{margin-top:10px}#doc .uploader_droparea{height:150px}#doc #doc_links{padding:20px 10px 10px 0px}#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:#D9E5F2;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:white;margin:0;font-size:9px}#footer a{font-weight:bold}#logout p{font-size:18px;color:#04357B;margin-top:25px}#note{height:100%}#note_frame{width:calc(100% - 4px);height:calc(100% - 4px);border:2px solid #04357B;margin:0;overflow:hidden}#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}
diff --git a/style/databap.css.map b/style/databap.css.map
index a74abc7..d643918 100755
--- a/style/databap.css.map
+++ b/style/databap.css.map
@@ -1,7 +1,8 @@
{
"version": 3,
-"mappings": "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",
-"sources": ["_variables.scss","_fa.scss","_fa-custom.scss","_lightbox.scss","_common.scss","databap.scss"],
+"mappings": "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",
+"sources": ["C:/wamp/www/databap/style/_variables.scss","C:/wamp/www/databap/style/_fa.scss","C:/wamp/www/databap/style/_fa-custom.scss","C:/wamp/www/databap/style/_lightbox.scss","C:/wamp/www/databap/style/_common.scss","C:\\wamp\\www\\databap\\style\\databap.scss"],
+"sourcesContent": ["@CHARSET \"UTF-8\";\n\n$col_blue: #04357B;\n$col_bright_blue: #D9E5F2;\n$col_brighter_blue: #DCF2FB;\n$col_new_blue: #0C8BCE;\n$col_orange: #EFAB00;\n$col_bright_orange: #F2E1B5;","/*!\n * Font Awesome 4.2.0 by @davegandy - http://fontawesome.io - @fontawesome\n * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)\n */\n/* FONT PATH\n * -------------------------- */\n@font-face {\n font-family: 'FontAwesome';\n src: url('style/fontawesome-webfont.eot?v=4.2.0');\n 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');\n font-weight: normal;\n font-style: normal;\n}\n.fa {\n display: inline-block;\n font-family: FontAwesome;\n font-style: normal;\n font-weight: normal;\n line-height: 1;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n/* makes the font 33% larger relative to the icon container */\n.fa-lg {\n font-size: 1.33333333em;\n line-height: 0.75em;\n vertical-align: -15%;\n}\n.fa-2x {\n font-size: 2em;\n}\n.fa-3x {\n font-size: 3em;\n}\n.fa-4x {\n font-size: 4em;\n}\n.fa-5x {\n font-size: 5em;\n}\n.fa-fw {\n width: 1.28571429em;\n text-align: center;\n}\n.fa-ul {\n padding-left: 0;\n margin-left: 2.14285714em;\n list-style-type: none;\n}\n.fa-ul > li {\n position: relative;\n}\n.fa-li {\n position: absolute;\n left: -2.14285714em;\n width: 2.14285714em;\n top: 0.14285714em;\n text-align: center;\n}\n.fa-li.fa-lg {\n left: -1.85714286em;\n}\n.fa-border {\n padding: .2em .25em .15em;\n border: solid 0.08em #eeeeee;\n border-radius: .1em;\n}\n.pull-right {\n float: right;\n}\n.pull-left {\n float: left;\n}\n.fa.pull-left {\n margin-right: .3em;\n}\n.fa.pull-right {\n margin-left: .3em;\n}\n.fa-spin {\n -webkit-animation: spin 2s infinite linear;\n -moz-animation: spin 2s infinite linear;\n -o-animation: spin 2s infinite linear;\n animation: spin 2s infinite linear;\n}\n@-moz-keyframes spin {\n 0% {\n -moz-transform: rotate(0deg);\n }\n 100% {\n -moz-transform: rotate(359deg);\n }\n}\n@-webkit-keyframes spin {\n 0% {\n -webkit-transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(359deg);\n }\n}\n@-o-keyframes spin {\n 0% {\n -o-transform: rotate(0deg);\n }\n 100% {\n -o-transform: rotate(359deg);\n }\n}\n@keyframes spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(359deg);\n transform: rotate(359deg);\n }\n}\n.fa-rotate-90 {\n filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);\n -webkit-transform: rotate(90deg);\n -moz-transform: rotate(90deg);\n -ms-transform: rotate(90deg);\n -o-transform: rotate(90deg);\n transform: rotate(90deg);\n}\n.fa-rotate-180 {\n filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);\n -webkit-transform: rotate(180deg);\n -moz-transform: rotate(180deg);\n -ms-transform: rotate(180deg);\n -o-transform: rotate(180deg);\n transform: rotate(180deg);\n}\n.fa-rotate-270 {\n filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);\n -webkit-transform: rotate(270deg);\n -moz-transform: rotate(270deg);\n -ms-transform: rotate(270deg);\n -o-transform: rotate(270deg);\n transform: rotate(270deg);\n}\n.fa-flip-horizontal {\n filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);\n -webkit-transform: scale(-1, 1);\n -moz-transform: scale(-1, 1);\n -ms-transform: scale(-1, 1);\n -o-transform: scale(-1, 1);\n transform: scale(-1, 1);\n}\n.fa-flip-vertical {\n filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);\n -webkit-transform: scale(1, -1);\n -moz-transform: scale(1, -1);\n -ms-transform: scale(1, -1);\n -o-transform: scale(1, -1);\n transform: scale(1, -1);\n}\n.fa-stack {\n position: relative;\n display: inline-block;\n width: 2em;\n height: 2em;\n line-height: 2em;\n vertical-align: middle;\n}\n.fa-stack-1x,\n.fa-stack-2x {\n position: absolute;\n left: 0;\n width: 100%;\n text-align: center;\n}\n.fa-stack-1x {\n line-height: inherit;\n}\n.fa-stack-2x {\n font-size: 2em;\n}\n.fa-inverse {\n color: #ffffff;\n}","/* Font Awesome */\n\n.fa-inline {\n\tmargin-right:5px;\n}\n\n/*\nsize\t\t\t+0%\t\t+10%\t\t+20%\t\t+30%\t\t+40%\t\t+50%\t\t+60%\t\t\nfont-size\t\t1em\t\t1.111em\t\t1.222em\t\t1.333em\t\t1.444em\t\t1.555em\t\t1.666em\t\t\nline-height\t\t1em\t\t0.917em\t\t0.833em\t\t0.750em\t\t0.666em\t\t0.583em\t\t0.500em\nvertical-align\t0%\t\t-5%\t\t\t-10%\t\t-15%\t\t-20%\t\t-25%\t\t-30%\n*/\n\n.fa-10 {\n\tfont-size:\t\t1.1111111111111111em;\n\tline-height: \t0.9166666666666666em;\n\tvertical-align:\t-5%;\n}\n.fa-20 {\n\tfont-size:\t\t1.2222222222222222em;\n\tline-height:\t0.8333333333333333em;\n\tvertical-align: -10%;\n}\n.fa-30 {\n\tfont-size:\t\t1.3333333333333333em;\n\tline-height:\t0.75em;\n\tvertical-align:\t-15%;\n}\n.fa-40 {\n\tfont-size:\t\t1.4444444444444444em;\n\tline-height:\t0.6666666666666666em;\n\tvertical-align:\t-20%;\n}\n.fa-60 {\n\tfont-size: \t\t1.6666666666666666em;\n\tline-height: \t0.5em;\n\tvertical-align: -30%;\n}\n\n.fa-c-c:before, .fa-c-code:before {\n content: \"\\f121\";\n}\n\n.fa-c-procedure:before, .fa-c-proc:before, .fa-c-p:before {\n\tcontent: \"\\f0cb\";\n}\n\n.fa-c-table:before, .fa-c-t:before {\n\tcontent: \"\\f0ce\";\n}\n\n.fa-c-documentation:before, .fa-c-doc:before, .fa-c-d:before {\n\tcontent: \"\\f15b\";\n}\n\n.fa-c-article:before, .fa-c-art:before, .fa-c-a:before {\n\tcontent: \"\\f14c\";\n}\n\n.fa-c-note:before {\n\tcontent: \"\\f0fa\";\n}\n\n.fa-c-list:before {\n\tcontent: \"\\f02d\";\n}\n\n.fa-c-profile:before {\n content: \"\\f007\";\n}\n\n.fa-c-chat:before {\n\tcontent: \"\\f086\";\n}\n\n.fa-c-news:before {\n\tcontent: \"\\f0e7\";\n}\n\n.fa-c-version:before {\n\tcontent: \"\\f005\";\n}\n\n.fa-c-details:before {\n\tcontent: \"\\f112\";\n}\n\n.fa-c-bug:before {\n\tcontent: \"\\f188\";\n}\n\n.fa-c-date:before {\n\tcontent: \"\\f073\";\n}\n\n.fa-c-git:before {\n\tcontent: \"\\f1d3\";\n}\n\n.fa-c-afk:before {\n\tcontent: \"\\f017\";\n}\n\n.fa-c-comment {\n\tcolor:$col_blue;\n}\n.fa-c-comment:before {\n\tcontent: \"\\f075\";\n}\n\n.fa-c-options:before {\n\tcontent: \"\\f085\";\n}\n\n.fa-c-param:before {\n\tcontent: \"\\f1de\";\n}\n\n.fa-c-wip:before {\n\tcontent: \"\\f013\";\n}\n\n.fa-c-rss:before {\n content: \"\\f09e\";\n}\n\n.fa-c-logmeout:before, .fa-c-logout:before {\n content: \"\\f08b\";\n}\n\n.fa-c-fold {\n\tcolor:$col_blue;\n}\n.fa-c-fold:before {\n\tcontent: \"\\f191\";\n}\n\n.fa-c-success:before, .fa-c-ok:before, .available .fa:before {\n\tcontent: \"\\f00c\";\n}\n\n.fa-c-warning {\n\tcolor:$col_orange;\n}\n.fa-c-warning:before {\n\tcontent: \"\\f071\";\n}\n\n.fa-c-error {\n\tcolor:red;\n}\n.fa-c-error:before {\n\tcontent: \"\\f071\";\n}\n\n.fa-c-ko {\n\tcolor:red;\n}\n.fa-c-ko:before, .unavailable .fa:before {\n\tcontent: \"\\f00d\";\n}\n\n.fa-c-search:before {\n content: \"\\f002\";\n}\n\n.fa-c-welcome:before {\n content: /*\"\\f087\"*/\"\\f015\";\n}\n\n.fa-c-loading:before {\n\tcontent: \"\\f110\";\n}\n\n.fa-c-edit:before {\n\tcontent: \"\\f040\";\n}\n\n.fa-c-save:before {\n\tcontent: \"\\f0c7\";\n}\n\n.fa-c-raw:before {\n\tcontent: \"\\f15c\";\n}\n\n.fa-c-print:before {\n\tcontent: \"\\f02f\";\n}\n\n.fa-c-share:before {\n\tcontent: \"\\f0ac\";\n}\n\n.fa-c-refresh:before, .fa-c-switch:before {\n\tcontent: \"\\f021\";\n}\n\n.fa-c-plus:before, .fa-c-add:before {\n\tcontent: \"\\f055\";\n}\n\n.fa-c-minus:before, .fa-c-delete:before {\n\tcontent: \"\\f056\";\n}\n\n.fa-c-up:before {\n\tcontent: \"\\f01b\";\n}\n\n.fa-c-down:before {\n\tcontent: \"\\f01a\";\n}\n\n.fa-c-next:before {\n\tcontent: \"\\f054\";\n}\n\n.fa-c-prev:before {\n\tcontent: \"\\f053\";\n}\n\n.fa-c-close:before {\n\tcontent: \"\\f05c\";\n}\n\n.fa-c-desc:before {\n\tcontent: \"\\f05a\";\n}\n\n.fa-c-company:before {\n\tcontent: \"\\f0f7\";\n}\n\n.fa-c-name:before {\n\tcontent: \"\\f02b\";\n}\n\n.fa-c-assignment:before {\n\tcontent: \"\\f0b1\";\n}\n\n.fa-c-lock:before {\n\tcontent: \"\\f023\"/*\"\\f084\"*/;\n}\n\n.fa-c-search:before {\n\tcontent: \"\\f002\";\n}\n\n.fa-c-mail:before {\n\tcontent: \"\\f0e0\";\n}\n\n.fa-c-upcoming:before {\n\tcontent:\"\\f135\";\n}\n\n.fa-c-changelog:before {\n\tcontent:\"\\f0d0\";\n}\n\n.fa-c-checked:before {\n\tcontent:\"\\f046\";\n}\n\n.fa-c-unchecked:before {\n\tcontent:\"\\f096\";\n}\n\n.fa-c-kpi:before {\n\tcontent:\"\\f0e4\";\n}\n\n.fa-c-file-xls, .fa-c-file-xlsx {\n\tcolor:#247648;\n}\n.fa-c-file-xls:before, .fa-c-file-xlsx:before {\n\tcontent: \"\\f1c3\";\n}\n\n.fa-c-file-doc, .fa-c-file-docx {\n\tcolor:#2B5796;\n}\n.fa-c-file-doc:before, .fa-c-file-docx:before {\n\tcontent: \"\\f1c2\";\n}\n\n.fa-c-file-ppt, .fa-c-file-pptx {\n\tcolor:#D04423;\n}\n.fa-c-file-ppt:before, .fa-c-file-pptx:before {\n\tcontent: \"\\f1c4\";\n}\n\n.fa-c-file-pdf {\n\tcolor:#D20F0B;\n}\n.fa-c-file-pdf:before {\n\tcontent: \"\\f1c1\";\n}\n\n.fa-c-file-zip:before {\n\tcontent: \"\\f1c6\";\n}\n\n.fa-c-file-png:before, .fa-c-file-gif:before, .fa-c-file-jpg:before, .fa-c-file-jpeg:before {\n\tcontent: \"\\f1c5\";\n}",".lightboxOverlay {\n position: absolute;\n top: 0;\n left: 0;\n z-index: 9999;\n background-color:white;\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);\n opacity: 0.8;\n display: none;\n}\n\n.lightbox {\n position: absolute;\n left: 0;\n width: 100%;\n z-index: 10000;\n text-align: center;\n line-height: 0;\n font-weight: normal;\n}\n\n.lightbox .lb-image {\n display: block;\n height: auto;\n max-width: inherit;\n -webkit-border-radius: 3px;\n -moz-border-radius: 3px;\n -ms-border-radius: 3px;\n -o-border-radius: 3px;\n border-radius: 3px;\n}\n\n.lightbox a img {\n border: none;\n}\n\n.lb-outerContainer {\n position: relative;\n background-color: $col_blue;\n *zoom: 1;\n width: 250px;\n height: 250px;\n margin: 0 auto;\n -webkit-border-radius: 4px;\n -moz-border-radius: 4px;\n -ms-border-radius: 4px;\n -o-border-radius: 4px;\n border-radius: 4px;\n}\n\n.lb-outerContainer:after {\n content: \"\";\n display: table;\n clear: both;\n}\n\n.lb-container {\n padding: 4px;\n}\n\n.lb-loader {\n position: absolute;\n top: 43%;\n left: 0;\n height: 25%;\n width: 100%;\n text-align: center;\n line-height: 0;\n}\n\n.lb-cancel {\n display: block;\n width: 32px;\n height: 32px;\n margin: 0 auto;\n font-size:32px;\n color:$col_bright_blue;\n}\n\n.lb-nav {\n position: absolute;\n top: 0;\n left: 0;\n height: 100%;\n width: 100%;\n z-index: 10;\n}\n\n.lb-container > .nav {\n left: 0;\n}\n\n.lb-nav a {\n outline: none;\n background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==');\n}\n\n.lb-prev, .lb-next {\n height: 100%;\n cursor: pointer;\n display: block;\n}\n\n.lb-nav a.lb-prev {\n width: 34%;\n left: 0;\n float: left;\n text-align:left;\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);\n opacity: 0;\n -webkit-transition: opacity 0.6s;\n -moz-transition: opacity 0.6s;\n -o-transition: opacity 0.6s;\n transition: opacity 0.6s;\n}\n\n.lb-nav a.lb-prev:hover {\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);\n opacity: 1;\n}\n\n.lb-nav a.lb-next {\n width: 64%;\n right: 0;\n float: right;\n text-align:right;\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);\n opacity: 0;\n -webkit-transition: opacity 0.6s;\n -moz-transition: opacity 0.6s;\n -o-transition: opacity 0.6s;\n transition: opacity 0.6s;\n}\n\n.lb-nav a.lb-next:hover {\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);\n opacity: 1;\n}\n\n.lb-prev .fa, .lb-next .fa {\n\tposition:relative;\n\ttop:50%;\n\tfont-size: 45px;\n\t-webkit-transform: translateY(-50%);\n\t-ms-transform: translateY(-50%);\n\ttransform: translateY(-50%);\n\tcolor:$col_blue;\n\tpadding: 0 20px;\n}\n\n.lb-prev .fa {\n\ttext-shadow: -1px 2px 1px $col_bright_blue;\n}\n\n.lb-next .fa {\n\ttext-shadow: 1px 1px 1px $col_bright_blue;\n}\n\n.lb-dataContainer {\n margin: 0 auto;\n padding-top: 5px;\n *zoom: 1;\n width: 100%;\n -moz-border-radius-bottomleft: 4px;\n -webkit-border-bottom-left-radius: 4px;\n border-bottom-left-radius: 4px;\n -moz-border-radius-bottomright: 4px;\n -webkit-border-bottom-right-radius: 4px;\n border-bottom-right-radius: 4px;\n}\n\n.lb-dataContainer:after {\n content: \"\";\n display: table;\n clear: both;\n}\n\n.lb-data {\n padding: 0 4px;\n color:$col_blue;\n}\n\n.lb-data .lb-details {\n width: 85%;\n float: left;\n text-align: left;\n line-height: 1.1em;\n}\n\n.lb-data .lb-caption {\n font-size: 13px;\n font-weight: bold;\n line-height: 1em;\n}\n\n.lb-data .lb-number {\n display: block;\n clear: left;\n padding-bottom: 1em;\n font-size: 12px;\n color:$col_blue;\n}\n\n.lb-data .lb-close {\n display: block;\n float: right;\n width: 30px;\n height: 30px;\n font-size:30px;\n color:$col_blue;\n text-align: right;\n outline: none;\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);\n opacity: 0.7;\n -webkit-transition: opacity 0.2s;\n -moz-transition: opacity 0.2s;\n -o-transition: opacity 0.2s;\n transition: opacity 0.2s;\n}\n\n.lb-data .lb-close:hover {\n cursor: pointer;\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);\n opacity: 1;\n}","/* Standard Tags */\n\nbody, html {\n\tbackground:white;\n\tfont-family:Verdana, Arial;\n\tcolor:$col_blue;\n\tbackground:$col_blue;\n\tpadding:0;\n\tmargin:0;\n\tmin-width:1024px;\n}\n\ntable {\n\tborder:none;\n\tbackground:none;\n\ttext-align:center;\n\tmargin:0;\n\tpadding:0;\n\tborder-spacing:0;\n}\n\ntable td {\n\tpadding:0;\n}\n\ninput, textarea, select {\n\tfont-family:Verdana, Arial;\n\tfont-size:12px;\n\tbackground:none;\n\tborder:none;\n}\ninput[type=text], input[type=password] {\n\tborder:2px solid $col_blue;\n\tpadding:5px;\n\twidth:200px;\n}\n\ninput[type=button]:hover, input[type=submit]:hover, input[type=password]:hover, input[type=text]:hover, input[type=text]:focus {\n\tbackground-color:$col_orange;\n}\n\ninput[disabled=\"disabled\"], textarea[disabled=\"disabled\"], input:disabled, textarea:disabled {\n\tbackground-color:$col_bright_blue;\n\tborder-color:$col_bright_blue;\n\tborder:2px solid $col_blue;\n}\n\ninput[disabled=\"disabled\"]:hover, textarea[disabled=\"disabled\"]:hover, input:disabled:hover, textarea:disabled:hover {\n\tbackground-color:$col_bright_blue;\n}\n\nbutton::-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 {\n\tborder: none;\n}\n\ninput[type=button], .clickable {\n\tcursor:pointer;\n}\n\nselect {\n\tbackground:white;\n\tborder:2px solid $col_blue;\n\tpadding:5px;\n\tcolor:$col_blue;\n\tmargin:0;\n}\n\ntextarea {\n\tmin-height:30px;\n}\n\ninput, select, textarea, h1, h2, h3, h4, p, a {\n\tcolor:$col_blue;\n}\n\np {\n\tmargin:0;\n\tpadding:0;\n}\n\na, a:visited {\n\ttext-decoration:none;\n}\n\na:active, a:focus, input:active, input:focus {\n\toutline: none;\n}\n\nimg {\n\tborder:none;\n}\n\n/* Functions */\n\n@mixin gradient-diag($fromColor, $ToColor, $fromPos, $ToPos) {\n\tbackground: $fromColor;\n\tbackground: -moz-linear-gradient(45deg, $fromColor $fromPos, $ToColor $ToPos);\n\tbackground: -webkit-gradient(linear, left bottom, right top, color-stop($fromPos,$fromColor), color-stop($ToPos,$ToColor));\n\tbackground: -webkit-linear-gradient(45deg, $fromColor $fromPos,$ToColor $ToPos);\n\tbackground: -o-linear-gradient(45deg, $fromColor $fromPos,$ToColor $ToPos);\n\tbackground: -ms-linear-gradient(45deg, $fromColor $fromPos,$ToColor $ToPos);\n\tbackground: linear-gradient(45deg, $fromColor $fromPos,$ToColor $ToPos);\n\tfilter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$fromColor', endColorstr='$ToColor',GradientType=1 );\n}\n\n/* Classes */\n\n.round_top {\n\t-moz-border-radius:10px 10px 0 0;\n\t-webkit-border-radius:10px 10px 0 0;\n\t-khtml-border-radius:10px 10px 0 0;\n\tborder-radius:10px 10px 0 0;\n}\n.round_bottom {\n\t-moz-border-radius:0 0 10px 10px;\n\t-webkit-border-radius:0 0 10px 10px;\n\t-khtml-border-radius:0 0 10px 10px;\n\tborder-radius:0 0 10px 10px;\n}\n.round_right {\n\t-moz-border-radius:0 10px 10px 0;\n\t-webkit-border-radius:0 10px 10px 0;\n\t-khtml-border-radius:0 10px 10px 0;\n\tborder-radius:0 10px 10px 0;\n}\n.round_left {\n\t-moz-border-radius:10px 0 0 10px;\n\t-webkit-border-radius:10px 0 0 10px;\n\t-khtml-border-radius:10px 0 0 10px;\n\tborder-radius:10px 0 0 10px;\n}\n.round_bottom_left {\n\t-moz-border-radius:0 0 0 10px;\n\t-webkit-border-radius:0 0 0 10px;\n\t-khtml-border-radius:0 0 0 10px;\n\tborder-radius:0 0 0 10px;\n}\n.round {\n\t-moz-border-radius:10px;\n\t-webkit-border-radius:10px;\n\t-khtml-border-radius:10px;\n\tborder-radius:10px;\n}\n.tiny_round {\n\t-moz-border-radius:5px;\n\t-webkit-border-radius:5px;\n\t-khtml-border-radius:5px;\n\tborder-radius:5px;\n}\n.tiny_top_right {\n\t-moz-border-radius:5px 0 5px 5px;\n\t-webkit-border-radius:5px 0 5px 5px;\n\t-khtml-border-radius:5px 0 5px 5px;\n\tborder-radius:5px 0 5px 5px;\n}\n\n.inc_border {\n\tbox-sizing:border-box;\n\t-moz-box-sizing:border-box;\n\t-webkit-box-sizing:border-box;\n}\n\n.loading {\n\tfont-size:20px;\n\tmargin:5px;\n\ttext-align:center;\n}\n\n.error, .warning, .success {\n\tmargin:10px 0;\n\tborder-width:1px;\n\tborder-style:solid;\n\tpadding:3px;\n\t-moz-border-radius:5px;\n\t-webkit-border-radius:5px;\n\t-khtml-border-radius:5px;\n\tborder-radius:5px;\n\tclear:both;\n}\n\n.error a, .warning a, .success a {\n\ttext-decoration: underline;\n}\n\n.error, .error a {\n\tcolor:red;\n\tborder-color:red;\n\tfont-size:14px;\n\tfont-weight:bold;\n}\n\n.warning, .warning a {\n\tcolor:orange;\n\tborder-color:orange;\n\tfont-size:13px;\n\tfont-style:italic;\n}\n\n.success, .success a {\n\tcolor:green;\n\tborder-color:green;\n\tfont-size:13px;\n}\n\n.default_text {\n\tcolor:$col_bright_blue !important;\n}\n\na.button {\n\tpadding:7px;\n\tmargin-right:5px;\n\tbackground:$col_bright_blue;\n\tfont-size:12px;\n\tcursor:pointer;\n\tborder:1px solid $col_blue;\n\t/*position:relative;*/\n\tdisplay:inline-block;\n}\na.button:hover {\n\tbackground-color:$col_orange;\n}\na.button:active {\n\tbackground-color:$col_blue;\n\tcolor:white;\n}\n\na.button .fa {\n\t@extend .fa-60;\n\tmargin-right:5px;\n}\n\na.button.strong .value {\n\tfont-weight:bold;\n}\n\na.button.inverse {\n\tbackground-color:$col_blue;\n\tcolor:$col_bright_blue;\n}\n\na.button.inverse:hover {\n\tbackground-color:$col_orange;\n\tcolor:$col_blue;\n}\n\na.button.heavy {\n\tborder-width:2px;\n\tfont-weight:bold;\n}\n\na.button.gimmespace {\n\tmargin-left:10px;\n\tmargin-right:10px;\n}\n\n.addr {\n\tcursor:text;\n}\n\n.addr:hover {\n\tbackground-color:white;\n}\n\n.maximized {\n\twidth:100%;\n}\n\n.righty {\n\ttext-align:right;\n}\n\n.glue-right {\n\tfloat: right;\n}\n\n.lefty {\n\ttext-align:left;\n}\n\n.side_margins {\n\tmargin:0 12px 10px;\n}\n\na.internal_link {\n\ttext-decoration:underline;\n\tfont-style:normal;\n\tbackground:$col_bright_blue;\n\tpadding:1px 8px 1px 5px;\n\tmargin:0;\n}\na.internal_link:visited, a.external_link:visited {\n\tcolor:grey;\n}\na.internal_link span.type {\n\ttext-transform:capitalize;\n}\na[href^=\"table\"].internal_link span.item {\n\ttext-transform:uppercase;\n}\n\n.author_box {\n\tpadding:5px 10px;\n\tborder:1px solid $col_blue;\n\tcolor:$col_blue;\n\tfont-style:italic;\n\tfont-size:12px;\n}\n.author_box:nth-child(odd) {\n\tbackground:$col_brighter_blue;\n}\n.author_box:nth-child(even) {\n\tbackground:$col_bright_blue;\n}\n.author_box:hover {\n\tborder-color:$col_orange;\n}\n\n.author_box a {\n\tbackground:none;\n\tpadding:0;\n\tdisplay:block;\n\twidth: 100%;\n}\n\n.author_box i.fa-30 {\n\tvertical-align: -5%;\n}\n\n.author_box span.description {\n\tfont-weight:bold;\n\tfont-style:normal;\n\tfont-size:13px;\n}\n\n.author_box span.rank {\n\tfont-weight: bold;\n\tmargin-left:10px;\n}\n\n.standalone .author_box {\n\tmargin-top:10px;\n}\n.standalone .author_box:hover {\n\tcolor:$col_orange;\n}\n\n.hide, .mobile {\n\tdisplay:none;\n}\n\n/* Step Box */\n\n.step_box {\n\tmargin-top:5px;\n\tmargin-bottom:5px;\n\tpadding:10px;\n\tbackground:$col_bright_blue;\n\tcolor:$col_blue;\n\tborder: 2px solid $col_blue;\n}\n.step_box:nth-child(even) {\n\tbackground:$col_brighter_blue;\n}\n\n.step_box input, .step_box textarea, .step_box select, .step_box .read.textarea, .step_box .read.input {\n\tmargin-top:10px;\n\tbackground:white;\n\tfont-size:14px;\n\tborder-width:1px;\n}\n.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 {\n\tbackground-color:white;\n}\n.step_box input[type=text], .step_box textarea, .step_box .read.textarea, .step_box .read.input {\n\twidth:100%;\n}\n.step_box textarea, .step_box .read.textarea {\n\theight:200px;\n\tpadding:5px;\n\tbackground:white;\n\tborder:1px solid $col_blue;\n}\n.step_box .read.textarea, .step_box .read.input {\n\tborder-color:$col_bright_blue;\n\tfont-weight:bold;\n}\n.step_box .read.textarea {\n\tbackground-color:$col_brighter_blue;\n}\n.step_box:nth-child(even) .read.textarea {\n\tbackground-color:$col_bright_blue;\n}\n.step_box .read.input {\n\tbackground-color:$col_bright_blue;\n\tpadding-left:0;\n}\n\n.step_box .step_nb_box, .step_box .step_box_title {\n\tborder-bottom:1px solid $col_blue;\n\tpadding:0;\n}\n\n/* Scrollbar */\n\n.scrollbar_box {\n\tposition:relative;\n\theight:0px;\n\toverflow:hidden;\n}\n\n.scrollbar_box .scrollbar_subbox {\n\tposition:absolute;\n\tleft:0;\n\ttop:0;\n\twidth:100%;\n}\n\n.scrollbar {\n\tposition:relative;\n\tfloat:right;\n\twidth:15px;\n\tmargin-left:5px;\n}\n\n.scrollbar .thumb, .scrollbar .thumb .end {\n\tbackground-color:$col_blue;\n\twidth:13px;\n}\n.scrollbar .track {\n\tbackground-color:$col_bright_blue;\n\theight:100%;\n\twidth:13px;\n\tposition:relative;\n\tpadding:0;\n}\n.scrollbar .thumb {\n\tposition:absolute;\n\ttop:0;\n\toverflow:hidden;\n}\n.scrollbar .thumb .end {\n\toverflow:hidden;\n\theight:20px;\n}\n\n.disable {\n\tdisplay:none;\n}\n\n/* Uploader */\n\n.uploader_box {\n\tposition:relative;\n\twidth:100%;\n}\n\n.uploader_droparea {\n position:absolute;\n top:-10px;\n left:0;\n width:100%;\n height:100%;\n height:210px;\n z-index:2;\n border:1px solid $col_blue;\n background:white;\n text-align:center;\n}\n\t\n.uploader_droparea-active {\n\tbackground:$col_orange;\n}\n.uploader_droparea span {\n display:block;\n position:absolute;\n top:50%;\n width:100%;\n margin-top:-8px;\n font-size:16px;\n}\n\n.uploader_buffer {\n\twidth:100%;\n\theight:8px;\n}\n\n.uploader_list {\n\t/*margin:0;*/margin-top:0;\n\tpadding:0;\n\tlist-style:none;\n}\n.uploader_list li {\n\tmargin:0 0 10px 10px;\n}\n\n.uploader_item_file, .uploader_item_loading, .uploader_item_size, .uploader_item_cancel, .uploader_item_failed {\n margin-right:5px;\n}\n\n.uploader_item_size, .uploader_item_cancel {\n\tfont-size:12px;\n\tfont-weight: normal;\n}\n\na.uploader_item_cancel {\n\ttext-decoration:underline;\n\tcolor:$col_blue;\n}\n\n.uploader_box .image_description {\n\tborder-width:1px;\n\tpadding:3px 5px;\n\tbackground:white;\n}\n\n\n.uploader_box .image_action {\n\tfont-size:12px;\n}\n\n.uploader_box .image_action input {\n\twidth:200px;\n\tmargin:0;\n}\n\n.uploader_item_failed_notice {\n\tdisplay:none;\n}\n.uploader_item_failed .uploader_item_failed_notice {\n\tdisplay:inline;\n}\n\n.uploader_item_failed {\n\tcolor:red;\n}\n\n.uploader_item_success .fa-c-delete:hover, .uploader_item_cancel .fa-c-delete:hover {\n\tcolor:$col_orange;\n}","/* Librairies */\n\n@import 'variables';\n@import 'fa';\n@import 'fa-custom';\n@import 'lightbox';\n@import 'common';\n\n/* Container */\n\n#container {\n\tbackground:$col_blue;\n\tpadding:10px 10px 1px;\n}\n\n/* Header */\n\n#header {\n\tpadding:0 0 10px 0;\n\tmargin:0;\n\n\ttable td.cell {\n\t\twidth:50%;\n\t\theight:35px;\n\t\tmargin:0;\n\t}\n\t\n\t.logo {\n\t\tposition:absolute;\n\t\ttop:9px;\n\t\twidth:200px;\n\t\theight:35px;\n\t\tmargin-left:36px;\n\t}\n\t\n\t#query, #search_btn_submit {\n\t\theight:25px;\n\t\tcolor:$col_blue;\n\t\tborder:none;\n\t\tfloat:right;\n\t\tpadding:0 10px;\n\t\tfont-size:15px;\n\t}\n\t\n\t#query {\n\t\tbackground:white;\n\t\twidth:250px;\n\t}\n\t\n\t#search_btn_submit {\n\t\tbackground:$col_bright_blue;\n\t\tborder-left:2px solid $col_blue;\n\t\theight:20px;\n\t\tpadding-top:5px;\n\t}\n\t\n\t#search_btn_submit:hover {\n\t\tbackground-color:$col_orange;\n\t}\n}\n\n/* Main */\n\n#main_container {\n\tbackground:white;\n\t/*padding:10px;*/\n\tmargin-left:30px;\n\tposition:relative;\n\toverflow:hidden;\n\tborder:10px solid white;\n}\n\n#page_title {\n\tmargin-bottom:10px;\n}\n\n#page_title h1 {\n\tmargin:0 -12px 12px;\n\tpadding:12px 10px;\n\twidth:100%;\n\tborder:2px solid $col_blue;\n\tfont-family:Arial;\n\tfont-size:32px;\n\tline-height:32px;\n\tfont-style:italic;\n\tfont-weight:600;\n\t@include gradient-diag($col_bright_blue, #FFFFFF, 25%, 75%);\n}\n\n#page_title h1 #title_feedback {\n\ttext-align: right;\n}\n\n#title_feedback .feedback {\n\tmargin:0;\n\tpadding: 0 5px;\n\tborder:none;\n\tposition:absolute;\n\tright:10px;\n\ttop:14px;\n}\n\n#main {\n\tmargin:0;\n\tpadding:0;\n\toverflow:hidden;\n}\n\n/* Menu */\n\n#menu {\n\tposition:absolute;\n\twidth:20px;\n\tpadding:10px 0;\n\tz-index:10;\n\tborder-right:0 solid $col_blue;\n\t\n\tbackground: $col_bright_blue;\n\tbackground: -moz-linear-gradient(top, $col_bright_blue 0%, #FFFFFF 25%);\n\tbackground: -webkit-gradient(linear, left top, left bottom, color-stop(0%,$col_bright_blue), color-stop(25%,#FFFFFF));\n\tbackground: -webkit-linear-gradient(top, $col_bright_blue 0%,#FFFFFF 25%);\n\tbackground: -o-linear-gradient(top, $col_bright_blue 0%,#FFFFFF 25%);\n\tbackground: -ms-linear-gradient(top, $col_bright_blue 0%,#FFFFFF 25%);\n\tbackground: linear-gradient(to bottom, $col_bright_blue 0%,#FFFFFF 25%);\n\tfilter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$col_bright_blue', endColorstr='#FFFFFF',GradientType=0 );\n}\n#menu.opened {\t\n\tbackground: white;\n\tbackground: -moz-linear-gradient(left, #FFFFFF 75%, rgba(255,255,255,0) 100%);\n\tbackground: -webkit-gradient(linear, left top, right top, color-stop(75%,#FFFFFF), color-stop(100%,rgba(255,255,255,0)));\n\tbackground: -webkit-linear-gradient(left, #FFFFFF 75%,rgba(255,255,255,0) 100%);\n\tbackground: -o-linear-gradient(left, #FFFFFF 75%,rgba(255,255,255,0) 100%);\n\tbackground: -ms-linear-gradient(left, #FFFFFF 75%,rgba(255,255,255,0) 100%);\n\tbackground: linear-gradient(to right, #FFFFFF 75%,rgba(255,255,255,0) 100%);\n\tfilter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FFFFFF', endColorstr='#00ffffff',GradientType=1 );\n}\n\n#menu #menu_title {\n\tposition:relative;\n\tpadding:0;\n\tmargin:21px 0 0 0;\n\ttext-align:center;\n\tcursor:pointer;\n\tfont-size:20px;\n\tline-height:20px;\n\tfont-weight:bold;\n}\n\n#menu #menu_box {\n\tdisplay:none;\n\tcolor:$col_blue;\n\ttext-align:center;\n}\n\n#menu #menu_box ul {\n\tmargin:0;\n\tpadding:0;\n\ttext-align:left;\n\tfont-size: 20px;\n\tlist-style:none;\n}\n\n#menu #menu_box ul li {\n\tmargin:0;\n\tpadding:5px 3px 5px 15px;\n\tlist-style:none;\n\tcursor:pointer;\n\tline-height:20px;\n\theight:20px;\n\tfont-size:20px;\n\ttext-transform:capitalize;\n}\n\n#menu #menu_box ul li:FIRST-CHILD {\n\tpadding-left:5px;\n\tfont-weight: bold;\n}\n\n#menu #menu_box ul li a {\n\tcolor:$col_blue;\n\tdisplay:block;\n\twidth:100%;\n}\n#menu #menu_box ul li:hover a {\n\tcolor:$col_orange;\n}\n\n#menu #menu_box ul li#rss_ln a {\n\tcolor:$col_blue;\n}\n\n#menu #menu_box ul li#quick_code_access_ln input {\n\tborder:2px solid $col_blue;\n\twidth:60px;\n\tpadding:0 5px;\n\tfont-size:16px;\n\tcolor:$col_blue;\n}\n\n#menu #menu_box ul li .fa {\n\tmargin-right:5px;\n}\n\n#menu .useless_button {\n\twidth:0;\n\theight:0;\n\tposition:absolute;\n\tbottom:5px;\n\tleft:5px;\n\tborder:5px solid $col_blue;\n}\n\n/* Welcome */\n\n#welcome #welcome_container {\n\tborder:2px solid $col_blue;\n\tbackground:$col_bright_blue;\n\tpadding:10px;\n}\n\n#welcome p.welcome_text {\n\tfont-weight:bold;\n\tpadding-top:0;\n\tpadding-bottom:5px;\n\tborder-bottom:1px solid #000000;\n\tmargin-bottom:20px;\n}\n\n#welcome #welcome_container ul {\n\tmargin-top:0px;\n}\n\n#welcome #welcome_container ul li {\n\tfont-size:13px;\n\tmargin-top:10px;\n\tfont-weight: bold;\n}\n\n#welcome #welcome_container ul li ul {\n\tfont-size:12px;\n\tmargin-top:2px;\n}\n\n#welcome #welcome_container ul li ul li {\n\tfont-weight:normal;\n}\n\n#welcome #welcome_container ul li:FIRST-CHILD, #welcome #welcome_container ul li ul li {\n\tmargin-top:0px;\n}\n\n#welcome span.milestone {\n\tmargin-left:5px;\n\tpadding:2px 5px;\n\tfont-weight:bold;\n\tborder:1px solid $col_blue;\n\tcursor:pointer;\n\tbackground: #FFFFFF;\n\tbackground: -moz-linear-gradient(top, #FFFFFF 15%, $col_bright_blue 85%);\n\tbackground: -webkit-gradient(linear, left top, left bottom, color-stop(15%,#FFFFFF), color-stop(85%,$col_bright_blue));\n\tbackground: -webkit-linear-gradient(top, #FFFFFF 15%,$col_bright_blue 85%);\n\tbackground: -o-linear-gradient(top, #FFFFFF 15%,$col_bright_blue 85%);\n\tbackground: -ms-linear-gradient(top, #FFFFFF 15%,$col_bright_blue 85%);\n\tbackground: linear-gradient(to bottom, #FFFFFF 15%,$col_bright_blue 85%);\n\tfilter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FFFFFF', endColorstr='$col_bright_blue',GradientType=0 );\n}\n#welcome span.milestone:hover {\n\tcolor:$col_orange;\n\tborder-color:$col_orange;\n\tbackground: -moz-linear-gradient(top, #FFFFFF 15%, $col_bright_orange 85%);\n\tbackground: -webkit-gradient(linear, left top, left bottom, color-stop(15%,#FFFFFF), color-stop(85%,$col_bright_orange));\n\tbackground: -webkit-linear-gradient(top, #FFFFFF 15%,$col_bright_orange 85%);\n\tbackground: -o-linear-gradient(top, #FFFFFF 15%,$col_bright_orange 85%);\n\tbackground: -ms-linear-gradient(top, #FFFFFF 15%,$col_bright_orange 85%);\n\tbackground: linear-gradient(to bottom, #FFFFFF 15%,$col_bright_orange 85%);\n\tfilter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FFFFFF', endColorstr='$col_bright_orange',GradientType=0 );\n}\n#welcome span.milestone .fa {\n\tmargin-right:5px;\n}\n\n#welcome a {\n\ttext-decoration:underline;\n}\n\n/* Add Code */\n\n#add_code_container, #add_code_container input {\n\tfont-size:14px;\n}\n\n#add_code_container table {\n\ttext-align:left;\n}\n\n#add_code_container table tr td {\n\tpadding:5px 5px 5px 0;\n}\n\n#add_code_container table tr td:first-child {\n\tfont-weight: bold;\n}\n\n#add_code_container table tr td.last {\n\tpadding-bottom:0px;\n}\n\n#add_code_container textarea, #edit_container textarea {\n\tmargin:0 -10px;\n\tpadding:10px 6px 10px 10px;\n\twidth:100%;\n\tborder:2px solid $col_blue;\n\tmin-height:100px;\n\theight:300px;\n\tfont-family:courier;\n\tcolor:black;\n\tfont-size:14px;\n}\n\n#add_code_container .loggued {\n\tmargin:0 12px;\n}\n\n#add_code_container input[type=text] {\n\tborder:2px solid $col_blue;\n\twidth:400px;\n\tpadding:5px;\n\tcolor:$col_blue;\n}\n\n#auth_company_container {\n\tdisplay:none;\n}\n\n#add_code_container #add_code_btn {\n\tmargin-top:10px;\n\tfloat:left;\n}\n\n#add_code_container input:hover, #add_code_container input[type=text]:focus {\n\tbackground-color:$col_orange;\n}\n\n#link_result, #available_phrase {\n\tdisplay:none;\n\tborder:2px solid;\n\tmargin-left:15px;\n\tpadding:5px;\n\tfont-size:14px;\n}\n\n#link_result {\n\tcolor:$col_blue;\n\tborder-color:$col_blue;\n}\n\n#available_phrase {\n\tdisplay:none;\n}\n\n#available_phrase.available {\n\tcolor:green;\n\tborder-color:green;\n}\n#available_phrase.unavailable {\n\tcolor:red;\n\tborder-color:red;\n}\n\n/* read code */\n\n#reader {\n\tmargin:0;\n\tpadding:0;\n}\n\n#reader #code_menu {\n\tpadding:0;\n\tmargin:0;\n}\n\n#code_container .code_reader {\n\tmargin:10px 0 0 0;\n\tborder:2px solid $col_blue;\n\tpadding:0;\n\tbackground:#b5b5c6;\n\tbackground:$col_blue;\n}\n\n#reader #code_container .code_reader {\n\tmargin:0;\n}\n\n#code_container .code_reader ol li ::selection {\n\tbackground:#306897;\n\tcolor:#FFFFFF;\n}\n#code_container .code_reader ol li ::-moz-selection {\n\tbackground:#306897;\n\tcolor:#FFFFFF;\n}\n\n#code_container .code_reader .author_box {\n\tbackground:$col_blue;\n\tborder:none;\n\tcolor:white;\n}\n\n#code_container .code_reader .author_box * {\n\tcolor:white;\n}\n\n#code_container .code_reader .tab_left {\n\t/* margin: -13px 0; */\n\tmargin:0;\n\tpadding: 0 0 0 19px;\n\tbackground:#f7efde;\n\tborder:none;\n}\n\n#code_container .code_reader ol {\n\tborder-left: 1px solid #848484;\n\tbackground:white;\n\tmargin:0;\n\t/*list-style-type:decimal-leading-zero;*/\n}\n\n#code_container .code_reader ol li {\n\t/*margin:-1px 0 0 0;*/\n\tmargin:0;\n\tpadding:0;\n\tborder-left:1px dotted #398c8c;\n\tbackground:white;\n\tfont-family:Courier New, Courier;\n\tfont-size:12px;\n\tline-height:12px;\n\ttext-indent:20px;\n\tcolor:#398c8c;\n}\n\n#code_container .code_reader ol li:first-child, #code_container .code_reader ol li:first-child span.expand_line {\n\tpadding-top:5px;\n}\n\n#code_container .code_reader ol li.bigline, #code_container .code_reader ol li.bigline span.expand_line {\n\tpadding-top:5px;\n\tpadding-bottom:5px;\n}\n\n#code_container .code_reader ol li:hover, #code_container .code_reader ol li.code_hover {\n\tbackground-color:$col_bright_blue;\n}\n\n#code_container .code_reader .core {color:#0000ff; text-transform:uppercase;}\n#code_container .code_reader .comment {color:#848484;}\n#code_container .code_reader .number {color:#319cff;}\n#code_container .code_reader .operator {color:#840084;}\n#code_container .code_reader .string {color:#4aa518;text-transform:uppercase;}\n#code_container .code_reader .string span {color:#4aa518;} /* override syntax coloring in strings */\n#code_container .code_reader .field-symbol {color:#848484;}\n#code_container .code_reader .line {color:#848484;}\n#code_container .code_reader .line-number, #code_container .code_reader .line-post-number {color:#398c8c;}\n#code_container .code_reader .global {color:#000000;}\n#code_container .code_reader .expand {font-weight:bold;}\n#code_container .code_reader .comment span.code_part {\n\tcolor:$col_blue;\n\tfont-weight:bold;\n\ttext-transform:capitalize;\n}\n\n#code_container .code_reader pre {\n\twhite-space: pre-wrap; /* css-3 */\n\twhite-space: -moz-pre-wrap !important; /* Mozilla, since 1999 */\n\twhite-space: -pre-wrap; /* Opera 4-6 */\n\twhite-space: -o-pre-wrap; /* Opera 7 */\n\tword-wrap: break-word; /* Internet Explorer 5.5+ */\n\tmargin:0;\n\tpadding:0;\n\tborder:none;\n}\n\n/* Default code line */\n#code_container .code_reader ol li span {\t\n\tcolor:#000000;\n}\n#code_container .code_reader ol li span.code, ol li span.comment {\n\tfont-size:14px;\n\tmargin-left:15px;\n}\n#code_container .code_reader ol li span.comment span, #code_container .code_reader ol li span.code span.comment {\n\tcolor:#848484;\n\ttext-transform:none;\n\tfont-weight:normal;\n}\n\n#code_container .code_reader ol li a.internal_link, #code_container .code_reader ol li a.external_link {\n\tcolor:$col_blue;\n\tborder:none;\n\tfont-weight:normal;\n\ttext-indent:0;\n\ttext-decoration:underline;\n}\n#code_container .code_reader ol li a.internal_link span {\n\tcolor:$col_blue;\n\tfont-weight:normal;\n}\n#code_container .code_reader a.internal_link:hover, #code_container .code_reader a.internal_link:hover span {\n\tcolor:$col_orange;\n}\n\n#code_container .code_reader ol li span.hide span {\n\tcolor:#848484;\n}\n\n/* Expanding */\n#code_container .code_reader ol li span.expand_line {\n\tborder-left:1px solid #424242;\n\tcolor:#424242;\n\ttext-align:center;\n\twidth:5px;\n\tposition:relative;\n}\n\n#reader #code_container .code_reader ol li span.expand_line span:before {\n\tcontent: '';\n\tposition:absolute;\n\tmargin-left:-21px;\n}\n\n#reader #code_container .code_reader ol li span.expand_line input {\n\tposition:absolute;\n\tmargin:3px 0 0 -4px;\n\tcursor:pointer;\n\tpadding:0;\n\tz-index:1000;\n\tbackground: white 0 0 no-repeat;\n\twidth:9px;\n\theight:9px;\n}\n\n#reader #code_container .code_reader ol li span.expand_line input.minus {\n\tbackground-image:url('images/expand_minus.png');\n}\n\n#reader #code_container .code_reader ol li span.expand_line input.plus {\n\tbackground-image:url('images/expand_plus.png');\n}\n\n#reader #code_container .code_reader ol li span.expand_line input:hover {\n\tbackground-position: 0 -9px;\n}\n\n#edit_container {\n\tdisplay:none;\n\tmargin-bottom:10px;\n}\n\n#edit_container textarea {\n\tmargin-top:10px;\n\tmargin-bottom:20px;\n\theight:200px;\n}\n\n#edit_container #edit_btn {\n\tmargin-left:-10px;\n}\n\n/* Search */\n\n#search .summary {\n\tmargin: 10px 0 0px 5px;\n\tfont-size:14px;\n\tfont-style: italic;\n}\n\n#search .code_reader:hover .tab_left, \n#search .code_reader:hover ol, \n#search .code_reader:hover li {\n\tbackground-color:$col_bright_blue;\n\tcursor:pointer;\n}\n\n#search .step_box {\n\tmargin-bottom:10px;\n}\n\n#search #repeat_query {\n\tpadding-bottom: 6px;\n}\n\n#search #sub_button_box {\n\tdisplay:inline;\n}\n\n/* Profile */\n\n#profile #avatar {\n\twidth:96px;\n\theight:96px;\n\tbackground:url(\"images/avatar_96.png\") 0 0 no-repeat;\n\tborder:2px solid $col_blue;\n\tfloat:left;\n}\n\n#profile #profile_company_logo {\n\twidth:24px;\n\theight:24px;\n\tvertical-align:middle;\n\tmargin-right:5px;\n}\n\n#profile .user {\n\tmargin-left:110px; /* 96 (picture) + 10 (margin) + 4 (borders) */\n\tpadding:10px 16px;\n\theight:76px; /* 96 (picture height) - 20 (padding) */\n\tborder:2px solid $col_blue;\n\tbackground:$col_bright_blue;\n}\n\n#profile .user .fa {\n\tmargin-right:2px;\n}\n\n#profile .user p {\n\tfont-size:16px;\n\tline-height:25px;\n}\n\n#profile .user p span {\n\tfont-weight:bold;\n}\n\n#profile .user_history_title {\n\tmargin:30px 0 0 0 ;\n\tpadding:0 10px 0 25px;;\n\tfont-size:25px;\n\tcolor:$col_blue;\n\tborder-bottom:2px solid $col_blue;\n\tbackground:url(images/logo_25.png) 0 1px no-repeat;\n}\n\n#profile #history_subbox {\n\tmargin-top:10px;\n\tborder:2px solid $col_blue;\n}\n\n#profile #user_history p.history_line {\n\tpadding:5px 10px;\n\tfont-size:14px;\n}\n#profile #user_history p.history_line:nth-child(odd) {\n\tbackground:$col_bright_blue;\n}\n#profile #user_history p.history_line:nth-child(even) {\n\tbackground:#FFFFFF;\n}\n#profile #user_history p.history_line:FIRST-CHILD {\n\t-moz-border-radius-topleft: 10px;\n\t-moz-border-radius-topright: 10px;\n\t-khtml-border-top-left-radius: 10px;\n\t-khtml-border-top-right-radius: 10px;\n\t-webkit-border-top-left-radius: 10px;\n\t-webkit-border-top-right-radius: 10px;\n\tborder-top-left-radius: 10px;\n\tborder-top-right-radius: 10px;\n}\n#profile #user_history p.history_line:LAST-CHILD {\n\t-moz-border-radius-bottomright: 10px;\n\t-moz-border-radius-bottomleft: 10px;\n\t-khtml-border-bottom-left-radius: 10px;\n\t-khtml-border-bottom-right-radius: 10px;\n\t-webkit-border-bottom-right-radius: 10px;\n\t-webkit-border-bottom-left-radius: 10px;\n\tborder-bottom-right-radius: 10px;\n\tborder-bottom-left-radius: 10px;\n}\n#profile #user_history p.history_line .fa {\n\tmargin-left:5px;\n\tmargin-right:5px;\n}\n\n#profile #user_history a {\n\ttext-decoration:underline;\n}\n\n/* Article */\n\n#article .loading_box {\n\tfont-size:16px;\n}\n\n/* Chat */\n\n#chat #chat_room {\n\tmargin-right:175px; /* 165px + 10px (margin-left) */\n\tborder:2px solid $col_blue;\n\tbackground:white;\n\theight:100%;\n}\n\n.g_white_transparent {\n\tbackground: #000000 url(\"images/grad_white_transparent_50.png\") repeat-x top;\n\t/*-o-background-size: 100% 100%;\n\t-moz-background-size: 100% 100%;\n\t-webkit-background-size: 100% 100%;\n\tbackground-size: 100% 100%;\n\tbackground: -moz-linear-gradient(\n\t\ttop,\n\t\t#FFFFFF,\n\t\trgba(255,255,255,0)\n\t);\n\tbackground: -webkit-gradient(\n\t\tlinear,\n\t\tleft top, left bottom,\n\t\tfrom(#FFFFFF),\n\t\tto(rgba(255,255,255,0))\n\t);*/\n}\n\n#chat #chat_room #chat_shades {\n\tposition:absolute;\n\twidth:0;\n\tleft:18px;\n\tmargin-top:5px;\n\theight:50px;\n\tbackground: url(\"images/grad_white_transparent_50.png\") repeat-x top;\n}\n\n#chat #chat_room #chat_container {\n\tclear:both;\n\tmargin:5px 5px 0;\n}\n#chat #chat_room #chat_container #chat_messages_box {\n\tposition:relative;\n\theight:20px;\n\toverflow:hidden;\n\tbackground:white url(\"images/sap_gold_332.jpg\") 50% 50% no-repeat;\n}\n\n#chat #chat_room #chat_container #chat_messages {\n\tposition:absolute;\n\tleft:0;\n\ttop:0;\n\tlist-style:none;\n\tbackground:rgba(255,255,255,0.7);\n\twidth:100%;\n}\n\n.noSelect {\n\tuser-select: none; -o-user-select: none; -moz-user-select: none; -khtml-user-select: none; -webkit-user-select: none;\n}\n\n#chat_messages p {\n\tcolor:$col_blue;\n}\n#chat_messages p img.proxy {\n\tvertical-align:middle;\n\tborder:1px solid $col_blue;\n\tpadding:5px;\n\tbackground:#FFFFFF;\n}\n#chat_messages p.U {\n\t/*background-color:white;*/\n}\n#chat_messages p.A, #chat_messages p.PA, #chat_messages p.E, #chat_messages p.PE, #chat_messages p.N {\n\tbackground-color:$col_bright_blue;\n\tfont-style:italic;\n}\n#chat_messages p.C {\n\tcolor:#CCC;\n\ttext-decoration:none;\n\tfont-style:normal;\n}\n#chat_messages p span.time {\n\tcolor:$col_orange;\n\tfont-size:10px;\n\tfont-style:normal;\n}\n#chat_messages p a.user, #chat_messages p span.console {\n\tfont-size:12px;\n\tfont-weight:bold;\n\tcolor:$col_blue;\n}\n#chat_messages p a.user {\n\tmargin-left:5px;\n}\n#chat_messages p a.user:hover {\n\ttext-decoration:underline;\n}\n#chat_messages p span.text {\n\tmargin-left:5px;\n\tfont-size:13px;\n}\n#chat_messages p span.action {\n\tfont-style:italic;\n}\n#chat_messages p span.text a {\n\ttext-decoration:underline;\n\tfont-style:normal;\n}\n#chat_messages p span.text a:visited {\n\tcolor:grey;\n}\n#chat_messages p span.highlight {\n\tcolor:red;\n}\n#chat_messages p span.chan_link {\n\tfont-weight:bold;\n}\n#chat_messages p span.news {\n\tfont-weight:bold;\n}\n\n#chat_messages .help {\n\tborder:1px dashed #666666;\n\tpadding:0 0 5px 0;\n\tmargin:5px 0;\n\tbackground:white;\n}\n#chat_messages .help p {\n\tpadding:0 5px;\n\tcolor:#666666;\n\tfont-size:10px; \n}\n#chat_messages .help p.title {\n\tfont-size:14px;\n\tpadding:3px 5px;\n\tborder-bottom:1px dashed #666666;\n\tletter-spacing:0;\n\tdisplay: inline-block;\n\twidth:calc(50% - 10px);\n\tfloat:left;\n}\n#chat_messages .help p.subtitle {\n\tmargin-top:5px;\n\tfont-size:12px;\n}\n#chat_messages .help p.item {\n\tmargin-top:1px;\n}\n#chat_messages .help p.subtitle span {\n\tfont-style:italic;\n\tborder-bottom:1px dashed #666666;\n}\n#chat_messages .help p span.key {\n\tfont-weight:bold;\n\tmargin-right:5px;\n}\n\n#chat #chat_input {\n\tmargin:5px;\n\tpadding:0 5px;\n\tbackground:$col_blue;\n}\n\n#chat #chat_input .fa {\n\tcolor:$col_bright_blue;\n\tmargin-right:2px;\n}\n\n#chat #chat_input input#message {\n\tcolor:white;\n\tmargin:0;\n\tpadding:7px 0;\n\tborder:none;\n\tmin-width:200px;\n\tfont-size:13px;\n\tline-height:13px;\n}\n\n#chat #chat_input input#message:hover, #chat #chat_input input#message:focus {\n\tbackground-color:transparent;\n}\n\n#chat #sidebar {\n\tposition:absolute;\n\tright:0;\n\twidth:165px;\n}\n\n#chat #sidebar div {\n\tpadding:5px;\n}\n\n#chat #sidebar .sidebar_box {\n\tposition:relative;\n\tborder:2px solid $col_blue;\n\tfont-weight:bold;\n\tpadding:0;\n\tmargin-bottom:10px;\n}\n\n#chat #sidebar .sidebar_box_title {\n\tbackground-color:$col_bright_blue;\n\ttext-align:center;\n}\n\n#chat #sidebar .sidebar_box_content {\n\tborder-top:2px solid $col_blue;\n\tfont-size:12px;\n\tfont-weight:normal;\n}\n\n#chat #sidebar .help_paperclip {\n\tbackground: transparent url('images/ms_paperclip_112.jpg') 50% 50% no-repeat;\n\theight:109px;\n}\n\n#chat #sidebar .sidebar_box_content p {\n\tpadding:3px 0;\n\toverflow: hidden;\n}\n\n#chat #sidebar .sidebar_box_content p span.key {\n\tfont-weight:bold;\n\tpadding-right: 5px;\n}\n\n#chat #sidebar p.connected_user {\n\tfont-size:16px;\n}\n#chat #sidebar a.connected_user_logo img {\n\tvertical-align:middle;\n}\n#chat #sidebar a.connected_user_name {\n\tdisplay:inline-block;\n\twidth:calc(100% - 24px - 5px); /* logo + right margin */\n\tfont-style:italic;\n\tfont-weight:normal;\n\tcolor:$col_blue;\n\ttext-decoration:underline;\n\tmargin-left:5px;\n}\n#chat #sidebar a.connected_user:hover {\n\tcolor:$col_orange;\n}\n\n#chat .afk {\n\tposition:absolute;\n\tfont-size:20px;\n\tline-height:20px;\n\ttext-shadow: 1px 1px 1px $col_bright_blue;\n\tmargin-left:-20px;\n\tmargin-top:2px; /* (24 - 20)/2 */\n}\n\n#chat #chat_chan {\n\tmargin-bottom: -2px;\n}\n\n#chat #chat_chan .tab_bar {\n\tfont-weight:bold;\n\ttext-align:right;\n\tmargin:0 184px 0 0; /* 165px + the round corner */\n}\n\n#chat #chat_chan .tab_bar span.chan {\n\tdisplay: inline-block;\n\tbackground-color:$col_bright_blue;\n \tpadding:2px 8px;\n \tborder:2px solid $col_blue;\n \tmargin-left:5px;\n\tcolor:$col_blue;\n}\n\n#chat #chat_chan .tab_bar span#join_chan {\n\tpadding:2px;\n\tborder-bottom:$col_blue;\n}\n#chat #chat_chan .tab_bar span#join_chan:hover #join_chan_button {\n\tcolor:$col_orange;\n}\n#chat #chat_chan .tab_bar span.chan:hover, #chat #chat_chan .tab_bar span#join_chan.active {\n\tbackground-color:$col_blue;\n\tcolor:#FFFFFF;\n}\n#chat #chat_chan .tab_bar span.chan span.chan_title {\n \ttext-transform:capitalize;\n}\n#chat #chat_chan .tab_bar span.chan span.chan_unread {\n \tfont-weight:normal;\n \tfont-style:italic;\n}\n#chat #chat_chan .tab_bar a.quit_chan {\n\tmargin-left:5px;\n\tcolor:$col_blue;\n}\n#chat #chat_chan .tab_bar span.chan.active:hover a.quit_chan {\n\tcolor:$col_blue;\n}\n#chat #chat_chan .tab_bar span.chan:hover a.quit_chan {\n\tcolor:$col_bright_blue;\n}\n#chat #chat_chan .tab_bar span.chan a.quit_chan:hover,\n#chat #chat_chan .tab_bar .fa:hover {\n\tcolor:$col_orange;\n}\n\n#chat #chat_chan .tab_bar span#join_chan input, #chat #chat_chan .tab_bar span#join_chan input:hover {\n\tborder:none;\n\tfont-size:14px;\n\tpadding:0;\n\tmargin:0;\n\twidth:70px;\n\tbackground-color:$col_blue;\n\tcolor:white;\n\tfont-weight:bold;\n}\n#chat #chat_chan .tab_bar span.active, #chat #chat_chan .tab_bar span.active:hover {\n\tborder-bottom-color: #FFFFFF;\n\tbackground-color: #FFFFFF;\n\tcolor:#000000;\n}\n\n#chat #chat_chan .tab_bar span.light_up {\n\tbackground-color:$col_orange;\n}\n\n#chat #sidebar #news, #chat #sidebar #news p {\n\tpadding:0;\n}\n#chat #sidebar #news .new {\n\tpadding:6px 5px;\n}\n#chat #news .new:nth-child(even) {\n\tbackground:$col_brighter_blue;\n}\n#chat #news .new:nth-child(odd) {\n\tbackground:$col_bright_blue;\n}\n#chat #news .new:last-child {\n\t-moz-border-radius:0 0 10px 10px;\n\t-webkit-border-radius:0 0 10px 10px;\n\t-khtml-border-radius:0 0 10px 10px;\n\tborder-radius:0 0 10px 10px;\n}\n#chat #news .new .signature {\n\tfont-size: 0.75em;\n\ttext-align: right;\n}\n#chat #news .new .signature .news_time {\n\tfont-style:italic;\n}\n\n/* Options */\n\n#options .options_box {\n\tbackground:$col_bright_blue;\n\tborder:2px solid $col_blue;\n\twidth:490px;\n\tfloat:left;\n\tmargin:0 10px 10px 0;\n\tpadding:10px;\n}\n\n#options .options_box .loading {\n\tpadding:10px;\n}\n\n#options .options_box h2 {\n\tcolor:$col_blue;\n\tfont-size:20px;\n\tmargin:0 0 10px 0;\n\tborder-bottom:2px solid $col_blue;\n}\n\n#options .options_box .option_line {\n\tmargin:10px 0;\n}\n\n#options .options_box input[type=text], #options .options_box input[type=password], #options .options_box select {\n\tfont-size:14px;\n\tbackground:white;\n\tborder-width:1px;\n\tfont-size:14px;\n\tpadding:5px;\n\tfloat:right;\n}\n\n#options .options_box .button {\n\tfloat:left;\n\tclear:both;\n}\n\n#options .options_box select {\n\tborder:1px solid $col_blue;\n\tcolor:$col_blue;\n}\n\n#options .options_box .option_line p {\n\tfloat:left;\n\twidth:250px;\n\tpadding:5px 0;\n\tmargin:5px 0;\n}\n\n/* Procedure */\n\n#procedure #procedure_steps .button {\n\tbackground-color:white;\n}\n\n#procedure #procedure_steps .button:hover {\n\tbackground-color:$col_orange\n}\n\n#titles_read p.read_title {\n\tborder-bottom:1px solid $col_blue;\n\tfont-weight:bold;\n}\n\n#titles_read p.read_details {\n\tfont-size:12px;\n\tfont-style:italic;\n\tmargin:3px 0 15px 0;\n}\n\n#titles_read p.read_description {\n\tfont-size:14px;\n}\n\n#titles_read p.read_description .fa {\n\tmargin-right:5px;\n}\n\n#procedure table.step_box {\n\twidth:100%;\n}\n\n#procedure table.step_box td {\n\ttext-align:left;\n\tmargin:0;\n}\n\n#procedure table.step_box td.step_margin {\n\twidth:50%;\n}\n\n#procedure table.step_box td.step_buttons {\n\tpadding-top:10px;\n}\n\n#procedure table.step_box td.image_box_container {\n\tvertical-align:top;\n\tpadding-top:18px;\n\tpadding-left:22px; /* 5*2 (padding) + 1*2 (border) + 10 (own padding) */\n\tmin-width:350px;\n}\n\n#procedure table.step_box .image_box {\n\tmargin:10px 0 15px;\n\tpadding:0;\n}\n\n#procedure table.step_box input[type=file] {\n\tmargin:0 10px;\n\tmax-width:250px;\n\tborder:1px solid $col_blue;\n\tbackground:white;\n}\n\n#procedure #bottom_menu {\n\tmargin:10px 0 0 0;\n}\n\n#procedure #top_menu {\n\tmargin:0 0 10px 0;\n}\n\n#procedure #validation_button .button {\n\tmargin-right:10px;\n}\n\n/* Procedure - Read */\n\n#procedure .thumbnail_box {\n\tmargin:10px 0;\n\theight: 100px;\n}\n\n#procedure .thumbnail_image {\n\tbackground:white;\n\tborder:1px solid $col_blue;\n\twidth:100px;\n\theight:100px;\n\tvertical-align:middle;\n}\n#procedure .thumbnail_image:hover {\n\tborder-color:$col_orange;\n}\n\n#procedure .thumbnail_desc {\n\tfont-size:12px;\n}\n\n/* Procedure - Uploader */\n\n#procedure .error {\n\tmargin:0 0 15px 0;\n}\n\n#procedure .uploader_box .error {\n\tfont-size:12px;\n\tmargin:10px 0;\n}\n\n/* Doc */\n\n#doc_container, #doc {\n\tmargin:0;\n\tpadding:0;\n}\n\n#doc .step_box {\n\tmargin-bottom:10px;\n}\n\n#doc #attach_file {\n\tmargin-top:10px;\n}\n\n#doc .uploader_droparea {\n\theight:150px;\n}\n\n#doc #doc_links {\n\tpadding:20px 10px 10px 0px;\n}\n\n/* Table */\n\n#table #system {\n\twidth:80px;\n}\n\n#table input#title {\n\twidth:20%;\n}\n#table input#description {\n\twidth:calc(80% - 92px);\n}\n\n#table .step_box_title a {\n\tcolor:$col_blue;\n}\n\n#table #validation {\n\tmargin-top:15px;\n}\n\n#table .table_info {\n\tmargin-top:20px;\n\tfont-size:0.8em;\n}\n\n#table #read_title {\n\tfont-weight: bold;\n}\n\n#table #read_description {\n\tfont-style: italic;\n}\n\n#table #read_formated_keywords {\n\tmargin:10px 0 0 0;\n\tfont-size: 0.9em;\n}\n\n#table #read_formatted_keywords a.internal_link {\n\tpadding:0 0 0 2px;\n}\n\n#table input:disabled {\n\tcolor:$col_bright_blue;\n\tbackground-color:$col_blue;\n}\n\n#table .form_success {\n\tdisplay: none;\n}\n\n/* List */\n\n#filters_container {\n\tmargin-bottom:10px;\n}\n\n#list_container div:FIRST-CHILD {\n\tmargin-top:0;\n}\n\n/* 404 */\n\n#err_404 p {\n\tmargin-top:20px;\n\tcolor:$col_blue;\n}\n\n/* Footer */\n\n#footer {\n\tpadding-right:10px;\n\ttext-align:right;\n}\n\n#footer p, #footer a {\n\tcolor:white;\n\tmargin:0;\n\tfont-size:9px;\n}\n\n#footer a {\n\tfont-weight:bold;\n}\n\n/* Log Out */\n\n#logout p {\n\tfont-size:18px;\n\tcolor:$col_blue;\n\tmargin-top:25px;\n}\n\n/* Note */\n\n#note {\n\theight:100%;\n}\n\n#note_frame {\n\twidth:calc(100% - 4px);\n\theight:calc(100% - 4px);\n\tborder: 2px solid $col_blue;\n\tmargin: 0;\n\toverflow: hidden;\n}\n\n#note_form {\n\tmargin-bottom: 10px;\n}\n\n#note_form a.button {\n\tpadding:5px 7px;\n}\n\n/* Debug*/\n\n.line_h {\n\tposition:fixed;\n\ttop:0;\n\theight:1px;\n\twidth:100%;\n\tborder-bottom:1px solid red;\n\tz-index: 1000;\n}\n.line_v {\n\tposition:fixed;\n\tleft:0;\n\theight:100%;\n\twidth:1px;\n\tborder-left:1px solid red;\n\tz-index: 1000;\n}"],
"names": [],
"file": "databap.css"
}
diff --git a/style/logon.css b/style/logon.css
index b5141b2..f566364 100755
--- a/style/logon.css
+++ b/style/logon.css
@@ -1,1194 +1,4 @@
-@charset "UTF-8";
-/* Librairies */
-@CHARSET "UTF-8";
-/*!
+@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 PATH
- * -------------------------- */
-@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; }
-/* line 14, _fa.scss */
-.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; }
-
-/* makes the font 33% larger relative to the icon container */
-/* line 24, _fa.scss */
-.fa-lg {
- font-size: 1.33333333em;
- line-height: 0.75em;
- vertical-align: -15%; }
-
-/* line 29, _fa.scss */
-.fa-2x {
- font-size: 2em; }
-
-/* line 32, _fa.scss */
-.fa-3x {
- font-size: 3em; }
-
-/* line 35, _fa.scss */
-.fa-4x {
- font-size: 4em; }
-
-/* line 38, _fa.scss */
-.fa-5x {
- font-size: 5em; }
-
-/* line 41, _fa.scss */
-.fa-fw {
- width: 1.28571429em;
- text-align: center; }
-
-/* line 45, _fa.scss */
-.fa-ul {
- padding-left: 0;
- margin-left: 2.14285714em;
- list-style-type: none; }
-
-/* line 50, _fa.scss */
-.fa-ul > li {
- position: relative; }
-
-/* line 53, _fa.scss */
-.fa-li {
- position: absolute;
- left: -2.14285714em;
- width: 2.14285714em;
- top: 0.14285714em;
- text-align: center; }
-
-/* line 60, _fa.scss */
-.fa-li.fa-lg {
- left: -1.85714286em; }
-
-/* line 63, _fa.scss */
-.fa-border {
- padding: .2em .25em .15em;
- border: solid 0.08em #eeeeee;
- border-radius: .1em; }
-
-/* line 68, _fa.scss */
-.pull-right {
- float: right; }
-
-/* line 71, _fa.scss */
-.pull-left {
- float: left; }
-
-/* line 74, _fa.scss */
-.fa.pull-left {
- margin-right: .3em; }
-
-/* line 77, _fa.scss */
-.fa.pull-right {
- margin-left: .3em; }
-
-/* line 80, _fa.scss */
-.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); } }
-/* line 120, _fa.scss */
-.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); }
-
-/* line 128, _fa.scss */
-.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); }
-
-/* line 136, _fa.scss */
-.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); }
-
-/* line 144, _fa.scss */
-.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); }
-
-/* line 152, _fa.scss */
-.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); }
-
-/* line 160, _fa.scss */
-.fa-stack {
- position: relative;
- display: inline-block;
- width: 2em;
- height: 2em;
- line-height: 2em;
- vertical-align: middle; }
-
-/* line 168, _fa.scss */
-.fa-stack-1x,
-.fa-stack-2x {
- position: absolute;
- left: 0;
- width: 100%;
- text-align: center; }
-
-/* line 175, _fa.scss */
-.fa-stack-1x {
- line-height: inherit; }
-
-/* line 178, _fa.scss */
-.fa-stack-2x {
- font-size: 2em; }
-
-/* line 181, _fa.scss */
-.fa-inverse {
- color: #ffffff; }
-
-/* Font Awesome */
-/* line 3, _fa-custom.scss */
-.fa-inline {
- margin-right: 5px; }
-
-/*
-size +0% +10% +20% +30% +40% +50% +60%
-font-size 1em 1.111em 1.222em 1.333em 1.444em 1.555em 1.666em
-line-height 1em 0.917em 0.833em 0.750em 0.666em 0.583em 0.500em
-vertical-align 0% -5% -10% -15% -20% -25% -30%
-*/
-/* line 14, _fa-custom.scss */
-.fa-10 {
- font-size: 1.1111111111111111em;
- line-height: 0.9166666666666666em;
- vertical-align: -5%; }
-
-/* line 19, _fa-custom.scss */
-.fa-20 {
- font-size: 1.2222222222222222em;
- line-height: 0.8333333333333333em;
- vertical-align: -10%; }
-
-/* line 24, _fa-custom.scss */
-.fa-30 {
- font-size: 1.3333333333333333em;
- line-height: 0.75em;
- vertical-align: -15%; }
-
-/* line 29, _fa-custom.scss */
-.fa-40 {
- font-size: 1.4444444444444444em;
- line-height: 0.6666666666666666em;
- vertical-align: -20%; }
-
-/* line 34, _fa-custom.scss */
-.fa-60, a.button .fa {
- font-size: 1.6666666666666666em;
- line-height: 0.5em;
- vertical-align: -30%; }
-
-/* line 40, _fa-custom.scss */
-.fa-c-c:before, .fa-c-code:before {
- content: "\f121"; }
-
-/* line 44, _fa-custom.scss */
-.fa-c-procedure:before, .fa-c-proc:before, .fa-c-p:before {
- content: "\f0cb"; }
-
-/* line 48, _fa-custom.scss */
-.fa-c-table:before, .fa-c-t:before {
- content: "\f0ce"; }
-
-/* line 52, _fa-custom.scss */
-.fa-c-documentation:before, .fa-c-doc:before, .fa-c-d:before {
- content: "\f15b"; }
-
-/* line 56, _fa-custom.scss */
-.fa-c-article:before, .fa-c-art:before, .fa-c-a:before {
- content: "\f14c"; }
-
-/* line 60, _fa-custom.scss */
-.fa-c-note:before {
- content: "\f0fa"; }
-
-/* line 64, _fa-custom.scss */
-.fa-c-list:before {
- content: "\f02d"; }
-
-/* line 68, _fa-custom.scss */
-.fa-c-profile:before {
- content: "\f007"; }
-
-/* line 72, _fa-custom.scss */
-.fa-c-chat:before {
- content: "\f086"; }
-
-/* line 76, _fa-custom.scss */
-.fa-c-news:before {
- content: "\f0e7"; }
-
-/* line 80, _fa-custom.scss */
-.fa-c-version:before {
- content: "\f005"; }
-
-/* line 84, _fa-custom.scss */
-.fa-c-details:before {
- content: "\f112"; }
-
-/* line 88, _fa-custom.scss */
-.fa-c-bug:before {
- content: "\f188"; }
-
-/* line 92, _fa-custom.scss */
-.fa-c-date:before {
- content: "\f073"; }
-
-/* line 96, _fa-custom.scss */
-.fa-c-git:before {
- content: "\f1d3"; }
-
-/* line 100, _fa-custom.scss */
-.fa-c-afk:before {
- content: "\f017"; }
-
-/* line 104, _fa-custom.scss */
-.fa-c-comment {
- color: #04357B; }
-
-/* line 107, _fa-custom.scss */
-.fa-c-comment:before {
- content: "\f075"; }
-
-/* line 111, _fa-custom.scss */
-.fa-c-options:before {
- content: "\f085"; }
-
-/* line 115, _fa-custom.scss */
-.fa-c-param:before {
- content: "\f1de"; }
-
-/* line 119, _fa-custom.scss */
-.fa-c-wip:before {
- content: "\f013"; }
-
-/* line 123, _fa-custom.scss */
-.fa-c-rss:before {
- content: "\f09e"; }
-
-/* line 127, _fa-custom.scss */
-.fa-c-logmeout:before, .fa-c-logout:before {
- content: "\f08b"; }
-
-/* line 131, _fa-custom.scss */
-.fa-c-fold {
- color: #04357B; }
-
-/* line 134, _fa-custom.scss */
-.fa-c-fold:before {
- content: "\f191"; }
-
-/* line 138, _fa-custom.scss */
-.fa-c-success:before, .fa-c-ok:before, .available .fa:before {
- content: "\f00c"; }
-
-/* line 142, _fa-custom.scss */
-.fa-c-warning {
- color: #EFAB00; }
-
-/* line 145, _fa-custom.scss */
-.fa-c-warning:before {
- content: "\f071"; }
-
-/* line 149, _fa-custom.scss */
-.fa-c-error {
- color: red; }
-
-/* line 152, _fa-custom.scss */
-.fa-c-error:before {
- content: "\f071"; }
-
-/* line 156, _fa-custom.scss */
-.fa-c-ko {
- color: red; }
-
-/* line 159, _fa-custom.scss */
-.fa-c-ko:before, .unavailable .fa:before {
- content: "\f00d"; }
-
-/* line 163, _fa-custom.scss */
-.fa-c-search:before {
- content: "\f002"; }
-
-/* line 167, _fa-custom.scss */
-.fa-c-welcome:before {
- content: "\f015"; }
-
-/* line 171, _fa-custom.scss */
-.fa-c-loading:before {
- content: "\f110"; }
-
-/* line 175, _fa-custom.scss */
-.fa-c-edit:before {
- content: "\f040"; }
-
-/* line 179, _fa-custom.scss */
-.fa-c-save:before {
- content: "\f0c7"; }
-
-/* line 183, _fa-custom.scss */
-.fa-c-raw:before {
- content: "\f15c"; }
-
-/* line 187, _fa-custom.scss */
-.fa-c-print:before {
- content: "\f02f"; }
-
-/* line 191, _fa-custom.scss */
-.fa-c-share:before {
- content: "\f0ac"; }
-
-/* line 195, _fa-custom.scss */
-.fa-c-refresh:before, .fa-c-switch:before {
- content: "\f021"; }
-
-/* line 199, _fa-custom.scss */
-.fa-c-plus:before, .fa-c-add:before {
- content: "\f055"; }
-
-/* line 203, _fa-custom.scss */
-.fa-c-minus:before, .fa-c-delete:before {
- content: "\f056"; }
-
-/* line 207, _fa-custom.scss */
-.fa-c-up:before {
- content: "\f01b"; }
-
-/* line 211, _fa-custom.scss */
-.fa-c-down:before {
- content: "\f01a"; }
-
-/* line 215, _fa-custom.scss */
-.fa-c-next:before {
- content: "\f054"; }
-
-/* line 219, _fa-custom.scss */
-.fa-c-prev:before {
- content: "\f053"; }
-
-/* line 223, _fa-custom.scss */
-.fa-c-close:before {
- content: "\f05c"; }
-
-/* line 227, _fa-custom.scss */
-.fa-c-desc:before {
- content: "\f05a"; }
-
-/* line 231, _fa-custom.scss */
-.fa-c-company:before {
- content: "\f0f7"; }
-
-/* line 235, _fa-custom.scss */
-.fa-c-name:before {
- content: "\f02b"; }
-
-/* line 239, _fa-custom.scss */
-.fa-c-assignment:before {
- content: "\f0b1"; }
-
-/* line 243, _fa-custom.scss */
-.fa-c-lock:before {
- content: ""; }
-
-/* line 247, _fa-custom.scss */
-.fa-c-search:before {
- content: "\f002"; }
-
-/* line 251, _fa-custom.scss */
-.fa-c-mail:before {
- content: "\f0e0"; }
-
-/* line 255, _fa-custom.scss */
-.fa-c-upcoming:before {
- content: "\f135"; }
-
-/* line 259, _fa-custom.scss */
-.fa-c-changelog:before {
- content: "\f0d0"; }
-
-/* line 263, _fa-custom.scss */
-.fa-c-checked:before {
- content: "\f046"; }
-
-/* line 267, _fa-custom.scss */
-.fa-c-unchecked:before {
- content: "\f096"; }
-
-/* line 271, _fa-custom.scss */
-.fa-c-kpi:before {
- content: "\f0e4"; }
-
-/* line 275, _fa-custom.scss */
-.fa-c-file-xls, .fa-c-file-xlsx {
- color: #247648; }
-
-/* line 278, _fa-custom.scss */
-.fa-c-file-xls:before, .fa-c-file-xlsx:before {
- content: "\f1c3"; }
-
-/* line 282, _fa-custom.scss */
-.fa-c-file-doc, .fa-c-file-docx {
- color: #2B5796; }
-
-/* line 285, _fa-custom.scss */
-.fa-c-file-doc:before, .fa-c-file-docx:before {
- content: "\f1c2"; }
-
-/* line 289, _fa-custom.scss */
-.fa-c-file-ppt, .fa-c-file-pptx {
- color: #D04423; }
-
-/* line 292, _fa-custom.scss */
-.fa-c-file-ppt:before, .fa-c-file-pptx:before {
- content: "\f1c4"; }
-
-/* line 296, _fa-custom.scss */
-.fa-c-file-pdf {
- color: #D20F0B; }
-
-/* line 299, _fa-custom.scss */
-.fa-c-file-pdf:before {
- content: "\f1c1"; }
-
-/* line 303, _fa-custom.scss */
-.fa-c-file-zip:before {
- content: "\f1c6"; }
-
-/* line 307, _fa-custom.scss */
-.fa-c-file-png:before, .fa-c-file-gif:before, .fa-c-file-jpg:before, .fa-c-file-jpeg:before {
- content: "\f1c5"; }
-
-/* Standard Tags */
-/* line 3, _common.scss */
-body, html {
- background: white;
- font-family: Verdana, Arial;
- color: #04357B;
- background: #04357B;
- padding: 0;
- margin: 0;
- min-width: 1024px; }
-
-/* line 13, _common.scss */
-table {
- border: none;
- background: none;
- text-align: center;
- margin: 0;
- padding: 0;
- border-spacing: 0; }
-
-/* line 22, _common.scss */
-table td {
- padding: 0; }
-
-/* line 26, _common.scss */
-input, textarea, select {
- font-family: Verdana, Arial;
- font-size: 12px;
- background: none;
- border: none; }
-
-/* line 32, _common.scss */
-input[type=text], input[type=password] {
- border: 2px solid #04357B;
- padding: 5px;
- width: 200px; }
-
-/* line 38, _common.scss */
-input[type=button]:hover, input[type=submit]:hover, input[type=password]:hover, input[type=text]:hover, input[type=text]:focus {
- background-color: #EFAB00; }
-
-/* line 42, _common.scss */
-input[disabled="disabled"], textarea[disabled="disabled"], input:disabled, textarea:disabled {
- background-color: #D9E5F2;
- border-color: #D9E5F2;
- border: 2px solid #04357B; }
-
-/* line 48, _common.scss */
-input[disabled="disabled"]:hover, textarea[disabled="disabled"]:hover, input:disabled:hover, textarea:disabled:hover {
- background-color: #D9E5F2; }
-
-/* line 52, _common.scss */
-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; }
-
-/* line 56, _common.scss */
-input[type=button], .clickable {
- cursor: pointer; }
-
-/* line 60, _common.scss */
-select {
- background: white;
- border: 2px solid #04357B;
- padding: 5px;
- color: #04357B;
- margin: 0; }
-
-/* line 68, _common.scss */
-textarea {
- min-height: 30px; }
-
-/* line 72, _common.scss */
-input, select, textarea, h1, h2, h3, h4, p, a {
- color: #04357B; }
-
-/* line 76, _common.scss */
-p {
- margin: 0;
- padding: 0; }
-
-/* line 81, _common.scss */
-a, a:visited {
- text-decoration: none; }
-
-/* line 85, _common.scss */
-a:active, a:focus, input:active, input:focus {
- outline: none; }
-
-/* line 89, _common.scss */
-img {
- border: none; }
-
-/* Functions */
-/* Classes */
-/* line 108, _common.scss */
-.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; }
-
-/* line 114, _common.scss */
-.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; }
-
-/* line 120, _common.scss */
-.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; }
-
-/* line 126, _common.scss */
-.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; }
-
-/* line 132, _common.scss */
-.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; }
-
-/* line 138, _common.scss */
-.round {
- -moz-border-radius: 10px;
- -webkit-border-radius: 10px;
- -khtml-border-radius: 10px;
- border-radius: 10px; }
-
-/* line 144, _common.scss */
-.tiny_round {
- -moz-border-radius: 5px;
- -webkit-border-radius: 5px;
- -khtml-border-radius: 5px;
- border-radius: 5px; }
-
-/* line 150, _common.scss */
-.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; }
-
-/* line 157, _common.scss */
-.inc_border {
- box-sizing: border-box;
- -moz-box-sizing: border-box;
- -webkit-box-sizing: border-box; }
-
-/* line 163, _common.scss */
-.loading {
- font-size: 20px;
- margin: 5px;
- text-align: center; }
-
-/* line 169, _common.scss */
-.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; }
-
-/* line 181, _common.scss */
-.error a, .warning a, .success a {
- text-decoration: underline; }
-
-/* line 185, _common.scss */
-.error, .error a {
- color: red;
- border-color: red;
- font-size: 14px;
- font-weight: bold; }
-
-/* line 192, _common.scss */
-.warning, .warning a {
- color: orange;
- border-color: orange;
- font-size: 13px;
- font-style: italic; }
-
-/* line 199, _common.scss */
-.success, .success a {
- color: green;
- border-color: green;
- font-size: 13px; }
-
-/* line 205, _common.scss */
-.default_text {
- color: #D9E5F2 !important; }
-
-/* line 209, _common.scss */
-a.button {
- padding: 7px;
- margin-right: 5px;
- background: #D9E5F2;
- font-size: 12px;
- cursor: pointer;
- border: 1px solid #04357B;
- /*position:relative;*/
- display: inline-block; }
-
-/* line 219, _common.scss */
-a.button:hover {
- background-color: #EFAB00; }
-
-/* line 222, _common.scss */
-a.button:active {
- background-color: #04357B;
- color: white; }
-
-/* line 227, _common.scss */
-a.button .fa {
- margin-right: 5px; }
-
-/* line 232, _common.scss */
-a.button.strong .value {
- font-weight: bold; }
-
-/* line 236, _common.scss */
-a.button.inverse {
- background-color: #04357B;
- color: #D9E5F2; }
-
-/* line 241, _common.scss */
-a.button.inverse:hover {
- background-color: #EFAB00;
- color: #04357B; }
-
-/* line 246, _common.scss */
-a.button.heavy {
- border-width: 2px;
- font-weight: bold; }
-
-/* line 251, _common.scss */
-.addr {
- cursor: text; }
-
-/* line 255, _common.scss */
-.addr:hover {
- background-color: white; }
-
-/* line 259, _common.scss */
-.maximized {
- width: 100%; }
-
-/* line 263, _common.scss */
-.righty {
- text-align: right; }
-
-/* line 267, _common.scss */
-.glue-right {
- float: right; }
-
-/* line 271, _common.scss */
-.lefty {
- text-align: left; }
-
-/* line 275, _common.scss */
-.side_margins {
- margin: 0 12px 10px; }
-
-/* line 279, _common.scss */
-a.internal_link {
- text-decoration: underline;
- font-style: normal;
- background: #D9E5F2;
- padding: 1px 8px 1px 5px;
- margin: 0; }
-
-/* line 286, _common.scss */
-a.internal_link:visited, a.external_link:visited {
- color: grey; }
-
-/* line 289, _common.scss */
-a.internal_link span.type {
- text-transform: capitalize; }
-
-/* line 292, _common.scss */
-a[href^="table"].internal_link span.item {
- text-transform: uppercase; }
-
-/* line 296, _common.scss */
-.author_box {
- padding: 5px 10px;
- border: 1px solid #04357B;
- color: #04357B;
- font-style: italic;
- font-size: 12px; }
-
-/* line 303, _common.scss */
-.author_box:nth-child(odd) {
- background: #DCF2FB; }
-
-/* line 306, _common.scss */
-.author_box:nth-child(even) {
- background: #D9E5F2; }
-
-/* line 309, _common.scss */
-.author_box:hover {
- border-color: #EFAB00; }
-
-/* line 313, _common.scss */
-.author_box a {
- background: none;
- padding: 0;
- display: block;
- width: 100%; }
-
-/* line 320, _common.scss */
-.author_box i.fa-30 {
- vertical-align: -5%; }
-
-/* line 324, _common.scss */
-.author_box span.description {
- font-weight: bold;
- font-style: normal;
- font-size: 13px; }
-
-/* line 330, _common.scss */
-.author_box span.rank {
- font-weight: bold;
- margin-left: 10px; }
-
-/* line 335, _common.scss */
-.standalone .author_box {
- margin-top: 10px; }
-
-/* line 338, _common.scss */
-.standalone .author_box:hover {
- color: #EFAB00; }
-
-/* line 342, _common.scss */
-.hide, .mobile {
- display: none; }
-
-/* Step Box */
-/* line 348, _common.scss */
-.step_box {
- margin-top: 5px;
- margin-bottom: 5px;
- padding: 10px;
- background: #D9E5F2;
- color: #04357B;
- border: 2px solid #04357B; }
-
-/* line 356, _common.scss */
-.step_box:nth-child(even) {
- background: #DCF2FB; }
-
-/* line 360, _common.scss */
-.step_box input, .step_box textarea, .step_box select, .step_box .read.textarea, .step_box .read.input {
- margin-top: 10px;
- background: white;
- font-size: 14px;
- border-width: 1px; }
-
-/* line 366, _common.scss */
-.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: white; }
-
-/* line 369, _common.scss */
-.step_box input[type=text], .step_box textarea, .step_box .read.textarea, .step_box .read.input {
- width: 100%; }
-
-/* line 372, _common.scss */
-.step_box textarea, .step_box .read.textarea {
- height: 200px;
- padding: 5px;
- background: white;
- border: 1px solid #04357B; }
-
-/* line 378, _common.scss */
-.step_box .read.textarea, .step_box .read.input {
- border-color: #D9E5F2;
- font-weight: bold; }
-
-/* line 382, _common.scss */
-.step_box .read.textarea {
- background-color: #DCF2FB; }
-
-/* line 385, _common.scss */
-.step_box:nth-child(even) .read.textarea {
- background-color: #D9E5F2; }
-
-/* line 388, _common.scss */
-.step_box .read.input {
- background-color: #D9E5F2;
- padding-left: 0; }
-
-/* line 393, _common.scss */
-.step_box .step_nb_box, .step_box .step_box_title {
- border-bottom: 1px solid #04357B;
- padding: 0; }
-
-/* Scrollbar */
-/* line 400, _common.scss */
-.scrollbar_box {
- position: relative;
- height: 0px;
- overflow: hidden; }
-
-/* line 406, _common.scss */
-.scrollbar_box .scrollbar_subbox {
- position: absolute;
- left: 0;
- top: 0;
- width: 100%; }
-
-/* line 413, _common.scss */
-.scrollbar {
- position: relative;
- float: right;
- width: 15px;
- margin-left: 5px; }
-
-/* line 420, _common.scss */
-.scrollbar .thumb, .scrollbar .thumb .end {
- background-color: #04357B;
- width: 13px; }
-
-/* line 424, _common.scss */
-.scrollbar .track {
- background-color: #D9E5F2;
- height: 100%;
- width: 13px;
- position: relative;
- padding: 0; }
-
-/* line 431, _common.scss */
-.scrollbar .thumb {
- position: absolute;
- top: 0;
- overflow: hidden; }
-
-/* line 436, _common.scss */
-.scrollbar .thumb .end {
- overflow: hidden;
- height: 20px; }
-
-/* line 441, _common.scss */
-.disable {
- display: none; }
-
-/* Uploader */
-/* line 447, _common.scss */
-.uploader_box {
- position: relative;
- width: 100%; }
-
-/* line 452, _common.scss */
-.uploader_droparea {
- position: absolute;
- top: -10px;
- left: 0;
- width: 100%;
- height: 100%;
- height: 210px;
- z-index: 2;
- border: 1px solid #04357B;
- background: white;
- text-align: center; }
-
-/* line 465, _common.scss */
-.uploader_droparea-active {
- background: #EFAB00; }
-
-/* line 468, _common.scss */
-.uploader_droparea span {
- display: block;
- position: absolute;
- top: 50%;
- width: 100%;
- margin-top: -8px;
- font-size: 16px; }
-
-/* line 477, _common.scss */
-.uploader_buffer {
- width: 100%;
- height: 8px; }
-
-/* line 482, _common.scss */
-.uploader_list {
- /*margin:0;*/
- margin-top: 0;
- padding: 0;
- list-style: none; }
-
-/* line 487, _common.scss */
-.uploader_list li {
- margin: 0 0 10px 10px; }
-
-/* line 491, _common.scss */
-.uploader_item_file, .uploader_item_loading, .uploader_item_size, .uploader_item_cancel, .uploader_item_failed {
- margin-right: 5px; }
-
-/* line 495, _common.scss */
-.uploader_item_size, .uploader_item_cancel {
- font-size: 12px;
- font-weight: normal; }
-
-/* line 500, _common.scss */
-a.uploader_item_cancel {
- text-decoration: underline;
- color: #04357B; }
-
-/* line 505, _common.scss */
-.uploader_box .image_description {
- border-width: 1px;
- padding: 3px 5px;
- background: white; }
-
-/* line 511, _common.scss */
-.uploader_box .image_action {
- font-size: 12px; }
-
-/* line 515, _common.scss */
-.uploader_box .image_action input {
- width: 200px;
- margin: 0; }
-
-/* line 520, _common.scss */
-.uploader_item_failed_notice {
- display: none; }
-
-/* line 523, _common.scss */
-.uploader_item_failed .uploader_item_failed_notice {
- display: inline; }
-
-/* line 527, _common.scss */
-.uploader_item_failed {
- color: red; }
-
-/* line 531, _common.scss */
-.uploader_item_success .fa-c-delete:hover, .uploader_item_cancel .fa-c-delete:hover {
- color: #EFAB00; }
-
-/* Fix librairies location */
-/* FIXME */
-@font-face {
- font-family: 'FontAwesome';
- src: url("fontawesome-webfont.eot?v=4.2.0");
- src: url("fontawesome-webfont.eot?#iefix&v=4.2.0") format("embedded-opentype"), url("fontawesome-webfont.woff?v=4.2.0") format("woff"), url("fontawesome-webfont.ttf?v=4.2.0") format("truetype"), url("fontawesome-webfont.svg?v=4.2.0#fontawesomeregular") format("svg");
- font-weight: normal;
- font-style: normal; }
-/* Logon */
-/* line 20, logon.scss */
-#container {
- background: #04357B;
- padding: 10px 10px 1px; }
-
-/* line 26, logon.scss */
-#logon .logo {
- width: auto;
- height: auto;
- text-transform: uppercase;
- position: absolute;
- top: 0;
- left: 0;
- padding: 10px 10px 10px 35px;
- margin: 0;
- border-bottom: 3px solid white;
- font-weight: bold;
- color: white;
- font-size: 35px;
- line-height: 35px;
- text-decoration: none;
- background: url(../images/logo_25.png) 10px 50% no-repeat; }
-/* line 44, logon.scss */
-#logon .container {
- position: fixed;
- top: 50%;
- left: 50%;
- margin-left: -230px;
- /* -(68+10*2+160+200+5*2+1*2)/2 */
- margin-top: -64px;
- /* -(10*2+20*4+20*2+20+2*2+1*2)/2 */ }
-/* line 51, logon.scss */
-#logon .box {
- background: white;
- overflow: hidden;
- position: relative; }
- /* line 56, logon.scss */
- #logon .box .key {
- position: absolute;
- height: 100%;
- width: 68px;
- background: #D9E5F2; }
- /* line 62, logon.scss */
- #logon .box .key .fa {
- position: absolute;
- top: 50%;
- left: 50%;
- text-align: center;
- color: #04357B;
- line-height: 50px;
- font-size: 50px;
- width: 50px;
- margin-left: -25px;
- margin-top: -25px; }
- /* line 76, logon.scss */
- #logon .box table {
- margin-left: 68px;
- padding: 10px; }
- /* line 80, logon.scss */
- #logon .box table td {
- padding: 0;
- text-align: left;
- font-size: 18px;
- color: #04357B; }
- /* line 87, logon.scss */
- #logon .box table td.desc {
- width: 160px;
- line-height: 20px;
- padding: 10px 0; }
- /* line 93, logon.scss */
- #logon .box table td.validate {
- text-align: right; }
- /* line 97, logon.scss */
- #logon .box .feedback {
- float: left;
- font-size: 14px;
- margin-top: 5px;
- font-style: italic;
- color: red; }
- /* line 104, logon.scss */
- #logon .box input {
- border: 1px solid #04357B;
- color: #04357B;
- font-size: 18px;
- line-height: 20px;
- padding: 2px 5px;
- width: 200px; }
- /* line 112, logon.scss */
- #logon .box a.button {
- margin-right: 0; }
- /* line 115, logon.scss */
- #logon .box a.button .fa {
- margin: 1px; }
-/* line 119, logon.scss */
-#logon #footer {
- position: fixed;
- bottom: 0;
- width: 100%; }
-/* line 125, logon.scss */
-#logon .logon_msg {
- margin-top: 10px;
- padding: 5px;
- color: white;
- text-align: center;
- font-size: 0.75em;
- border: 1px solid white; }
- /* line 133, logon.scss */
- #logon .logon_msg span {
- display: block;
- margin-top: 5px; }
- /* line 138, logon.scss */
- #logon .logon_msg span.msg_title {
- margin-top: 0;
- text-decoration: underline; }
-
-/*# sourceMappingURL=style/logon.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: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{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:"\f15b"}.fa-c-article:before,.fa-c-art:before,.fa-c-a:before{content:"\f14c"}.fa-c-note:before{content:"\f0fa"}.fa-c-list:before{content:"\f02d"}.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:#EFAB00}.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-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"}body,html{background:white;font-family:Verdana, Arial;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:Verdana, Arial;font-size:12px;background:none;border:none}input[type=text],input[type=password]{border:2px solid #04357B;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:#D9E5F2;border-color:#D9E5F2;border:2px solid #04357B}input[disabled="disabled"]:hover,textarea[disabled="disabled"]:hover,input:disabled:hover,textarea:disabled:hover{background-color:#D9E5F2}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}select{background:white;border:2px solid #04357B;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;-webkit-border-radius:10px;-khtml-border-radius:10px;border-radius:10px}.tiny_round{-moz-border-radius:5px;-webkit-border-radius:5px;-khtml-border-radius:5px;border-radius: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:14px;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:#D9E5F2 !important}a.button{padding:7px;margin-right:5px;background:#D9E5F2;font-size:12px;cursor:pointer;border:1px solid #04357B;display:inline-block}a.button:hover{background-color:#EFAB00}a.button:active{background-color:#04357B;color:white}a.button .fa{margin-right:5px}a.button.strong .value{font-weight:bold}a.button.inverse{background-color:#04357B;color:#D9E5F2}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:white}.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:#D9E5F2;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;border:1px solid #04357B;color:#04357B;font-style:italic;font-size:12px}.author_box:nth-child(odd){background:#DCF2FB}.author_box:nth-child(even){background:#D9E5F2}.author_box:hover{border-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}.standalone .author_box:hover{color:#EFAB00}.hide,.mobile{display:none}.step_box{margin-top:5px;margin-bottom:5px;padding:10px;background:#D9E5F2;color:#04357B;border:2px solid #04357B}.step_box:nth-child(even){background:#DCF2FB}.step_box input,.step_box textarea,.step_box select,.step_box .read.textarea,.step_box .read.input{margin-top:10px;background:white;font-size:14px;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:white}.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:white;border:1px solid #04357B}.step_box .read.textarea,.step_box .read.input{border-color:#D9E5F2;font-weight:bold}.step_box .read.textarea{background-color:#DCF2FB}.step_box:nth-child(even) .read.textarea{background-color:#D9E5F2}.step_box .read.input{background-color:#D9E5F2;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:#D9E5F2;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;border:1px solid #04357B;background:white;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:12px;font-weight:normal}a.uploader_item_cancel{text-decoration:underline;color:#04357B}.uploader_box .image_description{border-width:1px;padding:3px 5px;background:white}.uploader_box .image_action{font-size:12px}.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}@font-face{font-family:'FontAwesome';src:url("fontawesome-webfont.eot?v=4.2.0");src:url("fontawesome-webfont.eot?#iefix&v=4.2.0") format("embedded-opentype"),url("fontawesome-webfont.woff?v=4.2.0") format("woff"),url("fontawesome-webfont.ttf?v=4.2.0") format("truetype"),url("fontawesome-webfont.svg?v=4.2.0#fontawesomeregular") format("svg");font-weight:normal;font-style:normal}#container{background:#04357B;padding:10px 10px 1px}#logon .logo{width:auto;height:auto;text-transform:uppercase;position:absolute;top:0;left:0;padding:10px 10px 10px 35px;margin:0;border-bottom:3px solid white;font-weight:bold;color:white;font-size:35px;line-height:35px;text-decoration:none;background:url(../images/logo_25.png) 10px 50% no-repeat}#logon .container{position:fixed;top:50%;left:50%;margin-left:-230px;margin-top:-64px}#logon .box{background:white;overflow:hidden;position:relative}#logon .box .key{position:absolute;height:100%;width:68px;background:#D9E5F2}#logon .box .key .fa{position:absolute;top:50%;left:50%;text-align:center;color:#04357B;line-height:50px;font-size:50px;width:50px;margin-left:-25px;margin-top:-25px}#logon .box table{margin-left:68px;padding:10px}#logon .box table td{padding:0;text-align:left;font-size:18px;color:#04357B}#logon .box table td.desc{width:160px;line-height:20px;padding:10px 0}#logon .box table td.validate{text-align:right}#logon .box .feedback{float:left;font-size:14px;margin-top:5px;font-style:italic;color:red}#logon .box input{border:1px solid #04357B;color:#04357B;font-size:18px;line-height:20px;padding:2px 5px;width:200px}#logon .box a.button{margin-right:0}#logon .box a.button .fa{margin:1px}#logon #footer{position:fixed;bottom:0;width:100%}#logon .logon_msg{margin-top:10px;padding:5px;color:white;text-align:center;font-size:0.75em;border:1px solid white}#logon .logon_msg span{display:block;margin-top:5px}#logon .logon_msg span.msg_title{margin-top:0;text-decoration:underline}
\ No newline at end of file
diff --git a/style/logon.css.map b/style/logon.css.map
index 9a77180..e2f6f62 100755
--- a/style/logon.css.map
+++ b/style/logon.css.map
@@ -1,7 +1,8 @@
{
"version": 3,
-"mappings": "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",
-"sources": ["_variables.scss","_fa.scss","_fa-custom.scss","_common.scss","logon.scss"],
+"mappings": "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",
+"sources": ["C:/wamp/www/databap/style/_variables.scss","C:/wamp/www/databap/style/_fa.scss","C:/wamp/www/databap/style/_fa-custom.scss","C:/wamp/www/databap/style/_common.scss","C:\\wamp\\www\\databap\\style\\logon.scss"],
+"sourcesContent": ["@CHARSET \"UTF-8\";\n\n$col_blue: #04357B;\n$col_bright_blue: #D9E5F2;\n$col_brighter_blue: #DCF2FB;\n$col_new_blue: #0C8BCE;\n$col_orange: #EFAB00;\n$col_bright_orange: #F2E1B5;","/*!\n * Font Awesome 4.2.0 by @davegandy - http://fontawesome.io - @fontawesome\n * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)\n */\n/* FONT PATH\n * -------------------------- */\n@font-face {\n font-family: 'FontAwesome';\n src: url('style/fontawesome-webfont.eot?v=4.2.0');\n 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');\n font-weight: normal;\n font-style: normal;\n}\n.fa {\n display: inline-block;\n font-family: FontAwesome;\n font-style: normal;\n font-weight: normal;\n line-height: 1;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n/* makes the font 33% larger relative to the icon container */\n.fa-lg {\n font-size: 1.33333333em;\n line-height: 0.75em;\n vertical-align: -15%;\n}\n.fa-2x {\n font-size: 2em;\n}\n.fa-3x {\n font-size: 3em;\n}\n.fa-4x {\n font-size: 4em;\n}\n.fa-5x {\n font-size: 5em;\n}\n.fa-fw {\n width: 1.28571429em;\n text-align: center;\n}\n.fa-ul {\n padding-left: 0;\n margin-left: 2.14285714em;\n list-style-type: none;\n}\n.fa-ul > li {\n position: relative;\n}\n.fa-li {\n position: absolute;\n left: -2.14285714em;\n width: 2.14285714em;\n top: 0.14285714em;\n text-align: center;\n}\n.fa-li.fa-lg {\n left: -1.85714286em;\n}\n.fa-border {\n padding: .2em .25em .15em;\n border: solid 0.08em #eeeeee;\n border-radius: .1em;\n}\n.pull-right {\n float: right;\n}\n.pull-left {\n float: left;\n}\n.fa.pull-left {\n margin-right: .3em;\n}\n.fa.pull-right {\n margin-left: .3em;\n}\n.fa-spin {\n -webkit-animation: spin 2s infinite linear;\n -moz-animation: spin 2s infinite linear;\n -o-animation: spin 2s infinite linear;\n animation: spin 2s infinite linear;\n}\n@-moz-keyframes spin {\n 0% {\n -moz-transform: rotate(0deg);\n }\n 100% {\n -moz-transform: rotate(359deg);\n }\n}\n@-webkit-keyframes spin {\n 0% {\n -webkit-transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(359deg);\n }\n}\n@-o-keyframes spin {\n 0% {\n -o-transform: rotate(0deg);\n }\n 100% {\n -o-transform: rotate(359deg);\n }\n}\n@keyframes spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(359deg);\n transform: rotate(359deg);\n }\n}\n.fa-rotate-90 {\n filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);\n -webkit-transform: rotate(90deg);\n -moz-transform: rotate(90deg);\n -ms-transform: rotate(90deg);\n -o-transform: rotate(90deg);\n transform: rotate(90deg);\n}\n.fa-rotate-180 {\n filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);\n -webkit-transform: rotate(180deg);\n -moz-transform: rotate(180deg);\n -ms-transform: rotate(180deg);\n -o-transform: rotate(180deg);\n transform: rotate(180deg);\n}\n.fa-rotate-270 {\n filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);\n -webkit-transform: rotate(270deg);\n -moz-transform: rotate(270deg);\n -ms-transform: rotate(270deg);\n -o-transform: rotate(270deg);\n transform: rotate(270deg);\n}\n.fa-flip-horizontal {\n filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);\n -webkit-transform: scale(-1, 1);\n -moz-transform: scale(-1, 1);\n -ms-transform: scale(-1, 1);\n -o-transform: scale(-1, 1);\n transform: scale(-1, 1);\n}\n.fa-flip-vertical {\n filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);\n -webkit-transform: scale(1, -1);\n -moz-transform: scale(1, -1);\n -ms-transform: scale(1, -1);\n -o-transform: scale(1, -1);\n transform: scale(1, -1);\n}\n.fa-stack {\n position: relative;\n display: inline-block;\n width: 2em;\n height: 2em;\n line-height: 2em;\n vertical-align: middle;\n}\n.fa-stack-1x,\n.fa-stack-2x {\n position: absolute;\n left: 0;\n width: 100%;\n text-align: center;\n}\n.fa-stack-1x {\n line-height: inherit;\n}\n.fa-stack-2x {\n font-size: 2em;\n}\n.fa-inverse {\n color: #ffffff;\n}","/* Font Awesome */\n\n.fa-inline {\n\tmargin-right:5px;\n}\n\n/*\nsize\t\t\t+0%\t\t+10%\t\t+20%\t\t+30%\t\t+40%\t\t+50%\t\t+60%\t\t\nfont-size\t\t1em\t\t1.111em\t\t1.222em\t\t1.333em\t\t1.444em\t\t1.555em\t\t1.666em\t\t\nline-height\t\t1em\t\t0.917em\t\t0.833em\t\t0.750em\t\t0.666em\t\t0.583em\t\t0.500em\nvertical-align\t0%\t\t-5%\t\t\t-10%\t\t-15%\t\t-20%\t\t-25%\t\t-30%\n*/\n\n.fa-10 {\n\tfont-size:\t\t1.1111111111111111em;\n\tline-height: \t0.9166666666666666em;\n\tvertical-align:\t-5%;\n}\n.fa-20 {\n\tfont-size:\t\t1.2222222222222222em;\n\tline-height:\t0.8333333333333333em;\n\tvertical-align: -10%;\n}\n.fa-30 {\n\tfont-size:\t\t1.3333333333333333em;\n\tline-height:\t0.75em;\n\tvertical-align:\t-15%;\n}\n.fa-40 {\n\tfont-size:\t\t1.4444444444444444em;\n\tline-height:\t0.6666666666666666em;\n\tvertical-align:\t-20%;\n}\n.fa-60 {\n\tfont-size: \t\t1.6666666666666666em;\n\tline-height: \t0.5em;\n\tvertical-align: -30%;\n}\n\n.fa-c-c:before, .fa-c-code:before {\n content: \"\\f121\";\n}\n\n.fa-c-procedure:before, .fa-c-proc:before, .fa-c-p:before {\n\tcontent: \"\\f0cb\";\n}\n\n.fa-c-table:before, .fa-c-t:before {\n\tcontent: \"\\f0ce\";\n}\n\n.fa-c-documentation:before, .fa-c-doc:before, .fa-c-d:before {\n\tcontent: \"\\f15b\";\n}\n\n.fa-c-article:before, .fa-c-art:before, .fa-c-a:before {\n\tcontent: \"\\f14c\";\n}\n\n.fa-c-note:before {\n\tcontent: \"\\f0fa\";\n}\n\n.fa-c-list:before {\n\tcontent: \"\\f02d\";\n}\n\n.fa-c-profile:before {\n content: \"\\f007\";\n}\n\n.fa-c-chat:before {\n\tcontent: \"\\f086\";\n}\n\n.fa-c-news:before {\n\tcontent: \"\\f0e7\";\n}\n\n.fa-c-version:before {\n\tcontent: \"\\f005\";\n}\n\n.fa-c-details:before {\n\tcontent: \"\\f112\";\n}\n\n.fa-c-bug:before {\n\tcontent: \"\\f188\";\n}\n\n.fa-c-date:before {\n\tcontent: \"\\f073\";\n}\n\n.fa-c-git:before {\n\tcontent: \"\\f1d3\";\n}\n\n.fa-c-afk:before {\n\tcontent: \"\\f017\";\n}\n\n.fa-c-comment {\n\tcolor:$col_blue;\n}\n.fa-c-comment:before {\n\tcontent: \"\\f075\";\n}\n\n.fa-c-options:before {\n\tcontent: \"\\f085\";\n}\n\n.fa-c-param:before {\n\tcontent: \"\\f1de\";\n}\n\n.fa-c-wip:before {\n\tcontent: \"\\f013\";\n}\n\n.fa-c-rss:before {\n content: \"\\f09e\";\n}\n\n.fa-c-logmeout:before, .fa-c-logout:before {\n content: \"\\f08b\";\n}\n\n.fa-c-fold {\n\tcolor:$col_blue;\n}\n.fa-c-fold:before {\n\tcontent: \"\\f191\";\n}\n\n.fa-c-success:before, .fa-c-ok:before, .available .fa:before {\n\tcontent: \"\\f00c\";\n}\n\n.fa-c-warning {\n\tcolor:$col_orange;\n}\n.fa-c-warning:before {\n\tcontent: \"\\f071\";\n}\n\n.fa-c-error {\n\tcolor:red;\n}\n.fa-c-error:before {\n\tcontent: \"\\f071\";\n}\n\n.fa-c-ko {\n\tcolor:red;\n}\n.fa-c-ko:before, .unavailable .fa:before {\n\tcontent: \"\\f00d\";\n}\n\n.fa-c-search:before {\n content: \"\\f002\";\n}\n\n.fa-c-welcome:before {\n content: /*\"\\f087\"*/\"\\f015\";\n}\n\n.fa-c-loading:before {\n\tcontent: \"\\f110\";\n}\n\n.fa-c-edit:before {\n\tcontent: \"\\f040\";\n}\n\n.fa-c-save:before {\n\tcontent: \"\\f0c7\";\n}\n\n.fa-c-raw:before {\n\tcontent: \"\\f15c\";\n}\n\n.fa-c-print:before {\n\tcontent: \"\\f02f\";\n}\n\n.fa-c-share:before {\n\tcontent: \"\\f0ac\";\n}\n\n.fa-c-refresh:before, .fa-c-switch:before {\n\tcontent: \"\\f021\";\n}\n\n.fa-c-plus:before, .fa-c-add:before {\n\tcontent: \"\\f055\";\n}\n\n.fa-c-minus:before, .fa-c-delete:before {\n\tcontent: \"\\f056\";\n}\n\n.fa-c-up:before {\n\tcontent: \"\\f01b\";\n}\n\n.fa-c-down:before {\n\tcontent: \"\\f01a\";\n}\n\n.fa-c-next:before {\n\tcontent: \"\\f054\";\n}\n\n.fa-c-prev:before {\n\tcontent: \"\\f053\";\n}\n\n.fa-c-close:before {\n\tcontent: \"\\f05c\";\n}\n\n.fa-c-desc:before {\n\tcontent: \"\\f05a\";\n}\n\n.fa-c-company:before {\n\tcontent: \"\\f0f7\";\n}\n\n.fa-c-name:before {\n\tcontent: \"\\f02b\";\n}\n\n.fa-c-assignment:before {\n\tcontent: \"\\f0b1\";\n}\n\n.fa-c-lock:before {\n\tcontent: \"\\f023\"/*\"\\f084\"*/;\n}\n\n.fa-c-search:before {\n\tcontent: \"\\f002\";\n}\n\n.fa-c-mail:before {\n\tcontent: \"\\f0e0\";\n}\n\n.fa-c-upcoming:before {\n\tcontent:\"\\f135\";\n}\n\n.fa-c-changelog:before {\n\tcontent:\"\\f0d0\";\n}\n\n.fa-c-checked:before {\n\tcontent:\"\\f046\";\n}\n\n.fa-c-unchecked:before {\n\tcontent:\"\\f096\";\n}\n\n.fa-c-kpi:before {\n\tcontent:\"\\f0e4\";\n}\n\n.fa-c-file-xls, .fa-c-file-xlsx {\n\tcolor:#247648;\n}\n.fa-c-file-xls:before, .fa-c-file-xlsx:before {\n\tcontent: \"\\f1c3\";\n}\n\n.fa-c-file-doc, .fa-c-file-docx {\n\tcolor:#2B5796;\n}\n.fa-c-file-doc:before, .fa-c-file-docx:before {\n\tcontent: \"\\f1c2\";\n}\n\n.fa-c-file-ppt, .fa-c-file-pptx {\n\tcolor:#D04423;\n}\n.fa-c-file-ppt:before, .fa-c-file-pptx:before {\n\tcontent: \"\\f1c4\";\n}\n\n.fa-c-file-pdf {\n\tcolor:#D20F0B;\n}\n.fa-c-file-pdf:before {\n\tcontent: \"\\f1c1\";\n}\n\n.fa-c-file-zip:before {\n\tcontent: \"\\f1c6\";\n}\n\n.fa-c-file-png:before, .fa-c-file-gif:before, .fa-c-file-jpg:before, .fa-c-file-jpeg:before {\n\tcontent: \"\\f1c5\";\n}","/* Standard Tags */\n\nbody, html {\n\tbackground:white;\n\tfont-family:Verdana, Arial;\n\tcolor:$col_blue;\n\tbackground:$col_blue;\n\tpadding:0;\n\tmargin:0;\n\tmin-width:1024px;\n}\n\ntable {\n\tborder:none;\n\tbackground:none;\n\ttext-align:center;\n\tmargin:0;\n\tpadding:0;\n\tborder-spacing:0;\n}\n\ntable td {\n\tpadding:0;\n}\n\ninput, textarea, select {\n\tfont-family:Verdana, Arial;\n\tfont-size:12px;\n\tbackground:none;\n\tborder:none;\n}\ninput[type=text], input[type=password] {\n\tborder:2px solid $col_blue;\n\tpadding:5px;\n\twidth:200px;\n}\n\ninput[type=button]:hover, input[type=submit]:hover, input[type=password]:hover, input[type=text]:hover, input[type=text]:focus {\n\tbackground-color:$col_orange;\n}\n\ninput[disabled=\"disabled\"], textarea[disabled=\"disabled\"], input:disabled, textarea:disabled {\n\tbackground-color:$col_bright_blue;\n\tborder-color:$col_bright_blue;\n\tborder:2px solid $col_blue;\n}\n\ninput[disabled=\"disabled\"]:hover, textarea[disabled=\"disabled\"]:hover, input:disabled:hover, textarea:disabled:hover {\n\tbackground-color:$col_bright_blue;\n}\n\nbutton::-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 {\n\tborder: none;\n}\n\ninput[type=button], .clickable {\n\tcursor:pointer;\n}\n\nselect {\n\tbackground:white;\n\tborder:2px solid $col_blue;\n\tpadding:5px;\n\tcolor:$col_blue;\n\tmargin:0;\n}\n\ntextarea {\n\tmin-height:30px;\n}\n\ninput, select, textarea, h1, h2, h3, h4, p, a {\n\tcolor:$col_blue;\n}\n\np {\n\tmargin:0;\n\tpadding:0;\n}\n\na, a:visited {\n\ttext-decoration:none;\n}\n\na:active, a:focus, input:active, input:focus {\n\toutline: none;\n}\n\nimg {\n\tborder:none;\n}\n\n/* Functions */\n\n@mixin gradient-diag($fromColor, $ToColor, $fromPos, $ToPos) {\n\tbackground: $fromColor;\n\tbackground: -moz-linear-gradient(45deg, $fromColor $fromPos, $ToColor $ToPos);\n\tbackground: -webkit-gradient(linear, left bottom, right top, color-stop($fromPos,$fromColor), color-stop($ToPos,$ToColor));\n\tbackground: -webkit-linear-gradient(45deg, $fromColor $fromPos,$ToColor $ToPos);\n\tbackground: -o-linear-gradient(45deg, $fromColor $fromPos,$ToColor $ToPos);\n\tbackground: -ms-linear-gradient(45deg, $fromColor $fromPos,$ToColor $ToPos);\n\tbackground: linear-gradient(45deg, $fromColor $fromPos,$ToColor $ToPos);\n\tfilter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$fromColor', endColorstr='$ToColor',GradientType=1 );\n}\n\n/* Classes */\n\n.round_top {\n\t-moz-border-radius:10px 10px 0 0;\n\t-webkit-border-radius:10px 10px 0 0;\n\t-khtml-border-radius:10px 10px 0 0;\n\tborder-radius:10px 10px 0 0;\n}\n.round_bottom {\n\t-moz-border-radius:0 0 10px 10px;\n\t-webkit-border-radius:0 0 10px 10px;\n\t-khtml-border-radius:0 0 10px 10px;\n\tborder-radius:0 0 10px 10px;\n}\n.round_right {\n\t-moz-border-radius:0 10px 10px 0;\n\t-webkit-border-radius:0 10px 10px 0;\n\t-khtml-border-radius:0 10px 10px 0;\n\tborder-radius:0 10px 10px 0;\n}\n.round_left {\n\t-moz-border-radius:10px 0 0 10px;\n\t-webkit-border-radius:10px 0 0 10px;\n\t-khtml-border-radius:10px 0 0 10px;\n\tborder-radius:10px 0 0 10px;\n}\n.round_bottom_left {\n\t-moz-border-radius:0 0 0 10px;\n\t-webkit-border-radius:0 0 0 10px;\n\t-khtml-border-radius:0 0 0 10px;\n\tborder-radius:0 0 0 10px;\n}\n.round {\n\t-moz-border-radius:10px;\n\t-webkit-border-radius:10px;\n\t-khtml-border-radius:10px;\n\tborder-radius:10px;\n}\n.tiny_round {\n\t-moz-border-radius:5px;\n\t-webkit-border-radius:5px;\n\t-khtml-border-radius:5px;\n\tborder-radius:5px;\n}\n.tiny_top_right {\n\t-moz-border-radius:5px 0 5px 5px;\n\t-webkit-border-radius:5px 0 5px 5px;\n\t-khtml-border-radius:5px 0 5px 5px;\n\tborder-radius:5px 0 5px 5px;\n}\n\n.inc_border {\n\tbox-sizing:border-box;\n\t-moz-box-sizing:border-box;\n\t-webkit-box-sizing:border-box;\n}\n\n.loading {\n\tfont-size:20px;\n\tmargin:5px;\n\ttext-align:center;\n}\n\n.error, .warning, .success {\n\tmargin:10px 0;\n\tborder-width:1px;\n\tborder-style:solid;\n\tpadding:3px;\n\t-moz-border-radius:5px;\n\t-webkit-border-radius:5px;\n\t-khtml-border-radius:5px;\n\tborder-radius:5px;\n\tclear:both;\n}\n\n.error a, .warning a, .success a {\n\ttext-decoration: underline;\n}\n\n.error, .error a {\n\tcolor:red;\n\tborder-color:red;\n\tfont-size:14px;\n\tfont-weight:bold;\n}\n\n.warning, .warning a {\n\tcolor:orange;\n\tborder-color:orange;\n\tfont-size:13px;\n\tfont-style:italic;\n}\n\n.success, .success a {\n\tcolor:green;\n\tborder-color:green;\n\tfont-size:13px;\n}\n\n.default_text {\n\tcolor:$col_bright_blue !important;\n}\n\na.button {\n\tpadding:7px;\n\tmargin-right:5px;\n\tbackground:$col_bright_blue;\n\tfont-size:12px;\n\tcursor:pointer;\n\tborder:1px solid $col_blue;\n\t/*position:relative;*/\n\tdisplay:inline-block;\n}\na.button:hover {\n\tbackground-color:$col_orange;\n}\na.button:active {\n\tbackground-color:$col_blue;\n\tcolor:white;\n}\n\na.button .fa {\n\t@extend .fa-60;\n\tmargin-right:5px;\n}\n\na.button.strong .value {\n\tfont-weight:bold;\n}\n\na.button.inverse {\n\tbackground-color:$col_blue;\n\tcolor:$col_bright_blue;\n}\n\na.button.inverse:hover {\n\tbackground-color:$col_orange;\n\tcolor:$col_blue;\n}\n\na.button.heavy {\n\tborder-width:2px;\n\tfont-weight:bold;\n}\n\na.button.gimmespace {\n\tmargin-left:10px;\n\tmargin-right:10px;\n}\n\n.addr {\n\tcursor:text;\n}\n\n.addr:hover {\n\tbackground-color:white;\n}\n\n.maximized {\n\twidth:100%;\n}\n\n.righty {\n\ttext-align:right;\n}\n\n.glue-right {\n\tfloat: right;\n}\n\n.lefty {\n\ttext-align:left;\n}\n\n.side_margins {\n\tmargin:0 12px 10px;\n}\n\na.internal_link {\n\ttext-decoration:underline;\n\tfont-style:normal;\n\tbackground:$col_bright_blue;\n\tpadding:1px 8px 1px 5px;\n\tmargin:0;\n}\na.internal_link:visited, a.external_link:visited {\n\tcolor:grey;\n}\na.internal_link span.type {\n\ttext-transform:capitalize;\n}\na[href^=\"table\"].internal_link span.item {\n\ttext-transform:uppercase;\n}\n\n.author_box {\n\tpadding:5px 10px;\n\tborder:1px solid $col_blue;\n\tcolor:$col_blue;\n\tfont-style:italic;\n\tfont-size:12px;\n}\n.author_box:nth-child(odd) {\n\tbackground:$col_brighter_blue;\n}\n.author_box:nth-child(even) {\n\tbackground:$col_bright_blue;\n}\n.author_box:hover {\n\tborder-color:$col_orange;\n}\n\n.author_box a {\n\tbackground:none;\n\tpadding:0;\n\tdisplay:block;\n\twidth: 100%;\n}\n\n.author_box i.fa-30 {\n\tvertical-align: -5%;\n}\n\n.author_box span.description {\n\tfont-weight:bold;\n\tfont-style:normal;\n\tfont-size:13px;\n}\n\n.author_box span.rank {\n\tfont-weight: bold;\n\tmargin-left:10px;\n}\n\n.standalone .author_box {\n\tmargin-top:10px;\n}\n.standalone .author_box:hover {\n\tcolor:$col_orange;\n}\n\n.hide, .mobile {\n\tdisplay:none;\n}\n\n/* Step Box */\n\n.step_box {\n\tmargin-top:5px;\n\tmargin-bottom:5px;\n\tpadding:10px;\n\tbackground:$col_bright_blue;\n\tcolor:$col_blue;\n\tborder: 2px solid $col_blue;\n}\n.step_box:nth-child(even) {\n\tbackground:$col_brighter_blue;\n}\n\n.step_box input, .step_box textarea, .step_box select, .step_box .read.textarea, .step_box .read.input {\n\tmargin-top:10px;\n\tbackground:white;\n\tfont-size:14px;\n\tborder-width:1px;\n}\n.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 {\n\tbackground-color:white;\n}\n.step_box input[type=text], .step_box textarea, .step_box .read.textarea, .step_box .read.input {\n\twidth:100%;\n}\n.step_box textarea, .step_box .read.textarea {\n\theight:200px;\n\tpadding:5px;\n\tbackground:white;\n\tborder:1px solid $col_blue;\n}\n.step_box .read.textarea, .step_box .read.input {\n\tborder-color:$col_bright_blue;\n\tfont-weight:bold;\n}\n.step_box .read.textarea {\n\tbackground-color:$col_brighter_blue;\n}\n.step_box:nth-child(even) .read.textarea {\n\tbackground-color:$col_bright_blue;\n}\n.step_box .read.input {\n\tbackground-color:$col_bright_blue;\n\tpadding-left:0;\n}\n\n.step_box .step_nb_box, .step_box .step_box_title {\n\tborder-bottom:1px solid $col_blue;\n\tpadding:0;\n}\n\n/* Scrollbar */\n\n.scrollbar_box {\n\tposition:relative;\n\theight:0px;\n\toverflow:hidden;\n}\n\n.scrollbar_box .scrollbar_subbox {\n\tposition:absolute;\n\tleft:0;\n\ttop:0;\n\twidth:100%;\n}\n\n.scrollbar {\n\tposition:relative;\n\tfloat:right;\n\twidth:15px;\n\tmargin-left:5px;\n}\n\n.scrollbar .thumb, .scrollbar .thumb .end {\n\tbackground-color:$col_blue;\n\twidth:13px;\n}\n.scrollbar .track {\n\tbackground-color:$col_bright_blue;\n\theight:100%;\n\twidth:13px;\n\tposition:relative;\n\tpadding:0;\n}\n.scrollbar .thumb {\n\tposition:absolute;\n\ttop:0;\n\toverflow:hidden;\n}\n.scrollbar .thumb .end {\n\toverflow:hidden;\n\theight:20px;\n}\n\n.disable {\n\tdisplay:none;\n}\n\n/* Uploader */\n\n.uploader_box {\n\tposition:relative;\n\twidth:100%;\n}\n\n.uploader_droparea {\n position:absolute;\n top:-10px;\n left:0;\n width:100%;\n height:100%;\n height:210px;\n z-index:2;\n border:1px solid $col_blue;\n background:white;\n text-align:center;\n}\n\t\n.uploader_droparea-active {\n\tbackground:$col_orange;\n}\n.uploader_droparea span {\n display:block;\n position:absolute;\n top:50%;\n width:100%;\n margin-top:-8px;\n font-size:16px;\n}\n\n.uploader_buffer {\n\twidth:100%;\n\theight:8px;\n}\n\n.uploader_list {\n\t/*margin:0;*/margin-top:0;\n\tpadding:0;\n\tlist-style:none;\n}\n.uploader_list li {\n\tmargin:0 0 10px 10px;\n}\n\n.uploader_item_file, .uploader_item_loading, .uploader_item_size, .uploader_item_cancel, .uploader_item_failed {\n margin-right:5px;\n}\n\n.uploader_item_size, .uploader_item_cancel {\n\tfont-size:12px;\n\tfont-weight: normal;\n}\n\na.uploader_item_cancel {\n\ttext-decoration:underline;\n\tcolor:$col_blue;\n}\n\n.uploader_box .image_description {\n\tborder-width:1px;\n\tpadding:3px 5px;\n\tbackground:white;\n}\n\n\n.uploader_box .image_action {\n\tfont-size:12px;\n}\n\n.uploader_box .image_action input {\n\twidth:200px;\n\tmargin:0;\n}\n\n.uploader_item_failed_notice {\n\tdisplay:none;\n}\n.uploader_item_failed .uploader_item_failed_notice {\n\tdisplay:inline;\n}\n\n.uploader_item_failed {\n\tcolor:red;\n}\n\n.uploader_item_success .fa-c-delete:hover, .uploader_item_cancel .fa-c-delete:hover {\n\tcolor:$col_orange;\n}","/* Librairies */\n\n@import 'variables';\n@import 'fa';\n@import 'fa-custom';\n@import 'common';\n\n/* Fix librairies location */\n/* FIXME */\n@font-face {\n font-family: 'FontAwesome';\n src: url('fontawesome-webfont.eot?v=4.2.0');\n src: url('fontawesome-webfont.eot?#iefix&v=4.2.0') format('embedded-opentype'), url('fontawesome-webfont.woff?v=4.2.0') format('woff'), url('fontawesome-webfont.ttf?v=4.2.0') format('truetype'), url('fontawesome-webfont.svg?v=4.2.0#fontawesomeregular') format('svg');\n font-weight: normal;\n font-style: normal;\n}\n\n/* Logon */\n\n#container {\n\tbackground:$col_blue;\n\tpadding:10px 10px 1px;\n}\n\n#logon {\n\t.logo {\n\t\twidth:auto;\n\t\theight:auto;\n\t\ttext-transform:uppercase;\n\t\tposition:absolute;\n\t\ttop:0;\n\t\tleft:0;\n\t\tpadding:10px 10px 10px 35px;\n\t\tmargin:0;\n\t\tborder-bottom:3px solid white;\n\t\tfont-weight:bold;\n\t\tcolor:white;\n\t\tfont-size:35px;\n\t\tline-height:35px;\n\t\ttext-decoration: none;\n\t\tbackground:url(../images/logo_25.png) 10px 50% no-repeat;\n\t}\n\t\n\t.container {\n\t\tposition:fixed;\n\t\ttop:50%;\n\t\tleft:50%;\n\t\tmargin-left:-230px; /* -(68+10*2+160+200+5*2+1*2)/2 */\n\t\tmargin-top:-64px; /* -(10*2+20*4+20*2+20+2*2+1*2)/2 */\n\t}\n\t.box {\n\t\tbackground:white;\n\t\toverflow:hidden;\n\t\tposition:relative;\n\t\t\n\t\t.key {\n\t\t\tposition:absolute;\n\t\t\theight:100%;\n\t\t\twidth:68px;\n\t\t\tbackground:$col_bright_blue;\n\t\t\t\n\t\t\t.fa {\n\t\t\t\tposition:absolute;\n\t\t\t\ttop:50%;\n\t\t\t\tleft:50%;\n\t\t\t\ttext-align:center;\n\t\t\t\tcolor:$col_blue;\n\t\t\t\tline-height:50px;\n\t\t\t\tfont-size:50px;\n\t\t\t\twidth:50px;\n\t\t\t\tmargin-left:-25px;\n\t\t\t\tmargin-top:-25px;\n\t\t\t}\n\t\t}\n\t\t\n\t\ttable {\n\t\t\tmargin-left:68px;\n\t\t\tpadding:10px;\n\t\t\t\n\t\t\ttd {\n\t\t\t\tpadding:0;\n\t\t\t\ttext-align:left;\n\t\t\t\tfont-size:18px;\n\t\t\t\tcolor:$col_blue;\n\t\t\t}\n\t\t\n\t\t\ttd.desc {\n\t\t\t\twidth:160px;\n\t\t\t\tline-height:20px;\n\t\t\t\tpadding:10px 0;\n\t\t\t}\n\t\t\n\t\t\ttd.validate {\n\t\t\t\ttext-align:right;\n\t\t\t}\n\t\t}\n\t\t.feedback {\n\t\t\tfloat:left;\n\t\t\tfont-size:14px;\n\t\t\tmargin-top:5px;\n\t\t\tfont-style:italic;\n\t\t\tcolor:red;\n\t\t}\n\t\tinput {\n\t\t\tborder:1px solid $col_blue;\n\t\t\tcolor:$col_blue;\n\t\t\tfont-size:18px;\n\t\t\tline-height:20px;\n\t\t\tpadding:2px 5px;\n\t\t\twidth:200px;\n\t\t}\n\t\ta.button {\n\t\t\tmargin-right:0;\n\t\t}\n\t\ta.button .fa {\n\t\t\tmargin:1px;\n\t\t}\n\t}\n\t#footer {\n\t\tposition:fixed;\n\t\tbottom:0;\n\t\twidth:100%;\n\t}\n\t\n\t.logon_msg {\n\t\tmargin-top:10px;\n\t\tpadding:5px;\n\t\tcolor:white;\n\t\ttext-align:center;\n\t\tfont-size: 0.75em;\n\t\tborder:1px solid white;\n\t\n\t\tspan {\n\t\t\tdisplay:block;\n\t\t\tmargin-top:5px;\n\t\t}\n\t\t\n\t\tspan.msg_title {\n\t\t\tmargin-top:0;\n\t\t\ttext-decoration:underline;\n\t\t}\n\t}\n}"],
"names": [],
"file": "logon.css"
}
diff --git a/todo b/todo
index 3877b2a..1103f2a 100644
--- a/todo
+++ b/todo
@@ -9,9 +9,8 @@ Internal:
- Créer un fichier de testing
Bug fix:
-- [1.0.1] Fix unread messages
-- [1.0.2] Check le document type plutot que l'extension pour les /img
-- [1.0.2] Resize .gif
+- [1.0.3] Check le document type plutot que l'extension pour les /img
+- [1.0.3] Resize .gif
- Fix les "xxx se déconnecte" intempestives
- code reader : mettre la scrollbar à l'intérieur du code
- Trouver une meilleure place pour le menu