├── .gitignore ├── demo ├── bootstrap │ ├── img │ │ ├── glyphicons-halflings.png │ │ └── glyphicons-halflings-white.png │ └── css │ │ ├── bootstrap-responsive.min.css │ │ └── bootstrap.min.css ├── tiny_pubsub.js ├── tmpl.js ├── parse.html └── demo.js ├── parse.sh ├── backbone.parse.js ├── backboneparse.html ├── README.md └── jquery.parse.js /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.tmproj 3 | # using file for reference locally 4 | backbone.js -------------------------------------------------------------------------------- /demo/bootstrap/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srhyne/jQuery-Parse/HEAD/demo/bootstrap/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /demo/bootstrap/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srhyne/jQuery-Parse/HEAD/demo/bootstrap/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /demo/tiny_pubsub.js: -------------------------------------------------------------------------------- 1 | (function($) { 2 | 3 | var o = $({}); 4 | 5 | $.subscribe = function() { 6 | o.on.apply(o, arguments); 7 | }; 8 | 9 | $.unsubscribe = function() { 10 | o.off.apply(o, arguments); 11 | }; 12 | 13 | $.publish = function() { 14 | o.trigger.apply(o, arguments); 15 | }; 16 | 17 | }(jQuery)); 18 | 19 | -------------------------------------------------------------------------------- /parse.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | # Run this to get your base64 encoded Basic Auth header. 4 | # Get your credentials at https://www.parse.com/apps/{your app} 5 | # NEW! You don't need to use Basic auth now! Parse.com now supports CORS...https://parse.com/docs/rest 6 | 7 | export APPLICATION_ID="" 8 | export MASTER_KEY="" 9 | 10 | curl --user $APPLICATION_ID:$MASTER_KEY \ 11 | -X POST \ 12 | -H "Content-Type: application/json" \ 13 | -d '{"body": "This is a test task"}' \ 14 | -lv https://api.parse.com/1/classes/tasks -------------------------------------------------------------------------------- /demo/tmpl.js: -------------------------------------------------------------------------------- 1 | (function(){ 2 | var cache = {}; 3 | this.tmpl = function tmpl(str, data){ 4 | // Figure out if we're getting a template, or if we need to 5 | // load the template - and be sure to cache the result. 6 | var fn = !(/\W/).test(str) ? 7 | cache[str] = cache[str] || 8 | tmpl(document.getElementById(str).innerHTML) : 9 | 10 | // Generate a reusable function that will serve as a template 11 | // generator (and which will be cached). 12 | new Function("obj", 13 | "var p=[],print=function(){p.push.apply(p,arguments);};" + 14 | // Introduce the data as local variables using with(){} 15 | "with(obj){p.push('" + 16 | // Convert the template into pure JavaScript 17 | str 18 | .replace(/[\r\t\n]/g, " ") 19 | .split("<%").join("\t") 20 | .replace(/((^|%>)[^\t]*)'/g, "$1\r") 21 | .replace(/\t=(.*?)%>/g, "',$1,'") 22 | .split("\t").join("');") 23 | .split("%>").join("p.push('") 24 | .split("\r").join("\\'") 25 | + "');}return p.join('');"); 26 | // Provide some basic currying to the user 27 | return data ? fn( data ) : fn; 28 | }; 29 | })(); -------------------------------------------------------------------------------- /backbone.parse.js: -------------------------------------------------------------------------------- 1 | !function(Backbone, parse){ 2 | 3 | var getValue, getUrl, parseMethods, _sync; 4 | 5 | // Helper function to get a value from a Backbone object as a property 6 | // or as a function. 7 | getValue = function(object, prop) { 8 | if (!(object && object[prop])) return null; 9 | return _.isFunction(object[prop]) ? object[prop]() : object[prop]; 10 | }; 11 | 12 | getUrl = function(model){ 13 | return getValue(model, 'url') || $.error('A "url" property or function must be specified'); 14 | }; 15 | 16 | parseMethods = { 17 | create : 'post', 18 | read : 'get', 19 | update : 'put', 20 | 'delete' : 'delete' 21 | }; 22 | 23 | //memory issue w/ closure? 24 | _sync = function(method, model, options){ 25 | var url, attr; 26 | 27 | method = parseMethods[method]; 28 | 29 | if(typeof parse[method] !== 'function'){ 30 | return false; 31 | } 32 | 33 | attr = model.attributes; 34 | url = getUrl(model); 35 | 36 | _.each(['updatedAt', 'createdAt', 'objectId'],function(reserved){ 37 | delete attr[reserved]; 38 | }); 39 | 40 | parse[method](url, attr, options.success, options.error); 41 | 42 | return model; 43 | 44 | }; 45 | 46 | Backbone.ParseModel = Backbone.Model.extend({ 47 | idAttribute : 'objectId', 48 | sync : _sync 49 | }); 50 | 51 | Backbone.ParseCollection = Backbone.Collection.extend({ 52 | 53 | parse : function(response){ 54 | return response.results; 55 | }, 56 | 57 | sync : function(method, col, opts){ 58 | parse.get(this.url, opts.data, opts.success, opts.error ); 59 | } 60 | 61 | }); 62 | 63 | 64 | 65 | 66 | }(Backbone, $.parse); -------------------------------------------------------------------------------- /backboneparse.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Backbone Parse Example 6 | 7 | 8 | 9 | 10 | 11 | 71 | 72 | 73 | 74 | 75 | -------------------------------------------------------------------------------- /demo/parse.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery.parse AJAX Wrapper for parse.com 6 | 7 | 8 | 9 | 52 | 53 | 54 |
55 | 56 |
57 | 58 | 84 |
85 |

TODO Demo

86 |

Complete Step 3 First

87 | 88 | 89 | 92 | 93 | 94 |
90 | 91 |
95 |
96 |
97 |

Log

98 |
    99 | 100 |
101 |
102 | 103 |
104 | 105 | 106 | 107 |
108 | 109 | 110 | 111 | 112 | 113 | 121 | 122 | Fork me on GitHub 123 | 124 | 125 | 126 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # What is it? 2 | 3 | It's a super light-weight AJAX wrapper for Parse.com's wonderful database service. 4 | 5 | # Why did you build it? 6 | 7 | * I wanted a stupid-easy data store that I could use strictly from the client. No server needed! 8 | Write a thick front end application or app prototype. 9 | 10 | * No Schema! Just fire a $.parse.post & forget it. If the class hasn't been created already it will be 11 | instantiated. 12 | 13 | * Super simple... just $.parse.get/post/put/delete/ 14 | 15 | # New! 16 | 17 | ### [4-19-12 Live Demo Added >>](http://srhyne.github.com/jQuery-Parse/) 18 | 19 | * No code editing needed to try out the demo. 20 | * Logger (far right) shows you what $.parse methods are being executed and how. 21 | 22 | ### 3-28-12 23 | 24 | * WARNING! Big change made to $.parse.get regarding queries. (See parse#get). 25 | * `signup` method added 26 | * `login` method added and `$.get("login",{...})` supported as well 27 | * `requestPasswordReset` method added 28 | 29 | ### 1-27-12 30 | 31 | __Serve your app from http, cross domain calls FTW!__ 32 | 33 | Parse launched support for __cross-origin__ resource sharing using CORS. 34 | This means you no longer have to generate a base64 encoded Basic Auth key using the provided parse.sh 35 | You can now just pass your application id and rest key right to `$.parse.init`. 36 | 37 | 38 | # Examples.. 39 | 40 | ### parse#init( Object options ) 41 | 42 | $.parse.init({ 43 | app_id : "mJDSHSMJbdXm1GtLsTsGhXDvqn63RER6HL23JXTCG", // <-- enter your Application Id here 44 | rest_key : "ubpbA8Q1gplTRybw6pTkDAoZsT8KZTI9cy2tKJ82" // <--enter your REST API Key here 45 | }); 46 | 47 | ### parse#get( String class, [Object params], [Function callback], [Function error-callback] ) 48 | 49 | $.parse.get("tasks"); 50 | 51 | #### Note the change in how you pass your query! 52 | 53 | //88ef3bf5c6 and earlier assumed anything you passed was a part of a query 54 | 55 | $.parse.get('tasks',{ 56 | 'objectId' : 'od9867Vwd4' 57 | }); 58 | 59 | //NEW! way let's you pass order, limit, and skip params as well as the where query param 60 | 61 | $.parse.get('tasks',{ 62 | where : { user_id : '2k34hufa8' }, 63 | order : "-createdAt" 64 | }); 65 | 66 | ### parse#post( String class, Object new-record, [Function callback], [Function error-callback] ) 67 | 68 | $.parse.post('tasks',{ body : 'my message body' }, function(json){ 69 | console.log(json); 70 | }); 71 | 72 | ### parse#put( String class/id, Object updated_record, [Function callback], [Function error-callback] ) 73 | 74 | $.parse.put('tasks/od9867Vwd4',{ body : 'my updated text' }, function(json){ 75 | console.log(json); 76 | }, optionalErrorCallback); 77 | 78 | ### parse#delete(String class/id, [Function callback], [Function error-callback]) 79 | 80 | $.parse.delete('tasks/od9867Vwd4', optionalCallback, optionalErrorCallback); 81 | 82 | ### parse#signup(String class, Object user_record, [Function callback], [Function error-callback]) 83 | 84 | //Same as $.parse.post('users',{...}); 85 | 86 | $.parse.signup({ 87 | username : 'srhyne', 88 | password : 'password', 89 | email : 'testy@test.com' 90 | },optionalCallback, optionalErrorCallback); 91 | 92 | ### parse#login(String username, String password, [Function callback], [Function error-callback]) 93 | 94 | $.parse.login('srhyne', 'password', optionalCallback, optionalErrorCallback) 95 | 96 | ### parse#requestPasswordReset(String email, [Function callback], [Function error-callback]); 97 | 98 | $.parse.requestPasswordReset('testy@test.com', optionalCallback, optionalErrorCallback); 99 | 100 | # TODO 101 | 102 | * Tests! 103 | * Backbone / Spine sync extensions 104 | 105 | 106 | 107 | 108 | 109 | [![Bitdeli Badge](https://d2weczhvl823v0.cloudfront.net/srhyne/jquery-parse/trend.png)](https://bitdeli.com/free "Bitdeli Badge") 110 | 111 | -------------------------------------------------------------------------------- /demo/demo.js: -------------------------------------------------------------------------------- 1 | (function(GLOBAL, $, tmpl) { 2 | 3 | //dom cache 4 | var task_list, new_task, parse_log; 5 | 6 | 7 | function _initParse(creds){ 8 | $.parse.init(creds); 9 | _credentials(creds); 10 | return true; 11 | } 12 | 13 | function _removeTask() { 14 | var tr, id; 15 | 16 | tr = $(this).closest('tr'); 17 | id = tr.data("id"); 18 | 19 | tr.remove(); 20 | $.parse.delete("tasks/" + id,function(){ 21 | console.log('removed object ' + id); 22 | }); 23 | 24 | } 25 | 26 | function _onTaskEditStart() { 27 | var _this, oldValue, _input; 28 | 29 | _this = $(this); 30 | oldValue = _this.text(); 31 | _input = $("", { 32 | "class": "xlarge", 33 | value: oldValue, 34 | data: { 35 | old_value: oldValue 36 | }, 37 | autofocus: true 38 | }); 39 | 40 | _this.html(_input); 41 | } 42 | 43 | function _onTaskEditEnd(e) { 44 | var _this, val, oldVal, id; 45 | 46 | if (e.type === 'keydown' && e.which !== 13) { 47 | return true; 48 | } 49 | 50 | _this = $(this); 51 | val = _this.val(); 52 | oldVal = _this.data('old_value'); 53 | 54 | if (oldVal === val) { 55 | _this.parent().text(val); 56 | return false; 57 | } 58 | 59 | id = _this.closest('tr').data('id'); 60 | if (!id) { 61 | _this.parent().text(val); 62 | return false; 63 | } 64 | 65 | $.parse.put("tasks/" + id, { body: val}, function(json) { 66 | console.log('updated ' + id, json) 67 | }); 68 | 69 | return _this.parent().text(val); 70 | 71 | } 72 | 73 | function _newNote(e) { 74 | var val, task; 75 | 76 | if (e.which !== 13) { 77 | return true; 78 | } 79 | val = this.value; 80 | 81 | if (!val) { 82 | return false; 83 | } 84 | 85 | //clear value 86 | this.value = ""; 87 | 88 | task = $(tmpl("task_tmpl", { objectId: false, body: val })); 89 | task_list.append(task); 90 | 91 | $.parse.post('tasks', { body: val }, function(json) { 92 | task.data('id', json.objectId); 93 | }); 94 | 95 | } 96 | 97 | function _addEvents() { 98 | 99 | task_table 100 | .delegate("a.remove", 'click', _removeTask) 101 | .delegate("td.body", "click", _onTaskEditStart) 102 | .delegate("td input.xlarge", { 103 | focusout: _onTaskEditEnd, 104 | keydown: _onTaskEditEnd 105 | }) 106 | 107 | new_task.bind("keydown", _newNote); 108 | $("#add-credentials").on('click', _startDemo); 109 | $.subscribe && $.subscribe('parse.log', _updateParseLog ); 110 | 111 | } 112 | 113 | function _updateParseLog(e, str){ 114 | $("
  • ",{ text : str }).appendTo(parse_log); 115 | } 116 | 117 | function _startDemo(e){ 118 | var creds = {}; 119 | 120 | e.preventDefault(); 121 | $("#credentials").children('input').each(function(){ 122 | creds[this.name] = this.value; 123 | }); 124 | 125 | _initParse(creds) && get(); 126 | } 127 | 128 | function _credentials(creds){ 129 | var key = "parse.creds"; 130 | if(!window.localStorage || !window.JSON){ 131 | return false; 132 | } 133 | 134 | if(!creds){ 135 | return JSON.parse(localStorage[key] || "{}"); 136 | } 137 | 138 | localStorage[key] = JSON.stringify(creds); 139 | return creds; 140 | } 141 | 142 | function _checkForCredentials(){ 143 | var creds; 144 | 145 | creds = _credentials(); 146 | if(!creds.app_id || !creds.rest_key){ 147 | return false; 148 | } 149 | 150 | $("#credentials").children('input').each(function(){ 151 | this.value = creds[this.name]; 152 | }); 153 | 154 | _initParse(creds) && get(); 155 | 156 | } 157 | 158 | function get(){ 159 | 160 | $.parse.get("tasks", function(json) { 161 | var results, 162 | html; 163 | 164 | results = json.results; 165 | html = ""; 166 | 167 | 168 | //update demo status label 169 | $("#demo-status") 170 | .removeClass('label-important') 171 | .addClass('label-success') 172 | .text('Demo Ready!'); 173 | 174 | if (results.length === 0) { 175 | return false; 176 | } 177 | 178 | results.forEach(function(task) { 179 | html += tmpl("task_tmpl", task); 180 | }); 181 | task_list.html(html); 182 | 183 | }); 184 | 185 | 186 | } 187 | 188 | function init(){ 189 | //cache vars in module 190 | task_list = $("#task_list"); 191 | new_task = $("#new_task"); 192 | task_table = $("#task_table"); 193 | parse_log = $("#parse_log"); 194 | //add events 195 | _addEvents(); 196 | _checkForCredentials(); 197 | return GLOBAL.tasks; 198 | } 199 | 200 | 201 | GLOBAL.tasks = { 202 | init: init, 203 | get: get 204 | }; 205 | 206 | //doc ready init 207 | $(init); 208 | 209 | })(window, jQuery, tmpl); 210 | 211 | 212 | 213 | 214 | 215 | -------------------------------------------------------------------------------- /jquery.parse.js: -------------------------------------------------------------------------------- 1 | (function($) { 2 | 3 | var ns, _opts, methods, uriRgx; 4 | 5 | //Plugin namespace you can change this if you want.. 6 | //i.e, ns = "db" = $.db.get/post/put/delete 7 | ns = "parse"; 8 | 9 | //default opts 10 | _opts = { 11 | base: "https://api.parse.com/1/" 12 | }; 13 | 14 | //public methods 15 | methods = {}; 16 | 17 | //uriRgx 18 | uriRgx = /(files|installations|login|push|roles|requestPasswordReset|users)/; 19 | 20 | function _creds() { 21 | var error; 22 | 23 | if (_opts.app_id && _opts.rest_key) { 24 | return true; 25 | } 26 | 27 | error = "Missing app_id, or rest_key authentication parameters.\n" + 28 | "Pass these credentials to $." + ns + ".init\n" + 29 | "app_id = Application Id\n" + 30 | "rest_key = REST API Key"; 31 | alert(error); 32 | $.error(error); 33 | 34 | return false; 35 | } 36 | 37 | function _error(jqXHR, textStatus, errorThrown) { 38 | $.error("$." + ns + " :" + textStatus + " " + errorThrown); 39 | } 40 | 41 | //TODO JSON.stringify dependency? 42 | function _http(method, uri, data) { 43 | var req; 44 | 45 | if (!_creds()) { 46 | return false; 47 | } 48 | 49 | 50 | req = { 51 | //data 52 | contentType: "application/json", 53 | processData: false, 54 | dataType: 'json', 55 | 56 | //action 57 | url: _opts.base + (uriRgx.test(uri) ? uri: "classes/" + uri), 58 | type: method, 59 | 60 | //Credentials 61 | //NEW! Parse.com now supports CORS...https://parse.com/docs/rest 62 | headers: { 63 | "X-Parse-Application-Id": _opts.app_id, 64 | "X-Parse-REST-API-Key": _opts.rest_key 65 | } 66 | }; 67 | 68 | //If a session token is present in $.parse.init, adds it to the header 69 | if( _opts.session_token ) { 70 | req.headers["X-Parse-Session-Token"] = _opts.session_token; 71 | } 72 | 73 | //if no data passed just return ajax 74 | if (typeof data !== 'object') { 75 | return $.ajax(req); 76 | } 77 | 78 | //makes for easier reuse of query objects passed in as reference 79 | data = $.extend({}, data); 80 | 81 | //if get request process data as application/x-www-form-urlencoded 82 | if (method === 'GET') { 83 | req.processData = true; 84 | //if there is a where object it needs to be stringified first. 85 | //no need to encodeURIComponent on data.where as $.ajax does that natively 86 | if (data.where && typeof data.where === 'object') { 87 | data.where = JSON.stringify(data.where); 88 | } 89 | } 90 | //otherwise stringify all data. 91 | else { 92 | data = JSON.stringify(data); 93 | } 94 | 95 | //set request data 96 | req.data = data; 97 | 98 | return $.ajax(req); 99 | } 100 | 101 | 102 | function _response(req, cb, error) { 103 | typeof cb === "function" && req.done(cb); 104 | error = typeof error === 'function' ? error : _error; 105 | req.fail(error); 106 | return $[ns]; 107 | } 108 | 109 | function _logger(method, uri, data){ 110 | var str = [ "$.", ns, ".", method, "(", "\"",uri,"\""]; 111 | data && str.push(", " + (JSON ? JSON.stringify(data) : "data") ); 112 | str = str.join('')+");"; 113 | $.publish && $.publish("parse.log", [str]); 114 | return str; 115 | } 116 | //exports 117 | methods.init = function(customOpts) { 118 | $.extend(_opts, typeof customOpts === 'object' ? customOpts: {}, true); 119 | return $[ns]; 120 | }; 121 | 122 | 123 | /* 124 | Creates $.parse.get/post/put/delete methods 125 | Examples.... 126 | 127 | $.parse.post('tasks',{ body : "Build all the things!" },function(json){ 128 | console.log(json); 129 | }); 130 | 131 | */ 132 | $.each(['GET', 'POST', 'PUT', 'DELETE'], function(i, action) { 133 | var m = action.toLowerCase(); 134 | 135 | methods[m] = function() { 136 | var args, uri, data, cb, req; 137 | 138 | args = arguments; 139 | 140 | uri = args[0]; 141 | data = args[1]; 142 | cb = args[2]; 143 | error = args[3] 144 | 145 | if (typeof args[1] === 'function') { 146 | data = false; 147 | cb = args[1]; 148 | error = args[2]; 149 | } 150 | 151 | _logger(m, uri, data); 152 | 153 | req = _http(action, uri, data); 154 | 155 | return _response(req, cb, error); 156 | }; 157 | 158 | }); 159 | 160 | //alias methods 161 | $.extend(methods, { 162 | 163 | //@param Object data eg.. '{"username": "cooldude6", "password": "p_n7!-e8", "phone": "415-392-0202"}' 164 | //@param Function optional callback 165 | //@param Function optional error callback 166 | //@return $[ns] aka $.parse 167 | signup: function(data, cb, error) { 168 | return this.post('users', data, cb, error); 169 | }, 170 | 171 | //@param String username 172 | //@param String password 173 | //@param Function optional callback 174 | //@param Function optional error callback 175 | //@return $[ns] aka $.parse 176 | login: function(username, password, cb, error) { 177 | return this.get('login', { username: username, password: password }, cb, error); 178 | }, 179 | 180 | //@param String email address of user 181 | //@param Function optional callback 182 | //@param Function optional error callback 183 | //@return $[ns] aka $.parse 184 | requestPasswordReset: function(email, cb, error) { 185 | return this.post('requestPasswordReset', { email: email }, cb, error); 186 | } 187 | 188 | }); 189 | 190 | 191 | 192 | 193 | 194 | //attach methods to jQuery object using ns var aka 'parse' 195 | $[ns] = methods; 196 | 197 | })(jQuery); 198 | -------------------------------------------------------------------------------- /demo/bootstrap/css/bootstrap-responsive.min.css: -------------------------------------------------------------------------------- 1 | .clearfix{*zoom:1;}.clearfix:before,.clearfix:after{display:table;content:"";} 2 | .clearfix:after{clear:both;} 3 | .hide-text{overflow:hidden;text-indent:100%;white-space:nowrap;} 4 | .input-block-level{display:block;width:100%;min-height:28px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;} 5 | .hidden{display:none;visibility:hidden;} 6 | .visible-phone{display:none;} 7 | .visible-tablet{display:none;} 8 | .visible-desktop{display:block;} 9 | .hidden-phone{display:block;} 10 | .hidden-tablet{display:block;} 11 | .hidden-desktop{display:none;} 12 | @media (max-width:767px){.visible-phone{display:block;} .hidden-phone{display:none;} .hidden-desktop{display:block;} .visible-desktop{display:none;}}@media (min-width:768px) and (max-width:979px){.visible-tablet{display:block;} .hidden-tablet{display:none;} .hidden-desktop{display:block;} .visible-desktop{display:none;}}@media (max-width:480px){.nav-collapse{-webkit-transform:translate3d(0, 0, 0);} .page-header h1 small{display:block;line-height:18px;} input[type="checkbox"],input[type="radio"]{border:1px solid #ccc;} .form-horizontal .control-group>label{float:none;width:auto;padding-top:0;text-align:left;} .form-horizontal .controls{margin-left:0;} .form-horizontal .control-list{padding-top:0;} .form-horizontal .form-actions{padding-left:10px;padding-right:10px;} .modal{position:absolute;top:10px;left:10px;right:10px;width:auto;margin:0;}.modal.fade.in{top:auto;} .modal-header .close{padding:10px;margin:-10px;} .carousel-caption{position:static;}}@media (max-width:767px){body{padding-left:20px;padding-right:20px;} .navbar-fixed-top{margin-left:-20px;margin-right:-20px;} .container{width:auto;} .row-fluid{width:100%;} .row{margin-left:0;} .row>[class*="span"],.row-fluid>[class*="span"]{float:none;display:block;width:auto;margin:0;} .thumbnails [class*="span"]{width:auto;} input[class*="span"],select[class*="span"],textarea[class*="span"],.uneditable-input{display:block;width:100%;min-height:28px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;} .input-prepend input[class*="span"],.input-append input[class*="span"]{width:auto;}}@media (min-width:768px) and (max-width:979px){.row{margin-left:-20px;*zoom:1;}.row:before,.row:after{display:table;content:"";} .row:after{clear:both;} [class*="span"]{float:left;margin-left:20px;} .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:724px;} .span12{width:724px;} .span11{width:662px;} .span10{width:600px;} .span9{width:538px;} .span8{width:476px;} .span7{width:414px;} .span6{width:352px;} .span5{width:290px;} .span4{width:228px;} .span3{width:166px;} .span2{width:104px;} .span1{width:42px;} .offset12{margin-left:764px;} .offset11{margin-left:702px;} .offset10{margin-left:640px;} .offset9{margin-left:578px;} .offset8{margin-left:516px;} .offset7{margin-left:454px;} .offset6{margin-left:392px;} .offset5{margin-left:330px;} .offset4{margin-left:268px;} .offset3{margin-left:206px;} .offset2{margin-left:144px;} .offset1{margin-left:82px;} .row-fluid{width:100%;*zoom:1;}.row-fluid:before,.row-fluid:after{display:table;content:"";} .row-fluid:after{clear:both;} .row-fluid>[class*="span"]{float:left;margin-left:2.762430939%;} .row-fluid>[class*="span"]:first-child{margin-left:0;} .row-fluid > .span12{width:99.999999993%;} .row-fluid > .span11{width:91.436464082%;} .row-fluid > .span10{width:82.87292817100001%;} .row-fluid > .span9{width:74.30939226%;} .row-fluid > .span8{width:65.74585634900001%;} .row-fluid > .span7{width:57.182320438000005%;} .row-fluid > .span6{width:48.618784527%;} .row-fluid > .span5{width:40.055248616%;} .row-fluid > .span4{width:31.491712705%;} .row-fluid > .span3{width:22.928176794%;} .row-fluid > .span2{width:14.364640883%;} .row-fluid > .span1{width:5.801104972%;} input,textarea,.uneditable-input{margin-left:0;} input.span12, textarea.span12, .uneditable-input.span12{width:714px;} input.span11, textarea.span11, .uneditable-input.span11{width:652px;} input.span10, textarea.span10, .uneditable-input.span10{width:590px;} input.span9, textarea.span9, .uneditable-input.span9{width:528px;} input.span8, textarea.span8, .uneditable-input.span8{width:466px;} input.span7, textarea.span7, .uneditable-input.span7{width:404px;} input.span6, textarea.span6, .uneditable-input.span6{width:342px;} input.span5, textarea.span5, .uneditable-input.span5{width:280px;} input.span4, textarea.span4, .uneditable-input.span4{width:218px;} input.span3, textarea.span3, .uneditable-input.span3{width:156px;} input.span2, textarea.span2, .uneditable-input.span2{width:94px;} input.span1, textarea.span1, .uneditable-input.span1{width:32px;}}@media (max-width:979px){body{padding-top:0;} .navbar-fixed-top{position:static;margin-bottom:18px;} .navbar-fixed-top .navbar-inner{padding:5px;} .navbar .container{width:auto;padding:0;} .navbar .brand{padding-left:10px;padding-right:10px;margin:0 0 0 -5px;} .navbar .nav-collapse{clear:left;} .navbar .nav{float:none;margin:0 0 9px;} .navbar .nav>li{float:none;} .navbar .nav>li>a{margin-bottom:2px;} .navbar .nav>.divider-vertical{display:none;} .navbar .nav .nav-header{color:#999999;text-shadow:none;} .navbar .nav>li>a,.navbar .dropdown-menu a{padding:6px 15px;font-weight:bold;color:#999999;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} .navbar .dropdown-menu li+li a{margin-bottom:2px;} .navbar .nav>li>a:hover,.navbar .dropdown-menu a:hover{background-color:#222222;} .navbar .dropdown-menu{position:static;top:auto;left:auto;float:none;display:block;max-width:none;margin:0 15px;padding:0;background-color:transparent;border:none;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;} .navbar .dropdown-menu:before,.navbar .dropdown-menu:after{display:none;} .navbar .dropdown-menu .divider{display:none;} .navbar-form,.navbar-search{float:none;padding:9px 15px;margin:9px 0;border-top:1px solid #222222;border-bottom:1px solid #222222;-webkit-box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.1),0 1px 0 rgba(255, 255, 255, 0.1);-moz-box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.1),0 1px 0 rgba(255, 255, 255, 0.1);box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.1),0 1px 0 rgba(255, 255, 255, 0.1);} .navbar .nav.pull-right{float:none;margin-left:0;} .navbar-static .navbar-inner{padding-left:10px;padding-right:10px;} .btn-navbar{display:block;} .nav-collapse{overflow:hidden;height:0;}}@media (min-width:980px){.nav-collapse.collapse{height:auto !important;overflow:visible !important;}}@media (min-width:1200px){.row{margin-left:-30px;*zoom:1;}.row:before,.row:after{display:table;content:"";} .row:after{clear:both;} [class*="span"]{float:left;margin-left:30px;} .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:1170px;} .span12{width:1170px;} .span11{width:1070px;} .span10{width:970px;} .span9{width:870px;} .span8{width:770px;} .span7{width:670px;} .span6{width:570px;} .span5{width:470px;} .span4{width:370px;} .span3{width:270px;} .span2{width:170px;} .span1{width:70px;} .offset12{margin-left:1230px;} .offset11{margin-left:1130px;} .offset10{margin-left:1030px;} .offset9{margin-left:930px;} .offset8{margin-left:830px;} .offset7{margin-left:730px;} .offset6{margin-left:630px;} .offset5{margin-left:530px;} .offset4{margin-left:430px;} .offset3{margin-left:330px;} .offset2{margin-left:230px;} .offset1{margin-left:130px;} .row-fluid{width:100%;*zoom:1;}.row-fluid:before,.row-fluid:after{display:table;content:"";} .row-fluid:after{clear:both;} .row-fluid>[class*="span"]{float:left;margin-left:2.564102564%;} .row-fluid>[class*="span"]:first-child{margin-left:0;} .row-fluid > .span12{width:100%;} .row-fluid > .span11{width:91.45299145300001%;} .row-fluid > .span10{width:82.905982906%;} .row-fluid > .span9{width:74.358974359%;} .row-fluid > .span8{width:65.81196581200001%;} .row-fluid > .span7{width:57.264957265%;} .row-fluid > .span6{width:48.717948718%;} .row-fluid > .span5{width:40.170940171000005%;} .row-fluid > .span4{width:31.623931624%;} .row-fluid > .span3{width:23.076923077%;} .row-fluid > .span2{width:14.529914530000001%;} .row-fluid > .span1{width:5.982905983%;} input,textarea,.uneditable-input{margin-left:0;} input.span12, textarea.span12, .uneditable-input.span12{width:1160px;} input.span11, textarea.span11, .uneditable-input.span11{width:1060px;} input.span10, textarea.span10, .uneditable-input.span10{width:960px;} input.span9, textarea.span9, .uneditable-input.span9{width:860px;} input.span8, textarea.span8, .uneditable-input.span8{width:760px;} input.span7, textarea.span7, .uneditable-input.span7{width:660px;} input.span6, textarea.span6, .uneditable-input.span6{width:560px;} input.span5, textarea.span5, .uneditable-input.span5{width:460px;} input.span4, textarea.span4, .uneditable-input.span4{width:360px;} input.span3, textarea.span3, .uneditable-input.span3{width:260px;} input.span2, textarea.span2, .uneditable-input.span2{width:160px;} input.span1, textarea.span1, .uneditable-input.span1{width:60px;} .thumbnails{margin-left:-30px;} .thumbnails>li{margin-left:30px;}} 13 | -------------------------------------------------------------------------------- /demo/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- 1 | article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block;} 2 | audio,canvas,video{display:inline-block;*display:inline;*zoom:1;} 3 | audio:not([controls]){display:none;} 4 | html{font-size:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;} 5 | a:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;} 6 | a:hover,a:active{outline:0;} 7 | sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline;} 8 | sup{top:-0.5em;} 9 | sub{bottom:-0.25em;} 10 | img{height:auto;border:0;-ms-interpolation-mode:bicubic;vertical-align:middle;} 11 | button,input,select,textarea{margin:0;font-size:100%;vertical-align:middle;} 12 | button,input{*overflow:visible;line-height:normal;} 13 | button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0;} 14 | button,input[type="button"],input[type="reset"],input[type="submit"]{cursor:pointer;-webkit-appearance:button;} 15 | input[type="search"]{-webkit-appearance:textfield;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;} 16 | input[type="search"]::-webkit-search-decoration,input[type="search"]::-webkit-search-cancel-button{-webkit-appearance:none;} 17 | textarea{overflow:auto;vertical-align:top;} 18 | .clearfix{*zoom:1;}.clearfix:before,.clearfix:after{display:table;content:"";} 19 | .clearfix:after{clear:both;} 20 | .hide-text{overflow:hidden;text-indent:100%;white-space:nowrap;} 21 | .input-block-level{display:block;width:100%;min-height:28px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;} 22 | body{margin:0;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;line-height:18px;color:#333333;background-color:#ffffff;} 23 | a{color:#0088cc;text-decoration:none;} 24 | a:hover{color:#005580;text-decoration:underline;} 25 | .row{margin-left:-20px;*zoom:1;}.row:before,.row:after{display:table;content:"";} 26 | .row:after{clear:both;} 27 | [class*="span"]{float:left;margin-left:20px;} 28 | .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:940px;} 29 | .span12{width:940px;} 30 | .span11{width:860px;} 31 | .span10{width:780px;} 32 | .span9{width:700px;} 33 | .span8{width:620px;} 34 | .span7{width:540px;} 35 | .span6{width:460px;} 36 | .span5{width:380px;} 37 | .span4{width:300px;} 38 | .span3{width:220px;} 39 | .span2{width:140px;} 40 | .span1{width:60px;} 41 | .offset12{margin-left:980px;} 42 | .offset11{margin-left:900px;} 43 | .offset10{margin-left:820px;} 44 | .offset9{margin-left:740px;} 45 | .offset8{margin-left:660px;} 46 | .offset7{margin-left:580px;} 47 | .offset6{margin-left:500px;} 48 | .offset5{margin-left:420px;} 49 | .offset4{margin-left:340px;} 50 | .offset3{margin-left:260px;} 51 | .offset2{margin-left:180px;} 52 | .offset1{margin-left:100px;} 53 | .row-fluid{width:100%;*zoom:1;}.row-fluid:before,.row-fluid:after{display:table;content:"";} 54 | .row-fluid:after{clear:both;} 55 | .row-fluid>[class*="span"]{float:left;margin-left:2.127659574%;} 56 | .row-fluid>[class*="span"]:first-child{margin-left:0;} 57 | .row-fluid > .span12{width:99.99999998999999%;} 58 | .row-fluid > .span11{width:91.489361693%;} 59 | .row-fluid > .span10{width:82.97872339599999%;} 60 | .row-fluid > .span9{width:74.468085099%;} 61 | .row-fluid > .span8{width:65.95744680199999%;} 62 | .row-fluid > .span7{width:57.446808505%;} 63 | .row-fluid > .span6{width:48.93617020799999%;} 64 | .row-fluid > .span5{width:40.425531911%;} 65 | .row-fluid > .span4{width:31.914893614%;} 66 | .row-fluid > .span3{width:23.404255317%;} 67 | .row-fluid > .span2{width:14.89361702%;} 68 | .row-fluid > .span1{width:6.382978723%;} 69 | .container{margin-left:auto;margin-right:auto;*zoom:1;}.container:before,.container:after{display:table;content:"";} 70 | .container:after{clear:both;} 71 | .container-fluid{padding-left:20px;padding-right:20px;*zoom:1;}.container-fluid:before,.container-fluid:after{display:table;content:"";} 72 | .container-fluid:after{clear:both;} 73 | p{margin:0 0 9px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;line-height:18px;}p small{font-size:11px;color:#999999;} 74 | .lead{margin-bottom:18px;font-size:20px;font-weight:200;line-height:27px;} 75 | h1,h2,h3,h4,h5,h6{margin:0;font-family:inherit;font-weight:bold;color:inherit;text-rendering:optimizelegibility;}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{font-weight:normal;color:#999999;} 76 | h1{font-size:30px;line-height:36px;}h1 small{font-size:18px;} 77 | h2{font-size:24px;line-height:36px;}h2 small{font-size:18px;} 78 | h3{line-height:27px;font-size:18px;}h3 small{font-size:14px;} 79 | h4,h5,h6{line-height:18px;} 80 | h4{font-size:14px;}h4 small{font-size:12px;} 81 | h5{font-size:12px;} 82 | h6{font-size:11px;color:#999999;text-transform:uppercase;} 83 | .page-header{padding-bottom:17px;margin:18px 0;border-bottom:1px solid #eeeeee;} 84 | .page-header h1{line-height:1;} 85 | ul,ol{padding:0;margin:0 0 9px 25px;} 86 | ul ul,ul ol,ol ol,ol ul{margin-bottom:0;} 87 | ul{list-style:disc;} 88 | ol{list-style:decimal;} 89 | li{line-height:18px;} 90 | ul.unstyled,ol.unstyled{margin-left:0;list-style:none;} 91 | dl{margin-bottom:18px;} 92 | dt,dd{line-height:18px;} 93 | dt{font-weight:bold;line-height:17px;} 94 | dd{margin-left:9px;} 95 | .dl-horizontal dt{float:left;clear:left;width:120px;text-align:right;} 96 | .dl-horizontal dd{margin-left:130px;} 97 | hr{margin:18px 0;border:0;border-top:1px solid #eeeeee;border-bottom:1px solid #ffffff;} 98 | strong{font-weight:bold;} 99 | em{font-style:italic;} 100 | .muted{color:#999999;} 101 | abbr[title]{border-bottom:1px dotted #ddd;cursor:help;} 102 | abbr.initialism{font-size:90%;text-transform:uppercase;} 103 | blockquote{padding:0 0 0 15px;margin:0 0 18px;border-left:5px solid #eeeeee;}blockquote p{margin-bottom:0;font-size:16px;font-weight:300;line-height:22.5px;} 104 | blockquote small{display:block;line-height:18px;color:#999999;}blockquote small:before{content:'\2014 \00A0';} 105 | blockquote.pull-right{float:right;padding-left:0;padding-right:15px;border-left:0;border-right:5px solid #eeeeee;}blockquote.pull-right p,blockquote.pull-right small{text-align:right;} 106 | q:before,q:after,blockquote:before,blockquote:after{content:"";} 107 | address{display:block;margin-bottom:18px;line-height:18px;font-style:normal;} 108 | small{font-size:100%;} 109 | cite{font-style:normal;} 110 | code,pre{padding:0 3px 2px;font-family:Menlo,Monaco,"Courier New",monospace;font-size:12px;color:#333333;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} 111 | code{padding:2px 4px;color:#d14;background-color:#f7f7f9;border:1px solid #e1e1e8;} 112 | pre{display:block;padding:8.5px;margin:0 0 9px;font-size:12.025px;line-height:18px;background-color:#f5f5f5;border:1px solid #ccc;border:1px solid rgba(0, 0, 0, 0.15);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;white-space:pre;white-space:pre-wrap;word-break:break-all;word-wrap:break-word;}pre.prettyprint{margin-bottom:18px;} 113 | pre code{padding:0;color:inherit;background-color:transparent;border:0;} 114 | .pre-scrollable{max-height:340px;overflow-y:scroll;} 115 | form{margin:0 0 18px;} 116 | fieldset{padding:0;margin:0;border:0;} 117 | legend{display:block;width:100%;padding:0;margin-bottom:27px;font-size:19.5px;line-height:36px;color:#333333;border:0;border-bottom:1px solid #eee;}legend small{font-size:13.5px;color:#999999;} 118 | label,input,button,select,textarea{font-size:13px;font-weight:normal;line-height:18px;} 119 | input,button,select,textarea{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;} 120 | label{display:block;margin-bottom:5px;color:#333333;} 121 | input,textarea,select,.uneditable-input{display:inline-block;width:210px;height:18px;padding:4px;margin-bottom:9px;font-size:13px;line-height:18px;color:#555555;border:1px solid #cccccc;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} 122 | .uneditable-textarea{width:auto;height:auto;} 123 | label input,label textarea,label select{display:block;} 124 | input[type="image"],input[type="checkbox"],input[type="radio"]{width:auto;height:auto;padding:0;margin:3px 0;*margin-top:0;line-height:normal;cursor:pointer;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;border:0 \9;} 125 | input[type="image"]{border:0;} 126 | input[type="file"]{width:auto;padding:initial;line-height:initial;border:initial;background-color:#ffffff;background-color:initial;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;} 127 | input[type="button"],input[type="reset"],input[type="submit"]{width:auto;height:auto;} 128 | select,input[type="file"]{height:28px;*margin-top:4px;line-height:28px;} 129 | input[type="file"]{line-height:18px \9;} 130 | select{width:220px;background-color:#ffffff;} 131 | select[multiple],select[size]{height:auto;} 132 | input[type="image"]{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;} 133 | textarea{height:auto;} 134 | input[type="hidden"]{display:none;} 135 | .radio,.checkbox{padding-left:18px;} 136 | .radio input[type="radio"],.checkbox input[type="checkbox"]{float:left;margin-left:-18px;} 137 | .controls>.radio:first-child,.controls>.checkbox:first-child{padding-top:5px;} 138 | .radio.inline,.checkbox.inline{display:inline-block;padding-top:5px;margin-bottom:0;vertical-align:middle;} 139 | .radio.inline+.radio.inline,.checkbox.inline+.checkbox.inline{margin-left:10px;} 140 | input,textarea{-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-webkit-transition:border linear 0.2s,box-shadow linear 0.2s;-moz-transition:border linear 0.2s,box-shadow linear 0.2s;-ms-transition:border linear 0.2s,box-shadow linear 0.2s;-o-transition:border linear 0.2s,box-shadow linear 0.2s;transition:border linear 0.2s,box-shadow linear 0.2s;} 141 | input:focus,textarea:focus{border-color:rgba(82, 168, 236, 0.8);-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 8px rgba(82, 168, 236, 0.6);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 8px rgba(82, 168, 236, 0.6);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 8px rgba(82, 168, 236, 0.6);outline:0;outline:thin dotted \9;} 142 | input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus,select:focus{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;} 143 | .input-mini{width:60px;} 144 | .input-small{width:90px;} 145 | .input-medium{width:150px;} 146 | .input-large{width:210px;} 147 | .input-xlarge{width:270px;} 148 | .input-xxlarge{width:530px;} 149 | input[class*="span"],select[class*="span"],textarea[class*="span"],.uneditable-input{float:none;margin-left:0;} 150 | input,textarea,.uneditable-input{margin-left:0;} 151 | input.span12, textarea.span12, .uneditable-input.span12{width:930px;} 152 | input.span11, textarea.span11, .uneditable-input.span11{width:850px;} 153 | input.span10, textarea.span10, .uneditable-input.span10{width:770px;} 154 | input.span9, textarea.span9, .uneditable-input.span9{width:690px;} 155 | input.span8, textarea.span8, .uneditable-input.span8{width:610px;} 156 | input.span7, textarea.span7, .uneditable-input.span7{width:530px;} 157 | input.span6, textarea.span6, .uneditable-input.span6{width:450px;} 158 | input.span5, textarea.span5, .uneditable-input.span5{width:370px;} 159 | input.span4, textarea.span4, .uneditable-input.span4{width:290px;} 160 | input.span3, textarea.span3, .uneditable-input.span3{width:210px;} 161 | input.span2, textarea.span2, .uneditable-input.span2{width:130px;} 162 | input.span1, textarea.span1, .uneditable-input.span1{width:50px;} 163 | input[disabled],select[disabled],textarea[disabled],input[readonly],select[readonly],textarea[readonly]{background-color:#eeeeee;border-color:#ddd;cursor:not-allowed;} 164 | .control-group.warning>label,.control-group.warning .help-block,.control-group.warning .help-inline{color:#c09853;} 165 | .control-group.warning input,.control-group.warning select,.control-group.warning textarea{color:#c09853;border-color:#c09853;}.control-group.warning input:focus,.control-group.warning select:focus,.control-group.warning textarea:focus{border-color:#a47e3c;-webkit-box-shadow:0 0 6px #dbc59e;-moz-box-shadow:0 0 6px #dbc59e;box-shadow:0 0 6px #dbc59e;} 166 | .control-group.warning .input-prepend .add-on,.control-group.warning .input-append .add-on{color:#c09853;background-color:#fcf8e3;border-color:#c09853;} 167 | .control-group.error>label,.control-group.error .help-block,.control-group.error .help-inline{color:#b94a48;} 168 | .control-group.error input,.control-group.error select,.control-group.error textarea{color:#b94a48;border-color:#b94a48;}.control-group.error input:focus,.control-group.error select:focus,.control-group.error textarea:focus{border-color:#953b39;-webkit-box-shadow:0 0 6px #d59392;-moz-box-shadow:0 0 6px #d59392;box-shadow:0 0 6px #d59392;} 169 | .control-group.error .input-prepend .add-on,.control-group.error .input-append .add-on{color:#b94a48;background-color:#f2dede;border-color:#b94a48;} 170 | .control-group.success>label,.control-group.success .help-block,.control-group.success .help-inline{color:#468847;} 171 | .control-group.success input,.control-group.success select,.control-group.success textarea{color:#468847;border-color:#468847;}.control-group.success input:focus,.control-group.success select:focus,.control-group.success textarea:focus{border-color:#356635;-webkit-box-shadow:0 0 6px #7aba7b;-moz-box-shadow:0 0 6px #7aba7b;box-shadow:0 0 6px #7aba7b;} 172 | .control-group.success .input-prepend .add-on,.control-group.success .input-append .add-on{color:#468847;background-color:#dff0d8;border-color:#468847;} 173 | input:focus:required:invalid,textarea:focus:required:invalid,select:focus:required:invalid{color:#b94a48;border-color:#ee5f5b;}input:focus:required:invalid:focus,textarea:focus:required:invalid:focus,select:focus:required:invalid:focus{border-color:#e9322d;-webkit-box-shadow:0 0 6px #f8b9b7;-moz-box-shadow:0 0 6px #f8b9b7;box-shadow:0 0 6px #f8b9b7;} 174 | .form-actions{padding:17px 20px 18px;margin-top:18px;margin-bottom:18px;background-color:#eeeeee;border-top:1px solid #ddd;*zoom:1;}.form-actions:before,.form-actions:after{display:table;content:"";} 175 | .form-actions:after{clear:both;} 176 | .uneditable-input{display:block;background-color:#ffffff;border-color:#eee;-webkit-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.025);-moz-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.025);box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.025);cursor:not-allowed;} 177 | :-moz-placeholder{color:#999999;} 178 | ::-webkit-input-placeholder{color:#999999;} 179 | .help-block,.help-inline{color:#555555;} 180 | .help-block{display:block;margin-bottom:9px;} 181 | .help-inline{display:inline-block;*display:inline;*zoom:1;vertical-align:middle;padding-left:5px;} 182 | .input-prepend,.input-append{margin-bottom:5px;}.input-prepend input,.input-append input,.input-prepend select,.input-append select,.input-prepend .uneditable-input,.input-append .uneditable-input{*margin-left:0;-webkit-border-radius:0 3px 3px 0;-moz-border-radius:0 3px 3px 0;border-radius:0 3px 3px 0;}.input-prepend input:focus,.input-append input:focus,.input-prepend select:focus,.input-append select:focus,.input-prepend .uneditable-input:focus,.input-append .uneditable-input:focus{position:relative;z-index:2;} 183 | .input-prepend .uneditable-input,.input-append .uneditable-input{border-left-color:#ccc;} 184 | .input-prepend .add-on,.input-append .add-on{display:inline-block;width:auto;min-width:16px;height:18px;padding:4px 5px;font-weight:normal;line-height:18px;text-align:center;text-shadow:0 1px 0 #ffffff;vertical-align:middle;background-color:#eeeeee;border:1px solid #ccc;} 185 | .input-prepend .add-on,.input-append .add-on,.input-prepend .btn,.input-append .btn{-webkit-border-radius:3px 0 0 3px;-moz-border-radius:3px 0 0 3px;border-radius:3px 0 0 3px;} 186 | .input-prepend .active,.input-append .active{background-color:#a9dba9;border-color:#46a546;} 187 | .input-prepend .add-on,.input-prepend .btn{margin-right:-1px;} 188 | .input-append input,.input-append select .uneditable-input{-webkit-border-radius:3px 0 0 3px;-moz-border-radius:3px 0 0 3px;border-radius:3px 0 0 3px;} 189 | .input-append .uneditable-input{border-left-color:#eee;border-right-color:#ccc;} 190 | .input-append .add-on,.input-append .btn{margin-left:-1px;-webkit-border-radius:0 3px 3px 0;-moz-border-radius:0 3px 3px 0;border-radius:0 3px 3px 0;} 191 | .input-prepend.input-append input,.input-prepend.input-append select,.input-prepend.input-append .uneditable-input{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} 192 | .input-prepend.input-append .add-on:first-child,.input-prepend.input-append .btn:first-child{margin-right:-1px;-webkit-border-radius:3px 0 0 3px;-moz-border-radius:3px 0 0 3px;border-radius:3px 0 0 3px;} 193 | .input-prepend.input-append .add-on:last-child,.input-prepend.input-append .btn:last-child{margin-left:-1px;-webkit-border-radius:0 3px 3px 0;-moz-border-radius:0 3px 3px 0;border-radius:0 3px 3px 0;} 194 | .search-query{padding-left:14px;padding-right:14px;margin-bottom:0;-webkit-border-radius:14px;-moz-border-radius:14px;border-radius:14px;} 195 | .form-search input,.form-inline input,.form-horizontal input,.form-search textarea,.form-inline textarea,.form-horizontal textarea,.form-search select,.form-inline select,.form-horizontal select,.form-search .help-inline,.form-inline .help-inline,.form-horizontal .help-inline,.form-search .uneditable-input,.form-inline .uneditable-input,.form-horizontal .uneditable-input,.form-search .input-prepend,.form-inline .input-prepend,.form-horizontal .input-prepend,.form-search .input-append,.form-inline .input-append,.form-horizontal .input-append{display:inline-block;margin-bottom:0;} 196 | .form-search .hide,.form-inline .hide,.form-horizontal .hide{display:none;} 197 | .form-search label,.form-inline label{display:inline-block;} 198 | .form-search .input-append,.form-inline .input-append,.form-search .input-prepend,.form-inline .input-prepend{margin-bottom:0;} 199 | .form-search .radio,.form-search .checkbox,.form-inline .radio,.form-inline .checkbox{padding-left:0;margin-bottom:0;vertical-align:middle;} 200 | .form-search .radio input[type="radio"],.form-search .checkbox input[type="checkbox"],.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{float:left;margin-left:0;margin-right:3px;} 201 | .control-group{margin-bottom:9px;} 202 | legend+.control-group{margin-top:18px;-webkit-margin-top-collapse:separate;} 203 | .form-horizontal .control-group{margin-bottom:18px;*zoom:1;}.form-horizontal .control-group:before,.form-horizontal .control-group:after{display:table;content:"";} 204 | .form-horizontal .control-group:after{clear:both;} 205 | .form-horizontal .control-label{float:left;width:140px;padding-top:5px;text-align:right;} 206 | .form-horizontal .controls{margin-left:160px;*display:inline-block;*margin-left:0;*padding-left:20px;} 207 | .form-horizontal .help-block{margin-top:9px;margin-bottom:0;} 208 | .form-horizontal .form-actions{padding-left:160px;} 209 | table{max-width:100%;border-collapse:collapse;border-spacing:0;background-color:transparent;} 210 | .table{width:100%;margin-bottom:18px;}.table th,.table td{padding:8px;line-height:18px;text-align:left;vertical-align:top;border-top:1px solid #dddddd;} 211 | .table th{font-weight:bold;} 212 | .table thead th{vertical-align:bottom;} 213 | .table colgroup+thead tr:first-child th,.table colgroup+thead tr:first-child td,.table thead:first-child tr:first-child th,.table thead:first-child tr:first-child td{border-top:0;} 214 | .table tbody+tbody{border-top:2px solid #dddddd;} 215 | .table-condensed th,.table-condensed td{padding:4px 5px;} 216 | .table-bordered{border:1px solid #dddddd;border-left:0;border-collapse:separate;*border-collapse:collapsed;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}.table-bordered th,.table-bordered td{border-left:1px solid #dddddd;} 217 | .table-bordered thead:first-child tr:first-child th,.table-bordered tbody:first-child tr:first-child th,.table-bordered tbody:first-child tr:first-child td{border-top:0;} 218 | .table-bordered thead:first-child tr:first-child th:first-child,.table-bordered tbody:first-child tr:first-child td:first-child{-webkit-border-radius:4px 0 0 0;-moz-border-radius:4px 0 0 0;border-radius:4px 0 0 0;} 219 | .table-bordered thead:first-child tr:first-child th:last-child,.table-bordered tbody:first-child tr:first-child td:last-child{-webkit-border-radius:0 4px 0 0;-moz-border-radius:0 4px 0 0;border-radius:0 4px 0 0;} 220 | .table-bordered thead:last-child tr:last-child th:first-child,.table-bordered tbody:last-child tr:last-child td:first-child{-webkit-border-radius:0 0 0 4px;-moz-border-radius:0 0 0 4px;border-radius:0 0 0 4px;} 221 | .table-bordered thead:last-child tr:last-child th:last-child,.table-bordered tbody:last-child tr:last-child td:last-child{-webkit-border-radius:0 0 4px 0;-moz-border-radius:0 0 4px 0;border-radius:0 0 4px 0;} 222 | .table-striped tbody tr:nth-child(odd) td,.table-striped tbody tr:nth-child(odd) th{background-color:#f9f9f9;} 223 | .table tbody tr:hover td,.table tbody tr:hover th{background-color:#f5f5f5;} 224 | table .span1{float:none;width:44px;margin-left:0;} 225 | table .span2{float:none;width:124px;margin-left:0;} 226 | table .span3{float:none;width:204px;margin-left:0;} 227 | table .span4{float:none;width:284px;margin-left:0;} 228 | table .span5{float:none;width:364px;margin-left:0;} 229 | table .span6{float:none;width:444px;margin-left:0;} 230 | table .span7{float:none;width:524px;margin-left:0;} 231 | table .span8{float:none;width:604px;margin-left:0;} 232 | table .span9{float:none;width:684px;margin-left:0;} 233 | table .span10{float:none;width:764px;margin-left:0;} 234 | table .span11{float:none;width:844px;margin-left:0;} 235 | table .span12{float:none;width:924px;margin-left:0;} 236 | table .span13{float:none;width:1004px;margin-left:0;} 237 | table .span14{float:none;width:1084px;margin-left:0;} 238 | table .span15{float:none;width:1164px;margin-left:0;} 239 | table .span16{float:none;width:1244px;margin-left:0;} 240 | table .span17{float:none;width:1324px;margin-left:0;} 241 | table .span18{float:none;width:1404px;margin-left:0;} 242 | table .span19{float:none;width:1484px;margin-left:0;} 243 | table .span20{float:none;width:1564px;margin-left:0;} 244 | table .span21{float:none;width:1644px;margin-left:0;} 245 | table .span22{float:none;width:1724px;margin-left:0;} 246 | table .span23{float:none;width:1804px;margin-left:0;} 247 | table .span24{float:none;width:1884px;margin-left:0;} 248 | [class^="icon-"],[class*=" icon-"]{display:inline-block;width:14px;height:14px;line-height:14px;vertical-align:text-top;background-image:url("../img/glyphicons-halflings.png");background-position:14px 14px;background-repeat:no-repeat;*margin-right:.3em;}[class^="icon-"]:last-child,[class*=" icon-"]:last-child{*margin-left:0;} 249 | .icon-white{background-image:url("../img/glyphicons-halflings-white.png");} 250 | .icon-glass{background-position:0 0;} 251 | .icon-music{background-position:-24px 0;} 252 | .icon-search{background-position:-48px 0;} 253 | .icon-envelope{background-position:-72px 0;} 254 | .icon-heart{background-position:-96px 0;} 255 | .icon-star{background-position:-120px 0;} 256 | .icon-star-empty{background-position:-144px 0;} 257 | .icon-user{background-position:-168px 0;} 258 | .icon-film{background-position:-192px 0;} 259 | .icon-th-large{background-position:-216px 0;} 260 | .icon-th{background-position:-240px 0;} 261 | .icon-th-list{background-position:-264px 0;} 262 | .icon-ok{background-position:-288px 0;} 263 | .icon-remove{background-position:-312px 0;} 264 | .icon-zoom-in{background-position:-336px 0;} 265 | .icon-zoom-out{background-position:-360px 0;} 266 | .icon-off{background-position:-384px 0;} 267 | .icon-signal{background-position:-408px 0;} 268 | .icon-cog{background-position:-432px 0;} 269 | .icon-trash{background-position:-456px 0;} 270 | .icon-home{background-position:0 -24px;} 271 | .icon-file{background-position:-24px -24px;} 272 | .icon-time{background-position:-48px -24px;} 273 | .icon-road{background-position:-72px -24px;} 274 | .icon-download-alt{background-position:-96px -24px;} 275 | .icon-download{background-position:-120px -24px;} 276 | .icon-upload{background-position:-144px -24px;} 277 | .icon-inbox{background-position:-168px -24px;} 278 | .icon-play-circle{background-position:-192px -24px;} 279 | .icon-repeat{background-position:-216px -24px;} 280 | .icon-refresh{background-position:-240px -24px;} 281 | .icon-list-alt{background-position:-264px -24px;} 282 | .icon-lock{background-position:-287px -24px;} 283 | .icon-flag{background-position:-312px -24px;} 284 | .icon-headphones{background-position:-336px -24px;} 285 | .icon-volume-off{background-position:-360px -24px;} 286 | .icon-volume-down{background-position:-384px -24px;} 287 | .icon-volume-up{background-position:-408px -24px;} 288 | .icon-qrcode{background-position:-432px -24px;} 289 | .icon-barcode{background-position:-456px -24px;} 290 | .icon-tag{background-position:0 -48px;} 291 | .icon-tags{background-position:-25px -48px;} 292 | .icon-book{background-position:-48px -48px;} 293 | .icon-bookmark{background-position:-72px -48px;} 294 | .icon-print{background-position:-96px -48px;} 295 | .icon-camera{background-position:-120px -48px;} 296 | .icon-font{background-position:-144px -48px;} 297 | .icon-bold{background-position:-167px -48px;} 298 | .icon-italic{background-position:-192px -48px;} 299 | .icon-text-height{background-position:-216px -48px;} 300 | .icon-text-width{background-position:-240px -48px;} 301 | .icon-align-left{background-position:-264px -48px;} 302 | .icon-align-center{background-position:-288px -48px;} 303 | .icon-align-right{background-position:-312px -48px;} 304 | .icon-align-justify{background-position:-336px -48px;} 305 | .icon-list{background-position:-360px -48px;} 306 | .icon-indent-left{background-position:-384px -48px;} 307 | .icon-indent-right{background-position:-408px -48px;} 308 | .icon-facetime-video{background-position:-432px -48px;} 309 | .icon-picture{background-position:-456px -48px;} 310 | .icon-pencil{background-position:0 -72px;} 311 | .icon-map-marker{background-position:-24px -72px;} 312 | .icon-adjust{background-position:-48px -72px;} 313 | .icon-tint{background-position:-72px -72px;} 314 | .icon-edit{background-position:-96px -72px;} 315 | .icon-share{background-position:-120px -72px;} 316 | .icon-check{background-position:-144px -72px;} 317 | .icon-move{background-position:-168px -72px;} 318 | .icon-step-backward{background-position:-192px -72px;} 319 | .icon-fast-backward{background-position:-216px -72px;} 320 | .icon-backward{background-position:-240px -72px;} 321 | .icon-play{background-position:-264px -72px;} 322 | .icon-pause{background-position:-288px -72px;} 323 | .icon-stop{background-position:-312px -72px;} 324 | .icon-forward{background-position:-336px -72px;} 325 | .icon-fast-forward{background-position:-360px -72px;} 326 | .icon-step-forward{background-position:-384px -72px;} 327 | .icon-eject{background-position:-408px -72px;} 328 | .icon-chevron-left{background-position:-432px -72px;} 329 | .icon-chevron-right{background-position:-456px -72px;} 330 | .icon-plus-sign{background-position:0 -96px;} 331 | .icon-minus-sign{background-position:-24px -96px;} 332 | .icon-remove-sign{background-position:-48px -96px;} 333 | .icon-ok-sign{background-position:-72px -96px;} 334 | .icon-question-sign{background-position:-96px -96px;} 335 | .icon-info-sign{background-position:-120px -96px;} 336 | .icon-screenshot{background-position:-144px -96px;} 337 | .icon-remove-circle{background-position:-168px -96px;} 338 | .icon-ok-circle{background-position:-192px -96px;} 339 | .icon-ban-circle{background-position:-216px -96px;} 340 | .icon-arrow-left{background-position:-240px -96px;} 341 | .icon-arrow-right{background-position:-264px -96px;} 342 | .icon-arrow-up{background-position:-289px -96px;} 343 | .icon-arrow-down{background-position:-312px -96px;} 344 | .icon-share-alt{background-position:-336px -96px;} 345 | .icon-resize-full{background-position:-360px -96px;} 346 | .icon-resize-small{background-position:-384px -96px;} 347 | .icon-plus{background-position:-408px -96px;} 348 | .icon-minus{background-position:-433px -96px;} 349 | .icon-asterisk{background-position:-456px -96px;} 350 | .icon-exclamation-sign{background-position:0 -120px;} 351 | .icon-gift{background-position:-24px -120px;} 352 | .icon-leaf{background-position:-48px -120px;} 353 | .icon-fire{background-position:-72px -120px;} 354 | .icon-eye-open{background-position:-96px -120px;} 355 | .icon-eye-close{background-position:-120px -120px;} 356 | .icon-warning-sign{background-position:-144px -120px;} 357 | .icon-plane{background-position:-168px -120px;} 358 | .icon-calendar{background-position:-192px -120px;} 359 | .icon-random{background-position:-216px -120px;} 360 | .icon-comment{background-position:-240px -120px;} 361 | .icon-magnet{background-position:-264px -120px;} 362 | .icon-chevron-up{background-position:-288px -120px;} 363 | .icon-chevron-down{background-position:-313px -119px;} 364 | .icon-retweet{background-position:-336px -120px;} 365 | .icon-shopping-cart{background-position:-360px -120px;} 366 | .icon-folder-close{background-position:-384px -120px;} 367 | .icon-folder-open{background-position:-408px -120px;} 368 | .icon-resize-vertical{background-position:-432px -119px;} 369 | .icon-resize-horizontal{background-position:-456px -118px;} 370 | .dropdown{position:relative;} 371 | .dropdown-toggle{*margin-bottom:-3px;} 372 | .dropdown-toggle:active,.open .dropdown-toggle{outline:0;} 373 | .caret{display:inline-block;width:0;height:0;vertical-align:top;border-left:4px solid transparent;border-right:4px solid transparent;border-top:4px solid #000000;opacity:0.3;filter:alpha(opacity=30);content:"";} 374 | .dropdown .caret{margin-top:8px;margin-left:2px;} 375 | .dropdown:hover .caret,.open.dropdown .caret{opacity:1;filter:alpha(opacity=100);} 376 | .dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;float:left;display:none;min-width:160px;padding:4px 0;margin:0;list-style:none;background-color:#ffffff;border-color:#ccc;border-color:rgba(0, 0, 0, 0.2);border-style:solid;border-width:1px;-webkit-border-radius:0 0 5px 5px;-moz-border-radius:0 0 5px 5px;border-radius:0 0 5px 5px;-webkit-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);-moz-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;*border-right-width:2px;*border-bottom-width:2px;}.dropdown-menu.pull-right{right:0;left:auto;} 377 | .dropdown-menu .divider{height:1px;margin:8px 1px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #ffffff;*width:100%;*margin:-5px 0 5px;} 378 | .dropdown-menu a{display:block;padding:3px 15px;clear:both;font-weight:normal;line-height:18px;color:#333333;white-space:nowrap;} 379 | .dropdown-menu li>a:hover,.dropdown-menu .active>a,.dropdown-menu .active>a:hover{color:#ffffff;text-decoration:none;background-color:#0088cc;} 380 | .dropdown.open{*z-index:1000;}.dropdown.open .dropdown-toggle{color:#ffffff;background:#ccc;background:rgba(0, 0, 0, 0.3);} 381 | .dropdown.open .dropdown-menu{display:block;} 382 | .pull-right .dropdown-menu{left:auto;right:0;} 383 | .dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px solid #000000;content:"\2191";} 384 | .dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:1px;} 385 | .typeahead{margin-top:2px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} 386 | .well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #eee;border:1px solid rgba(0, 0, 0, 0.05);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05);}.well blockquote{border-color:#ddd;border-color:rgba(0, 0, 0, 0.15);} 387 | .well-large{padding:24px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;} 388 | .well-small{padding:9px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} 389 | .fade{-webkit-transition:opacity 0.15s linear;-moz-transition:opacity 0.15s linear;-ms-transition:opacity 0.15s linear;-o-transition:opacity 0.15s linear;transition:opacity 0.15s linear;opacity:0;}.fade.in{opacity:1;} 390 | .collapse{-webkit-transition:height 0.35s ease;-moz-transition:height 0.35s ease;-ms-transition:height 0.35s ease;-o-transition:height 0.35s ease;transition:height 0.35s ease;position:relative;overflow:hidden;height:0;}.collapse.in{height:auto;} 391 | .close{float:right;font-size:20px;font-weight:bold;line-height:18px;color:#000000;text-shadow:0 1px 0 #ffffff;opacity:0.2;filter:alpha(opacity=20);}.close:hover{color:#000000;text-decoration:none;opacity:0.4;filter:alpha(opacity=40);cursor:pointer;} 392 | .btn{display:inline-block;*display:inline;*zoom:1;padding:4px 10px 4px;margin-bottom:0;font-size:13px;line-height:18px;color:#333333;text-align:center;text-shadow:0 1px 1px rgba(255, 255, 255, 0.75);vertical-align:middle;background-color:#f5f5f5;background-image:-moz-linear-gradient(top, #ffffff, #e6e6e6);background-image:-ms-linear-gradient(top, #ffffff, #e6e6e6);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));background-image:-webkit-linear-gradient(top, #ffffff, #e6e6e6);background-image:-o-linear-gradient(top, #ffffff, #e6e6e6);background-image:linear-gradient(top, #ffffff, #e6e6e6);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);border-color:#e6e6e6 #e6e6e6 #bfbfbf;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);filter:progid:dximagetransform.microsoft.gradient(enabled=false);border:1px solid #cccccc;border-bottom-color:#b3b3b3;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.2),0 1px 2px rgba(0, 0, 0, 0.05);-moz-box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.2),0 1px 2px rgba(0, 0, 0, 0.05);box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.2),0 1px 2px rgba(0, 0, 0, 0.05);cursor:pointer;*margin-left:.3em;}.btn:hover,.btn:active,.btn.active,.btn.disabled,.btn[disabled]{background-color:#e6e6e6;} 393 | .btn:active,.btn.active{background-color:#cccccc \9;} 394 | .btn:first-child{*margin-left:0;} 395 | .btn:hover{color:#333333;text-decoration:none;background-color:#e6e6e6;background-position:0 -15px;-webkit-transition:background-position 0.1s linear;-moz-transition:background-position 0.1s linear;-ms-transition:background-position 0.1s linear;-o-transition:background-position 0.1s linear;transition:background-position 0.1s linear;} 396 | .btn:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;} 397 | .btn.active,.btn:active{background-image:none;-webkit-box-shadow:inset 0 2px 4px rgba(0, 0, 0, 0.15),0 1px 2px rgba(0, 0, 0, 0.05);-moz-box-shadow:inset 0 2px 4px rgba(0, 0, 0, 0.15),0 1px 2px rgba(0, 0, 0, 0.05);box-shadow:inset 0 2px 4px rgba(0, 0, 0, 0.15),0 1px 2px rgba(0, 0, 0, 0.05);background-color:#e6e6e6;background-color:#d9d9d9 \9;outline:0;} 398 | .btn.disabled,.btn[disabled]{cursor:default;background-image:none;background-color:#e6e6e6;opacity:0.65;filter:alpha(opacity=65);-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;} 399 | .btn-large{padding:9px 14px;font-size:15px;line-height:normal;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;} 400 | .btn-large [class^="icon-"]{margin-top:1px;} 401 | .btn-small{padding:5px 9px;font-size:11px;line-height:16px;} 402 | .btn-small [class^="icon-"]{margin-top:-1px;} 403 | .btn-mini{padding:2px 6px;font-size:11px;line-height:14px;} 404 | .btn-primary,.btn-primary:hover,.btn-warning,.btn-warning:hover,.btn-danger,.btn-danger:hover,.btn-success,.btn-success:hover,.btn-info,.btn-info:hover,.btn-inverse,.btn-inverse:hover{text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);color:#ffffff;} 405 | .btn-primary.active,.btn-warning.active,.btn-danger.active,.btn-success.active,.btn-info.active,.btn-inverse.active{color:rgba(255, 255, 255, 0.75);} 406 | .btn-primary{background-color:#0074cc;background-image:-moz-linear-gradient(top, #0088cc, #0055cc);background-image:-ms-linear-gradient(top, #0088cc, #0055cc);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0055cc));background-image:-webkit-linear-gradient(top, #0088cc, #0055cc);background-image:-o-linear-gradient(top, #0088cc, #0055cc);background-image:linear-gradient(top, #0088cc, #0055cc);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#0088cc', endColorstr='#0055cc', GradientType=0);border-color:#0055cc #0055cc #003580;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);filter:progid:dximagetransform.microsoft.gradient(enabled=false);}.btn-primary:hover,.btn-primary:active,.btn-primary.active,.btn-primary.disabled,.btn-primary[disabled]{background-color:#0055cc;} 407 | .btn-primary:active,.btn-primary.active{background-color:#004099 \9;} 408 | .btn-warning{background-color:#faa732;background-image:-moz-linear-gradient(top, #fbb450, #f89406);background-image:-ms-linear-gradient(top, #fbb450, #f89406);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));background-image:-webkit-linear-gradient(top, #fbb450, #f89406);background-image:-o-linear-gradient(top, #fbb450, #f89406);background-image:linear-gradient(top, #fbb450, #f89406);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbb450', endColorstr='#f89406', GradientType=0);border-color:#f89406 #f89406 #ad6704;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);filter:progid:dximagetransform.microsoft.gradient(enabled=false);}.btn-warning:hover,.btn-warning:active,.btn-warning.active,.btn-warning.disabled,.btn-warning[disabled]{background-color:#f89406;} 409 | .btn-warning:active,.btn-warning.active{background-color:#c67605 \9;} 410 | .btn-danger{background-color:#da4f49;background-image:-moz-linear-gradient(top, #ee5f5b, #bd362f);background-image:-ms-linear-gradient(top, #ee5f5b, #bd362f);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));background-image:-webkit-linear-gradient(top, #ee5f5b, #bd362f);background-image:-o-linear-gradient(top, #ee5f5b, #bd362f);background-image:linear-gradient(top, #ee5f5b, #bd362f);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#bd362f', GradientType=0);border-color:#bd362f #bd362f #802420;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);filter:progid:dximagetransform.microsoft.gradient(enabled=false);}.btn-danger:hover,.btn-danger:active,.btn-danger.active,.btn-danger.disabled,.btn-danger[disabled]{background-color:#bd362f;} 411 | .btn-danger:active,.btn-danger.active{background-color:#942a25 \9;} 412 | .btn-success{background-color:#5bb75b;background-image:-moz-linear-gradient(top, #62c462, #51a351);background-image:-ms-linear-gradient(top, #62c462, #51a351);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));background-image:-webkit-linear-gradient(top, #62c462, #51a351);background-image:-o-linear-gradient(top, #62c462, #51a351);background-image:linear-gradient(top, #62c462, #51a351);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#51a351', GradientType=0);border-color:#51a351 #51a351 #387038;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);filter:progid:dximagetransform.microsoft.gradient(enabled=false);}.btn-success:hover,.btn-success:active,.btn-success.active,.btn-success.disabled,.btn-success[disabled]{background-color:#51a351;} 413 | .btn-success:active,.btn-success.active{background-color:#408140 \9;} 414 | .btn-info{background-color:#49afcd;background-image:-moz-linear-gradient(top, #5bc0de, #2f96b4);background-image:-ms-linear-gradient(top, #5bc0de, #2f96b4);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));background-image:-webkit-linear-gradient(top, #5bc0de, #2f96b4);background-image:-o-linear-gradient(top, #5bc0de, #2f96b4);background-image:linear-gradient(top, #5bc0de, #2f96b4);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#2f96b4', GradientType=0);border-color:#2f96b4 #2f96b4 #1f6377;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);filter:progid:dximagetransform.microsoft.gradient(enabled=false);}.btn-info:hover,.btn-info:active,.btn-info.active,.btn-info.disabled,.btn-info[disabled]{background-color:#2f96b4;} 415 | .btn-info:active,.btn-info.active{background-color:#24748c \9;} 416 | .btn-inverse{background-color:#414141;background-image:-moz-linear-gradient(top, #555555, #222222);background-image:-ms-linear-gradient(top, #555555, #222222);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#555555), to(#222222));background-image:-webkit-linear-gradient(top, #555555, #222222);background-image:-o-linear-gradient(top, #555555, #222222);background-image:linear-gradient(top, #555555, #222222);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#555555', endColorstr='#222222', GradientType=0);border-color:#222222 #222222 #000000;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);filter:progid:dximagetransform.microsoft.gradient(enabled=false);}.btn-inverse:hover,.btn-inverse:active,.btn-inverse.active,.btn-inverse.disabled,.btn-inverse[disabled]{background-color:#222222;} 417 | .btn-inverse:active,.btn-inverse.active{background-color:#080808 \9;} 418 | button.btn,input[type="submit"].btn{*padding-top:2px;*padding-bottom:2px;}button.btn::-moz-focus-inner,input[type="submit"].btn::-moz-focus-inner{padding:0;border:0;} 419 | button.btn.btn-large,input[type="submit"].btn.btn-large{*padding-top:7px;*padding-bottom:7px;} 420 | button.btn.btn-small,input[type="submit"].btn.btn-small{*padding-top:3px;*padding-bottom:3px;} 421 | button.btn.btn-mini,input[type="submit"].btn.btn-mini{*padding-top:1px;*padding-bottom:1px;} 422 | .btn-group{position:relative;*zoom:1;*margin-left:.3em;}.btn-group:before,.btn-group:after{display:table;content:"";} 423 | .btn-group:after{clear:both;} 424 | .btn-group:first-child{*margin-left:0;} 425 | .btn-group+.btn-group{margin-left:5px;} 426 | .btn-toolbar{margin-top:9px;margin-bottom:9px;}.btn-toolbar .btn-group{display:inline-block;*display:inline;*zoom:1;} 427 | .btn-group .btn{position:relative;float:left;margin-left:-1px;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} 428 | .btn-group .btn:first-child{margin-left:0;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px;} 429 | .btn-group .btn:last-child,.btn-group .dropdown-toggle{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px;} 430 | .btn-group .btn.large:first-child{margin-left:0;-webkit-border-top-left-radius:6px;-moz-border-radius-topleft:6px;border-top-left-radius:6px;-webkit-border-bottom-left-radius:6px;-moz-border-radius-bottomleft:6px;border-bottom-left-radius:6px;} 431 | .btn-group .btn.large:last-child,.btn-group .large.dropdown-toggle{-webkit-border-top-right-radius:6px;-moz-border-radius-topright:6px;border-top-right-radius:6px;-webkit-border-bottom-right-radius:6px;-moz-border-radius-bottomright:6px;border-bottom-right-radius:6px;} 432 | .btn-group .btn:hover,.btn-group .btn:focus,.btn-group .btn:active,.btn-group .btn.active{z-index:2;} 433 | .btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0;} 434 | .btn-group .dropdown-toggle{padding-left:8px;padding-right:8px;-webkit-box-shadow:inset 1px 0 0 rgba(255, 255, 255, 0.125),inset 0 1px 0 rgba(255, 255, 255, 0.2),0 1px 2px rgba(0, 0, 0, 0.05);-moz-box-shadow:inset 1px 0 0 rgba(255, 255, 255, 0.125),inset 0 1px 0 rgba(255, 255, 255, 0.2),0 1px 2px rgba(0, 0, 0, 0.05);box-shadow:inset 1px 0 0 rgba(255, 255, 255, 0.125),inset 0 1px 0 rgba(255, 255, 255, 0.2),0 1px 2px rgba(0, 0, 0, 0.05);*padding-top:3px;*padding-bottom:3px;} 435 | .btn-group .btn-mini.dropdown-toggle{padding-left:5px;padding-right:5px;*padding-top:1px;*padding-bottom:1px;} 436 | .btn-group .btn-small.dropdown-toggle{*padding-top:4px;*padding-bottom:4px;} 437 | .btn-group .btn-large.dropdown-toggle{padding-left:12px;padding-right:12px;} 438 | .btn-group.open{*z-index:1000;}.btn-group.open .dropdown-menu{display:block;margin-top:1px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;} 439 | .btn-group.open .dropdown-toggle{background-image:none;-webkit-box-shadow:inset 0 1px 6px rgba(0, 0, 0, 0.15),0 1px 2px rgba(0, 0, 0, 0.05);-moz-box-shadow:inset 0 1px 6px rgba(0, 0, 0, 0.15),0 1px 2px rgba(0, 0, 0, 0.05);box-shadow:inset 0 1px 6px rgba(0, 0, 0, 0.15),0 1px 2px rgba(0, 0, 0, 0.05);} 440 | .btn .caret{margin-top:7px;margin-left:0;} 441 | .btn:hover .caret,.open.btn-group .caret{opacity:1;filter:alpha(opacity=100);} 442 | .btn-mini .caret{margin-top:5px;} 443 | .btn-small .caret{margin-top:6px;} 444 | .btn-large .caret{margin-top:6px;border-left:5px solid transparent;border-right:5px solid transparent;border-top:5px solid #000000;} 445 | .btn-primary .caret,.btn-warning .caret,.btn-danger .caret,.btn-info .caret,.btn-success .caret,.btn-inverse .caret{border-top-color:#ffffff;border-bottom-color:#ffffff;opacity:0.75;filter:alpha(opacity=75);} 446 | .alert{padding:8px 35px 8px 14px;margin-bottom:18px;text-shadow:0 1px 0 rgba(255, 255, 255, 0.5);background-color:#fcf8e3;border:1px solid #fbeed5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;color:#c09853;} 447 | .alert-heading{color:inherit;} 448 | .alert .close{position:relative;top:-2px;right:-21px;line-height:18px;} 449 | .alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#468847;} 450 | .alert-danger,.alert-error{background-color:#f2dede;border-color:#eed3d7;color:#b94a48;} 451 | .alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#3a87ad;} 452 | .alert-block{padding-top:14px;padding-bottom:14px;} 453 | .alert-block>p,.alert-block>ul{margin-bottom:0;} 454 | .alert-block p+p{margin-top:5px;} 455 | .nav{margin-left:0;margin-bottom:18px;list-style:none;} 456 | .nav>li>a{display:block;} 457 | .nav>li>a:hover{text-decoration:none;background-color:#eeeeee;} 458 | .nav .nav-header{display:block;padding:3px 15px;font-size:11px;font-weight:bold;line-height:18px;color:#999999;text-shadow:0 1px 0 rgba(255, 255, 255, 0.5);text-transform:uppercase;} 459 | .nav li+.nav-header{margin-top:9px;} 460 | .nav-list{padding-left:15px;padding-right:15px;margin-bottom:0;} 461 | .nav-list>li>a,.nav-list .nav-header{margin-left:-15px;margin-right:-15px;text-shadow:0 1px 0 rgba(255, 255, 255, 0.5);} 462 | .nav-list>li>a{padding:3px 15px;} 463 | .nav-list>.active>a,.nav-list>.active>a:hover{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.2);background-color:#0088cc;} 464 | .nav-list [class^="icon-"]{margin-right:2px;} 465 | .nav-list .divider{height:1px;margin:8px 1px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #ffffff;*width:100%;*margin:-5px 0 5px;} 466 | .nav-tabs,.nav-pills{*zoom:1;}.nav-tabs:before,.nav-pills:before,.nav-tabs:after,.nav-pills:after{display:table;content:"";} 467 | .nav-tabs:after,.nav-pills:after{clear:both;} 468 | .nav-tabs>li,.nav-pills>li{float:left;} 469 | .nav-tabs>li>a,.nav-pills>li>a{padding-right:12px;padding-left:12px;margin-right:2px;line-height:14px;} 470 | .nav-tabs{border-bottom:1px solid #ddd;} 471 | .nav-tabs>li{margin-bottom:-1px;} 472 | .nav-tabs>li>a{padding-top:8px;padding-bottom:8px;line-height:18px;border:1px solid transparent;-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0;}.nav-tabs>li>a:hover{border-color:#eeeeee #eeeeee #dddddd;} 473 | .nav-tabs>.active>a,.nav-tabs>.active>a:hover{color:#555555;background-color:#ffffff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default;} 474 | .nav-pills>li>a{padding-top:8px;padding-bottom:8px;margin-top:2px;margin-bottom:2px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;} 475 | .nav-pills>.active>a,.nav-pills>.active>a:hover{color:#ffffff;background-color:#0088cc;} 476 | .nav-stacked>li{float:none;} 477 | .nav-stacked>li>a{margin-right:0;} 478 | .nav-tabs.nav-stacked{border-bottom:0;} 479 | .nav-tabs.nav-stacked>li>a{border:1px solid #ddd;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} 480 | .nav-tabs.nav-stacked>li:first-child>a{-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0;} 481 | .nav-tabs.nav-stacked>li:last-child>a{-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px;} 482 | .nav-tabs.nav-stacked>li>a:hover{border-color:#ddd;z-index:2;} 483 | .nav-pills.nav-stacked>li>a{margin-bottom:3px;} 484 | .nav-pills.nav-stacked>li:last-child>a{margin-bottom:1px;} 485 | .nav-tabs .dropdown-menu,.nav-pills .dropdown-menu{margin-top:1px;border-width:1px;} 486 | .nav-pills .dropdown-menu{-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} 487 | .nav-tabs .dropdown-toggle .caret,.nav-pills .dropdown-toggle .caret{border-top-color:#0088cc;border-bottom-color:#0088cc;margin-top:6px;} 488 | .nav-tabs .dropdown-toggle:hover .caret,.nav-pills .dropdown-toggle:hover .caret{border-top-color:#005580;border-bottom-color:#005580;} 489 | .nav-tabs .active .dropdown-toggle .caret,.nav-pills .active .dropdown-toggle .caret{border-top-color:#333333;border-bottom-color:#333333;} 490 | .nav>.dropdown.active>a:hover{color:#000000;cursor:pointer;} 491 | .nav-tabs .open .dropdown-toggle,.nav-pills .open .dropdown-toggle,.nav>.open.active>a:hover{color:#ffffff;background-color:#999999;border-color:#999999;} 492 | .nav .open .caret,.nav .open.active .caret,.nav .open a:hover .caret{border-top-color:#ffffff;border-bottom-color:#ffffff;opacity:1;filter:alpha(opacity=100);} 493 | .tabs-stacked .open>a:hover{border-color:#999999;} 494 | .tabbable{*zoom:1;}.tabbable:before,.tabbable:after{display:table;content:"";} 495 | .tabbable:after{clear:both;} 496 | .tab-content{display:table;width:100%;} 497 | .tabs-below .nav-tabs,.tabs-right .nav-tabs,.tabs-left .nav-tabs{border-bottom:0;} 498 | .tab-content>.tab-pane,.pill-content>.pill-pane{display:none;} 499 | .tab-content>.active,.pill-content>.active{display:block;} 500 | .tabs-below .nav-tabs{border-top:1px solid #ddd;} 501 | .tabs-below .nav-tabs>li{margin-top:-1px;margin-bottom:0;} 502 | .tabs-below .nav-tabs>li>a{-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px;}.tabs-below .nav-tabs>li>a:hover{border-bottom-color:transparent;border-top-color:#ddd;} 503 | .tabs-below .nav-tabs .active>a,.tabs-below .nav-tabs .active>a:hover{border-color:transparent #ddd #ddd #ddd;} 504 | .tabs-left .nav-tabs>li,.tabs-right .nav-tabs>li{float:none;} 505 | .tabs-left .nav-tabs>li>a,.tabs-right .nav-tabs>li>a{min-width:74px;margin-right:0;margin-bottom:3px;} 506 | .tabs-left .nav-tabs{float:left;margin-right:19px;border-right:1px solid #ddd;} 507 | .tabs-left .nav-tabs>li>a{margin-right:-1px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px;} 508 | .tabs-left .nav-tabs>li>a:hover{border-color:#eeeeee #dddddd #eeeeee #eeeeee;} 509 | .tabs-left .nav-tabs .active>a,.tabs-left .nav-tabs .active>a:hover{border-color:#ddd transparent #ddd #ddd;*border-right-color:#ffffff;} 510 | .tabs-right .nav-tabs{float:right;margin-left:19px;border-left:1px solid #ddd;} 511 | .tabs-right .nav-tabs>li>a{margin-left:-1px;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;} 512 | .tabs-right .nav-tabs>li>a:hover{border-color:#eeeeee #eeeeee #eeeeee #dddddd;} 513 | .tabs-right .nav-tabs .active>a,.tabs-right .nav-tabs .active>a:hover{border-color:#ddd #ddd #ddd transparent;*border-left-color:#ffffff;} 514 | .navbar{*position:relative;*z-index:2;overflow:visible;margin-bottom:18px;} 515 | .navbar-inner{padding-left:20px;padding-right:20px;background-color:#2c2c2c;background-image:-moz-linear-gradient(top, #333333, #222222);background-image:-ms-linear-gradient(top, #333333, #222222);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));background-image:-webkit-linear-gradient(top, #333333, #222222);background-image:-o-linear-gradient(top, #333333, #222222);background-image:linear-gradient(top, #333333, #222222);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 3px rgba(0, 0, 0, 0.25),inset 0 -1px 0 rgba(0, 0, 0, 0.1);-moz-box-shadow:0 1px 3px rgba(0, 0, 0, 0.25),inset 0 -1px 0 rgba(0, 0, 0, 0.1);box-shadow:0 1px 3px rgba(0, 0, 0, 0.25),inset 0 -1px 0 rgba(0, 0, 0, 0.1);} 516 | .navbar .container{width:auto;} 517 | .btn-navbar{display:none;float:right;padding:7px 10px;margin-left:5px;margin-right:5px;background-color:#2c2c2c;background-image:-moz-linear-gradient(top, #333333, #222222);background-image:-ms-linear-gradient(top, #333333, #222222);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));background-image:-webkit-linear-gradient(top, #333333, #222222);background-image:-o-linear-gradient(top, #333333, #222222);background-image:linear-gradient(top, #333333, #222222);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);border-color:#222222 #222222 #000000;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);filter:progid:dximagetransform.microsoft.gradient(enabled=false);-webkit-box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.1),0 1px 0 rgba(255, 255, 255, 0.075);-moz-box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.1),0 1px 0 rgba(255, 255, 255, 0.075);box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.1),0 1px 0 rgba(255, 255, 255, 0.075);}.btn-navbar:hover,.btn-navbar:active,.btn-navbar.active,.btn-navbar.disabled,.btn-navbar[disabled]{background-color:#222222;} 518 | .btn-navbar:active,.btn-navbar.active{background-color:#080808 \9;} 519 | .btn-navbar .icon-bar{display:block;width:18px;height:2px;background-color:#f5f5f5;-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px;-webkit-box-shadow:0 1px 0 rgba(0, 0, 0, 0.25);-moz-box-shadow:0 1px 0 rgba(0, 0, 0, 0.25);box-shadow:0 1px 0 rgba(0, 0, 0, 0.25);} 520 | .btn-navbar .icon-bar+.icon-bar{margin-top:3px;} 521 | .nav-collapse.collapse{height:auto;} 522 | .navbar{color:#999999;}.navbar .brand:hover{text-decoration:none;} 523 | .navbar .brand{float:left;display:block;padding:8px 20px 12px;margin-left:-20px;font-size:20px;font-weight:200;line-height:1;color:#ffffff;} 524 | .navbar .navbar-text{margin-bottom:0;line-height:40px;} 525 | .navbar .btn,.navbar .btn-group{margin-top:5px;} 526 | .navbar .btn-group .btn{margin-top:0;} 527 | .navbar-form{margin-bottom:0;*zoom:1;}.navbar-form:before,.navbar-form:after{display:table;content:"";} 528 | .navbar-form:after{clear:both;} 529 | .navbar-form input,.navbar-form select,.navbar-form .radio,.navbar-form .checkbox{margin-top:5px;} 530 | .navbar-form input,.navbar-form select{display:inline-block;margin-bottom:0;} 531 | .navbar-form input[type="image"],.navbar-form input[type="checkbox"],.navbar-form input[type="radio"]{margin-top:3px;} 532 | .navbar-form .input-append,.navbar-form .input-prepend{margin-top:6px;white-space:nowrap;}.navbar-form .input-append input,.navbar-form .input-prepend input{margin-top:0;} 533 | .navbar-search{position:relative;float:left;margin-top:6px;margin-bottom:0;}.navbar-search .search-query{padding:4px 9px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;font-weight:normal;line-height:1;color:#ffffff;background-color:#626262;border:1px solid #151515;-webkit-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1),0 1px 0px rgba(255, 255, 255, 0.15);-moz-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1),0 1px 0px rgba(255, 255, 255, 0.15);box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1),0 1px 0px rgba(255, 255, 255, 0.15);-webkit-transition:none;-moz-transition:none;-ms-transition:none;-o-transition:none;transition:none;}.navbar-search .search-query:-moz-placeholder{color:#cccccc;} 534 | .navbar-search .search-query::-webkit-input-placeholder{color:#cccccc;} 535 | .navbar-search .search-query:focus,.navbar-search .search-query.focused{padding:5px 10px;color:#333333;text-shadow:0 1px 0 #ffffff;background-color:#ffffff;border:0;-webkit-box-shadow:0 0 3px rgba(0, 0, 0, 0.15);-moz-box-shadow:0 0 3px rgba(0, 0, 0, 0.15);box-shadow:0 0 3px rgba(0, 0, 0, 0.15);outline:0;} 536 | .navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030;margin-bottom:0;} 537 | .navbar-fixed-top .navbar-inner,.navbar-fixed-bottom .navbar-inner{padding-left:0;padding-right:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} 538 | .navbar-fixed-top .container,.navbar-fixed-bottom .container{width:940px;} 539 | .navbar-fixed-top{top:0;} 540 | .navbar-fixed-bottom{bottom:0;} 541 | .navbar .nav{position:relative;left:0;display:block;float:left;margin:0 10px 0 0;} 542 | .navbar .nav.pull-right{float:right;} 543 | .navbar .nav>li{display:block;float:left;} 544 | .navbar .nav>li>a{float:none;padding:10px 10px 11px;line-height:19px;color:#999999;text-decoration:none;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);} 545 | .navbar .nav>li>a:hover{background-color:transparent;color:#ffffff;text-decoration:none;} 546 | .navbar .nav .active>a,.navbar .nav .active>a:hover{color:#ffffff;text-decoration:none;background-color:#222222;} 547 | .navbar .divider-vertical{height:40px;width:1px;margin:0 9px;overflow:hidden;background-color:#222222;border-right:1px solid #333333;} 548 | .navbar .nav.pull-right{margin-left:10px;margin-right:0;} 549 | .navbar .dropdown-menu{margin-top:1px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}.navbar .dropdown-menu:before{content:'';display:inline-block;border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #ccc;border-bottom-color:rgba(0, 0, 0, 0.2);position:absolute;top:-7px;left:9px;} 550 | .navbar .dropdown-menu:after{content:'';display:inline-block;border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #ffffff;position:absolute;top:-6px;left:10px;} 551 | .navbar-fixed-bottom .dropdown-menu:before{border-top:7px solid #ccc;border-top-color:rgba(0, 0, 0, 0.2);border-bottom:0;bottom:-7px;top:auto;} 552 | .navbar-fixed-bottom .dropdown-menu:after{border-top:6px solid #ffffff;border-bottom:0;bottom:-6px;top:auto;} 553 | .navbar .nav .dropdown-toggle .caret,.navbar .nav .open.dropdown .caret{border-top-color:#ffffff;border-bottom-color:#ffffff;} 554 | .navbar .nav .active .caret{opacity:1;filter:alpha(opacity=100);} 555 | .navbar .nav .open>.dropdown-toggle,.navbar .nav .active>.dropdown-toggle,.navbar .nav .open.active>.dropdown-toggle{background-color:transparent;} 556 | .navbar .nav .active>.dropdown-toggle:hover{color:#ffffff;} 557 | .navbar .nav.pull-right .dropdown-menu,.navbar .nav .dropdown-menu.pull-right{left:auto;right:0;}.navbar .nav.pull-right .dropdown-menu:before,.navbar .nav .dropdown-menu.pull-right:before{left:auto;right:12px;} 558 | .navbar .nav.pull-right .dropdown-menu:after,.navbar .nav .dropdown-menu.pull-right:after{left:auto;right:13px;} 559 | .breadcrumb{padding:7px 14px;margin:0 0 18px;list-style:none;background-color:#fbfbfb;background-image:-moz-linear-gradient(top, #ffffff, #f5f5f5);background-image:-ms-linear-gradient(top, #ffffff, #f5f5f5);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#f5f5f5));background-image:-webkit-linear-gradient(top, #ffffff, #f5f5f5);background-image:-o-linear-gradient(top, #ffffff, #f5f5f5);background-image:linear-gradient(top, #ffffff, #f5f5f5);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f5f5f5', GradientType=0);border:1px solid #ddd;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;-webkit-box-shadow:inset 0 1px 0 #ffffff;-moz-box-shadow:inset 0 1px 0 #ffffff;box-shadow:inset 0 1px 0 #ffffff;}.breadcrumb li{display:inline-block;*display:inline;*zoom:1;text-shadow:0 1px 0 #ffffff;} 560 | .breadcrumb .divider{padding:0 5px;color:#999999;} 561 | .breadcrumb .active a{color:#333333;} 562 | .pagination{height:36px;margin:18px 0;} 563 | .pagination ul{display:inline-block;*display:inline;*zoom:1;margin-left:0;margin-bottom:0;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;-webkit-box-shadow:0 1px 2px rgba(0, 0, 0, 0.05);-moz-box-shadow:0 1px 2px rgba(0, 0, 0, 0.05);box-shadow:0 1px 2px rgba(0, 0, 0, 0.05);} 564 | .pagination li{display:inline;} 565 | .pagination a{float:left;padding:0 14px;line-height:34px;text-decoration:none;border:1px solid #ddd;border-left-width:0;} 566 | .pagination a:hover,.pagination .active a{background-color:#f5f5f5;} 567 | .pagination .active a{color:#999999;cursor:default;} 568 | .pagination .disabled span,.pagination .disabled a,.pagination .disabled a:hover{color:#999999;background-color:transparent;cursor:default;} 569 | .pagination li:first-child a{border-left-width:1px;-webkit-border-radius:3px 0 0 3px;-moz-border-radius:3px 0 0 3px;border-radius:3px 0 0 3px;} 570 | .pagination li:last-child a{-webkit-border-radius:0 3px 3px 0;-moz-border-radius:0 3px 3px 0;border-radius:0 3px 3px 0;} 571 | .pagination-centered{text-align:center;} 572 | .pagination-right{text-align:right;} 573 | .pager{margin-left:0;margin-bottom:18px;list-style:none;text-align:center;*zoom:1;}.pager:before,.pager:after{display:table;content:"";} 574 | .pager:after{clear:both;} 575 | .pager li{display:inline;} 576 | .pager a{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px;} 577 | .pager a:hover{text-decoration:none;background-color:#f5f5f5;} 578 | .pager .next a{float:right;} 579 | .pager .previous a{float:left;} 580 | .pager .disabled a,.pager .disabled a:hover{color:#999999;background-color:#fff;cursor:default;} 581 | .modal-open .dropdown-menu{z-index:2050;} 582 | .modal-open .dropdown.open{*z-index:2050;} 583 | .modal-open .popover{z-index:2060;} 584 | .modal-open .tooltip{z-index:2070;} 585 | .modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000000;}.modal-backdrop.fade{opacity:0;} 586 | .modal-backdrop,.modal-backdrop.fade.in{opacity:0.8;filter:alpha(opacity=80);} 587 | .modal{position:fixed;top:50%;left:50%;z-index:1050;overflow:auto;width:560px;margin:-250px 0 0 -280px;background-color:#ffffff;border:1px solid #999;border:1px solid rgba(0, 0, 0, 0.3);*border:1px solid #999;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);-moz-box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);-webkit-background-clip:padding-box;-moz-background-clip:padding-box;background-clip:padding-box;}.modal.fade{-webkit-transition:opacity .3s linear, top .3s ease-out;-moz-transition:opacity .3s linear, top .3s ease-out;-ms-transition:opacity .3s linear, top .3s ease-out;-o-transition:opacity .3s linear, top .3s ease-out;transition:opacity .3s linear, top .3s ease-out;top:-25%;} 588 | .modal.fade.in{top:50%;} 589 | .modal-header{padding:9px 15px;border-bottom:1px solid #eee;}.modal-header .close{margin-top:2px;} 590 | .modal-body{overflow-y:auto;max-height:400px;padding:15px;} 591 | .modal-form{margin-bottom:0;} 592 | .modal-footer{padding:14px 15px 15px;margin-bottom:0;text-align:right;background-color:#f5f5f5;border-top:1px solid #ddd;-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px;-webkit-box-shadow:inset 0 1px 0 #ffffff;-moz-box-shadow:inset 0 1px 0 #ffffff;box-shadow:inset 0 1px 0 #ffffff;*zoom:1;}.modal-footer:before,.modal-footer:after{display:table;content:"";} 593 | .modal-footer:after{clear:both;} 594 | .modal-footer .btn+.btn{margin-left:5px;margin-bottom:0;} 595 | .modal-footer .btn-group .btn+.btn{margin-left:-1px;} 596 | .tooltip{position:absolute;z-index:1020;display:block;visibility:visible;padding:5px;font-size:11px;opacity:0;filter:alpha(opacity=0);}.tooltip.in{opacity:0.8;filter:alpha(opacity=80);} 597 | .tooltip.top{margin-top:-2px;} 598 | .tooltip.right{margin-left:2px;} 599 | .tooltip.bottom{margin-top:2px;} 600 | .tooltip.left{margin-left:-2px;} 601 | .tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-left:5px solid transparent;border-right:5px solid transparent;border-top:5px solid #000000;} 602 | .tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-top:5px solid transparent;border-bottom:5px solid transparent;border-left:5px solid #000000;} 603 | .tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-left:5px solid transparent;border-right:5px solid transparent;border-bottom:5px solid #000000;} 604 | .tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-top:5px solid transparent;border-bottom:5px solid transparent;border-right:5px solid #000000;} 605 | .tooltip-inner{max-width:200px;padding:3px 8px;color:#ffffff;text-align:center;text-decoration:none;background-color:#000000;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} 606 | .tooltip-arrow{position:absolute;width:0;height:0;} 607 | .popover{position:absolute;top:0;left:0;z-index:1010;display:none;padding:5px;}.popover.top{margin-top:-5px;} 608 | .popover.right{margin-left:5px;} 609 | .popover.bottom{margin-top:5px;} 610 | .popover.left{margin-left:-5px;} 611 | .popover.top .arrow{bottom:0;left:50%;margin-left:-5px;border-left:5px solid transparent;border-right:5px solid transparent;border-top:5px solid #000000;} 612 | .popover.right .arrow{top:50%;left:0;margin-top:-5px;border-top:5px solid transparent;border-bottom:5px solid transparent;border-right:5px solid #000000;} 613 | .popover.bottom .arrow{top:0;left:50%;margin-left:-5px;border-left:5px solid transparent;border-right:5px solid transparent;border-bottom:5px solid #000000;} 614 | .popover.left .arrow{top:50%;right:0;margin-top:-5px;border-top:5px solid transparent;border-bottom:5px solid transparent;border-left:5px solid #000000;} 615 | .popover .arrow{position:absolute;width:0;height:0;} 616 | .popover-inner{padding:3px;width:280px;overflow:hidden;background:#000000;background:rgba(0, 0, 0, 0.8);-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);-moz-box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);} 617 | .popover-title{padding:9px 15px;line-height:1;background-color:#f5f5f5;border-bottom:1px solid #eee;-webkit-border-radius:3px 3px 0 0;-moz-border-radius:3px 3px 0 0;border-radius:3px 3px 0 0;} 618 | .popover-content{padding:14px;background-color:#ffffff;-webkit-border-radius:0 0 3px 3px;-moz-border-radius:0 0 3px 3px;border-radius:0 0 3px 3px;-webkit-background-clip:padding-box;-moz-background-clip:padding-box;background-clip:padding-box;}.popover-content p,.popover-content ul,.popover-content ol{margin-bottom:0;} 619 | .thumbnails{margin-left:-20px;list-style:none;*zoom:1;}.thumbnails:before,.thumbnails:after{display:table;content:"";} 620 | .thumbnails:after{clear:both;} 621 | .thumbnails>li{float:left;margin:0 0 18px 20px;} 622 | .thumbnail{display:block;padding:4px;line-height:1;border:1px solid #ddd;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:0 1px 1px rgba(0, 0, 0, 0.075);} 623 | a.thumbnail:hover{border-color:#0088cc;-webkit-box-shadow:0 1px 4px rgba(0, 105, 214, 0.25);-moz-box-shadow:0 1px 4px rgba(0, 105, 214, 0.25);box-shadow:0 1px 4px rgba(0, 105, 214, 0.25);} 624 | .thumbnail>img{display:block;max-width:100%;margin-left:auto;margin-right:auto;} 625 | .thumbnail .caption{padding:9px;} 626 | .label{padding:1px 4px 2px;font-size:10.998px;font-weight:bold;line-height:13px;color:#ffffff;vertical-align:middle;white-space:nowrap;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#999999;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} 627 | .label:hover{color:#ffffff;text-decoration:none;} 628 | .label-important{background-color:#b94a48;} 629 | .label-important:hover{background-color:#953b39;} 630 | .label-warning{background-color:#f89406;} 631 | .label-warning:hover{background-color:#c67605;} 632 | .label-success{background-color:#468847;} 633 | .label-success:hover{background-color:#356635;} 634 | .label-info{background-color:#3a87ad;} 635 | .label-info:hover{background-color:#2d6987;} 636 | .label-inverse{background-color:#333333;} 637 | .label-inverse:hover{background-color:#1a1a1a;} 638 | .badge{padding:1px 9px 2px;font-size:12.025px;font-weight:bold;white-space:nowrap;color:#ffffff;background-color:#999999;-webkit-border-radius:9px;-moz-border-radius:9px;border-radius:9px;} 639 | .badge:hover{color:#ffffff;text-decoration:none;cursor:pointer;} 640 | .badge-error{background-color:#b94a48;} 641 | .badge-error:hover{background-color:#953b39;} 642 | .badge-warning{background-color:#f89406;} 643 | .badge-warning:hover{background-color:#c67605;} 644 | .badge-success{background-color:#468847;} 645 | .badge-success:hover{background-color:#356635;} 646 | .badge-info{background-color:#3a87ad;} 647 | .badge-info:hover{background-color:#2d6987;} 648 | .badge-inverse{background-color:#333333;} 649 | .badge-inverse:hover{background-color:#1a1a1a;} 650 | @-webkit-keyframes progress-bar-stripes{from{background-position:0 0;} to{background-position:40px 0;}}@-moz-keyframes progress-bar-stripes{from{background-position:0 0;} to{background-position:40px 0;}}@-ms-keyframes progress-bar-stripes{from{background-position:0 0;} to{background-position:40px 0;}}@keyframes progress-bar-stripes{from{background-position:0 0;} to{background-position:40px 0;}}.progress{overflow:hidden;height:18px;margin-bottom:18px;background-color:#f7f7f7;background-image:-moz-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:-ms-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9));background-image:-webkit-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:-o-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:linear-gradient(top, #f5f5f5, #f9f9f9);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f5f5f5', endColorstr='#f9f9f9', GradientType=0);-webkit-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1);-moz-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1);box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} 651 | .progress .bar{width:0%;height:18px;color:#ffffff;font-size:12px;text-align:center;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#0e90d2;background-image:-moz-linear-gradient(top, #149bdf, #0480be);background-image:-ms-linear-gradient(top, #149bdf, #0480be);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#149bdf), to(#0480be));background-image:-webkit-linear-gradient(top, #149bdf, #0480be);background-image:-o-linear-gradient(top, #149bdf, #0480be);background-image:linear-gradient(top, #149bdf, #0480be);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#149bdf', endColorstr='#0480be', GradientType=0);-webkit-box-shadow:inset 0 -1px 0 rgba(0, 0, 0, 0.15);-moz-box-shadow:inset 0 -1px 0 rgba(0, 0, 0, 0.15);box-shadow:inset 0 -1px 0 rgba(0, 0, 0, 0.15);-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;-webkit-transition:width 0.6s ease;-moz-transition:width 0.6s ease;-ms-transition:width 0.6s ease;-o-transition:width 0.6s ease;transition:width 0.6s ease;} 652 | .progress-striped .bar{background-color:#149bdf;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);-webkit-background-size:40px 40px;-moz-background-size:40px 40px;-o-background-size:40px 40px;background-size:40px 40px;} 653 | .progress.active .bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-moz-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite;} 654 | .progress-danger .bar{background-color:#dd514c;background-image:-moz-linear-gradient(top, #ee5f5b, #c43c35);background-image:-ms-linear-gradient(top, #ee5f5b, #c43c35);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#c43c35));background-image:-webkit-linear-gradient(top, #ee5f5b, #c43c35);background-image:-o-linear-gradient(top, #ee5f5b, #c43c35);background-image:linear-gradient(top, #ee5f5b, #c43c35);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#c43c35', GradientType=0);} 655 | .progress-danger.progress-striped .bar{background-color:#ee5f5b;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);} 656 | .progress-success .bar{background-color:#5eb95e;background-image:-moz-linear-gradient(top, #62c462, #57a957);background-image:-ms-linear-gradient(top, #62c462, #57a957);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#57a957));background-image:-webkit-linear-gradient(top, #62c462, #57a957);background-image:-o-linear-gradient(top, #62c462, #57a957);background-image:linear-gradient(top, #62c462, #57a957);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#57a957', GradientType=0);} 657 | .progress-success.progress-striped .bar{background-color:#62c462;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);} 658 | .progress-info .bar{background-color:#4bb1cf;background-image:-moz-linear-gradient(top, #5bc0de, #339bb9);background-image:-ms-linear-gradient(top, #5bc0de, #339bb9);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#339bb9));background-image:-webkit-linear-gradient(top, #5bc0de, #339bb9);background-image:-o-linear-gradient(top, #5bc0de, #339bb9);background-image:linear-gradient(top, #5bc0de, #339bb9);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#339bb9', GradientType=0);} 659 | .progress-info.progress-striped .bar{background-color:#5bc0de;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);} 660 | .progress-warning .bar{background-color:#faa732;background-image:-moz-linear-gradient(top, #fbb450, #f89406);background-image:-ms-linear-gradient(top, #fbb450, #f89406);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));background-image:-webkit-linear-gradient(top, #fbb450, #f89406);background-image:-o-linear-gradient(top, #fbb450, #f89406);background-image:linear-gradient(top, #fbb450, #f89406);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbb450', endColorstr='#f89406', GradientType=0);} 661 | .progress-warning.progress-striped .bar{background-color:#fbb450;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);} 662 | .accordion{margin-bottom:18px;} 663 | .accordion-group{margin-bottom:2px;border:1px solid #e5e5e5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} 664 | .accordion-heading{border-bottom:0;} 665 | .accordion-heading .accordion-toggle{display:block;padding:8px 15px;} 666 | .accordion-inner{padding:9px 15px;border-top:1px solid #e5e5e5;} 667 | .carousel{position:relative;margin-bottom:18px;line-height:1;} 668 | .carousel-inner{overflow:hidden;width:100%;position:relative;} 669 | .carousel .item{display:none;position:relative;-webkit-transition:0.6s ease-in-out left;-moz-transition:0.6s ease-in-out left;-ms-transition:0.6s ease-in-out left;-o-transition:0.6s ease-in-out left;transition:0.6s ease-in-out left;} 670 | .carousel .item>img{display:block;line-height:1;} 671 | .carousel .active,.carousel .next,.carousel .prev{display:block;} 672 | .carousel .active{left:0;} 673 | .carousel .next,.carousel .prev{position:absolute;top:0;width:100%;} 674 | .carousel .next{left:100%;} 675 | .carousel .prev{left:-100%;} 676 | .carousel .next.left,.carousel .prev.right{left:0;} 677 | .carousel .active.left{left:-100%;} 678 | .carousel .active.right{left:100%;} 679 | .carousel-control{position:absolute;top:40%;left:15px;width:40px;height:40px;margin-top:-20px;font-size:60px;font-weight:100;line-height:30px;color:#ffffff;text-align:center;background:#222222;border:3px solid #ffffff;-webkit-border-radius:23px;-moz-border-radius:23px;border-radius:23px;opacity:0.5;filter:alpha(opacity=50);}.carousel-control.right{left:auto;right:15px;} 680 | .carousel-control:hover{color:#ffffff;text-decoration:none;opacity:0.9;filter:alpha(opacity=90);} 681 | .carousel-caption{position:absolute;left:0;right:0;bottom:0;padding:10px 15px 5px;background:#333333;background:rgba(0, 0, 0, 0.75);} 682 | .carousel-caption h4,.carousel-caption p{color:#ffffff;} 683 | .hero-unit{padding:60px;margin-bottom:30px;background-color:#eeeeee;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;}.hero-unit h1{margin-bottom:0;font-size:60px;line-height:1;color:inherit;letter-spacing:-1px;} 684 | .hero-unit p{font-size:18px;font-weight:200;line-height:27px;color:inherit;} 685 | .pull-right{float:right;} 686 | .pull-left{float:left;} 687 | .hide{display:none;} 688 | .show{display:block;} 689 | .invisible{visibility:hidden;} 690 | --------------------------------------------------------------------------------