diff --git a/.gitignore b/.gitignore
index 1dfe31e..a9ecfb8 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,4 +1,5 @@
.bundle/
+Gemfile.lock
log/*.log
pkg/
test/dummy/db/*.sqlite3
diff --git a/.rvmrc b/.rvmrc
deleted file mode 100644
index 3c66b3f..0000000
--- a/.rvmrc
+++ /dev/null
@@ -1 +0,0 @@
-rvm 1.9.3-perf@css_splitter --create
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..f09ded4
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,9 @@
+sudo: false
+language: ruby
+bundler_args: --without development
+rvm:
+ - "1.9.3"
+ - "2.1"
+ - "2.2"
+gemfile:
+ - "Gemfile"
\ No newline at end of file
diff --git a/CHANGELOG.md b/CHANGELOG.md
new file mode 100644
index 0000000..cd411e3
--- /dev/null
+++ b/CHANGELOG.md
@@ -0,0 +1,60 @@
+# 0.4.6
+
+* [fix] Implement new engine interface for future sprockets versions #70
+* [bugfix] Fix issue where helper is not a defined method on controller (e.g. ActionController::API:Class) #65
+
+# 0.4.5
+
+* [bugfix] fix sprockets engine registering for older sprocket-rails versions #68
+
+# 0.4.4
+
+* [bugfix] fix compatibility with with sprockts-rails version 3.x, see #62
+
+# 0.4.3
+
+* [bugfix] for media queries with whitespace in front of them #57
+
+# 0.4.2
+
+* [bugfix] correctly split stylesheets even if @keyframes are directly on the rule limit #55 by [@rubenswieringa](https://github.com/rubenswieringa)
+
+# 0.4.1
+
+* [Improvement] All `*_splitN.css` files default to `debug: false` in development to prevent empty file bug.
+
+# 0.4.0
+
+* **Breaking changes!**
+* The `CssSplitter::SprocketsEngine` is now registered as a bundle_processor to avoid issues with sprockets directives #29
+ * `.split2` extension is no longer necessary/supported, now we rely on `_splitN` at the end of the filename
+ * Now you need to use the `require` rather than the `include` directive in the split stylesheet
+ * Prohibition against using `require_tree .` and `require_self` directives no longer applies
+ * Better tests
+ * Thanks a lot to [@Umofomia](https://github.com/Umofomia)
+* loosen dependency on `rails` (depend on `sprockets` instead), to make gem compatible to other frameworks like `middleman`
+
+# 0.2.0
+
+* loosen dependency to make it compatible with rails 4
+
+# 0.1.1
+
+* Added license info ("MIT") to gemspec
+
+# 0.1.0
+
+* [Removal] Removed unused `Splitter#split` method
+* [Bugfix] Fixed little bug in `Splitter#count_selectors` that was yielding wrong results
+* [Bugfix] Removed unnecessary files in `app/` which were causing #13 and #17
+
+# 0.0.2
+
+* [Improvement] Made the SprocketEngine addition an initializer, so it will work even when `initialize_on_precompile` isn't set
+* [Bugfix] Removed unnecessary charset extraction from `Splitter#count_selectors` method, which had caused the first rule of the stylesheet to be ignored.
+* [Bugfix] Fixed/refactored charset extraction, so that it doesn't overwrite the first rule of the stylesheet anymore.
+* [Bugfix] Fixed `Splitter#strip_comments` method, so it doesn't mess with protocol agnostic URLs (e.g. `url(//assets.myserver.com/asset.png)`) anymore and only strips valid CSS comments #5
+
+# 0.0.1
+
+Initial commit
diff --git a/Gemfile b/Gemfile
index c3490b8..74fab5c 100644
--- a/Gemfile
+++ b/Gemfile
@@ -5,14 +5,11 @@ source "http://rubygems.org"
# development dependencies will be added by default to the :development group.
gemspec
-gem "debugger"
-gem "sqlite3"
-gem "sass-rails"
-
-# Declare any dependencies that are still in development here instead of in
-# your gemspec. These might include edge Rails or gems from your path or
-# Git. Remember to move these dependencies to your gemspec before releasing
-# your gem to rubygems.org.
+group :development do
+ gem 'pry-byebug'
+end
-# To use debugger
-# gem 'debugger'
+gem "rails"
+gem "sass-rails"
+gem "jquery-rails"
+gem "uglifier"
diff --git a/Gemfile.lock b/Gemfile.lock
deleted file mode 100644
index 672d890..0000000
--- a/Gemfile.lock
+++ /dev/null
@@ -1,108 +0,0 @@
-PATH
- remote: .
- specs:
- css_splitter (0.0.1)
- rails (~> 3.1)
-
-GEM
- remote: http://rubygems.org/
- specs:
- actionmailer (3.2.8)
- actionpack (= 3.2.8)
- mail (~> 2.4.4)
- actionpack (3.2.8)
- activemodel (= 3.2.8)
- activesupport (= 3.2.8)
- builder (~> 3.0.0)
- erubis (~> 2.7.0)
- journey (~> 1.0.4)
- rack (~> 1.4.0)
- rack-cache (~> 1.2)
- rack-test (~> 0.6.1)
- sprockets (~> 2.1.3)
- activemodel (3.2.8)
- activesupport (= 3.2.8)
- builder (~> 3.0.0)
- activerecord (3.2.8)
- activemodel (= 3.2.8)
- activesupport (= 3.2.8)
- arel (~> 3.0.2)
- tzinfo (~> 0.3.29)
- activeresource (3.2.8)
- activemodel (= 3.2.8)
- activesupport (= 3.2.8)
- activesupport (3.2.8)
- i18n (~> 0.6)
- multi_json (~> 1.0)
- arel (3.0.2)
- builder (3.0.3)
- columnize (0.3.6)
- debugger (1.2.0)
- columnize (>= 0.3.1)
- debugger-linecache (~> 1.1.1)
- debugger-ruby_core_source (~> 1.1.3)
- debugger-linecache (1.1.2)
- debugger-ruby_core_source (>= 1.1.1)
- debugger-ruby_core_source (1.1.3)
- erubis (2.7.0)
- hike (1.2.1)
- i18n (0.6.1)
- journey (1.0.4)
- json (1.7.5)
- mail (2.4.4)
- i18n (>= 0.4.0)
- mime-types (~> 1.16)
- treetop (~> 1.4.8)
- mime-types (1.19)
- multi_json (1.3.6)
- polyglot (0.3.3)
- rack (1.4.1)
- rack-cache (1.2)
- rack (>= 0.4)
- rack-ssl (1.3.2)
- rack
- rack-test (0.6.1)
- rack (>= 1.0)
- rails (3.2.8)
- actionmailer (= 3.2.8)
- actionpack (= 3.2.8)
- activerecord (= 3.2.8)
- activeresource (= 3.2.8)
- activesupport (= 3.2.8)
- bundler (~> 1.0)
- railties (= 3.2.8)
- railties (3.2.8)
- actionpack (= 3.2.8)
- activesupport (= 3.2.8)
- rack-ssl (~> 1.3.2)
- rake (>= 0.8.7)
- rdoc (~> 3.4)
- thor (>= 0.14.6, < 2.0)
- rake (0.9.2.2)
- rdoc (3.12)
- json (~> 1.4)
- sass (3.2.1)
- sass-rails (3.2.5)
- railties (~> 3.2.0)
- sass (>= 3.1.10)
- tilt (~> 1.3)
- sprockets (2.1.3)
- hike (~> 1.2)
- rack (~> 1.0)
- tilt (~> 1.1, != 1.3.0)
- sqlite3 (1.3.6)
- thor (0.16.0)
- tilt (1.3.3)
- treetop (1.4.10)
- polyglot
- polyglot (>= 0.3.1)
- tzinfo (0.3.33)
-
-PLATFORMS
- ruby
-
-DEPENDENCIES
- css_splitter!
- debugger
- sass-rails
- sqlite3
diff --git a/MIT-LICENSE b/MIT-LICENSE
index 406f17b..a748140 100644
--- a/MIT-LICENSE
+++ b/MIT-LICENSE
@@ -1,4 +1,4 @@
-Copyright 2012 YOURNAME
+Copyright 2012 Jakob Hilden
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
diff --git a/README.md b/README.md
index 463e20b..d1b3805 100644
--- a/README.md
+++ b/README.md
@@ -1,36 +1,45 @@
-# CssSplitter
+# CssSplitter [](https://travis-ci.org/zweilove/css_splitter)
-## Status
+Gem for splitting up stylesheets that go beyond the IE limit of 4096 selectors, for Rails 3.1+ apps using the Asset Pipeline. You can read this [blogpost](http://railslove.com/blog/2013/03/08/overcoming-ies-4096-selector-limit-using-the-css-splitter-gem) for an explanation of this gem's background story.
-Work in progress of turning this https://gist.github.com/2398394 into a gem.
+### Development status
-A `0.0.1` version has been released to rubygems.org. Install by putting `gem 'css_splitter'` into your Gemfile.
+Fortunately, the problem of too large CSS files is long gone. This repo is unmaintained.
+It remains as an artefact of dark times in the history of web browsers.
+
+## Installation
+
+Install by putting `gem 'css_splitter'` into your Gemfile.
## What it does?
-Older versions of Internet Explorer (basically version 9 and below) have a hard limit for the number of CSS selectors they can process, which is 4095. If one of your stylesheets exceeds this limit, all the rule sets beyond the 4095th selector will not be processed by IE and your app will miss some styling information.
+Older versions of Internet Explorer (version 9 and below) have a hard limit for the number of CSS selectors they can process, which is 4095. If one of your stylesheets exceeds this limit, all the rule sets beyond the 4095th selector will not be processed by IE and your app will miss some styling information.
CssSplitter integrates with the Rails 3.1+ Asset Pipeline to generate additional split stylesheets with all the CSS rules beyond the 4095th that can be served to IE browsers in order to get all the styling information.
## Dependencies
-* Rails 3.1+
-* Asset Pipeline
+* Sprockets 2.0+
+* e.g. Rails 3.1+ with the asset pipeline
## Documentation
### 1. Splitting your stylesheets
-The first step is indentifying the stylesheets that have more than 4095 selectors and therefore need to be split for IE.
+The first step is identifying the stylesheets that have more than 4095 selectors and therefore need to be split for IE.
+
+Once you know which stylesheets need to be split, you need to create a second "container file" for those stylesheets with the `_split2` suffix appended to the base filename that will contain the styles beyond the 4095 selector limit. The extension of this file should be just `.css` without any additional preprocessor extensions.
-Once you know which stylesheets need to be split, you need to create a second "container file" for those stylesheets with the file extension `.split2`, that will contain the styles beyond the 4095 selector limit.
+For example, if you want to split `too_big_stylesheet.css.scss`, you need to create a new file `too_big_stylesheet_split2.css` in the same directory. The only content of that container, will contain a `require` directive to the name of the original asset, e.g.:
-For example, if you want to split `too_big_stylesheet.css`, you need to create a new file `too_big_stylesheet_split2.css.split2` in the same directory. The only content of that container, will be an include of the original file, e.g.:
+ # app/assets/stylesheets/too_big_stylesheet_split2.css
- # app/assets/stylesheets/too_big_stylesheet_split2.css.split2
+ /*
+ *= require 'too_big_stylesheet'
+ */
- //= include 'too_big_stylesheet'
+If your stylesheet is big enough to need splitting into more than two more files, simply create additional `_split3`, `_split4`, etc. files, the contents of which should be identical to the `_split2` file.
You also need to remember to add those new files to the asset pipeline, so they will be compiled. For example:
@@ -40,6 +49,13 @@ You also need to remember to add those new files to the asset pipeline, so they
class Application < Rails::Application
config.assets.precompile += %w( too_big_stylesheet_split2.css )
+Here is a checklist of requirements for your split stylesheet:
+
+1. It needs to have the `_splitN` suffix appended to the original asset name, e.g. `original_stylesheet_split2` or `application_split2`
+2. It needs to have `.css` as a file extension.
+3. It needs to require the orginal stylesheet.
+4. It needs to be added to list of precompiled assets.
+
### 2. Including your split stylesheets
Now that you have split up your big stylesheets at the 4095 limit you need to change your HTML layout, so the split stylesheets are used for older IE versions (IE9 and older).
@@ -50,29 +66,46 @@ You can just use our `split_stylesheet_link_tag` helper, which would look someth
<%= split_stylesheet_link_tag "too_big_stylesheet", :media => "all" %>
# output
-
+
-Or you can just create similar HTML as in the above example yourself.
+If your stylesheet is split into more than two files, add the `split_count` option to specify the total number of files.
+
+ <%= split_stylesheet_link_tag "too_big_stylesheet", :split_count => 3 %>
+
+Or you can just create similar HTML as in the above example yourself. If you want to use the `split_stylesheet_link_tag` helper you need to make sure the gem is loaded in production, so you can't put it in the `:assets` group in your Gemfile.
## How it works
-Basically, CssSplitter is registering a new `Sprockets::Engine` for the `.split2` file extension, that will fill those files with all the selectors beyond the 4095th. Unfortunately, those `.split2` files need to be created manually, because we haven't figured out a way for a `Sprockets::Engine` to output multiple files. They need to present before the compile step.
+Basically, CssSplitter is registering a new Sprockets bundle processor that looks for CSS assets named with the `_splitN` suffix and will fill those files with all the selectors beyond the 4095th. Unfortunately, those `_splitN` files need to be created manually, because we haven't figured out a way for a `Sprockets::Engine` to output multiple files. They need to present before the compile step.
If you have more questions about how it works, look at the code or contact us.
+## Gotchas
+
+#### Differences from previous versions
+
+Note that if you used versions below `0.4.0` of this gem, the naming and contents of the split files have changed. Split files no longer need to have the `.split2` extension and now use the `require` directive rather than the `include` directive. The previous prohibition against using `require_tree .` and `require_self` directives also no longer applies. For more details see the [CHANGELOG.md](CHANGELOG.md#040)
-## Limitations
+#### Empty *_split2.css file
-Currently the gem only supports stylesheets that need to be split into 2 files. It could theoretically create more splits (e.g. if you should have more than 8190 selectors), but in that case you should probably refactor the stylesheets anyway. Contact us, if you have this requirement.
+Since 0.4.1 in development split stylesheets have `debug: false` option by default. This prevents the empty `*_split2.css` file issue. You can always explicitly go one way or the other setting `debug` option directly in the `split_stylesheet_link_tag` like this:
+```
+<%= split_stylesheet_link_tag "application", debug: false %>
+```
## Credits & License
-This is a joint project by the two German Rails shops [Zweitag](http://zweitag.de) and [Railslove](http://railslove.com), therefore the GitHub name "Zweilove".
+This is a joint project by the two German Rails shops [Zweitag](https://zweitag.de) and [Railslove](https://railslove.com), therefore the GitHub name "Zweilove".
+
+The original code was written by Christian Peters and Thomas Hollstegge (see this [Gist](https://gist.github.com/2398394)) and turned into a gem by Jakob Hilden.
+
+**Major Contributors**
-The original code was written by [Christian Peters](mailto:christian.peters@zweitag.de) and [Thomas Hollstegge](mailto:thomas.hollstegge@zweitag.de) (see this [Gist](https://gist.github.com/2398394)) and turned into a gem by [Jakob Hilden](mailto:jakobhilden@gmail.com).
+* [@Umofomia](https://github.com/Umofomia)
+* [@kruszczynski](https://github.com/kruszczynski)
-This project rocks and uses MIT-LICENSE.
\ No newline at end of file
+This project uses MIT-LICENSE.
diff --git a/app/assets/images/css_splitter/.gitkeep b/app/assets/images/css_splitter/.gitkeep
deleted file mode 100644
index e69de29..0000000
diff --git a/app/assets/javascripts/css_splitter/application.js b/app/assets/javascripts/css_splitter/application.js
deleted file mode 100644
index 9097d83..0000000
--- a/app/assets/javascripts/css_splitter/application.js
+++ /dev/null
@@ -1,15 +0,0 @@
-// This is a manifest file that'll be compiled into application.js, which will include all the files
-// listed below.
-//
-// Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
-// or vendor/assets/javascripts of plugins, if any, can be referenced here using a relative path.
-//
-// It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
-// the compiled file.
-//
-// WARNING: THE FIRST BLANK LINE MARKS THE END OF WHAT'S TO BE PROCESSED, ANY BLANK LINE SHOULD
-// GO AFTER THE REQUIRES BELOW.
-//
-//= require jquery
-//= require jquery_ujs
-//= require_tree .
diff --git a/app/assets/stylesheets/css_splitter/application.css b/app/assets/stylesheets/css_splitter/application.css
deleted file mode 100644
index 3192ec8..0000000
--- a/app/assets/stylesheets/css_splitter/application.css
+++ /dev/null
@@ -1,13 +0,0 @@
-/*
- * This is a manifest file that'll be compiled into application.css, which will include all the files
- * listed below.
- *
- * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
- * or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.
- *
- * You're free to add application-wide styles to this file and they'll appear at the top of the
- * compiled file, but it's generally better to create a new file per style scope.
- *
- *= require_self
- *= require_tree .
- */
diff --git a/app/controllers/css_splitter/application_controller.rb b/app/controllers/css_splitter/application_controller.rb
deleted file mode 100644
index b300733..0000000
--- a/app/controllers/css_splitter/application_controller.rb
+++ /dev/null
@@ -1,4 +0,0 @@
-module CssSplitter
- class ApplicationController < ActionController::Base
- end
-end
diff --git a/app/helpers/css_splitter/application_helper.rb b/app/helpers/css_splitter/application_helper.rb
index 644a071..ecfd2ef 100644
--- a/app/helpers/css_splitter/application_helper.rb
+++ b/app/helpers/css_splitter/application_helper.rb
@@ -1,18 +1,24 @@
module CssSplitter
module ApplicationHelper
def split_stylesheet_link_tag(*sources)
- original_sources = sources.dup
+ options = sources.extract_options!
+ split_count = options.delete(:split_count) || 2
- options = sources.extract_options!
- sources.collect!{ |source| "#{source}_split2" }
- sources << options
+ sources.map do |source|
+ split_sources = (2..split_count).map { |index| "#{source}_split#{index}" }
+ split_options = options.dup
+ if Rails.env == 'development' && !split_options.key?(:debug)
+ split_options[:debug] = false
+ end
+ split_sources << split_options
- [
- stylesheet_link_tag(*original_sources),
- ""
- ].join("\n").html_safe
+ [
+ stylesheet_link_tag(source, options),
+ ""
+ ]
+ end.flatten.join("\n").html_safe
end
end
-end
\ No newline at end of file
+end
diff --git a/app/views/layouts/css_splitter/application.html.erb b/app/views/layouts/css_splitter/application.html.erb
deleted file mode 100644
index ba273ff..0000000
--- a/app/views/layouts/css_splitter/application.html.erb
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-
- CssSplitter
- <%= stylesheet_link_tag "css_splitter/application", :media => "all" %>
- <%= javascript_include_tag "css_splitter/application" %>
- <%= csrf_meta_tags %>
-
-
-
-<%= yield %>
-
-
-
diff --git a/css_splitter-0.0.1.gem b/css_splitter-0.0.1.gem
deleted file mode 100644
index 73c424a..0000000
Binary files a/css_splitter-0.0.1.gem and /dev/null differ
diff --git a/css_splitter.gemspec b/css_splitter.gemspec
index d9effe1..4a19196 100644
--- a/css_splitter.gemspec
+++ b/css_splitter.gemspec
@@ -12,9 +12,12 @@ Gem::Specification.new do |s|
s.homepage = "https://github.com/zweilove/css_splitter"
s.summary = "CSS stylesheet splitter for Rails"
s.description = "Gem for splitting up stylesheets that go beyond the IE limit of 4095 selectors, for Rails 3.1+ apps using the Asset Pipeline."
+ s.license = 'MIT'
s.files = Dir["{app,config,db,lib}/**/*"] + ["MIT-LICENSE", "Rakefile", "README.md"]
s.test_files = Dir["test/**/*"]
- s.add_dependency "rails", "~> 3.1"
+ s.add_dependency "sprockets", ">= 2.0.0"
+
+ s.add_development_dependency "rails", ">= 3.1"
end
diff --git a/lib/css_splitter.rb b/lib/css_splitter.rb
index 9200042..a5b2457 100644
--- a/lib/css_splitter.rb
+++ b/lib/css_splitter.rb
@@ -1,7 +1,6 @@
-require "css_splitter/engine"
+require "css_splitter/engine" if defined?(Rails)
require "css_splitter/sprockets_engine"
require "css_splitter/splitter"
-require "css_splitter/railtie"
module CssSplitter
end
diff --git a/lib/css_splitter/engine.rb b/lib/css_splitter/engine.rb
index 52f992b..05a1fae 100644
--- a/lib/css_splitter/engine.rb
+++ b/lib/css_splitter/engine.rb
@@ -1,10 +1,19 @@
module CssSplitter
class Engine < ::Rails::Engine
- isolate_namespace CssSplitter
+ initializer 'css_splitter.sprockets_engine', after: 'sprockets.environment', group: :all do |app|
+ if app.config.assets.public_methods.include? :configure
+ app.config.assets.configure do |assets|
+ assets.register_bundle_processor 'text/css', CssSplitter::SprocketsEngine
+ end
+ else
+ app.assets.register_bundle_processor 'text/css', CssSplitter::SprocketsEngine
+ end
+ end
initializer 'css_splitter.action_controller' do |app|
ActiveSupport.on_load :action_controller do
- helper CssSplitter::ApplicationHelper
+ # Not all controllers use helpers (such as API based controllers)
+ helper CssSplitter::ApplicationHelper if respond_to?(:helper)
end
end
end
diff --git a/lib/css_splitter/railtie.rb b/lib/css_splitter/railtie.rb
deleted file mode 100644
index f8444f3..0000000
--- a/lib/css_splitter/railtie.rb
+++ /dev/null
@@ -1,7 +0,0 @@
-module CssSplitter
- class Railtie < Rails::Railtie
- initializer "css_splitter.initializer" do |app|
- app.assets.register_engine '.split2', CssSplitter::SprocketsEngine
- end
- end
-end
diff --git a/lib/css_splitter/splitter.rb b/lib/css_splitter/splitter.rb
index 035ee5e..f5f6a25 100644
--- a/lib/css_splitter/splitter.rb
+++ b/lib/css_splitter/splitter.rb
@@ -4,100 +4,134 @@ class Splitter
MAX_SELECTORS_DEFAULT = 4095
- def self.split(infile, outdir = File.dirname(infile), max_selectors = MAX_SELECTORS_DEFAULT)
-
- raise "infile could not be found" unless File.exists? infile
-
- rules = IO.readlines(infile, "}")
- return if rules.first.nil?
-
- charset_statement, rules[0] = rules.first.partition(/^\@charset[^;]+;/)[1,2]
- return if rules.nil?
-
- file_id = 1 # The infile remains the first file
- selectors_count = 0
- output = nil
-
- rules.each do |rule|
- rule_selectors_count = count_selectors_of_rule rule
- selectors_count += rule_selectors_count
-
- # Nothing happens until the selectors limit is reached for the first time
- if selectors_count > max_selectors
- # Close current file if there is already one
- output.close if output
+ # returns the specified split of the passed css_string
+ def self.split_string(css_string, split = 1, max_selectors = MAX_SELECTORS_DEFAULT)
+ rules = split_string_into_rules(css_string)
+ extract_part rules, split, max_selectors
+ end
- # Prepare next file
- file_id += 1
- filename = File.join(outdir, File.basename(infile, File.extname(infile)) + "_#{file_id.to_s}" + File.extname(infile))
- output = File.new(filename, "w")
- output.write charset_statement
+ # splits string into array of rules (also strips comments)
+ def self.split_string_into_rules(css_string)
+ partial_rules = strip_comments(css_string).chomp.scan /[^}]*}/
+ whole_rules = []
+ bracket_balance = 0
+ in_media_query = false
+
+ partial_rules.each do |rule|
+ if rule =~ /^\s*@media/
+ in_media_query = true
+ elsif bracket_balance == 0
+ in_media_query = false
+ end
- # Reset count with current rule count
- selectors_count = rule_selectors_count
+ if bracket_balance == 0 || in_media_query
+ whole_rules << rule
+ else
+ whole_rules.last << rule
end
- output.write rule if output
+ bracket_balance += get_rule_bracket_balance rule
end
- end
- def self.split_string(css_string, part = 1, max_selectors = MAX_SELECTORS_DEFAULT)
- rules = split_string_into_rules(css_string)
- extract_part rules, part, max_selectors
- end
-
- def self.split_string_into_rules(css_string)
- strip_comments(css_string).chomp.scan /[^}]*}/
+ whole_rules
end
+ # extracts the specified part of an overlong CSS string
def self.extract_part(rules, part = 1, max_selectors = MAX_SELECTORS_DEFAULT)
return if rules.first.nil?
- charset_statement, rules[0] = rules.first.partition(/^\@charset[^;]+;/)[1,2]
+ charset_statement, rules[0] = extract_charset(rules.first)
return if rules.nil?
- output = charset_statement
+ output = charset_statement || ""
selectors_count = 0
- selector_range = max_selectors * (part - 1) + 1 .. max_selectors * part
+ selector_range = max_selectors * (part - 1) + 1 .. max_selectors * part # e.g (4096..8190)
+ current_media = nil
+ selectors_in_media = 0
+ first_hit = true
rules.each do |rule|
+ media_part = extract_media(rule)
+ if media_part
+ current_media = media_part
+ selectors_in_media = 0
+ end
+
rule_selectors_count = count_selectors_of_rule rule
selectors_count += rule_selectors_count
- if selector_range.cover? selectors_count
+ if rule =~ /\A\s*}\z$/
+ current_media = nil
+ # skip the line if the close bracket is the first rule for the new file
+ next if first_hit
+ end
+
+ if selector_range.cover? selectors_count # add rule to current output if within selector_range
+ if media_part
+ output << media_part
+ elsif first_hit && current_media
+ output << current_media
+ end
+ selectors_in_media += rule_selectors_count if current_media.present?
output << rule
- elsif selectors_count > selector_range.end
+ first_hit = false
+ elsif selectors_count > selector_range.end # stop writing to output
break
end
end
+ if current_media.present? and selectors_in_media > 0
+ output << '}'
+ end
+
output
end
+ # count selectors of one individual CSS rule
+ def self.count_selectors_of_rule(rule)
+ parts = strip_comments(rule).partition(/\{/)
+ parts.second.empty? ? 0 : parts.first.scan(/,/).count.to_i + 1
+ end
+
+
+
+ # count selectors of a CSS stylesheet (not used by SprocketsEngine)
def self.count_selectors(css_file)
raise "file could not be found" unless File.exists? css_file
- rules = IO.readlines(css_file, '}')
+ rules = split_string_into_rules(File.read css_file)
return if rules.first.nil?
- charset_statement, rules[0] = rules.first.partition(/^\@charset[^;]+;/)[1,2]
- return if rules.first.nil?
-
- rules.sum {|rule| count_selectors_of_rule(rule)}.tap do |result|
- puts File.basename(css_file) + " contains #{result} selectors."
- end
+ rules.sum{ |rule| count_selectors_of_rule(rule) }
end
- def self.count_selectors_of_rule(rule)
- strip_comments(rule).partition(/\{/).first.scan(/,/).count.to_i + 1
- end
+
private
+ def self.extract_media(rule)
+ if rule.sub!(/^\s*(@media[^{]*{)([^{}]*{[^}]*})$/) { $2 }
+ $1
+ end
+ end
+
+ # extracts potential charset declaration from the first rule
+ def self.extract_charset(rule)
+ if rule.include?('charset')
+ rule.partition(/^\@charset[^;]+;/)[1,2]
+ else
+ [nil, rule]
+ end
+ end
+
def self.strip_comments(s)
- s.gsub(/\/\/.*$/, "").gsub(/\/\*.*?\*\//, "")
+ s.gsub(/\/\*.*?\*\//m, "")
+ end
+
+ def self.get_rule_bracket_balance ( rule )
+ rule.scan( /}/ ).size - rule.scan( /{/ ).size
end
end
-end
\ No newline at end of file
+end
diff --git a/lib/css_splitter/sprockets_engine.rb b/lib/css_splitter/sprockets_engine.rb
index 0d64ef9..551af8c 100644
--- a/lib/css_splitter/sprockets_engine.rb
+++ b/lib/css_splitter/sprockets_engine.rb
@@ -10,10 +10,30 @@ def self.engine_initialized?
def prepare
end
+ def self.call(input)
+ data_in = input[:data]
+
+ # Instantiate Sprockets::Context to pass along helper methods for Tilt
+ # processors
+ context = input[:environment].context_class.new(input)
+
+ # Pass the asset file contents as a block to the template engine,
+ # then get the results of the engine rendering
+ engine = self.new { data_in }
+ rendered_data = engine.render(context, {})
+
+ # Return the data and any metadata (ie file dependencies, etc)
+ context.metadata.merge(data: rendered_data.to_str)
+ end
+
def evaluate(scope, locals, &block)
- part = scope.pathname.extname =~ /(\d+)$/ && $1 || 0
- CssSplitter::Splitter.split_string data, part.to_i
+ # Evaluate the split if the asset is named with a trailing _split2, _split3, etc.
+ if scope.logical_path =~ /_split(\d+)$/
+ CssSplitter::Splitter.split_string(data, $1.to_i)
+ else
+ data
+ end
end
end
-end
\ No newline at end of file
+end
diff --git a/lib/css_splitter/version.rb b/lib/css_splitter/version.rb
index 3f3899e..57859d1 100644
--- a/lib/css_splitter/version.rb
+++ b/lib/css_splitter/version.rb
@@ -1,3 +1,3 @@
module CssSplitter
- VERSION = "0.0.1"
+ VERSION = "0.4.6"
end
diff --git a/test/css_splitter_test.rb b/test/css_splitter_test.rb
index 7fd8634..012cf89 100644
--- a/test/css_splitter_test.rb
+++ b/test/css_splitter_test.rb
@@ -1,7 +1,40 @@
require 'test_helper'
class CssSplitterTest < ActiveSupport::TestCase
+
+ setup :clear_assets_cache
+
test "truth" do
assert_kind_of Module, CssSplitter
end
+
+ test "asset pipeline stylesheet splitting" do
+ part1 = "#test{background-color:red}" * CssSplitter::Splitter::MAX_SELECTORS_DEFAULT
+ part2 = "#test{background-color:green}" * CssSplitter::Splitter::MAX_SELECTORS_DEFAULT
+ part3 = "#test{background-color:blue}"
+
+ assert_equal "#{part1}#{part2}#{part3}", assets["erb_stylesheet"].to_s.gsub(/\s/, '')
+ assert_equal "#{part2}", assets["erb_stylesheet_split2"].to_s.gsub(/\s/, '')
+ assert_equal "#{part3}", assets["erb_stylesheet_split3"].to_s.gsub(/\s/, '')
+ end
+
+ test "asset pipeline stylesheet splitting on stylesheet combined using requires" do
+ red = "#test{background-color:red}" * 100
+ green = "#test{background-color:green}" * CssSplitter::Splitter::MAX_SELECTORS_DEFAULT
+ blue = "#test{background-color:blue}"
+ assert_equal "#{red}#{green}#{blue}", assets["combined"].to_s.gsub(/\s/, '')
+ assert_equal "#{"#test{background-color:green}" * 100}#{blue}", assets["combined_split2"].to_s.gsub(/\s/, '')
+ end
+
+ private
+
+ def clear_assets_cache
+ assets_cache = Rails.root.join("tmp/cache/assets")
+ assets_cache.rmtree if assets_cache.exist?
+ end
+
+ def assets
+ Rails.application.assets
+ end
+
end
diff --git a/test/dummy/app/assets/stylesheets/combined.css.scss b/test/dummy/app/assets/stylesheets/combined.css.scss
new file mode 100644
index 0000000..5fd8ab4
--- /dev/null
+++ b/test/dummy/app/assets/stylesheets/combined.css.scss
@@ -0,0 +1,4 @@
+//= require 'red_100'
+//= require 'green_max'
+
+#test { background-color: blue; }
diff --git a/test/dummy/app/assets/stylesheets/combined_split2.css b/test/dummy/app/assets/stylesheets/combined_split2.css
new file mode 100644
index 0000000..cc3963c
--- /dev/null
+++ b/test/dummy/app/assets/stylesheets/combined_split2.css
@@ -0,0 +1,3 @@
+/*
+ *= require 'combined'
+ */
diff --git a/test/dummy/app/assets/stylesheets/erb_stylesheet.css.scss.erb b/test/dummy/app/assets/stylesheets/erb_stylesheet.css.scss.erb
new file mode 100644
index 0000000..de64edc
--- /dev/null
+++ b/test/dummy/app/assets/stylesheets/erb_stylesheet.css.scss.erb
@@ -0,0 +1,7 @@
+<% CssSplitter::Splitter::MAX_SELECTORS_DEFAULT.times do %>
+#test { background-color: red; }
+<% end %>
+<% CssSplitter::Splitter::MAX_SELECTORS_DEFAULT.times do %>
+#test { background-color: green; }
+<% end %>
+#test { background-color: blue; }
diff --git a/test/dummy/app/assets/stylesheets/erb_stylesheet_split2.css b/test/dummy/app/assets/stylesheets/erb_stylesheet_split2.css
new file mode 100644
index 0000000..2c6b6e1
--- /dev/null
+++ b/test/dummy/app/assets/stylesheets/erb_stylesheet_split2.css
@@ -0,0 +1,3 @@
+/*
+ *= require 'erb_stylesheet.css'
+ */
diff --git a/test/dummy/app/assets/stylesheets/erb_stylesheet_split3.css b/test/dummy/app/assets/stylesheets/erb_stylesheet_split3.css
new file mode 100644
index 0000000..2c6b6e1
--- /dev/null
+++ b/test/dummy/app/assets/stylesheets/erb_stylesheet_split3.css
@@ -0,0 +1,3 @@
+/*
+ *= require 'erb_stylesheet.css'
+ */
diff --git a/test/dummy/app/assets/stylesheets/green_max.css.scss.erb b/test/dummy/app/assets/stylesheets/green_max.css.scss.erb
new file mode 100644
index 0000000..df75a7f
--- /dev/null
+++ b/test/dummy/app/assets/stylesheets/green_max.css.scss.erb
@@ -0,0 +1,3 @@
+<% CssSplitter::Splitter::MAX_SELECTORS_DEFAULT.times do %>
+#test { background-color: green; }
+<% end %>
diff --git a/test/dummy/app/assets/stylesheets/red_100.css.scss.erb b/test/dummy/app/assets/stylesheets/red_100.css.scss.erb
new file mode 100644
index 0000000..ae6effd
--- /dev/null
+++ b/test/dummy/app/assets/stylesheets/red_100.css.scss.erb
@@ -0,0 +1,3 @@
+<% 100.times do %>
+#test { background-color: red; }
+<% end %>
diff --git a/test/dummy/app/assets/stylesheets/test_stylesheet_with_media_queries.css b/test/dummy/app/assets/stylesheets/test_stylesheet_with_media_queries.css
new file mode 100644
index 0000000..3f664a7
--- /dev/null
+++ b/test/dummy/app/assets/stylesheets/test_stylesheet_with_media_queries.css
@@ -0,0 +1,19145 @@
+/* line 2986, icons/*.png */
+.icons-sprite, .icons-ad, .icons-add-small, .icons-add-tiny, .icons-ae, .icons-af, .icons-ag, .icons-ai, .icons-al, .icons-alert-error, .icons-alert-info, .icons-alert-notice, .icons-alert-question, .icons-alert-success, .icons-am, .icons-an, .icons-analytics, .icons-ao, .icons-ar, .icons-arrow-down-green, .icons-arrow-down-red, .icons-arrow-down, .icons-arrow-left, .icons-arrow-right-white, .icons-arrow-right, .icons-arrow-up-green, .icons-arrow-up-red, .icons-arrow-up, .icons-as, .icons-asset-small, .icons-at, .icons-au, .icons-aw, .icons-ax, .icons-az, .icons-ba, .icons-barcode, .icons-bb, .icons-bd, .icons-be, .icons-beta, .icons-bf, .icons-bg, .icons-bh, .icons-bi, .icons-bj, .icons-blank, .icons-bm, .icons-bn, .icons-bo, .icons-br, .icons-bs, .icons-bt, .icons-bug-error, .icons-bv, .icons-bw, .icons-by, .icons-bz, .icons-ca, .icons-calendar, .icons-cancel, .icons-catalonia, .icons-cc, .icons-cd, .icons-cf, .icons-cg, .icons-ch, .icons-check-green, .icons-ci, .icons-ck, .icons-cl, .icons-clone-small, .icons-cm, .icons-cn, .icons-co, .icons-cog-small-white, .icons-cog-small, .icons-cog, .icons-collapse, .icons-comment, .icons-comments-small, .icons-cr, .icons-cs, .icons-cu, .icons-cv, .icons-cx, .icons-cy, .icons-cz, .icons-de, .icons-dj, .icons-dk, .icons-dm, .icons-do, .icons-dot-gray, .icons-dot-green, .icons-dot-orange, .icons-dot-red, .icons-dot-yellow, .icons-download-white, .icons-download, .icons-dz, .icons-ec, .icons-edit-small-grey, .icons-edit-small, .icons-edit-tiny-white, .icons-edit-tiny, .icons-ee, .icons-eg, .icons-eh, .icons-england, .icons-er, .icons-es, .icons-et, .icons-europeanunion, .icons-expand, .icons-fam, .icons-fi, .icons-file-excel, .icons-file-pdf, .icons-file-word, .icons-file, .icons-files-small, .icons-fj, .icons-fk, .icons-fm, .icons-fo, .icons-folder-tiny-blue, .icons-folder-tiny, .icons-folder, .icons-form-small, .icons-fr, .icons-ga, .icons-gb, .icons-gd, .icons-ge, .icons-gf, .icons-gh, .icons-gi, .icons-gl, .icons-gm, .icons-gn, .icons-gp, .icons-gq, .icons-gr, .icons-gs, .icons-gt, .icons-gu, .icons-gw, .icons-gy, .icons-hk, .icons-hm, .icons-hn, .icons-hr, .icons-ht, .icons-hu, .icons-id, .icons-ie, .icons-il, .icons-in, .icons-io, .icons-iq, .icons-ir, .icons-is, .icons-it, .icons-jm, .icons-jo, .icons-jp, .icons-ke, .icons-kg, .icons-kh, .icons-ki, .icons-km, .icons-kn, .icons-kp, .icons-kr, .icons-kw, .icons-ky, .icons-kz, .icons-la, .icons-lb, .icons-lc, .icons-li, .icons-lk, .icons-location-small, .icons-lockpad, .icons-logo-colored, .icons-logo-white, .icons-logout-arrow-blue, .icons-logout-arrow-white, .icons-logout-arrow, .icons-lr, .icons-ls, .icons-lt, .icons-lu, .icons-lv, .icons-ly, .icons-ma, .icons-mail, .icons-mc, .icons-md, .icons-me, .icons-mg, .icons-mh, .icons-mk, .icons-ml, .icons-mm, .icons-mn, .icons-mo, .icons-move-small, .icons-mp, .icons-mq, .icons-mr, .icons-ms, .icons-mt, .icons-mu, .icons-mv, .icons-mw, .icons-mx, .icons-my, .icons-mz, .icons-na, .icons-nc, .icons-ne, .icons-next-arrow, .icons-nf, .icons-ng, .icons-ni, .icons-nl, .icons-no, .icons-note, .icons-np, .icons-nr, .icons-nu, .icons-nz, .icons-om, .icons-pa, .icons-pe, .icons-pf, .icons-pg, .icons-ph, .icons-photo, .icons-pk, .icons-pl, .icons-pm, .icons-pn, .icons-point-barcode-white, .icons-point-barcode, .icons-point-date-gray, .icons-point-date-white, .icons-point-date, .icons-point-multi-gray, .icons-point-multi-white, .icons-point-multi, .icons-point-number-gray, .icons-point-number-white, .icons-point-number, .icons-point-paragraph-gray, .icons-point-paragraph-white, .icons-point-paragraph, .icons-point-signature-gray, .icons-point-signature-white, .icons-point-signature, .icons-point-single-gray, .icons-point-single-white, .icons-point-single, .icons-point-sketch-gray, .icons-point-sketch-white, .icons-point-sketch, .icons-point-text-gray, .icons-point-text-white, .icons-point-text, .icons-pr, .icons-prev-arrow, .icons-preview-gray, .icons-preview, .icons-procedures-small, .icons-ps, .icons-pt, .icons-publish-grey, .icons-publish-white, .icons-pw, .icons-py, .icons-qa, .icons-quotation-left, .icons-quotation-right, .icons-re, .icons-regulations-small, .icons-remove-small-grey, .icons-remove-small, .icons-resolve-large, .icons-resolve-note, .icons-resolve, .icons-ro, .icons-rs, .icons-ru, .icons-rw, .icons-sa, .icons-sb, .icons-sc, .icons-scotland, .icons-sd, .icons-se, .icons-search-tiny-gray, .icons-search-tiny-white, .icons-search, .icons-sg, .icons-sh, .icons-share, .icons-si, .icons-sj, .icons-sk, .icons-sl, .icons-sm, .icons-sn, .icons-so, .icons-sr, .icons-st, .icons-sv, .icons-sy, .icons-sz, .icons-tc, .icons-td, .icons-team-tiny, .icons-team, .icons-tf, .icons-tg, .icons-th, .icons-tj, .icons-tk, .icons-tl, .icons-tm, .icons-tn, .icons-to, .icons-tr, .icons-tt, .icons-tv, .icons-tw, .icons-tz, .icons-ua, .icons-ug, .icons-um, .icons-us, .icons-user-large, .icons-user, .icons-uy, .icons-uz, .icons-va, .icons-vc, .icons-ve, .icons-vg, .icons-vi, .icons-vn, .icons-vu, .icons-wales, .icons-wf, .icons-ws, .icons-ye, .icons-yt, .icons-za, .icons-zm, .icons-zw, .search-wrapper input:focus + button.btn.btn-no-bg i.icons-search, .search-wrapper button:hover i.icons-search, #full-screen-edit .send-email-link.disabled i.icons-preview, #search-dropdown.open .icons-search-tiny-white, #class-show #eventtypes-list-table tr i.icons-asset-small:hover, #class-show #eventtypes-list-table tr i.icons-form-small:hover, .new-points-list .pointSingleSelect:hover i, .new-points-list .pointMultiSelect:hover i, .new-points-list .pointSingleText:hover i, .new-points-list .pointParagraph:hover i, .new-points-list .pointNumber:hover i, .new-points-list .pointDate:hover i, .new-points-list .pointBarcode:hover i, .new-points-list .pointSketch:hover i, .new-points-list .pointSignature:hover i, #folders .dropdown-toggle.active .icons-folder,
+#folders .dropdown-toggle:active .icons-folder, #folders .dropdown-toggle:focus .icons-folder {
+ background: url(/assets/icons-sef57a8c5b0.png) no-repeat;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-ad {
+ background-position: 0 -4596px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-add-small {
+ background-position: 0 -1886px;
+ height: 17px;
+ width: 16px;
+}
+/* line 43, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-add-small:hover, .icons-add-small.add-small_hover, .icons-add-small.add-small-hover {
+ background-position: 0 -1817px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-add-tiny {
+ background-position: 0 -839px;
+ height: 13px;
+ width: 12px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-ae {
+ background-position: 0 -11479px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-af {
+ background-position: 0 -5588px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-ag {
+ background-position: 0 -6084px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-ai {
+ background-position: 0 -4627px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-al {
+ background-position: 0 -5712px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-alert-error {
+ background-position: 0 -419px;
+ height: 16px;
+ width: 15px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-alert-info {
+ background-position: 0 -1174px;
+ height: 16px;
+ width: 15px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-alert-notice {
+ background-position: 0 -1781px;
+ height: 16px;
+ width: 15px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-alert-question {
+ background-position: 0 0;
+ height: 16px;
+ width: 15px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-alert-success {
+ background-position: 0 -971px;
+ height: 16px;
+ width: 15px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-am {
+ background-position: 0 -9029px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-an {
+ background-position: 0 -9525px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-analytics {
+ background-position: 0 -491px;
+ height: 15px;
+ width: 14px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-ao {
+ background-position: 0 -11138px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-ar {
+ background-position: 0 -8750px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-arrow-down-green {
+ background-position: 0 -1468px;
+ height: 19px;
+ width: 14px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-arrow-down-red {
+ background-position: 0 -2659px;
+ height: 13px;
+ width: 12px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-arrow-down {
+ background-position: 0 -3802px;
+ height: 8px;
+ width: 8px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-arrow-left {
+ background-position: 0 -3830px;
+ height: 8px;
+ width: 8px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-arrow-right-white {
+ background-position: 0 -3686px;
+ height: 11px;
+ width: 9px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-arrow-right {
+ background-position: 0 -3492px;
+ height: 8px;
+ width: 8px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-arrow-up-green {
+ background-position: 0 -2386px;
+ height: 14px;
+ width: 12px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-arrow-up-red {
+ background-position: 0 -1280px;
+ height: 19px;
+ width: 14px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-arrow-up {
+ background-position: 0 -3744px;
+ height: 8px;
+ width: 8px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-as {
+ background-position: 0 -4472px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-asset-small {
+ background-position: 0 -3101px;
+ height: 11px;
+ width: 12px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-at {
+ background-position: 0 -11510px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-au {
+ background-position: 0 -4100px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-aw {
+ background-position: 0 -8037px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-ax {
+ background-position: 0 -4193px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-az {
+ background-position: 0 -6146px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-ba {
+ background-position: 0 -5867px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-barcode {
+ background-position: 0 -3916px;
+ height: 10px;
+ width: 17px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-bb {
+ background-position: 0 -6239px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-bd {
+ background-position: 0 -8781px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-be {
+ background-position: 0 -10765px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-beta {
+ background-position: 0 -78px;
+ height: 14px;
+ width: 33px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-bf {
+ background-position: 0 -9060px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-bg {
+ background-position: 0 -10517px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-bh {
+ background-position: 0 -10548px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-bi {
+ background-position: 0 -4069px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-bj {
+ background-position: 0 -9649px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-blank {
+ background-position: 0 -4006px;
+ height: 12px;
+ width: 12px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-bm {
+ background-position: 0 -5433px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-bn {
+ background-position: 0 -4782px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-bo {
+ background-position: 0 -8905px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-br {
+ background-position: 0 -5898px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-bs {
+ background-position: 0 -7975px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-bt {
+ background-position: 0 -4937px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-bug-error {
+ background-position: 0 -172px;
+ height: 16px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-bv {
+ background-position: 0 -8409px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-bw {
+ background-position: 0 -10859px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-by {
+ background-position: 0 -8316px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-bz {
+ background-position: 0 -5743px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-ca {
+ background-position: 0 -5030px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-calendar {
+ background-position: 0 -1674px;
+ height: 17px;
+ width: 15px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-cancel {
+ background-position: 0 -3227px;
+ height: 14px;
+ width: 14px;
+}
+/* line 43, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-cancel:hover, .icons-cancel.cancel_hover, .icons-cancel.cancel-hover {
+ background-position: 0 -2894px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-catalonia {
+ background-position: 0 -11541px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-cc {
+ background-position: 0 -5154px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-cd {
+ background-position: 0 -7789px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-cf {
+ background-position: 0 -5371px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-cg {
+ background-position: 0 -8099px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-ch {
+ background-position: 0 -11665px;
+ height: 11px;
+ width: 11px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-check-green {
+ background-position: 0 -3520px;
+ height: 12px;
+ width: 12px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-ci {
+ background-position: 0 -10579px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-ck {
+ background-position: 0 -6208px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-cl {
+ background-position: 0 -10703px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-clone-small {
+ background-position: 0 -3585px;
+ height: 17px;
+ width: 16px;
+}
+/* line 43, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-clone-small:hover, .icons-clone-small.clone-small_hover, .icons-clone-small.clone-small-hover {
+ background-position: 0 -3622px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-cm {
+ background-position: 0 -8006px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-cn {
+ background-position: 0 -10207px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-co {
+ background-position: 0 -9711px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-cog-small-white {
+ background-position: 0 -2561px;
+ height: 13px;
+ width: 11px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-cog-small {
+ background-position: 0 -1992px;
+ height: 12px;
+ width: 11px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-cog {
+ background-position: 0 -802px;
+ height: 17px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-collapse {
+ background-position: 0 -11729px;
+ height: 13px;
+ width: 13px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-comment {
+ background-position: 0 -3324px;
+ height: 17px;
+ width: 18px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-comments-small {
+ background-position: 0 -2725px;
+ height: 13px;
+ width: 12px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-cr {
+ background-position: 0 -9959px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-cs {
+ background-position: 0 -10921px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-cu {
+ background-position: 0 -6766px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-cv {
+ background-position: 0 -7727px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-cx {
+ background-position: 0 -5526px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-cy {
+ background-position: 0 -11169px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-cz {
+ background-position: 0 -9990px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-de {
+ background-position: 0 -7169px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-dj {
+ background-position: 0 -6487px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-dk {
+ background-position: 0 -9184px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-dm {
+ background-position: 0 -5247px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-do {
+ background-position: 0 -8626px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-dot-gray {
+ background-position: 0 -2355px;
+ height: 11px;
+ width: 10px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-dot-green {
+ background-position: 0 -2159px;
+ height: 11px;
+ width: 10px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-dot-orange {
+ background-position: 0 -2292px;
+ height: 11px;
+ width: 10px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-dot-red {
+ background-position: 0 -2055px;
+ height: 11px;
+ width: 10px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-dot-yellow {
+ background-position: 0 -2190px;
+ height: 11px;
+ width: 10px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-download-white {
+ background-position: 0 -2692px;
+ height: 13px;
+ width: 13px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-download {
+ background-position: 0 -563px;
+ height: 13px;
+ width: 13px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-dz {
+ background-position: 0 -6332px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-ec {
+ background-position: 0 -8936px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-edit-small-grey {
+ background-position: 0 -3001px;
+ height: 17px;
+ width: 14px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-edit-small {
+ background-position: 0 -2928px;
+ height: 17px;
+ width: 14px;
+}
+/* line 43, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-edit-small:hover, .icons-edit-small.edit-small_hover, .icons-edit-small.edit-small-hover {
+ background-position: 0 -2857px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-edit-tiny-white {
+ background-position: 0 -3162px;
+ height: 12px;
+ width: 9px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-edit-tiny {
+ background-position: 0 -208px;
+ height: 11px;
+ width: 9px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-ee {
+ background-position: 0 -11107px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-eg {
+ background-position: 0 -10393px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-eh {
+ background-position: 0 -8657px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-england {
+ background-position: 0 -9091px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-er {
+ background-position: 0 -4348px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-es {
+ background-position: 0 -10300px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-et {
+ background-position: 0 -6022px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-europeanunion {
+ background-position: 0 -9897px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-expand {
+ background-position: 0 -11696px;
+ height: 13px;
+ width: 13px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-fam {
+ background-position: 0 -7572px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-fi {
+ background-position: 0 -9463px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-file-excel {
+ background-position: 0 -904px;
+ height: 12px;
+ width: 12px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-file-pdf {
+ background-position: 0 -1079px;
+ height: 12px;
+ width: 10px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-file-word {
+ background-position: 0 -872px;
+ height: 12px;
+ width: 12px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-file {
+ background-position: 0 -1569px;
+ height: 16px;
+ width: 12px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-files-small {
+ background-position: 0 -1605px;
+ height: 13px;
+ width: 12px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-fj {
+ background-position: 0 -5464px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-fk {
+ background-position: 0 -4441px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-fm {
+ background-position: 0 -7045px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-fo {
+ background-position: 0 -10052px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-folder-tiny-blue {
+ background-position: 0 -1960px;
+ height: 12px;
+ width: 11px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-folder-tiny {
+ background-position: 0 -2323px;
+ height: 12px;
+ width: 11px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-folder {
+ background-position: 0 -2821px;
+ height: 16px;
+ width: 15px;
+}
+/* line 43, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-folder:active, .icons-folder.folder_active, .icons-folder.folder-active {
+ background-position: 0 -2965px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-form-small {
+ background-position: 0 -3361px;
+ height: 11px;
+ width: 12px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-fr {
+ background-position: 0 -7200px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-ga {
+ background-position: 0 -9494px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-gb {
+ background-position: 0 -5774px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-gd {
+ background-position: 0 -4875px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-ge {
+ background-position: 0 -5836px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-gf {
+ background-position: 0 -7231px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-gh {
+ background-position: 0 -9432px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-gi {
+ background-position: 0 -10486px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-gl {
+ background-position: 0 -10269px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-gm {
+ background-position: 0 -9277px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-gn {
+ background-position: 0 -9866px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-gp {
+ background-position: 0 -9556px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-gq {
+ background-position: 0 -7386px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-gr {
+ background-position: 0 -9587px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-gs {
+ background-position: 0 -4968px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-gt {
+ background-position: 0 -9308px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-gu {
+ background-position: 0 -8595px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-gw {
+ background-position: 0 -8223px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-gy {
+ background-position: 0 -4534px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-hk {
+ background-position: 0 -7851px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-hm {
+ background-position: 0 -4131px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-hn {
+ background-position: 0 -7417px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-hr {
+ background-position: 0 -8068px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-ht {
+ background-position: 0 -9618px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-hu {
+ background-position: 0 -10983px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-id {
+ background-position: 0 -11076px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-ie {
+ background-position: 0 -9804px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-il {
+ background-position: 0 -11045px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-in {
+ background-position: 0 -8812px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-io {
+ background-position: 0 -4224px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-iq {
+ background-position: 0 -8254px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-ir {
+ background-position: 0 -8440px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-is {
+ background-position: 0 -7603px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-it {
+ background-position: 0 -11293px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-jm {
+ background-position: 0 -4906px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-jo {
+ background-position: 0 -10145px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-jp {
+ background-position: 0 -11324px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-ke {
+ background-position: 0 -6642px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-kg {
+ background-position: 0 -8533px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-kh {
+ background-position: 0 -7138px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-ki {
+ background-position: 0 -4286px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-km {
+ background-position: 0 -6363px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-kn {
+ background-position: 0 -5619px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-kp {
+ background-position: 0 -6890px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-kr {
+ background-position: 0 -6053px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-kw {
+ background-position: 0 -9680px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-ky {
+ background-position: 0 -4658px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-kz {
+ background-position: 0 -5309px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-la {
+ background-position: 0 -6797px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-lb {
+ background-position: 0 -8192px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-lc {
+ background-position: 0 -8130px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-li {
+ background-position: 0 -7448px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-lk {
+ background-position: 0 -5123px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-location-small {
+ background-position: 0 -2221px;
+ height: 14px;
+ width: 9px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-lockpad {
+ background-position: 0 -2594px;
+ height: 13px;
+ width: 11px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-logo-colored {
+ background-position: 0 -36px;
+ height: 22px;
+ width: 21px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-logo-white {
+ background-position: 0 -668px;
+ height: 22px;
+ width: 21px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-logout-arrow-blue {
+ background-position: 0 -1711px;
+ height: 13px;
+ width: 11px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-logout-arrow-white {
+ background-position: 0 -3552px;
+ height: 13px;
+ width: 11px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-logout-arrow {
+ background-position: 0 -3038px;
+ height: 13px;
+ width: 11px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-lr {
+ background-position: 0 -10362px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-ls {
+ background-position: 0 -5061px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-lt {
+ background-position: 0 -8688px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-lu {
+ background-position: 0 -9835px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-lv {
+ background-position: 0 -10424px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-ly {
+ background-position: 0 -11417px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-ma {
+ background-position: 0 -11014px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-mail {
+ background-position: 0 -3071px;
+ height: 10px;
+ width: 14px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-mc {
+ background-position: 0 -11603px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-md {
+ background-position: 0 -6735px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-me {
+ background-position: 0 -10796px;
+ height: 12px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-mg {
+ background-position: 0 -10610px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-mh {
+ background-position: 0 -5092px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-mk {
+ background-position: 0 -4162px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-ml {
+ background-position: 0 -10083px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-mm {
+ background-position: 0 -9742px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-mn {
+ background-position: 0 -9339px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-mo {
+ background-position: 0 -6177px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-move-small {
+ background-position: 0 -3858px;
+ height: 9px;
+ width: 16px;
+}
+/* line 43, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-move-small:hover, .icons-move-small.move-small_hover, .icons-move-small.move-small-hover {
+ background-position: 0 -3887px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-mp {
+ background-position: 0 -5805px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-mq {
+ background-position: 0 -4317px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-mr {
+ background-position: 0 -6673px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-ms {
+ background-position: 0 -5402px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-mt {
+ background-position: 0 -11355px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-mu {
+ background-position: 0 -9122px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-mv {
+ background-position: 0 -7293px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-mw {
+ background-position: 0 -7758px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-mx {
+ background-position: 0 -6425px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-my {
+ background-position: 0 -6549px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-mz {
+ background-position: 0 -6270px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-na {
+ background-position: 0 -4503px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-nc {
+ background-position: 0 -6115px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-ne {
+ background-position: 0 -7479px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-next-arrow {
+ background-position: 0 -3194px;
+ height: 13px;
+ width: 9px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-nf {
+ background-position: 0 -5681px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-ng {
+ background-position: 0 -9773px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-ni {
+ background-position: 0 -8719px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-nl {
+ background-position: 0 -10641px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-no {
+ background-position: 0 -8471px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-note {
+ background-position: 0 -1319px;
+ height: 16px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-np {
+ background-position: 0 -10890px;
+ height: 11px;
+ width: 9px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-nr {
+ background-position: 0 -7882px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-nu {
+ background-position: 0 -6518px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-nz {
+ background-position: 0 -4813px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-om {
+ background-position: 0 -9928px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-pa {
+ background-position: 0 -8161px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-pe {
+ background-position: 0 -11572px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-pf {
+ background-position: 0 -8998px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-pg {
+ background-position: 0 -5929px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-ph {
+ background-position: 0 -7355px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-photo {
+ background-position: 0 -1744px;
+ height: 17px;
+ width: 17px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-pk {
+ background-position: 0 -6704px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-pl {
+ background-position: 0 -11634px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-pm {
+ background-position: 0 -4038px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-pn {
+ background-position: 0 -4255px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-point-barcode-white {
+ background-position: 0 -3976px;
+ height: 10px;
+ width: 17px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-point-barcode {
+ background-position: 0 -3946px;
+ height: 10px;
+ width: 17px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-point-date-gray {
+ background-position: 0 -596px;
+ height: 16px;
+ width: 22px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-point-date-white {
+ background-position: 0 -2420px;
+ height: 16px;
+ width: 22px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-point-date {
+ background-position: 0 -632px;
+ height: 16px;
+ width: 22px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-point-multi-gray {
+ background-position: 0 -2456px;
+ height: 16px;
+ width: 22px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-point-multi-white {
+ background-position: 0 -3456px;
+ height: 16px;
+ width: 22px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-point-multi {
+ background-position: 0 -2492px;
+ height: 16px;
+ width: 22px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-point-number-gray {
+ background-position: 0 -142px;
+ height: 10px;
+ width: 23px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-point-number-white {
+ background-position: 0 -1355px;
+ height: 10px;
+ width: 23px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-point-number {
+ background-position: 0 -112px;
+ height: 10px;
+ width: 23px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-point-paragraph-gray {
+ background-position: 0 -3261px;
+ height: 10px;
+ width: 17px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-point-paragraph-white {
+ background-position: 0 -3772px;
+ height: 10px;
+ width: 17px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-point-paragraph {
+ background-position: 0 -3132px;
+ height: 10px;
+ width: 17px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-point-signature-gray {
+ background-position: 0 -275px;
+ height: 16px;
+ width: 20px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-point-signature-white {
+ background-position: 0 -1385px;
+ height: 16px;
+ width: 20px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-point-signature {
+ background-position: 0 -239px;
+ height: 16px;
+ width: 20px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-point-single-gray {
+ background-position: 0 -455px;
+ height: 16px;
+ width: 22px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-point-single-white {
+ background-position: 0 -2123px;
+ height: 16px;
+ width: 22px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-point-single {
+ background-position: 0 -383px;
+ height: 16px;
+ width: 22px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-point-sketch-gray {
+ background-position: 0 -347px;
+ height: 16px;
+ width: 15px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-point-sketch-white {
+ background-position: 0 -1638px;
+ height: 16px;
+ width: 15px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-point-sketch {
+ background-position: 0 -311px;
+ height: 16px;
+ width: 15px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-point-text-gray {
+ background-position: 0 -710px;
+ height: 10px;
+ width: 20px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-point-text-white {
+ background-position: 0 -2791px;
+ height: 10px;
+ width: 20px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-point-text {
+ background-position: 0 -772px;
+ height: 10px;
+ width: 20px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-pr {
+ background-position: 0 -6921px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-prev-arrow {
+ background-position: 0 -3291px;
+ height: 13px;
+ width: 9px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-preview-gray {
+ background-position: 0 -2024px;
+ height: 11px;
+ width: 10px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-preview {
+ background-position: 0 -1538px;
+ height: 11px;
+ width: 10px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-procedures-small {
+ background-position: 0 -2758px;
+ height: 13px;
+ width: 12px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-ps {
+ background-position: 0 -10238px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-pt {
+ background-position: 0 -6952px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-publish-grey {
+ background-position: 0 -740px;
+ height: 12px;
+ width: 12px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-publish-white {
+ background-position: 0 -1111px;
+ height: 12px;
+ width: 11px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-pw {
+ background-position: 0 -7107px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-py {
+ background-position: 0 -10176px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-qa {
+ background-position: 0 -10734px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-quotation-left {
+ background-position: 0 -3659px;
+ height: 7px;
+ width: 8px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-quotation-right {
+ background-position: 0 -3717px;
+ height: 7px;
+ width: 8px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-re {
+ background-position: 0 -7262px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-regulations-small {
+ background-position: 0 -1007px;
+ height: 13px;
+ width: 13px;
+}
+/* line 43, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-regulations-small:hover, .icons-regulations-small.regulations-small_hover, .icons-regulations-small.regulations-small-hover {
+ background-position: 0 -2528px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-remove-small-grey {
+ background-position: 0 -2255px;
+ height: 17px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-remove-small {
+ background-position: 0 -1923px;
+ height: 17px;
+ width: 16px;
+}
+/* line 43, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-remove-small:hover, .icons-remove-small.remove-small_hover, .icons-remove-small.remove-small-hover {
+ background-position: 0 -2086px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-resolve-large {
+ background-position: 0 -526px;
+ height: 17px;
+ width: 17px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-resolve-note {
+ background-position: 0 -3392px;
+ height: 13px;
+ width: 13px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-resolve {
+ background-position: 0 -936px;
+ height: 15px;
+ width: 15px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-ro {
+ background-position: 0 -9215px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-rs {
+ background-position: 0 -11231px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-ru {
+ background-position: 0 -11386px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-rw {
+ background-position: 0 -7541px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-sa {
+ background-position: 0 -7076px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-sb {
+ background-position: 0 -5185px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-sc {
+ background-position: 0 -5557px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-scotland {
+ background-position: 0 -4410px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-sd {
+ background-position: 0 -9370px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-se {
+ background-position: 0 -7324px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-search-tiny-gray {
+ background-position: 0 -1854px;
+ height: 12px;
+ width: 11px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-search-tiny-white {
+ background-position: 0 -2627px;
+ height: 12px;
+ width: 11px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-search {
+ background-position: 0 -1245px;
+ height: 15px;
+ width: 14px;
+}
+/* line 43, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-search:hover, .icons-search.search_hover, .icons-search.search-hover {
+ background-position: 0 -1210px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-sg {
+ background-position: 0 -10331px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-sh {
+ background-position: 0 -4565px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-share {
+ background-position: 0 -1143px;
+ height: 11px;
+ width: 14px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-si {
+ background-position: 0 -8564px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-sj {
+ background-position: 0 -8502px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-sk {
+ background-position: 0 -6828px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-sl {
+ background-position: 0 -10952px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-sm {
+ background-position: 0 -8843px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-sn {
+ background-position: 0 -7634px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-so {
+ background-position: 0 -7913px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-sr {
+ background-position: 0 -8378px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-st {
+ background-position: 0 -6301px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-sv {
+ background-position: 0 -8874px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-sy {
+ background-position: 0 -11262px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-sz {
+ background-position: 0 -4689px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-tc {
+ background-position: 0 -5216px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-td {
+ background-position: 0 -6611px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-team-tiny {
+ background-position: 0 -1507px;
+ height: 11px;
+ width: 12px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-team {
+ background-position: 0 -1040px;
+ height: 19px;
+ width: 20px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-tf {
+ background-position: 0 -7944px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-tg {
+ background-position: 0 -6859px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-th {
+ background-position: 0 -10672px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-tj {
+ background-position: 0 -9153px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-tk {
+ background-position: 0 -4844px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-tl {
+ background-position: 0 -8347px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-tm {
+ background-position: 0 -5960px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-tn {
+ background-position: 0 -9246px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-to {
+ background-position: 0 -11200px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-tr {
+ background-position: 0 -9401px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-tt {
+ background-position: 0 -5278px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-tv {
+ background-position: 0 -7510px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-tw {
+ background-position: 0 -10455px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-tz {
+ background-position: 0 -4720px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-ua {
+ background-position: 0 -10828px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-ug {
+ background-position: 0 -7696px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-um {
+ background-position: 0 -6580px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-us {
+ background-position: 0 -5495px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-user-large {
+ background-position: 0 -1421px;
+ height: 27px;
+ width: 29px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-user {
+ background-position: 0 -3425px;
+ height: 11px;
+ width: 11px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-uy {
+ background-position: 0 -7665px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-uz {
+ background-position: 0 -8285px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-va {
+ background-position: 0 -7014px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-vc {
+ background-position: 0 -6394px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-ve {
+ background-position: 0 -7820px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-vg {
+ background-position: 0 -4999px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-vi {
+ background-position: 0 -5340px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-vn {
+ background-position: 0 -10114px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-vu {
+ background-position: 0 -5650px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-wales {
+ background-position: 0 -4379px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-wf {
+ background-position: 0 -6983px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-ws {
+ background-position: 0 -10021px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-ye {
+ background-position: 0 -11448px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-yt {
+ background-position: 0 -5991px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-za {
+ background-position: 0 -4751px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-zm {
+ background-position: 0 -8967px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-zw {
+ background-position: 0 -6456px;
+ height: 11px;
+ width: 16px;
+}
+
+/*
+ Mixins are slightly modified from Benjamin Doherty's first implementations: http://gist.github.com/377912
+ rgba-background mixin can now be passed an option $dir variable
+*/
+/* line 3, ../../app/assets/stylesheets/web.css.scss */
+[class^="icons-"],
+[class*="icons-"] {
+ display: inline-block;
+ vertical-align: text-top;
+ background-repeat: no-repeat;
+ *margin-right: .3em;
+}
+/* line 66, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass_twitter_bootstrap-2.0.3/stylesheets/compass_twitter_bootstrap/_mixins.scss */
+[class^="icons-"]:last-child,
+[class*="icons-"]:last-child {
+ *margin-left: 0;
+}
+
+/* line 4, ../../app/assets/stylesheets/web.css.scss */
+[class^="icon-"], [class*=" icon-"] {
+ background-image: none !important;
+}
+
+/* line 7, ../../app/assets/stylesheets/web.css.scss */
+.table [class*="icons-"], .icons-alert-question,
+.btn-no-bg [class*="icons-"], .icons-move-small {
+ vertical-align: middle;
+}
+
+/* line 8, ../../app/assets/stylesheets/web.css.scss */
+.icons-add-tiny {
+ vertical-align: bottom;
+}
+
+/* line 9, ../../app/assets/stylesheets/web.css.scss */
+.icons-move-small {
+ cursor: move;
+}
+
+/* line 10, ../../app/assets/stylesheets/web.css.scss */
+.btn input[type="checkbox"] {
+ margin: 0;
+ position: relative;
+ top: -2px;
+}
+
+/* line 11, ../../app/assets/stylesheets/web.css.scss */
+.icons-arrow-down, .icons-arrow-right {
+ vertical-align: baseline;
+}
+
+/* line 12, ../../app/assets/stylesheets/web.css.scss */
+.icons-arrow-right {
+ position: relative;
+ top: -2px;
+}
+
+/* line 13, ../../app/assets/stylesheets/web.css.scss */
+.btn-mini.dropdown-toggle > .caret {
+ vertical-align: middle !important;
+}
+
+/* line 14, ../../app/assets/stylesheets/web.css.scss */
+.btn-no-bg.btn-no-padding > .caret {
+ vertical-align: middle !important;
+}
+
+/* line 15, ../../app/assets/stylesheets/web.css.scss */
+[class*="icons-file"] {
+ vertical-align: baseline;
+}
+
+/* line 17, ../../app/assets/stylesheets/web.css.scss */
+html {
+ background-color: #e8e9ea;
+}
+
+/* line 18, ../../app/assets/stylesheets/web.css.scss */
+body {
+ background-color: white;
+ color: #4b5566;
+}
+
+/* line 19, ../../app/assets/stylesheets/web.css.scss */
+#content {
+ min-height: 250px;
+ float: left;
+ width: 100%;
+ position: relative;
+}
+
+/* line 20, ../../app/assets/stylesheets/web.css.scss */
+a {
+ color: #3d70a5;
+}
+/* line 18, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/typography/links/_link-colors.scss */
+a:visited {
+ color: #3d70a5;
+}
+/* line 21, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/typography/links/_link-colors.scss */
+a:focus {
+ color: #3d70a5;
+}
+/* line 24, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/typography/links/_link-colors.scss */
+a:hover {
+ color: #3d70a5;
+}
+/* line 27, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/typography/links/_link-colors.scss */
+a:active {
+ color: #3d70a5;
+}
+
+/* line 21, ../../app/assets/stylesheets/web.css.scss */
+h1 {
+ color: #4d80b4;
+ font-size: 18px;
+ letter-spacing: 1px;
+ font-weight: 500;
+}
+
+/* line 22, ../../app/assets/stylesheets/web.css.scss */
+h3 {
+ color: #3e4852;
+ font-size: 20px;
+ font-weight: 500;
+ letter-spacing: 0.5px;
+ overflow: hidden;
+}
+
+/* line 23, ../../app/assets/stylesheets/web.css.scss */
+h4 {
+ font-size: 14px;
+ line-height: 30px;
+ color: #3e4852;
+ font-weight: 600;
+}
+
+/* line 24, ../../app/assets/stylesheets/web.css.scss */
+h5 {
+ font-size: 18px;
+ color: #3e4852;
+ text-shadow: 0px 2px 0px white;
+ line-height: 30px;
+}
+/* line 25, ../../app/assets/stylesheets/web.css.scss */
+h5 + a {
+ text-shadow: 0px 1px 0px white;
+ line-height: 30px;
+}
+
+/* line 27, ../../app/assets/stylesheets/web.css.scss */
+h6 {
+ font-size: 13px;
+ text-transform: none;
+}
+
+/* line 28, ../../app/assets/stylesheets/web.css.scss */
+p {
+ overflow: visible;
+ text-overflow: clip;
+ white-space: normal;
+ word-wrap: break-word;
+}
+
+/* line 29, ../../app/assets/stylesheets/web.css.scss */
+.hide {
+ display: none;
+}
+
+/* line 30, ../../app/assets/stylesheets/web.css.scss */
+.show {
+ display: block;
+}
+
+/* line 31, ../../app/assets/stylesheets/web.css.scss */
+small {
+ font-size: 12px;
+}
+
+/* line 33, ../../app/assets/stylesheets/web.css.scss */
+input, textarea,
+.search-query {
+ -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0 2px 3px inset;
+ -moz-box-shadow: rgba(0, 0, 0, 0.1) 0 2px 3px inset;
+ box-shadow: rgba(0, 0, 0, 0.1) 0 2px 3px inset;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+ border: 1px solid #bebebe;
+ vertical-align: middle;
+}
+
+/* line 34, ../../app/assets/stylesheets/web.css.scss */
+input:focus, textarea:focus {
+ outline: 0 !important;
+}
+
+/* line 36, ../../app/assets/stylesheets/web.css.scss */
+input, textarea, select,
+.uneditable-input {
+ margin-bottom: 0;
+}
+
+/* line 38, ../../app/assets/stylesheets/web.css.scss */
+input[type="radio"] {
+ -webkit-box-shadow: rgba(0, 0, 0, 0) 0 0 0 inset;
+ -moz-box-shadow: rgba(0, 0, 0, 0) 0 0 0 inset;
+ box-shadow: rgba(0, 0, 0, 0) 0 0 0 inset;
+ -webkit-box-shadow: rgba(0, 0, 0, 0) 0 0 0;
+ -moz-box-shadow: rgba(0, 0, 0, 0) 0 0 0;
+ box-shadow: rgba(0, 0, 0, 0) 0 0 0;
+}
+/* line 39, ../../app/assets/stylesheets/web.css.scss */
+input[type="text"] {
+ cursor: text !important;
+}
+/* line 40, ../../app/assets/stylesheets/web.css.scss */
+input[type="submit"] {
+ margin-bottom: 0;
+}
+
+/* line 43, ../../app/assets/stylesheets/web.css.scss */
+.input-append .add-on,
+.input-append .btn {
+ margin-left: -5px;
+ -webkit-border-radius: 3px;
+ -moz-border-radius: 3px;
+ -ms-border-radius: 3px;
+ -o-border-radius: 3px;
+ border-radius: 3px;
+ margin-right: 0;
+}
+
+/* line 45, ../../app/assets/stylesheets/web.css.scss */
+.input-prepend
+.add-on, .input-prepend .btn {
+ margin-right: -5px !important;
+ margin-left: 0;
+}
+
+/* line 46, ../../app/assets/stylesheets/web.css.scss */
+.add-on > .icons-calendar {
+ position: relative;
+ top: -2px;
+}
+
+/* line 49, ../../app/assets/stylesheets/web.css.scss */
+input:focus, textarea:focus,
+input:active, textarea:active,
+.k-state-focus > input {
+ border-color: #81a3c5;
+ box-shadow: 0 1px 1px rgba(0, 0, 0, 0.024) inset, 0 0 8px rgba(82, 168, 236, 0.25);
+ -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.024) inset, 0 0 8px rgba(82, 168, 236, 0.25);
+ -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.024) inset, 0 0 8px rgba(82, 168, 236, 0.25);
+ outline: 0 !important;
+ outline: thin dotted \9;
+}
+
+/* line 53, ../../app/assets/stylesheets/web.css.scss */
+input[type="file"]:focus,
+input[type="radio"]:focus,
+input[type="checkbox"]:focus,
+select:focus {
+ -webkit-box-shadow: rgba(0, 0, 0, 0) 0 0 0 inset;
+ -moz-box-shadow: rgba(0, 0, 0, 0) 0 0 0 inset;
+ box-shadow: rgba(0, 0, 0, 0) 0 0 0 inset;
+ -webkit-box-shadow: rgba(0, 0, 0, 0) 0 0 0;
+ -moz-box-shadow: rgba(0, 0, 0, 0) 0 0 0;
+ box-shadow: rgba(0, 0, 0, 0) 0 0 0;
+ outline: thin dotted #333333;
+ outline: 5px auto -webkit-focus-ring-color;
+ outline-offset: -2px;
+}
+
+/* line 54, ../../app/assets/stylesheets/web.css.scss */
+input.disabled {
+ color: #888;
+}
+
+/* line 55, ../../app/assets/stylesheets/web.css.scss */
+textarea, .textarea-autosize {
+ resize: vertical;
+ max-height: 300px;
+ -webkit-transition: height 0.2s ease;
+ -webkit-transition-delay: 0s;
+ -moz-transition: height 0.2s ease 0s;
+ -o-transition: height 0.2s ease 0s;
+ transition: height 0.2s ease 0s;
+}
+
+/* line 56, ../../app/assets/stylesheets/web.css.scss */
+textarea[disabled] {
+ resize: none !important;
+}
+
+/* line 57, ../../app/assets/stylesheets/web.css.scss */
+.full-screen-layout {
+ margin: 0 auto;
+ min-width: 970px;
+ max-width: 1370px;
+ padding: 0 15px;
+ overflow: visible;
+}
+
+/* line 58, ../../app/assets/stylesheets/web.css.scss */
+#title-region {
+ position: relative;
+ min-height: 30px;
+ width: 100%;
+}
+
+/* line 59, ../../app/assets/stylesheets/web.css.scss */
+#aside-region {
+ width: 230px;
+ float: left;
+}
+/* line 60, ../../app/assets/stylesheets/web.css.scss */
+#aside-region .left-nav {
+ position: absolute;
+ top: 0;
+ bottom: 0;
+}
+/* line 62, ../../app/assets/stylesheets/web.css.scss */
+#aside-region.non-column .left-nav {
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+ position: absolute;
+ top: auto;
+ bottom: auto;
+ left: auto;
+ right: auto;
+}
+/* line 63, ../../app/assets/stylesheets/web.css.scss */
+#aside-region.non-column .left-nav > ul {
+ border: 1px solid #d7dadf;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+}
+
+/* line 68, ../../app/assets/stylesheets/web.css.scss */
+.itemevent-class-name {
+ font-weight: bold;
+ font-size: 12px;
+ line-height: 12px;
+ color: #999;
+ padding-bottom: 0;
+}
+/* line 69, ../../app/assets/stylesheets/web.css.scss */
+.itemevent-class-name + div {
+ padding-top: 0 !important;
+ line-height: 15px;
+}
+
+/* line 71, ../../app/assets/stylesheets/web.css.scss */
+#article-region-wrapper {
+ background-color: #F1F3F5;
+}
+
+/* line 72, ../../app/assets/stylesheets/web.css.scss */
+#article-region {
+ background-color: white;
+ margin-left: 230px;
+ position: relative;
+ border-left: 1px solid #c8d5de;
+ min-height: 250px;
+}
+/* line 73, ../../app/assets/stylesheets/web.css.scss */
+#article-region > div > div {
+ overflow: auto;
+}
+
+/* line 75, ../../app/assets/stylesheets/web.css.scss */
+#center-wrapper {
+ background-color: #f9fafb;
+ border-bottom: 1px solid white;
+ text-shadow: 0px 1px 0px white;
+ overflow: auto;
+}
+/* line 76, ../../app/assets/stylesheets/web.css.scss */
+#center-wrapper.as-island {
+ margin-bottom: 20px;
+}
+
+/* line 78, ../../app/assets/stylesheets/web.css.scss */
+#center-panel {
+ border-bottom: 1px solid #dddddd;
+ overflow: hidden;
+}
+/* line 79, ../../app/assets/stylesheets/web.css.scss */
+#center-panel > .full-screen-layout > div {
+ padding: 8px 0;
+ overflow: hidden;
+}
+/* line 80, ../../app/assets/stylesheets/web.css.scss */
+#center-panel > .full-screen-layout > div > div {
+ overflow: hidden;
+}
+/* line 81, ../../app/assets/stylesheets/web.css.scss */
+#center-panel > .full-screen-layout > div > div > .pull-left {
+ width: 65%;
+ overflow: visible;
+ text-overflow: clip;
+ white-space: normal;
+ word-wrap: break-word;
+}
+/* line 82, ../../app/assets/stylesheets/web.css.scss */
+#center-panel > .full-screen-layout > div > div h3 > span {
+ color: #788893;
+ font-weight: bold;
+ font-size: 20px;
+ margin-left: 8px;
+}
+/* line 83, ../../app/assets/stylesheets/web.css.scss */
+#center-panel > .full-screen-layout > div > div > .pull-right {
+ width: 35%;
+ overflow: visible;
+ text-overflow: clip;
+ white-space: normal;
+ word-wrap: break-word;
+ text-align: right;
+}
+/* line 84, ../../app/assets/stylesheets/web.css.scss */
+#center-panel > .full-screen-layout > div > div > .pull-right > span {
+ color: #555e64;
+ font-size: 16px;
+ line-height: 16px;
+ display: inline-block;
+ margin-top: 3px;
+ height: 16px;
+ overflow: visible;
+ text-overflow: clip;
+ white-space: normal;
+ word-wrap: break-word;
+}
+
+/* line 89, ../../app/assets/stylesheets/web.css.scss */
+#two-column-background {
+ background-color: transparent;
+ background-image: -moz-linear-gradient(left, #f1f3f5 50%, transparent 50%, transparent 100%);
+ background-image: -webkit-gradient(linear, 0 0, 100% 0, color-stop(50%, #f1f3f5), color-stop(50%, transparent), color-stop(100%, transparent));
+ background-image: -webkit-linear-gradient(left, #f1f3f5 50%, transparent 50%, transparent 100%);
+ background-image: -o-linear-gradient(left, #f1f3f5 50%, transparent 50%, transparent 100%);
+ background-image: linear-gradient(to right, #f1f3f5 50%, transparent 50%, transparent 100%);
+ background-repeat: repeat-x;
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#F1F3F5', endColorstr='#ffffff', GradientType=1);
+ position: relative;
+}
+
+/* line 90, ../../app/assets/stylesheets/web.css.scss */
+#liquid-inner-title {
+ position: absolute;
+ left: 0;
+ right: 0;
+}
+
+/* line 91, ../../app/assets/stylesheets/web.css.scss */
+#liquid-inner-title, #inner-title {
+ background-color: #f9fafb;
+ border-bottom: 1px solid #f2f2f2;
+ height: 48px;
+}
+
+/* line 92, ../../app/assets/stylesheets/web.css.scss */
+#inner-title {
+ padding: 0 0 0 20px;
+ overflow: auto;
+ line-height: 48px;
+}
+/* line 93, ../../app/assets/stylesheets/web.css.scss */
+#inner-title h3 {
+ padding: 0;
+ display: block !important;
+ font-size: 20px;
+ line-height: 48px;
+}
+
+/* line 95, ../../app/assets/stylesheets/web.css.scss */
+#two-column-content-wrapper {
+ overflow: auto;
+ padding: 15px 0 15px 20px;
+ padding-bottom: 50px;
+}
+
+/* line 96, ../../app/assets/stylesheets/web.css.scss */
+.sub-title {
+ overflow: auto;
+ border-bottom: 1px solid #c2c8cc;
+ font-size: 15px;
+ line-height: 22px;
+ margin-top: 5px;
+ color: #46535c;
+ font-weight: bold;
+}
+/* line 97, ../../app/assets/stylesheets/web.css.scss */
+.sub-title.sub-title-no-underline {
+ border-bottom: none;
+}
+/* line 98, ../../app/assets/stylesheets/web.css.scss */
+.sub-title > h5 {
+ font-size: 15px;
+ line-height: 22px;
+ color: #46535c;
+ font-weight: bold;
+}
+/* line 99, ../../app/assets/stylesheets/web.css.scss */
+.sub-title > .btn {
+ line-height: 15px;
+ margin-bottom: 2px;
+}
+/* line 100, ../../app/assets/stylesheets/web.css.scss */
+.sub-title > .btn-no-bg {
+ line-height: 22px;
+ margin-bottom: 0;
+}
+/* line 101, ../../app/assets/stylesheets/web.css.scss */
+.sub-title + .dl-horizontal {
+ margin-top: 10px;
+}
+/* line 102, ../../app/assets/stylesheets/web.css.scss */
+.sub-title .pull-right > a {
+ font-size: 12px;
+ font-weight: normal;
+}
+/* line 103, ../../app/assets/stylesheets/web.css.scss */
+.sub-title + .help-block {
+ margin-top: 5px !important;
+ margin-bottom: 5px !important;
+}
+
+/* line 105, ../../app/assets/stylesheets/web.css.scss */
+#article-title {
+ overflow: auto;
+}
+
+/* line 107, ../../app/assets/stylesheets/web.css.scss */
+.pull-right {
+ float: right !important;
+}
+
+/* line 108, ../../app/assets/stylesheets/web.css.scss */
+.pull-left {
+ float: left !important;
+}
+
+/* line 109, ../../app/assets/stylesheets/web.css.scss */
+.square-small {
+ display: inline-block;
+ width: 15px;
+ height: 15px;
+ position: relative;
+ top: 2px;
+ margin-right: 3px;
+}
+
+/* line 110, ../../app/assets/stylesheets/web.css.scss */
+.italic {
+ font-style: italic;
+ font-weight: normal;
+ color: #777;
+}
+
+/* line 111, ../../app/assets/stylesheets/web.css.scss */
+.BoldLine {
+ font-weight: 500;
+ font-size: 13px;
+ color: #5a5a5a;
+}
+
+/* line 112, ../../app/assets/stylesheets/web.css.scss */
+.uppercase {
+ text-transform: uppercase;
+}
+
+/* line 113, ../../app/assets/stylesheets/web.css.scss */
+.green {
+ color: #449042;
+ font-weight: bold;
+ margin-left: 1px;
+}
+
+/* line 114, ../../app/assets/stylesheets/web.css.scss */
+.red, .btn.red, .btn.red:hover {
+ color: #d42a2a !important;
+}
+
+/* line 115, ../../app/assets/stylesheets/web.css.scss */
+.blue {
+ color: #4d80b4;
+}
+
+/* line 117, ../../app/assets/stylesheets/web.css.scss */
+.logo-header {
+ margin-bottom: 70px;
+ margin-top: 10px;
+}
+
+/* line 119, ../../app/assets/stylesheets/web.css.scss */
+a.logo {
+ font-weight: 400;
+ font-size: 18px;
+ margin-top: 9px;
+}
+/* line 120, ../../app/assets/stylesheets/web.css.scss */
+a.logo i {
+ margin-right: 3px;
+ position: relative;
+ top: -1px;
+}
+/* line 121, ../../app/assets/stylesheets/web.css.scss */
+a.logo:active, a.logo.active, a.logo:focus {
+ outline: 0 !important;
+}
+/* line 122, ../../app/assets/stylesheets/web.css.scss */
+a.logo span {
+ font-weight: 600;
+}
+/* line 123, ../../app/assets/stylesheets/web.css.scss */
+a.logo:hover {
+ text-decoration: none;
+}
+/* line 125, ../../app/assets/stylesheets/web.css.scss */
+a.logo-white {
+ color: white;
+}
+/* line 126, ../../app/assets/stylesheets/web.css.scss */
+a.logo-white:active, a.logo-white.active, a.logo-white:focus, a.logo-white span {
+ color: white;
+}
+/* line 129, ../../app/assets/stylesheets/web.css.scss */
+a.logo-colored:active, a.logo-colored.active, a.logo-colored:focus {
+ color: #4d80b4;
+}
+/* line 130, ../../app/assets/stylesheets/web.css.scss */
+a.logo-colored span {
+ color: #317404;
+}
+
+/* line 134, ../../app/assets/stylesheets/web.css.scss */
+.search-wrapper {
+ overflow: auto;
+}
+/* line 135, ../../app/assets/stylesheets/web.css.scss */
+.search-wrapper input {
+ float: left;
+ padding-left: 10px;
+ margin-right: 0 !important;
+ -webkit-border-radius: 10px 0 0 10px;
+ -moz-border-radius: 10px 0 0 10px;
+ -ms-border-radius: 10px 0 0 10px;
+ -o-border-radius: 10px 0 0 10px;
+ border-radius: 10px 0 0 10px;
+ border-right: none;
+ -webkit-box-shadow: rgba(0, 0, 0, 0.05) 3px 2px 3px inset;
+ -moz-box-shadow: rgba(0, 0, 0, 0.05) 3px 2px 3px inset;
+ box-shadow: rgba(0, 0, 0, 0.05) 3px 2px 3px inset;
+}
+/* line 136, ../../app/assets/stylesheets/web.css.scss */
+.search-wrapper input:focus {
+ border-color: #81a3c5 !important;
+ -webkit-box-shadow: rgba(0, 0, 0, 0) 0 0 0 inset;
+ -moz-box-shadow: rgba(0, 0, 0, 0) 0 0 0 inset;
+ box-shadow: rgba(0, 0, 0, 0) 0 0 0 inset;
+ -webkit-box-shadow: rgba(0, 0, 0, 0) 0 0 0;
+ -moz-box-shadow: rgba(0, 0, 0, 0) 0 0 0;
+ box-shadow: rgba(0, 0, 0, 0) 0 0 0;
+ outline: 0 !important;
+ outline: thin dotted \9;
+}
+/* line 137, ../../app/assets/stylesheets/web.css.scss */
+.search-wrapper input:focus + button.btn.btn-no-bg {
+ -webkit-box-shadow: rgba(0, 0, 0, 0) 0 0 0 inset;
+ -moz-box-shadow: rgba(0, 0, 0, 0) 0 0 0 inset;
+ box-shadow: rgba(0, 0, 0, 0) 0 0 0 inset;
+ -webkit-box-shadow: rgba(0, 0, 0, 0) 0 0 0;
+ -moz-box-shadow: rgba(0, 0, 0, 0) 0 0 0;
+ box-shadow: rgba(0, 0, 0, 0) 0 0 0;
+ border-color: #81a3c5 !important;
+}
+/* line 138, ../../app/assets/stylesheets/web.css.scss */
+.search-wrapper input:focus + button.btn.btn-no-bg i.icons-search {
+ background-position: 0 -1210px;
+ height: 15px;
+ width: 14px;
+}
+/* line 142, ../../app/assets/stylesheets/web.css.scss */
+.search-wrapper .btn.btn-no-bg {
+ float: left;
+ margin-left: 0;
+ background-color: white !important;
+ -webkit-border-radius: 0 10px 10px 0;
+ -moz-border-radius: 0 10px 10px 0;
+ -ms-border-radius: 0 10px 10px 0;
+ -o-border-radius: 0 10px 10px 0;
+ border-radius: 0 10px 10px 0;
+ border: 1px solid #bebebe !important;
+ border-left: none !important;
+ -webkit-box-shadow: rgba(0, 0, 0, 0.05) -3px 2px 3px inset;
+ -moz-box-shadow: rgba(0, 0, 0, 0.05) -3px 2px 3px inset;
+ box-shadow: rgba(0, 0, 0, 0.05) -3px 2px 3px inset;
+}
+/* line 143, ../../app/assets/stylesheets/web.css.scss */
+.search-wrapper i.icons-search {
+ vertical-align: text-top;
+}
+/* line 144, ../../app/assets/stylesheets/web.css.scss */
+.search-wrapper button:hover i.icons-search {
+ background-position: 0 -1210px;
+ height: 15px;
+ width: 14px;
+}
+
+/* line 148, ../../app/assets/stylesheets/web.css.scss */
+.search-block .controls-wrapper ul.pull-left {
+ width: 89%;
+}
+/* line 149, ../../app/assets/stylesheets/web.css.scss */
+.search-block .controls-wrapper ul.pull-left li {
+ width: 100%;
+}
+/* line 150, ../../app/assets/stylesheets/web.css.scss */
+.search-block .controls-wrapper ul.pull-left .search-wrapper {
+ width: 100%;
+}
+/* line 151, ../../app/assets/stylesheets/web.css.scss */
+.search-block .controls-wrapper ul.pull-left .search-wrapper input {
+ width: 94%;
+}
+/* line 154, ../../app/assets/stylesheets/web.css.scss */
+.search-block .controls-wrapper ul.pull-right {
+ width: 11%;
+}
+/* line 156, ../../app/assets/stylesheets/web.css.scss */
+.search-block h4 {
+ line-height: 16px;
+ padding-left: 5px;
+}
+
+/* line 159, ../../app/assets/stylesheets/web.css.scss */
+.nav-header {
+ font-weight: bold;
+ text-transform: uppercase;
+ color: #4b5566;
+ margin-left: 5px;
+ font-size: 16px;
+ line-height: 30px;
+ text-shadow: 0px 2px 0px white;
+}
+
+/* line 160, ../../app/assets/stylesheets/web.css.scss */
+.left-nav {
+ min-width: 230px;
+ width: 230px;
+ background-color: #f1f3f5;
+ float: right;
+}
+/* line 161, ../../app/assets/stylesheets/web.css.scss */
+.left-nav > ul {
+ padding: 0;
+}
+/* line 164, ../../app/assets/stylesheets/web.css.scss */
+.left-nav > ul > li.active a {
+ background-color: #e5e9eb;
+ border-bottom: none;
+ color: #284862 !important;
+ font-weight: bold;
+}
+/* line 165, ../../app/assets/stylesheets/web.css.scss */
+.left-nav > ul > li.active a:hover {
+ text-decoration: none;
+}
+/* line 168, ../../app/assets/stylesheets/web.css.scss */
+.left-nav > ul > li > a {
+ text-shadow: 0px 1px 0px white;
+ border-bottom: 1px solid #d0d2d3;
+ border-top: 1px solid white;
+ padding: 8px 10px 8px 20px;
+ display: block;
+}
+/* line 169, ../../app/assets/stylesheets/web.css.scss */
+.left-nav > ul > li > a:focus {
+ outline: 0;
+}
+/* line 170, ../../app/assets/stylesheets/web.css.scss */
+.left-nav > ul > li > a:hover {
+ text-decoration: none;
+ background-color: #e5e9eb;
+}
+/* line 171, ../../app/assets/stylesheets/web.css.scss */
+.left-nav > ul > li > a.active {
+ background-color: #e5e9eb;
+ border-bottom: none;
+ color: #284862 !important;
+ font-weight: bold;
+}
+/* line 172, ../../app/assets/stylesheets/web.css.scss */
+.left-nav > ul > li > a.active:hover {
+ text-decoration: none;
+}
+/* line 175, ../../app/assets/stylesheets/web.css.scss */
+.left-nav > ul > li:first-child > a {
+ border-top: none;
+}
+/* line 176, ../../app/assets/stylesheets/web.css.scss */
+.left-nav > ul > li:last-child > a {
+ border-bottom: none;
+}
+
+/* line 181, ../../app/assets/stylesheets/web.css.scss */
+.dropdown-menu {
+ overflow: visible;
+ padding-top: 0;
+ padding-bottom: 0;
+ margin-top: 0;
+}
+/* line 183, ../../app/assets/stylesheets/web.css.scss */
+.dropdown-menu > li.divider {
+ margin: 0;
+}
+/* line 184, ../../app/assets/stylesheets/web.css.scss */
+.dropdown-menu > li i {
+ vertical-align: middle;
+}
+/* line 185, ../../app/assets/stylesheets/web.css.scss */
+.dropdown-menu > li i.icons-logout-arrow {
+ margin-right: 2px;
+}
+/* line 186, ../../app/assets/stylesheets/web.css.scss */
+.dropdown-menu > li > a, .dropdown-menu > li > .btn {
+ color: #4d80b4;
+ font-size: 13px;
+ font-weight: 500;
+ line-height: 16px;
+ min-width: 130px;
+ padding: 3px 10px;
+}
+/* line 188, ../../app/assets/stylesheets/web.css.scss */
+.dropdown-menu > li > a:hover, .dropdown-menu > li.active > a, .dropdown-menu > li.active > a:hover {
+ background-color: #4d80b4;
+ color: white;
+ outline: 0 !important;
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.35);
+}
+/* line 189, ../../app/assets/stylesheets/web.css.scss */
+.dropdown-menu > li:first-child {
+ -webkit-border-radius: 5px 5px 0 0;
+ -moz-border-radius: 5px 5px 0 0;
+ -ms-border-radius: 5px 5px 0 0;
+ -o-border-radius: 5px 5px 0 0;
+ border-radius: 5px 5px 0 0;
+}
+/* line 191, ../../app/assets/stylesheets/web.css.scss */
+.dropdown-menu > li:first-child > a:hover, .dropdown-menu > li:first-child.active > a, .dropdown-menu > li:first-child.active > a:hover {
+ -webkit-border-radius: 5px 5px 0 0;
+ -moz-border-radius: 5px 5px 0 0;
+ -ms-border-radius: 5px 5px 0 0;
+ -o-border-radius: 5px 5px 0 0;
+ border-radius: 5px 5px 0 0;
+}
+/* line 193, ../../app/assets/stylesheets/web.css.scss */
+.dropdown-menu > li:last-child {
+ -webkit-border-radius: 0 0 5px 5px;
+ -moz-border-radius: 0 0 5px 5px;
+ -ms-border-radius: 0 0 5px 5px;
+ -o-border-radius: 0 0 5px 5px;
+ border-radius: 0 0 5px 5px;
+}
+/* line 195, ../../app/assets/stylesheets/web.css.scss */
+.dropdown-menu > li:last-child > a:hover, .dropdown-menu > li:last-child.active > a, .dropdown-menu > li:last-child.active > a:hover {
+ -webkit-border-radius: 0 0 5px 5px;
+ -moz-border-radius: 0 0 5px 5px;
+ -ms-border-radius: 0 0 5px 5px;
+ -o-border-radius: 0 0 5px 5px;
+ border-radius: 0 0 5px 5px;
+}
+/* line 197, ../../app/assets/stylesheets/web.css.scss */
+.dropdown-menu > li.nav-header {
+ background-color: #f4f4f4;
+ margin-top: 0;
+ margin-bottom: 0;
+ margin-left: 0;
+ padding-left: 5px;
+}
+/* line 199, ../../app/assets/stylesheets/web.css.scss */
+.dropdown-menu.dropup-menu {
+ bottom: 100%;
+ top: auto !important;
+}
+
+/* line 202, ../../app/assets/stylesheets/web.css.scss */
+.btn-group .dropdown-menu {
+ top: 100% !important;
+}
+
+/* line 204, ../../app/assets/stylesheets/web.css.scss */
+.navbar .dropup-menu:before {
+ border-bottom: none;
+ border-left: 7px solid transparent;
+ border-right: 7px solid transparent;
+ border-top: 7px solid rgba(0, 0, 0, 0.2);
+ left: 7px;
+ top: 100%;
+}
+
+/* line 205, ../../app/assets/stylesheets/web.css.scss */
+.navbar .dropup-menu:after {
+ border-bottom: none;
+ border-left: 6px solid transparent;
+ border-right: 6px solid transparent;
+ border-top: 6px solid white;
+ left: 10px;
+ top: 100%;
+ left: 6px;
+}
+
+/* line 206, ../../app/assets/stylesheets/web.css.scss */
+.date-range-dropdown {
+ z-index: 101 !important;
+ width: 260px;
+ padding: 0;
+ background-color: #F3F6F7;
+}
+/* line 207, ../../app/assets/stylesheets/web.css.scss */
+.date-range-dropdown form {
+ margin-bottom: 0;
+}
+/* line 208, ../../app/assets/stylesheets/web.css.scss */
+.date-range-dropdown:after {
+ border-bottom: 6px solid #f3f6f7;
+ border-left: 6px solid transparent;
+ border-right: 6px solid transparent;
+ content: "";
+ display: inline-block;
+ right: 10px;
+ position: absolute;
+ top: -6px;
+}
+/* line 209, ../../app/assets/stylesheets/web.css.scss */
+.date-range-dropdown:before {
+ border-bottom: 7px solid rgba(0, 0, 0, 0.2);
+ border-left: 7px solid transparent;
+ border-right: 7px solid transparent;
+ content: "";
+ display: inline-block;
+ right: 9px;
+ position: absolute;
+ top: -8px;
+}
+/* line 210, ../../app/assets/stylesheets/web.css.scss */
+.date-range-dropdown ul {
+ overflow: auto;
+ padding: 5px 10px 0;
+}
+/* line 211, ../../app/assets/stylesheets/web.css.scss */
+.date-range-dropdown ul .control-group.created-between-input {
+ float: left;
+}
+/* line 212, ../../app/assets/stylesheets/web.css.scss */
+.date-range-dropdown ul .control-group.created-between-input .control-label {
+ color: #888888;
+ font-size: 12px !important;
+ font-weight: 400 !important;
+ margin-bottom: 1px !important;
+ text-shadow: 0px 1px 0px white;
+}
+/* line 213, ../../app/assets/stylesheets/web.css.scss */
+.date-range-dropdown ul .control-group.created-between-input .controls {
+ float: left;
+ line-height: 21px;
+ width: 107px;
+}
+/* line 214, ../../app/assets/stylesheets/web.css.scss */
+.date-range-dropdown ul .control-group.created-between-input .controls .k-datepicker {
+ width: 105px !important;
+ font-size: 13px;
+}
+/* line 217, ../../app/assets/stylesheets/web.css.scss */
+.date-range-dropdown ul .control-group.created-between-input.created-between-input-end {
+ margin-top: 19px;
+ float: right;
+}
+/* line 220, ../../app/assets/stylesheets/web.css.scss */
+.date-range-dropdown .form-actions-wrap {
+ border-top: none !important;
+}
+/* line 221, ../../app/assets/stylesheets/web.css.scss */
+.date-range-dropdown .form-actions {
+ padding: 0 10px 5px !important;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+ border-top: none;
+}
+
+/* line 224, ../../app/assets/stylesheets/web.css.scss */
+.breadcrumb {
+ padding: 8px 15px;
+ margin: 0 0 18px;
+ list-style: none;
+ line-height: 15px !important;
+ overflow: visible;
+ text-overflow: clip;
+ white-space: normal;
+ word-wrap: break-word;
+ text-align: right;
+ background: none;
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
+ border: none;
+ -webkit-box-shadow: rgba(0, 0, 0, 0) 0 0 0 inset;
+ -moz-box-shadow: rgba(0, 0, 0, 0) 0 0 0 inset;
+ box-shadow: rgba(0, 0, 0, 0) 0 0 0 inset;
+ -webkit-box-shadow: rgba(0, 0, 0, 0) 0 0 0;
+ -moz-box-shadow: rgba(0, 0, 0, 0) 0 0 0;
+ box-shadow: rgba(0, 0, 0, 0) 0 0 0;
+ margin-bottom: 0;
+ padding-right: 0;
+}
+/* line 225, ../../app/assets/stylesheets/web.css.scss */
+.breadcrumb li {
+ display: inline-block;
+ text-shadow: 0px 1px 0px white;
+ overflow: visible;
+ text-overflow: clip;
+ white-space: normal;
+ word-wrap: break-word;
+ line-height: 15px !important;
+}
+/* line 226, ../../app/assets/stylesheets/web.css.scss */
+.breadcrumb li a, .breadcrumb li a:hover, .breadcrumb li a:visited {
+ color: #4d80b4;
+ overflow: visible;
+ text-overflow: clip;
+ white-space: normal;
+ word-wrap: break-word;
+}
+/* line 227, ../../app/assets/stylesheets/web.css.scss */
+.breadcrumb li.active a, .breadcrumb li:active a {
+ color: #4b5566;
+ outline: 0 !important;
+}
+/* line 228, ../../app/assets/stylesheets/web.css.scss */
+.breadcrumb li span {
+ line-height: 15px !important;
+ overflow: visible;
+ text-overflow: clip;
+ white-space: normal;
+ word-wrap: break-word;
+}
+/* line 229, ../../app/assets/stylesheets/web.css.scss */
+.breadcrumb li span.divider {
+ color: #4d80b4;
+ padding: 0 2px;
+ line-height: 15px !important;
+}
+
+/* line 235, ../../app/assets/stylesheets/web.css.scss */
+.controls-wrapper,
+#controls, .controlsBar {
+ overflow: hidden;
+ *zoom: 1;
+ margin-bottom: 10px;
+ overflow: auto;
+}
+/* line 236, ../../app/assets/stylesheets/web.css.scss */
+.controls-wrapper.pull-left,
+#controls.pull-left, .controlsBar.pull-left {
+ margin-left: 5px;
+ margin-bottom: 5px;
+}
+/* line 237, ../../app/assets/stylesheets/web.css.scss */
+.controls-wrapper.controls-dropdowns,
+#controls.controls-dropdowns, .controlsBar.controls-dropdowns {
+ float: left;
+ width: 100%;
+ overflow: visible;
+}
+/* line 238, ../../app/assets/stylesheets/web.css.scss */
+.controls-wrapper > div,
+#controls > div, .controlsBar > div {
+ overflow: auto;
+}
+/* line 240, ../../app/assets/stylesheets/web.css.scss */
+.controls-wrapper > ul > li,
+#controls > ul > li, .controlsBar > ul > li {
+ float: left;
+}
+/* line 241, ../../app/assets/stylesheets/web.css.scss */
+.controls-wrapper > ul > li > .btn > span:first-child,
+#controls > ul > li > .btn > span:first-child, .controlsBar > ul > li > .btn > span:first-child {
+ font-weight: 500;
+ font-size: 15px !important;
+ margin: 0 !important;
+ vertical-align: text-top;
+}
+/* line 242, ../../app/assets/stylesheets/web.css.scss */
+.controls-wrapper > ul > li > span,
+#controls > ul > li > span, .controlsBar > ul > li > span {
+ font-weight: 500;
+ margin: 0 5px;
+}
+/* line 244, ../../app/assets/stylesheets/web.css.scss */
+.controls-wrapper > ul.pull-left > li,
+#controls > ul.pull-left > li, .controlsBar > ul.pull-left > li {
+ margin-right: 5px;
+}
+/* line 245, ../../app/assets/stylesheets/web.css.scss */
+.controls-wrapper > ul.pull-right > li,
+#controls > ul.pull-right > li, .controlsBar > ul.pull-right > li {
+ margin-left: 5px;
+}
+
+/* line 249, ../../app/assets/stylesheets/web.css.scss */
+.footer-wrapper {
+ overflow: auto;
+ background-color: #e8e9ea;
+ border-top: 1px solid #cbcbcb;
+ width: 100%;
+}
+/* line 250, ../../app/assets/stylesheets/web.css.scss */
+.footer-wrapper #footer {
+ height: 20px;
+ color: #8f9399;
+ padding: 25px;
+ text-shadow: 0px 1px 0px white;
+ border-top: 1px solid white;
+}
+/* line 251, ../../app/assets/stylesheets/web.css.scss */
+.footer-wrapper #footer p {
+ clear: both;
+ text-align: center;
+ overflow: hidden;
+ *zoom: 1;
+ text-shadow: 0px 1px 0px white;
+}
+
+/* line 255, ../../app/assets/stylesheets/web.css.scss */
+#full-screen-edit {
+ margin-bottom: 0;
+}
+/* line 256, ../../app/assets/stylesheets/web.css.scss */
+#full-screen-edit .controls {
+ overflow: auto;
+}
+/* line 257, ../../app/assets/stylesheets/web.css.scss */
+#full-screen-edit .content-wrapper {
+ margin: 15px 0 20px 20px;
+ overflow: auto;
+}
+/* line 258, ../../app/assets/stylesheets/web.css.scss */
+#full-screen-edit legend {
+ margin-bottom: 0;
+ font-size: 16px;
+ font-weight: 500;
+ line-height: 24px;
+ padding-bottom: 2px solid #d6d7d9;
+}
+/* line 259, ../../app/assets/stylesheets/web.css.scss */
+#full-screen-edit ul {
+ background-color: #f8f9fa;
+ padding: 20px 30px 5px;
+ margin-top: 0;
+ margin-bottom: 20px;
+ -webkit-border-radius: 0 0 5px 5px;
+ -moz-border-radius: 0 0 5px 5px;
+ -ms-border-radius: 0 0 5px 5px;
+ -o-border-radius: 0 0 5px 5px;
+ border-radius: 0 0 5px 5px;
+}
+/* line 260, ../../app/assets/stylesheets/web.css.scss */
+#full-screen-edit ul li {
+ margin-bottom: 15px;
+}
+/* line 261, ../../app/assets/stylesheets/web.css.scss */
+#full-screen-edit ul .control-label {
+ line-height: 16px;
+ margin-bottom: 0;
+ text-shadow: 0px 1px 0px white;
+}
+/* line 262, ../../app/assets/stylesheets/web.css.scss */
+#full-screen-edit ul .icons-preview {
+ position: relative;
+ top: -1px;
+}
+/* line 263, ../../app/assets/stylesheets/web.css.scss */
+#full-screen-edit ul .checkbox-label {
+ cursor: pointer;
+}
+/* line 264, ../../app/assets/stylesheets/web.css.scss */
+#full-screen-edit ul .vertical-checks .controls {
+ margin-left: 0;
+}
+/* line 266, ../../app/assets/stylesheets/web.css.scss */
+#full-screen-edit ul.ListWell {
+ background-color: transparent;
+ padding: 0;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+}
+/* line 267, ../../app/assets/stylesheets/web.css.scss */
+#full-screen-edit ul.ListWell > li {
+ overflow: auto;
+ margin-bottom: 0;
+}
+/* line 268, ../../app/assets/stylesheets/web.css.scss */
+#full-screen-edit ul.ListWell > li > div {
+ padding: 0;
+ float: left;
+}
+/* line 269, ../../app/assets/stylesheets/web.css.scss */
+#full-screen-edit ul.ListWell > li > div > div {
+ padding: 4px 5px;
+}
+/* line 274, ../../app/assets/stylesheets/web.css.scss */
+#full-screen-edit .user-status .controls > label {
+ margin-top: 3px;
+}
+/* line 275, ../../app/assets/stylesheets/web.css.scss */
+#full-screen-edit .user-status .controls > input[type="radio"] {
+ top: 4px;
+}
+/* line 277, ../../app/assets/stylesheets/web.css.scss */
+#full-screen-edit .alert-info {
+ margin-bottom: 0;
+}
+/* line 278, ../../app/assets/stylesheets/web.css.scss */
+#full-screen-edit .form-actions {
+ -webkit-border-radius: 0;
+ -moz-border-radius: 0;
+ -ms-border-radius: 0;
+ -o-border-radius: 0;
+ border-radius: 0;
+ border-right: 1px solid #d6d6d6;
+}
+/* line 279, ../../app/assets/stylesheets/web.css.scss */
+#full-screen-edit input#password {
+ float: left;
+}
+/* line 280, ../../app/assets/stylesheets/web.css.scss */
+#full-screen-edit .auto-generate-password {
+ float: left;
+}
+/* line 281, ../../app/assets/stylesheets/web.css.scss */
+#full-screen-edit .auto-generate-password .controls {
+ margin-left: 5px;
+}
+/* line 282, ../../app/assets/stylesheets/web.css.scss */
+#full-screen-edit .auto-generate-password input, #full-screen-edit .auto-generate-password label {
+ float: left;
+ margin: 0;
+}
+/* line 283, ../../app/assets/stylesheets/web.css.scss */
+#full-screen-edit .auto-generate-password label {
+ color: #4d80b4;
+ font-size: 13px;
+ cursor: pointer;
+}
+/* line 284, ../../app/assets/stylesheets/web.css.scss */
+#full-screen-edit .auto-generate-password input {
+ vertical-align: top;
+ position: relative;
+ top: 3px;
+ margin-right: 3px;
+ margin-left: 3px;
+}
+/* line 285, ../../app/assets/stylesheets/web.css.scss */
+#full-screen-edit .auto-generate-password .error-wrap {
+ display: none;
+}
+/* line 287, ../../app/assets/stylesheets/web.css.scss */
+#full-screen-edit .ImgPreviewPopover {
+ margin-left: 0;
+}
+/* line 289, ../../app/assets/stylesheets/web.css.scss */
+#full-screen-edit .send-email-link .icons-preview {
+ vertical-align: middle;
+}
+/* line 290, ../../app/assets/stylesheets/web.css.scss */
+#full-screen-edit .send-email-link.disabled i.icons-preview {
+ background-position: 0 -2024px;
+ height: 11px;
+ width: 10px;
+}
+/* line 291, ../../app/assets/stylesheets/web.css.scss */
+#full-screen-edit .send-email-link > label {
+ padding-top: 2px;
+}
+/* line 292, ../../app/assets/stylesheets/web.css.scss */
+#full-screen-edit .send-email-link .controls > label {
+ margin-right: 2px !important;
+}
+/* line 294, ../../app/assets/stylesheets/web.css.scss */
+#full-screen-edit .role-definition {
+ color: #888;
+}
+
+/* line 297, ../../app/assets/stylesheets/web.css.scss */
+.alert {
+ text-shadow: 0px 1px 0px white;
+ margin-bottom: 8px;
+}
+/* line 298, ../../app/assets/stylesheets/web.css.scss */
+.alert i {
+ margin-right: 3px;
+}
+/* line 299, ../../app/assets/stylesheets/web.css.scss */
+.alert .alert-info ~ form {
+ margin-top: 35px;
+}
+/* line 300, ../../app/assets/stylesheets/web.css.scss */
+.alert p:last-child {
+ margin-bottom: 0;
+}
+
+/* line 302, ../../app/assets/stylesheets/web.css.scss */
+.alert-fullscreen {
+ padding: 14px 25px 14px 25px;
+ margin-bottom: 0;
+}
+
+/* line 303, ../../app/assets/stylesheets/web.css.scss */
+.alert-wrapper .alert {
+ margin-bottom: 0;
+}
+
+/* line 304, ../../app/assets/stylesheets/web.css.scss */
+.close {
+ outline: 0 !important;
+}
+
+/* line 305, ../../app/assets/stylesheets/web.css.scss */
+.alert-margins {
+ margin: 10px 20px !important;
+}
+
+/* line 307, ../../app/assets/stylesheets/web.css.scss */
+.progress {
+ height: 12px;
+ line-height: 12px;
+ margin: 0;
+ margin-top: 2px;
+ border: 1px solid #dddddd;
+ -webkit-border-radius: 3px;
+ -moz-border-radius: 3px;
+ -ms-border-radius: 3px;
+ -o-border-radius: 3px;
+ border-radius: 3px;
+ padding: 0 !important;
+ overflow: hidden;
+}
+/* line 308, ../../app/assets/stylesheets/web.css.scss */
+.progress.progress-success .bar {
+ background-color: #459143;
+ background-image: -moz-linear-gradient(top, #459143, #459143);
+ background-image: -ms-linear-gradient(top, #459143, #459143);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#459143), to(#459143));
+ background-image: -webkit-linear-gradient(top, #459143, #459143);
+ background-image: -o-linear-gradient(top, #459143, #459143);
+ background-image: linear-gradient(top, #459143, #459143);
+ background-repeat: repeat-x;
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#459143', endColorstr='#459143', GradientType=0);
+}
+/* line 309, ../../app/assets/stylesheets/web.css.scss */
+.progress.progress-success.progress-striped .bar {
+ background-color: #459143;
+ 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: 20px 20px;
+ -moz-background-size: 20px 20px;
+ -o-background-size: 20px 20px;
+ background-size: 20px 20px;
+}
+
+/* line 312, ../../app/assets/stylesheets/web.css.scss */
+.label {
+ padding: 0 3px 0.5px 3.5px;
+ border-radius: 5px;
+ background-color: #888;
+}
+
+/* line 313, ../../app/assets/stylesheets/web.css.scss */
+.label-important, .label-danger {
+ background-color: #ae5151;
+}
+
+/* line 315, ../../app/assets/stylesheets/web.css.scss */
+.label-important:hover,
+.label-danger:hover {
+ background-color: #ae5151;
+}
+
+/* line 316, ../../app/assets/stylesheets/web.css.scss */
+.label-warning {
+ background-color: #c76024;
+}
+
+/* line 317, ../../app/assets/stylesheets/web.css.scss */
+.label-warning:hover {
+ background-color: #c76024;
+}
+
+/* line 318, ../../app/assets/stylesheets/web.css.scss */
+.label-success {
+ background-color: #449042;
+}
+
+/* line 319, ../../app/assets/stylesheets/web.css.scss */
+.label-success:hover {
+ background-color: #449042;
+}
+
+/* line 320, ../../app/assets/stylesheets/web.css.scss */
+.label-info {
+ background-color: #5986b5;
+}
+
+/* line 321, ../../app/assets/stylesheets/web.css.scss */
+.label-info:hover {
+ background-color: #5986b5;
+}
+
+/* line 322, ../../app/assets/stylesheets/web.css.scss */
+.label-date {
+ background-color: #7195b8 !important;
+ color: white;
+ font-weight: 500;
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.35);
+}
+
+/* line 323, ../../app/assets/stylesheets/web.css.scss */
+.label-date:hover {
+ background-color: #7195b8 !important;
+ color: white !important;
+}
+
+/* line 324, ../../app/assets/stylesheets/web.css.scss */
+.inactive-label, .active-label {
+ font-weight: 500;
+ color: white;
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.35);
+ font-style: italic;
+ padding: 1px 6px;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+ line-height: 12px;
+ font-size: 11px;
+}
+
+/* line 325, ../../app/assets/stylesheets/web.css.scss */
+.inactive-label {
+ background-color: #c96e6e;
+}
+
+/* line 326, ../../app/assets/stylesheets/web.css.scss */
+.active-label {
+ background-color: #6ea469;
+}
+
+/* line 328, ../../app/assets/stylesheets/web.css.scss */
+.popover {
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
+ opacity: 1;
+ z-index: 4000;
+}
+/* line 329, ../../app/assets/stylesheets/web.css.scss */
+.popover .popover-inner {
+ background: #4d80b4;
+ background: url(/assets/rgbapng/4d80b4cc.png);
+ background: rgba(77, 128, 180, 0.8);
+ width: 250px;
+ overflow: hidden;
+}
+/* line 330, ../../app/assets/stylesheets/web.css.scss */
+.popover .popover-content {
+ background: #fefefe;
+ font-size: 14px;
+ line-height: 21px;
+ color: #4b5566;
+ padding: 0;
+}
+/* line 331, ../../app/assets/stylesheets/web.css.scss */
+.popover .popover-content p {
+ padding: 8px 12px;
+}
+/* line 332, ../../app/assets/stylesheets/web.css.scss */
+.popover .popover-content p:empty {
+ display: none;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+}
+/* line 335, ../../app/assets/stylesheets/web.css.scss */
+.popover .popover-title {
+ font-size: 15px;
+ padding: 7px 15px;
+ font-weight: 500;
+}
+/* line 336, ../../app/assets/stylesheets/web.css.scss */
+.popover .popover-title:empty {
+ display: none;
+}
+/* line 337, ../../app/assets/stylesheets/web.css.scss */
+.popover .popover-title:empty + .popover-inner {
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+}
+/* line 338, ../../app/assets/stylesheets/web.css.scss */
+.popover .popover-title:empty + .popover-content {
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+}
+/* line 341, ../../app/assets/stylesheets/web.css.scss */
+.popover.top .arrow {
+ border-top: 5px solid #4d80b4;
+}
+/* line 342, ../../app/assets/stylesheets/web.css.scss */
+.popover.right .arrow {
+ border-right: 5px solid #4d80b4;
+}
+/* line 343, ../../app/assets/stylesheets/web.css.scss */
+.popover.bottom .arrow {
+ border-bottom: 5px solid #4d80b4;
+}
+/* line 344, ../../app/assets/stylesheets/web.css.scss */
+.popover.left .arrow {
+ border-left: 5px solid #4d80b4;
+}
+/* line 346, ../../app/assets/stylesheets/web.css.scss */
+.popover.top .popover-inner {
+ color: #4b5566;
+ border: 1px solid #d7dadf;
+ text-align: center;
+ overflow: hidden;
+ text-decoration: none;
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=95);
+ opacity: 0.95;
+ background-color: white;
+}
+/* line 347, ../../app/assets/stylesheets/web.css.scss */
+.popover.top .popover-content {
+ font-size: 11px;
+ line-height: 21px;
+ background-color: white;
+}
+/* line 348, ../../app/assets/stylesheets/web.css.scss */
+.popover.top .popover-content p {
+ padding: 4px 8px;
+ color: #4b5566;
+}
+/* line 350, ../../app/assets/stylesheets/web.css.scss */
+.popover.top .popover-title {
+ font-size: 12px;
+ padding: 3px 10px;
+ background-color: white;
+ color: #4b5566;
+ border-bottom: 0;
+}
+/* line 351, ../../app/assets/stylesheets/web.css.scss */
+.popover.top.top .arrow {
+ border-top: 5px solid #4d80b4;
+}
+/* line 352, ../../app/assets/stylesheets/web.css.scss */
+.popover.top.right .arrow {
+ border-right: 5px solid #4d80b4;
+}
+/* line 353, ../../app/assets/stylesheets/web.css.scss */
+.popover.top.bottom .arrow {
+ border-bottom: 5px solid #4d80b4;
+}
+/* line 354, ../../app/assets/stylesheets/web.css.scss */
+.popover.top.left .arrow {
+ border-left: 5px solid #4d80b4;
+}
+/* line 355, ../../app/assets/stylesheets/web.css.scss */
+.popover.top .arrow {
+ position: absolute;
+ width: 0;
+ height: 0;
+}
+/* line 358, ../../app/assets/stylesheets/web.css.scss */
+.popover.bottom .popover-inner {
+ width: 100px;
+ border: 1px solid #c76024;
+ text-align: center;
+ overflow: hidden;
+ text-decoration: none;
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=85);
+ opacity: 0.85;
+ background-color: #c76024;
+}
+/* line 359, ../../app/assets/stylesheets/web.css.scss */
+.popover.bottom .popover-content {
+ font-size: 11px;
+ line-height: 21px;
+ background-color: #c76024;
+}
+/* line 360, ../../app/assets/stylesheets/web.css.scss */
+.popover.bottom .popover-content p {
+ padding: 2px 4px;
+ color: #fff;
+ font-weight: bold;
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.35);
+ line-height: 16px;
+}
+/* line 362, ../../app/assets/stylesheets/web.css.scss */
+.popover.bottom .popover-title {
+ font-size: 12px;
+ padding: 3px 10px;
+ background-color: white;
+ color: #4b5566;
+ border-bottom: 0;
+}
+/* line 363, ../../app/assets/stylesheets/web.css.scss */
+.popover.bottom.top .arrow {
+ border-top: 5px solid #c76024;
+}
+/* line 364, ../../app/assets/stylesheets/web.css.scss */
+.popover.bottom.right .arrow {
+ border-right: 5px solid #c76024;
+}
+/* line 365, ../../app/assets/stylesheets/web.css.scss */
+.popover.bottom.bottom .arrow {
+ border-bottom: 5px solid #c76024;
+}
+/* line 366, ../../app/assets/stylesheets/web.css.scss */
+.popover.bottom.left .arrow {
+ border-left: 5px solid #c76024;
+}
+/* line 367, ../../app/assets/stylesheets/web.css.scss */
+.popover.bottom .arrow {
+ position: absolute;
+ width: 0;
+ height: 0;
+}
+
+/* line 370, ../../app/assets/stylesheets/web.css.scss */
+.popover-click {
+ cursor: help;
+}
+
+/* line 371, ../../app/assets/stylesheets/web.css.scss */
+span.popover-hover {
+ cursor: pointer;
+}
+
+/* line 372, ../../app/assets/stylesheets/web.css.scss */
+.tooltip {
+ line-height: 16px;
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.35);
+ font-size: 12px;
+}
+
+/* line 374, ../../app/assets/stylesheets/web.css.scss */
+.btn-mini {
+ font-size: 13px !important;
+ padding: 4px 6px;
+ font-weight: 500;
+}
+/* line 375, ../../app/assets/stylesheets/web.css.scss */
+.btn-mini .caret {
+ margin-top: 0;
+}
+
+/* line 377, ../../app/assets/stylesheets/web.css.scss */
+.btn-small {
+ font-size: 12px;
+ line-height: 13px;
+}
+
+/* line 378, ../../app/assets/stylesheets/web.css.scss */
+.btn-group .btn-mini {
+ text-shadow: 0px 1px 0px white;
+ font-weight: 500;
+}
+
+/* line 380, ../../app/assets/stylesheets/web.css.scss */
+button {
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+}
+
+/* line 381, ../../app/assets/stylesheets/web.css.scss */
+.btn {
+ background-color: #eaeaea;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+ background-color: #f3f3f3;
+ background-image: -moz-linear-gradient(top, #f9f9f9, #eaeaea);
+ background-image: -ms-linear-gradient(top, #f9f9f9, #eaeaea);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f9f9f9), to(#eaeaea));
+ background-image: -webkit-linear-gradient(top, #f9f9f9, #eaeaea);
+ background-image: -o-linear-gradient(top, #f9f9f9, #eaeaea);
+ background-image: linear-gradient(top, #f9f9f9, #eaeaea);
+ background-repeat: repeat-x;
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9f9f9', endColorstr='#eaeaea', GradientType=0);
+ background-color: whitesmoke;
+ background-image: -moz-linear-gradient(top, #f9f9f9, #f4f4f4 25%, #efefef 50%, #eaeaea 75%);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f9f9f9), color-stop(25%, #f4f4f4), color-stop(50%, #efefef), to(75%, #eaeaea));
+ background-image: -webkit-linear-gradient(top, #f9f9f9, #f4f4f4 25%, #efefef 50%, #eaeaea 75%);
+ background-image: -o-linear-gradient(top, #f9f9f9, #f4f4f4 25%, #efefef 50%, #eaeaea 75%);
+ background-image: linear-gradient(to bottom, #f9f9f9, #f4f4f4 25%, #efefef 50%, #eaeaea 75%);
+ background-repeat: no-repeat;
+ border-color: #f4f4f4;
+ border-color: #f4f4f4 #f4f4f4 #cecece;
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) fadein(rgba(0, 0, 0, 0.1), 15%);
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9f9f9', endColorstr='#eaeaea', GradientType=0);
+ color: #4b5566;
+ border: 1px solid #cfcfcf;
+ border-bottom-color: #bcbcbc;
+ outline: 0 !important;
+ cursor: pointer;
+}
+/* line 382, ../../app/assets/stylesheets/web.css.scss */
+.btn.dropdown-toggle {
+ background-color: #eaeaea;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+ background-color: #f3f3f3;
+ background-image: -moz-linear-gradient(top, #f9f9f9, #eaeaea);
+ background-image: -ms-linear-gradient(top, #f9f9f9, #eaeaea);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f9f9f9), to(#eaeaea));
+ background-image: -webkit-linear-gradient(top, #f9f9f9, #eaeaea);
+ background-image: -o-linear-gradient(top, #f9f9f9, #eaeaea);
+ background-image: linear-gradient(top, #f9f9f9, #eaeaea);
+ background-repeat: repeat-x;
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9f9f9', endColorstr='#eaeaea', GradientType=0);
+ background-color: whitesmoke;
+ background-image: -moz-linear-gradient(top, #f9f9f9, #f4f4f4 25%, #efefef 50%, #eaeaea 75%);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f9f9f9), color-stop(25%, #f4f4f4), color-stop(50%, #efefef), to(75%, #eaeaea));
+ background-image: -webkit-linear-gradient(top, #f9f9f9, #f4f4f4 25%, #efefef 50%, #eaeaea 75%);
+ background-image: -o-linear-gradient(top, #f9f9f9, #f4f4f4 25%, #efefef 50%, #eaeaea 75%);
+ background-image: linear-gradient(to bottom, #f9f9f9, #f4f4f4 25%, #efefef 50%, #eaeaea 75%);
+ background-repeat: no-repeat;
+ border-color: #f4f4f4;
+ border-color: #f4f4f4 #f4f4f4 #cecece;
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) fadein(rgba(0, 0, 0, 0.1), 15%);
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9f9f9', endColorstr='#eaeaea', GradientType=0);
+ color: #4b5566;
+ border: 1px solid #cfcfcf;
+ border-bottom-color: #bcbcbc;
+}
+/* line 384, ../../app/assets/stylesheets/web.css.scss */
+.btn.dropdown-toggle:hover, .btn.dropdown-toggle:active, .btn.dropdown-toggle.active, .btn.dropdown-toggle:focus {
+ background-color: #e3e3e3;
+ color: #4b5566 !important;
+ border: 1px solid #cfcfcf;
+ border-bottom-color: #bcbcbc;
+ -webkit-transition: background-position 0.05s linear;
+ -moz-transition: background-position 0.05s linear;
+ -ms-transition: background-position 0.05s linear;
+ -o-transition: background-position 0.05s linear;
+ transition: background-position 0.05s linear;
+ outline: 0 !important;
+}
+/* line 385, ../../app/assets/stylesheets/web.css.scss */
+.btn.dropdown-toggle:hover .caret, .btn.dropdown-toggle:active .caret, .btn.dropdown-toggle.active .caret, .btn.dropdown-toggle:focus .caret {
+ opacity: 0.3 !important;
+}
+/* line 387, ../../app/assets/stylesheets/web.css.scss */
+.btn.dropdown-toggle.disabled:hover, .btn.dropdown-toggle[disabled]:hover {
+ color: #888888 !important;
+}
+/* line 388, ../../app/assets/stylesheets/web.css.scss */
+.btn.dropdown-toggle:visited {
+ color: #4b5566;
+}
+/* line 391, ../../app/assets/stylesheets/web.css.scss */
+.btn:hover, .btn:active, .btn.active, .btn:focus {
+ cursor: pointer;
+ background-position: 0 -30px;
+ background-color: #e3e3e3;
+ color: #4b5566 !important;
+ -webkit-transition: background-position 0.05s linear;
+ -moz-transition: background-position 0.05s linear;
+ -ms-transition: background-position 0.05s linear;
+ -o-transition: background-position 0.05s linear;
+ transition: background-position 0.05s linear;
+ outline: 0 !important;
+}
+/* line 392, ../../app/assets/stylesheets/web.css.scss */
+.btn.active, .btn:active {
+ cursor: default;
+}
+/* line 394, ../../app/assets/stylesheets/web.css.scss */
+.btn.disabled, .btn[disabled], .btn.disabled:hover {
+ background-color: whitesmoke !important;
+ border: 1px solid #bcbcbc;
+ cursor: default;
+ background-image: none;
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=65);
+ opacity: 0.65;
+ -webkit-box-shadow: none;
+ -moz-box-shadow: none;
+ box-shadow: none;
+ text-shadow: 0 0 0 rgba(0, 0, 0, 0);
+ color: #888888 !important;
+ cursor: default;
+}
+/* line 395, ../../app/assets/stylesheets/web.css.scss */
+.btn:visited {
+ color: #4b5566;
+ cursor: pointer;
+}
+
+/* line 397, ../../app/assets/stylesheets/web.css.scss */
+.btn-primary {
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.35);
+ background-color: #449142;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+ background-color: #4b9d4b;
+ background-image: -moz-linear-gradient(top, #51a652, #449142);
+ background-image: -ms-linear-gradient(top, #51a652, #449142);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#51a652), to(#449142));
+ background-image: -webkit-linear-gradient(top, #51a652, #449142);
+ background-image: -o-linear-gradient(top, #51a652, #449142);
+ background-image: linear-gradient(top, #51a652, #449142);
+ background-repeat: repeat-x;
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#51a652', endColorstr='#449142', GradientType=0);
+ background-color: #4da04e;
+ background-image: -moz-linear-gradient(top, #51a652, #4fa24d 25%, #469446 50%, #449142 75%);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#51a652), color-stop(25%, #4fa24d), color-stop(50%, #469446), to(75%, #449142));
+ background-image: -webkit-linear-gradient(top, #51a652, #4fa24d 25%, #469446 50%, #449142 75%);
+ background-image: -o-linear-gradient(top, #51a652, #4fa24d 25%, #469446 50%, #449142 75%);
+ background-image: linear-gradient(to bottom, #51a652, #4fa24d 25%, #469446 50%, #449142 75%);
+ background-repeat: no-repeat;
+ border-color: #4fa24d;
+ border-color: #4fa24d #4fa24d #366e34;
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) fadein(rgba(0, 0, 0, 0.1), 15%);
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#51a652', endColorstr='#449142', GradientType=0);
+ color: white;
+}
+/* line 398, ../../app/assets/stylesheets/web.css.scss */
+.btn-primary.dropdown-toggle {
+ background-color: #449142;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+ background-color: #4b9d4b;
+ background-image: -moz-linear-gradient(top, #51a652, #449142);
+ background-image: -ms-linear-gradient(top, #51a652, #449142);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#51a652), to(#449142));
+ background-image: -webkit-linear-gradient(top, #51a652, #449142);
+ background-image: -o-linear-gradient(top, #51a652, #449142);
+ background-image: linear-gradient(top, #51a652, #449142);
+ background-repeat: repeat-x;
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#51a652', endColorstr='#449142', GradientType=0);
+ background-color: #4da04e;
+ background-image: -moz-linear-gradient(top, #51a652, #4fa24d 25%, #469446 50%, #449142 75%);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#51a652), color-stop(25%, #4fa24d), color-stop(50%, #469446), to(75%, #449142));
+ background-image: -webkit-linear-gradient(top, #51a652, #4fa24d 25%, #469446 50%, #449142 75%);
+ background-image: -o-linear-gradient(top, #51a652, #4fa24d 25%, #469446 50%, #449142 75%);
+ background-image: linear-gradient(to bottom, #51a652, #4fa24d 25%, #469446 50%, #449142 75%);
+ background-repeat: no-repeat;
+ border-color: #4fa24d;
+ border-color: #4fa24d #4fa24d #366e34;
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) fadein(rgba(0, 0, 0, 0.1), 15%);
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#51a652', endColorstr='#449142', GradientType=0);
+ color: white;
+}
+/* line 399, ../../app/assets/stylesheets/web.css.scss */
+.btn-primary.dropdown-toggle:hover, .btn-primary.dropdown-toggle:active, .btn-primary.dropdown-toggle.active, .btn-primary.dropdown-toggle:focus {
+ background-color: #3b8539 !important;
+ color: white !important;
+ outline: 0 !important;
+}
+/* line 401, ../../app/assets/stylesheets/web.css.scss */
+.btn-primary:hover, .btn-primary:active, .btn-primary.active, .btn-primary:focus {
+ background-color: #3b8539 !important;
+ color: white !important;
+ outline: 0 !important;
+}
+/* line 402, ../../app/assets/stylesheets/web.css.scss */
+.btn-primary:visited {
+ color: white !important;
+}
+
+/* line 404, ../../app/assets/stylesheets/web.css.scss */
+.btn-danger {
+ color: white;
+ background-color: #b34c4c;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+ background-color: #bf5a5a;
+ background-image: -moz-linear-gradient(top, #c76464, #b34c4c);
+ background-image: -ms-linear-gradient(top, #c76464, #b34c4c);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#c76464), to(#b34c4c));
+ background-image: -webkit-linear-gradient(top, #c76464, #b34c4c);
+ background-image: -o-linear-gradient(top, #c76464, #b34c4c);
+ background-image: linear-gradient(top, #c76464, #b34c4c);
+ background-repeat: repeat-x;
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#c76464', endColorstr='#b34c4c', GradientType=0);
+ background-color: #c25e5e;
+ background-image: -moz-linear-gradient(top, #c76464, #c55f5f 25%, #b45050 50%, #b34c4c 75%);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#c76464), color-stop(25%, #c55f5f), color-stop(50%, #b45050), to(75%, #b34c4c));
+ background-image: -webkit-linear-gradient(top, #c76464, #c55f5f 25%, #b45050 50%, #b34c4c 75%);
+ background-image: -o-linear-gradient(top, #c76464, #c55f5f 25%, #b45050 50%, #b34c4c 75%);
+ background-image: linear-gradient(to bottom, #c76464, #c55f5f 25%, #b45050 50%, #b34c4c 75%);
+ background-repeat: no-repeat;
+ border-color: #c55f5f;
+ border-color: #c55f5f #c55f5f #9e3939;
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) fadein(rgba(0, 0, 0, 0.1), 15%);
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#c76464', endColorstr='#b34c4c', GradientType=0);
+}
+/* line 405, ../../app/assets/stylesheets/web.css.scss */
+.btn-danger.dropdown-toggle {
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.35);
+ color: white;
+ background-color: #b34c4c;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+ background-color: #bf5a5a;
+ background-image: -moz-linear-gradient(top, #c76464, #b34c4c);
+ background-image: -ms-linear-gradient(top, #c76464, #b34c4c);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#c76464), to(#b34c4c));
+ background-image: -webkit-linear-gradient(top, #c76464, #b34c4c);
+ background-image: -o-linear-gradient(top, #c76464, #b34c4c);
+ background-image: linear-gradient(top, #c76464, #b34c4c);
+ background-repeat: repeat-x;
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#c76464', endColorstr='#b34c4c', GradientType=0);
+ background-color: #c25e5e;
+ background-image: -moz-linear-gradient(top, #c76464, #c55f5f 25%, #b45050 50%, #b34c4c 75%);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#c76464), color-stop(25%, #c55f5f), color-stop(50%, #b45050), to(75%, #b34c4c));
+ background-image: -webkit-linear-gradient(top, #c76464, #c55f5f 25%, #b45050 50%, #b34c4c 75%);
+ background-image: -o-linear-gradient(top, #c76464, #c55f5f 25%, #b45050 50%, #b34c4c 75%);
+ background-image: linear-gradient(to bottom, #c76464, #c55f5f 25%, #b45050 50%, #b34c4c 75%);
+ background-repeat: no-repeat;
+ border-color: #c55f5f;
+ border-color: #c55f5f #c55f5f #9e3939;
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) fadein(rgba(0, 0, 0, 0.1), 15%);
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#c76464', endColorstr='#b34c4c', GradientType=0);
+}
+/* line 406, ../../app/assets/stylesheets/web.css.scss */
+.btn-danger.dropdown-toggle:hover, .btn-danger.dropdown-toggle:active, .btn-danger.dropdown-toggle.active, .btn-danger.dropdown-toggle:focus {
+ background-color: #9d3939 !important;
+ color: white !important;
+ outline: 0 !important;
+}
+/* line 408, ../../app/assets/stylesheets/web.css.scss */
+.btn-danger:hover, .btn-danger:active, .btn-danger.active, .btn-danger:focus {
+ background-color: #9d3939 !important;
+ color: white !important;
+ outline: 0 !important;
+}
+/* line 409, ../../app/assets/stylesheets/web.css.scss */
+.btn-danger:visited {
+ color: white !important;
+}
+
+/* line 411, ../../app/assets/stylesheets/web.css.scss */
+.btn-info {
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+ background-color: #558bbb;
+ background-image: -moz-linear-gradient(top, #5b95c3, #4d7eaf);
+ background-image: -ms-linear-gradient(top, #5b95c3, #4d7eaf);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5b95c3), to(#4d7eaf));
+ background-image: -webkit-linear-gradient(top, #5b95c3, #4d7eaf);
+ background-image: -o-linear-gradient(top, #5b95c3, #4d7eaf);
+ background-image: linear-gradient(top, #5b95c3, #4d7eaf);
+ background-repeat: repeat-x;
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5b95c3', endColorstr='#4d7eaf', GradientType=0);
+ background-color: #578fbe;
+ background-image: -moz-linear-gradient(top, #5b95c3, #5991be 25%, #4f81b4 50%, #4d7eaf 75%);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5b95c3), color-stop(25%, #5991be), color-stop(50%, #4f81b4), to(75%, #4d7eaf));
+ background-image: -webkit-linear-gradient(top, #5b95c3, #5991be 25%, #4f81b4 50%, #4d7eaf 75%);
+ background-image: -o-linear-gradient(top, #5b95c3, #5991be 25%, #4f81b4 50%, #4d7eaf 75%);
+ background-image: linear-gradient(to bottom, #5b95c3, #5991be 25%, #4f81b4 50%, #4d7eaf 75%);
+ background-repeat: no-repeat;
+ border-color: #5991be;
+ border-color: #5991be #5991be #396a92;
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) fadein(rgba(0, 0, 0, 0.1), 15%);
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5b95c3', endColorstr='#4d7eaf', GradientType=0);
+ color: white;
+ font-weight: 500;
+}
+/* line 412, ../../app/assets/stylesheets/web.css.scss */
+.btn-info.dropdown-toggle {
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+ background-color: #558bbb;
+ background-image: -moz-linear-gradient(top, #5b95c3, #4d7eaf);
+ background-image: -ms-linear-gradient(top, #5b95c3, #4d7eaf);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5b95c3), to(#4d7eaf));
+ background-image: -webkit-linear-gradient(top, #5b95c3, #4d7eaf);
+ background-image: -o-linear-gradient(top, #5b95c3, #4d7eaf);
+ background-image: linear-gradient(top, #5b95c3, #4d7eaf);
+ background-repeat: repeat-x;
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5b95c3', endColorstr='#4d7eaf', GradientType=0);
+ background-color: #578fbe;
+ background-image: -moz-linear-gradient(top, #5b95c3, #5991be 25%, #4f81b4 50%, #4d7eaf 75%);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5b95c3), color-stop(25%, #5991be), color-stop(50%, #4f81b4), to(75%, #4d7eaf));
+ background-image: -webkit-linear-gradient(top, #5b95c3, #5991be 25%, #4f81b4 50%, #4d7eaf 75%);
+ background-image: -o-linear-gradient(top, #5b95c3, #5991be 25%, #4f81b4 50%, #4d7eaf 75%);
+ background-image: linear-gradient(to bottom, #5b95c3, #5991be 25%, #4f81b4 50%, #4d7eaf 75%);
+ background-repeat: no-repeat;
+ border-color: #5991be;
+ border-color: #5991be #5991be #396a92;
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) fadein(rgba(0, 0, 0, 0.1), 15%);
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5b95c3', endColorstr='#4d7eaf', GradientType=0);
+ color: white !important;
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.35);
+}
+/* line 413, ../../app/assets/stylesheets/web.css.scss */
+.btn-info.dropdown-toggle:hover, .btn-info.dropdown-toggle:active, .btn-info.dropdown-toggle.active, .btn-info.dropdown-toggle:focus {
+ background-color: #3b70a5 !important;
+ color: white !important;
+ outline: 0 !important;
+}
+/* line 414, ../../app/assets/stylesheets/web.css.scss */
+.btn-info.dropdown-toggle:visited {
+ color: white !important;
+}
+/* line 415, ../../app/assets/stylesheets/web.css.scss */
+.btn-info.dropdown-toggle.disabled {
+ color: #888888 !important;
+}
+/* line 416, ../../app/assets/stylesheets/web.css.scss */
+.btn-info.dropdown-toggle.disabled:hover {
+ color: #888888 !important;
+}
+/* line 419, ../../app/assets/stylesheets/web.css.scss */
+.btn-info:hover, .btn-info:active, .btn-info.active, .btn-info:focus {
+ background-color: #3b70a5 !important;
+ color: white !important;
+ outline: 0 !important;
+}
+/* line 420, ../../app/assets/stylesheets/web.css.scss */
+.btn-info:visited {
+ color: white !important;
+}
+/* line 421, ../../app/assets/stylesheets/web.css.scss */
+.btn-info.disabled {
+ color: #888888 !important;
+}
+/* line 422, ../../app/assets/stylesheets/web.css.scss */
+.btn-info.disabled:hover {
+ color: #888888 !important;
+}
+
+/* line 426, ../../app/assets/stylesheets/web.css.scss */
+.btn-no-padding {
+ padding: 0 !important;
+}
+
+/* line 427, ../../app/assets/stylesheets/web.css.scss */
+.btn-link {
+ color: #4d80b4 !important;
+ text-shadow: 0px 1px 0px white;
+}
+/* line 428, ../../app/assets/stylesheets/web.css.scss */
+.btn-link:hover, .btn-link:active, .btn-link.active, .btn-link:focus {
+ color: #4d80b4 !important;
+ outline: 0 !important;
+ text-decoration: none;
+}
+/* line 429, ../../app/assets/stylesheets/web.css.scss */
+.btn-link.dropdown-toggle {
+ color: #4d80b4 !important;
+ text-shadow: 0px 1px 0px white;
+}
+/* line 430, ../../app/assets/stylesheets/web.css.scss */
+.btn-link.dropdown-toggle:hover, .btn-link.dropdown-toggle:active, .btn-link.dropdown-toggle.active, .btn-link.dropdown-toggle:focus {
+ color: #4d80b4 !important;
+ text-shadow: 0px 1px 0px white;
+}
+/* line 431, ../../app/assets/stylesheets/web.css.scss */
+.btn-link.dropdown-toggle:visited {
+ color: #4d80b4 !important;
+ text-shadow: 0px 1px 0px white;
+}
+/* line 432, ../../app/assets/stylesheets/web.css.scss */
+.btn-link.dropdown-toggle.disabled {
+ color: #888888 !important;
+}
+/* line 433, ../../app/assets/stylesheets/web.css.scss */
+.btn-link.dropdown-toggle.disabled:hover {
+ color: #888888 !important;
+}
+
+/* line 438, ../../app/assets/stylesheets/web.css.scss */
+.btn-no-bg, .dropdown > .btn-no-bg, button.btn-no-bg,
+.btn-no-bg.dropdown-toggle {
+ background-color: transparent !important;
+ background-image: none !important;
+ color: #4d80b4 !important;
+ border: none !important;
+ -webkit-box-shadow: none;
+ -moz-box-shadow: none;
+ box-shadow: none;
+ text-shadow: 0 0 0 rgba(0, 0, 0, 0);
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
+}
+/* line 439, ../../app/assets/stylesheets/web.css.scss */
+.btn-no-bg:hover, .dropdown > .btn-no-bg:hover, button.btn-no-bg:hover,
+.btn-no-bg.dropdown-toggle:hover {
+ text-decoration: underline;
+}
+/* line 440, ../../app/assets/stylesheets/web.css.scss */
+.btn-no-bg.disabled, .dropdown > .btn-no-bg.disabled, button.btn-no-bg.disabled,
+.btn-no-bg.dropdown-toggle.disabled {
+ cursor: default !important;
+ cursor: not-allowed !important;
+ outline: 0 !important;
+ background-color: transparent !important;
+}
+/* line 441, ../../app/assets/stylesheets/web.css.scss */
+.btn-no-bg.disabled:hover, .dropdown > .btn-no-bg.disabled:hover, button.btn-no-bg.disabled:hover,
+.btn-no-bg.dropdown-toggle.disabled:hover {
+ background-color: transparent !important;
+}
+
+/* line 444, ../../app/assets/stylesheets/web.css.scss */
+.btn-link-green {
+ color: #449042 !important;
+ text-shadow: 0px 1px 0px white;
+}
+/* line 445, ../../app/assets/stylesheets/web.css.scss */
+.btn-link-green:hover, .btn-link-green:active, .btn-link-green.active, .btn-link-green:focus {
+ color: #449042 !important;
+ outline: 0 !important;
+}
+/* line 446, ../../app/assets/stylesheets/web.css.scss */
+.btn-link-green.dropdown-toggle {
+ color: #449042 !important;
+ text-shadow: 0px 1px 0px white;
+}
+/* line 447, ../../app/assets/stylesheets/web.css.scss */
+.btn-link-green.dropdown-toggle:hover, .btn-link-green.dropdown-toggle:active, .btn-link-green.dropdown-toggle.active, .btn-link-green.dropdown-toggle:focus {
+ color: #449042 !important;
+ text-shadow: 0px 1px 0px white;
+}
+/* line 448, ../../app/assets/stylesheets/web.css.scss */
+.btn-link-green.dropdown-toggle:visited {
+ color: #449042 !important;
+ text-shadow: 0px 1px 0px white;
+}
+/* line 449, ../../app/assets/stylesheets/web.css.scss */
+.btn-link-green.dropdown-toggle.disabled {
+ color: #888888 !important;
+}
+/* line 450, ../../app/assets/stylesheets/web.css.scss */
+.btn-link-green.dropdown-toggle.disabled:hover {
+ color: #888888 !important;
+}
+
+/* line 455, ../../app/assets/stylesheets/web.css.scss */
+.btn-group .btn-info {
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+ background-color: #558bbb;
+ background-image: -moz-linear-gradient(top, #5b95c3, #4d7eaf);
+ background-image: -ms-linear-gradient(top, #5b95c3, #4d7eaf);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5b95c3), to(#4d7eaf));
+ background-image: -webkit-linear-gradient(top, #5b95c3, #4d7eaf);
+ background-image: -o-linear-gradient(top, #5b95c3, #4d7eaf);
+ background-image: linear-gradient(top, #5b95c3, #4d7eaf);
+ background-repeat: repeat-x;
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5b95c3', endColorstr='#4d7eaf', GradientType=0);
+ background-color: #578fbe;
+ background-image: -moz-linear-gradient(top, #5b95c3, #5991be 25%, #4f81b4 50%, #4d7eaf 75%);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5b95c3), color-stop(25%, #5991be), color-stop(50%, #4f81b4), to(75%, #4d7eaf));
+ background-image: -webkit-linear-gradient(top, #5b95c3, #5991be 25%, #4f81b4 50%, #4d7eaf 75%);
+ background-image: -o-linear-gradient(top, #5b95c3, #5991be 25%, #4f81b4 50%, #4d7eaf 75%);
+ background-image: linear-gradient(to bottom, #5b95c3, #5991be 25%, #4f81b4 50%, #4d7eaf 75%);
+ background-repeat: no-repeat;
+ border-color: #5991be;
+ border-color: #5991be #5991be #396a92;
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) fadein(rgba(0, 0, 0, 0.1), 15%);
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5b95c3', endColorstr='#4d7eaf', GradientType=0);
+ color: white;
+ font-weight: 500;
+ text-shadow: 0 0 0 rgba(0, 0, 0, 0);
+}
+/* line 456, ../../app/assets/stylesheets/web.css.scss */
+.btn-group .btn-info.dropdown-toggle {
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+ background-color: #558bbb;
+ background-image: -moz-linear-gradient(top, #5b95c3, #4d7eaf);
+ background-image: -ms-linear-gradient(top, #5b95c3, #4d7eaf);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5b95c3), to(#4d7eaf));
+ background-image: -webkit-linear-gradient(top, #5b95c3, #4d7eaf);
+ background-image: -o-linear-gradient(top, #5b95c3, #4d7eaf);
+ background-image: linear-gradient(top, #5b95c3, #4d7eaf);
+ background-repeat: repeat-x;
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5b95c3', endColorstr='#4d7eaf', GradientType=0);
+ background-color: #578fbe;
+ background-image: -moz-linear-gradient(top, #5b95c3, #5991be 25%, #4f81b4 50%, #4d7eaf 75%);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5b95c3), color-stop(25%, #5991be), color-stop(50%, #4f81b4), to(75%, #4d7eaf));
+ background-image: -webkit-linear-gradient(top, #5b95c3, #5991be 25%, #4f81b4 50%, #4d7eaf 75%);
+ background-image: -o-linear-gradient(top, #5b95c3, #5991be 25%, #4f81b4 50%, #4d7eaf 75%);
+ background-image: linear-gradient(to bottom, #5b95c3, #5991be 25%, #4f81b4 50%, #4d7eaf 75%);
+ background-repeat: no-repeat;
+ border-color: #5991be;
+ border-color: #5991be #5991be #396a92;
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) fadein(rgba(0, 0, 0, 0.1), 15%);
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5b95c3', endColorstr='#4d7eaf', GradientType=0);
+ color: white !important;
+ text-shadow: 0 0 0 rgba(0, 0, 0, 0);
+}
+/* line 457, ../../app/assets/stylesheets/web.css.scss */
+.btn-group .btn-info.dropdown-toggle:hover, .btn-group .btn-info.dropdown-toggle:active, .btn-group .btn-info.dropdown-toggle.active, .btn-group .btn-info.dropdown-toggle:focus {
+ background-color: #3b70a5 !important;
+ color: white !important;
+ outline: 0 !important;
+}
+/* line 458, ../../app/assets/stylesheets/web.css.scss */
+.btn-group .btn-info.dropdown-toggle:visited {
+ color: white !important;
+}
+/* line 459, ../../app/assets/stylesheets/web.css.scss */
+.btn-group .btn-info.dropdown-toggle.disabled {
+ color: #888888 !important;
+}
+/* line 460, ../../app/assets/stylesheets/web.css.scss */
+.btn-group .btn-info.dropdown-toggle.disabled:hover {
+ color: #888888 !important;
+}
+/* line 463, ../../app/assets/stylesheets/web.css.scss */
+.btn-group .btn-info:hover, .btn-group .btn-info:active, .btn-group .btn-info.active, .btn-group .btn-info:focus {
+ background-color: #3b70a5 !important;
+ color: white !important;
+ outline: 0 !important;
+}
+/* line 464, ../../app/assets/stylesheets/web.css.scss */
+.btn-group .btn-info:visited {
+ color: white !important;
+}
+/* line 465, ../../app/assets/stylesheets/web.css.scss */
+.btn-group .btn-info.disabled {
+ color: #888888 !important;
+}
+/* line 466, ../../app/assets/stylesheets/web.css.scss */
+.btn-group .btn-info.disabled:hover {
+ color: #888888 !important;
+}
+/* line 469, ../../app/assets/stylesheets/web.css.scss */
+.btn-group .btn-primary {
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.35);
+ background-color: #449142;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+ background-color: #4b9d4b;
+ background-image: -moz-linear-gradient(top, #51a652, #449142);
+ background-image: -ms-linear-gradient(top, #51a652, #449142);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#51a652), to(#449142));
+ background-image: -webkit-linear-gradient(top, #51a652, #449142);
+ background-image: -o-linear-gradient(top, #51a652, #449142);
+ background-image: linear-gradient(top, #51a652, #449142);
+ background-repeat: repeat-x;
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#51a652', endColorstr='#449142', GradientType=0);
+ background-color: #4da04e;
+ background-image: -moz-linear-gradient(top, #51a652, #4fa24d 25%, #469446 50%, #449142 75%);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#51a652), color-stop(25%, #4fa24d), color-stop(50%, #469446), to(75%, #449142));
+ background-image: -webkit-linear-gradient(top, #51a652, #4fa24d 25%, #469446 50%, #449142 75%);
+ background-image: -o-linear-gradient(top, #51a652, #4fa24d 25%, #469446 50%, #449142 75%);
+ background-image: linear-gradient(to bottom, #51a652, #4fa24d 25%, #469446 50%, #449142 75%);
+ background-repeat: no-repeat;
+ border-color: #4fa24d;
+ border-color: #4fa24d #4fa24d #366e34;
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) fadein(rgba(0, 0, 0, 0.1), 15%);
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#51a652', endColorstr='#449142', GradientType=0);
+ color: white;
+}
+/* line 470, ../../app/assets/stylesheets/web.css.scss */
+.btn-group .btn-primary.dropdown-toggle {
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.35);
+ background-color: #449142;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+ background-color: #4b9d4b;
+ background-image: -moz-linear-gradient(top, #51a652, #449142);
+ background-image: -ms-linear-gradient(top, #51a652, #449142);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#51a652), to(#449142));
+ background-image: -webkit-linear-gradient(top, #51a652, #449142);
+ background-image: -o-linear-gradient(top, #51a652, #449142);
+ background-image: linear-gradient(top, #51a652, #449142);
+ background-repeat: repeat-x;
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#51a652', endColorstr='#449142', GradientType=0);
+ background-color: #4da04e;
+ background-image: -moz-linear-gradient(top, #51a652, #4fa24d 25%, #469446 50%, #449142 75%);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#51a652), color-stop(25%, #4fa24d), color-stop(50%, #469446), to(75%, #449142));
+ background-image: -webkit-linear-gradient(top, #51a652, #4fa24d 25%, #469446 50%, #449142 75%);
+ background-image: -o-linear-gradient(top, #51a652, #4fa24d 25%, #469446 50%, #449142 75%);
+ background-image: linear-gradient(to bottom, #51a652, #4fa24d 25%, #469446 50%, #449142 75%);
+ background-repeat: no-repeat;
+ border-color: #4fa24d;
+ border-color: #4fa24d #4fa24d #366e34;
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) fadein(rgba(0, 0, 0, 0.1), 15%);
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#51a652', endColorstr='#449142', GradientType=0);
+ color: white;
+}
+/* line 471, ../../app/assets/stylesheets/web.css.scss */
+.btn-group .btn-primary.dropdown-toggle:hover, .btn-group .btn-primary.dropdown-toggle:active, .btn-group .btn-primary.dropdown-toggle.active, .btn-group .btn-primary.dropdown-toggle:focus {
+ background-color: #3b8539 !important;
+ color: white !important;
+ outline: 0 !important;
+}
+/* line 473, ../../app/assets/stylesheets/web.css.scss */
+.btn-group .btn-primary:hover, .btn-group .btn-primary:active, .btn-group .btn-primary.active, .btn-group .btn-primary:focus {
+ background-color: #3b8539 !important;
+ color: white !important;
+ outline: 0 !important;
+}
+/* line 474, ../../app/assets/stylesheets/web.css.scss */
+.btn-group .btn-primary:visited {
+ color: white !important;
+}
+
+/* line 478, ../../app/assets/stylesheets/web.css.scss */
+.btn-group.open .btn-info {
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+ background-color: #558bbb;
+ background-image: -moz-linear-gradient(top, #5b95c3, #4d7eaf);
+ background-image: -ms-linear-gradient(top, #5b95c3, #4d7eaf);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5b95c3), to(#4d7eaf));
+ background-image: -webkit-linear-gradient(top, #5b95c3, #4d7eaf);
+ background-image: -o-linear-gradient(top, #5b95c3, #4d7eaf);
+ background-image: linear-gradient(top, #5b95c3, #4d7eaf);
+ background-repeat: repeat-x;
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5b95c3', endColorstr='#4d7eaf', GradientType=0);
+ background-color: #578fbe;
+ background-image: -moz-linear-gradient(top, #5b95c3, #5991be 25%, #4f81b4 50%, #4d7eaf 75%);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5b95c3), color-stop(25%, #5991be), color-stop(50%, #4f81b4), to(75%, #4d7eaf));
+ background-image: -webkit-linear-gradient(top, #5b95c3, #5991be 25%, #4f81b4 50%, #4d7eaf 75%);
+ background-image: -o-linear-gradient(top, #5b95c3, #5991be 25%, #4f81b4 50%, #4d7eaf 75%);
+ background-image: linear-gradient(to bottom, #5b95c3, #5991be 25%, #4f81b4 50%, #4d7eaf 75%);
+ background-repeat: no-repeat;
+ border-color: #5991be;
+ border-color: #5991be #5991be #396a92;
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) fadein(rgba(0, 0, 0, 0.1), 15%);
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5b95c3', endColorstr='#4d7eaf', GradientType=0);
+ color: white;
+ font-weight: 500;
+ text-shadow: 0 0 0 rgba(0, 0, 0, 0);
+}
+/* line 479, ../../app/assets/stylesheets/web.css.scss */
+.btn-group.open .btn-info.dropdown-toggle {
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+ background-color: #558bbb;
+ background-image: -moz-linear-gradient(top, #5b95c3, #4d7eaf);
+ background-image: -ms-linear-gradient(top, #5b95c3, #4d7eaf);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5b95c3), to(#4d7eaf));
+ background-image: -webkit-linear-gradient(top, #5b95c3, #4d7eaf);
+ background-image: -o-linear-gradient(top, #5b95c3, #4d7eaf);
+ background-image: linear-gradient(top, #5b95c3, #4d7eaf);
+ background-repeat: repeat-x;
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5b95c3', endColorstr='#4d7eaf', GradientType=0);
+ background-color: #578fbe;
+ background-image: -moz-linear-gradient(top, #5b95c3, #5991be 25%, #4f81b4 50%, #4d7eaf 75%);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5b95c3), color-stop(25%, #5991be), color-stop(50%, #4f81b4), to(75%, #4d7eaf));
+ background-image: -webkit-linear-gradient(top, #5b95c3, #5991be 25%, #4f81b4 50%, #4d7eaf 75%);
+ background-image: -o-linear-gradient(top, #5b95c3, #5991be 25%, #4f81b4 50%, #4d7eaf 75%);
+ background-image: linear-gradient(to bottom, #5b95c3, #5991be 25%, #4f81b4 50%, #4d7eaf 75%);
+ background-repeat: no-repeat;
+ border-color: #5991be;
+ border-color: #5991be #5991be #396a92;
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) fadein(rgba(0, 0, 0, 0.1), 15%);
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5b95c3', endColorstr='#4d7eaf', GradientType=0);
+ color: white !important;
+ text-shadow: 0 0 0 rgba(0, 0, 0, 0);
+}
+/* line 480, ../../app/assets/stylesheets/web.css.scss */
+.btn-group.open .btn-info.dropdown-toggle:hover, .btn-group.open .btn-info.dropdown-toggle:active, .btn-group.open .btn-info.dropdown-toggle.active, .btn-group.open .btn-info.dropdown-toggle:focus {
+ background-color: #3b70a5 !important;
+ color: white !important;
+ outline: 0 !important;
+}
+/* line 481, ../../app/assets/stylesheets/web.css.scss */
+.btn-group.open .btn-info.dropdown-toggle:visited {
+ color: white !important;
+}
+/* line 482, ../../app/assets/stylesheets/web.css.scss */
+.btn-group.open .btn-info.dropdown-toggle.disabled {
+ color: #888888 !important;
+}
+/* line 483, ../../app/assets/stylesheets/web.css.scss */
+.btn-group.open .btn-info.dropdown-toggle.disabled:hover {
+ color: #888888 !important;
+}
+/* line 486, ../../app/assets/stylesheets/web.css.scss */
+.btn-group.open .btn-info:hover, .btn-group.open .btn-info:active, .btn-group.open .btn-info.active, .btn-group.open .btn-info:focus {
+ background-color: #3b70a5 !important;
+ color: white !important;
+ outline: 0 !important;
+}
+/* line 487, ../../app/assets/stylesheets/web.css.scss */
+.btn-group.open .btn-info:visited {
+ color: white !important;
+}
+/* line 488, ../../app/assets/stylesheets/web.css.scss */
+.btn-group.open .btn-info.disabled {
+ color: #888888 !important;
+}
+/* line 489, ../../app/assets/stylesheets/web.css.scss */
+.btn-group.open .btn-info.disabled:hover {
+ color: #888888 !important;
+}
+
+/* line 493, ../../app/assets/stylesheets/web.css.scss */
+.btn-group {
+ -webkit-border-radius: 0;
+ -moz-border-radius: 0;
+ -ms-border-radius: 0;
+ -o-border-radius: 0;
+ border-radius: 0;
+}
+/* line 494, ../../app/assets/stylesheets/web.css.scss */
+.btn-group > a {
+ position: relative;
+ float: left;
+ margin-left: -1px;
+ -webkit-border-radius: 0;
+ -moz-border-radius: 0;
+ -ms-border-radius: 0;
+ -o-border-radius: 0;
+ border-radius: 0;
+}
+/* line 495, ../../app/assets/stylesheets/web.css.scss */
+.btn-group > a:first-child {
+ -webkit-border-radius: 5px 0 0 5px;
+ -moz-border-radius: 5px 0 0 5px;
+ -ms-border-radius: 5px 0 0 5px;
+ -o-border-radius: 5px 0 0 5px;
+ border-radius: 5px 0 0 5px;
+}
+/* line 496, ../../app/assets/stylesheets/web.css.scss */
+.btn-group > a.dropdown-toggle {
+ -webkit-border-radius: 0 5px 5px 0;
+ -moz-border-radius: 0 5px 5px 0;
+ -ms-border-radius: 0 5px 5px 0;
+ -o-border-radius: 0 5px 5px 0;
+ border-radius: 0 5px 5px 0;
+}
+
+/* line 499, ../../app/assets/stylesheets/web.css.scss */
+.open .dropdown-menu {
+ left: auto;
+ top: auto;
+}
+
+/* line 500, ../../app/assets/stylesheets/web.css.scss */
+.btn-last-type {
+ -webkit-border-top-right-radius: 5px !important;
+ -webkit-border-bottom-right-radius: 5px !important;
+ -moz-border-radius-topright: 5px !important;
+ -moz-border-radius-bottomright: 5px !important;
+ border-top-right-radius: 5px !important;
+ border-bottom-right-radius: 5px !important;
+}
+
+/* line 502, ../../app/assets/stylesheets/web.css.scss */
+.btn-group > .btn:first-child:active,
+.btn-group > .btn:first-child.active {
+ -moz-border-radius-topleft: 5px;
+ -webkit-border-top-left-radius: 5px;
+ border-top-left-radius: 5px;
+ -moz-border-radius-bottomleft: 5px;
+ -webkit-border-bottom-left-radius: 5px;
+ border-bottom-left-radius: 5px;
+ outline: 0 !important;
+}
+
+/* line 504, ../../app/assets/stylesheets/web.css.scss */
+.btn-group > .btn:last-child.active,
+.btn-group > .btn:last-child:active {
+ -moz-border-radius-topright: 5px;
+ -webkit-border-top-right-radius: 5px;
+ border-top-right-radius: 5px;
+ -moz-border-radius-bottomright: 5px;
+ -webkit-border-bottom-right-radius: 5px;
+ border-bottom-right-radius: 5px;
+ outline: 0 !important;
+}
+
+/* line 506, ../../app/assets/stylesheets/web.css.scss */
+.buttons-radio > .btn.active, .buttons-radio > .btn:active {
+ overflow: auto;
+ outline: 0 !important;
+ background-color: #4d7eaf !important;
+ color: white !important;
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.35);
+ border-color: rgba(255, 255, 255, 0);
+ -webkit-background-clip: padding-box;
+ -moz-background-clip: padding-box;
+ background-clip: padding-box;
+}
+
+/* line 508, ../../app/assets/stylesheets/web.css.scss */
+.btn-mark-complete {
+ font-size: 11px !important;
+ font-weight: bold;
+ height: 18px;
+ line-height: 9px !important;
+}
+
+/* line 509, ../../app/assets/stylesheets/web.css.scss */
+#category-options-button {
+ border-radius: 0 5px 5px 0;
+}
+
+/* line 511, ../../app/assets/stylesheets/web.css.scss */
+.btn.red:hover {
+ text-decoration: underline;
+}
+/* line 512, ../../app/assets/stylesheets/web.css.scss */
+.btn.red > span {
+ font-size: 18px;
+}
+
+/* line 515, ../../app/assets/stylesheets/web.css.scss */
+.nav-pills > li {
+ margin-right: 3px;
+ padding: 0px 5px !important;
+}
+/* line 516, ../../app/assets/stylesheets/web.css.scss */
+.nav-pills > li.active, .nav-pills > li.active:hover, .nav-pills > li:hover {
+ background-color: #ddeaf4 !important;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+}
+
+/* line 518, ../../app/assets/stylesheets/web.css.scss */
+.nav-tabs {
+ margin-bottom: 5px;
+}
+/* line 520, ../../app/assets/stylesheets/web.css.scss */
+.nav-tabs > li > a {
+ padding-bottom: 4px;
+ padding-top: 4px;
+}
+/* line 521, ../../app/assets/stylesheets/web.css.scss */
+.nav-tabs > li.active > a {
+ font-weight: bold;
+}
+
+/* line 525, ../../app/assets/stylesheets/web.css.scss */
+img {
+ max-width: 100%;
+ max-height: 100%;
+ outline: 0 !important;
+}
+/* line 526, ../../app/assets/stylesheets/web.css.scss */
+img:hover, img:focus {
+ outline: 0 !important;
+}
+
+/* line 528, ../../app/assets/stylesheets/web.css.scss */
+.image-wrapper {
+ line-height: 0;
+ overflow: hidden;
+ -webkit-border-radius: 2px;
+ -moz-border-radius: 2px;
+ -ms-border-radius: 2px;
+ -o-border-radius: 2px;
+ border-radius: 2px;
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ user-select: none;
+ background-color: white;
+}
+/* line 529, ../../app/assets/stylesheets/web.css.scss */
+.image-wrapper.image-wrapper-mini {
+ max-width: 15px;
+ max-height: 15px;
+ min-width: 15px;
+ min-height: 15px;
+}
+/* line 530, ../../app/assets/stylesheets/web.css.scss */
+.image-wrapper.image-wrapper-small {
+ max-width: 22px;
+ max-height: 22px;
+ min-width: 22px;
+ min-height: 22px;
+}
+/* line 531, ../../app/assets/stylesheets/web.css.scss */
+.image-wrapper.image-wrapper-medium {
+ max-width: 30px;
+ max-height: 30px;
+ min-width: 22px;
+ min-height: 22px;
+}
+/* line 532, ../../app/assets/stylesheets/web.css.scss */
+.image-wrapper.image-wrapper-large {
+ max-width: 150px;
+ max-height: 150px;
+ min-width: 150px;
+ min-height: 150px;
+}
+/* line 533, ../../app/assets/stylesheets/web.css.scss */
+.image-wrapper.image-wrapper-xlarge {
+ max-width: 430px;
+ max-height: 430px;
+ min-width: 430px;
+ min-height: 430px;
+}
+/* line 534, ../../app/assets/stylesheets/web.css.scss */
+.image-wrapper.image-wrapper-liquid {
+ min-height: auto;
+ min-width: auto;
+ width: auto;
+}
+/* line 535, ../../app/assets/stylesheets/web.css.scss */
+.image-wrapper.image-wrapper-bordered {
+ border: 1px solid #d7dadf;
+}
+/* line 536, ../../app/assets/stylesheets/web.css.scss */
+.image-wrapper.image-wrapper-shadowed {
+ -webkit-box-shadow: #dddddd 1px 1px 2px;
+ -moz-box-shadow: #dddddd 1px 1px 2px;
+ box-shadow: #dddddd 1px 1px 2px;
+}
+/* line 537, ../../app/assets/stylesheets/web.css.scss */
+.image-wrapper.image-wrapper-padded {
+ padding: 2px;
+}
+/* line 538, ../../app/assets/stylesheets/web.css.scss */
+.image-wrapper.image-wrapper-transparent {
+ background-color: transparent;
+}
+/* line 540, ../../app/assets/stylesheets/web.css.scss */
+.image-wrapper.image-wrapper-link:hover {
+ border-color: #F1F3F5;
+ -webkit-box-shadow: #4d80b4 0 1px 3px;
+ -moz-box-shadow: #4d80b4 0 1px 3px;
+ box-shadow: #4d80b4 0 1px 3px;
+ cursor: pointer;
+}
+/* line 542, ../../app/assets/stylesheets/web.css.scss */
+.image-wrapper img {
+ display: inline-block;
+}
+
+/* line 545, ../../app/assets/stylesheets/web.css.scss */
+.module-wrapper {
+ width: 100%;
+ clear: both;
+}
+
+/* line 546, ../../app/assets/stylesheets/web.css.scss */
+.module {
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+ width: 100%;
+ min-width: 100%;
+ max-width: 100%;
+ padding: 0;
+ border: 1px solid #d7dadf;
+ float: left;
+ overflow: hidden;
+ margin: 10px 0;
+}
+/* line 547, ../../app/assets/stylesheets/web.css.scss */
+.module .module-title {
+ overflow: hidden;
+ padding: 0 8px;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+ background-color: #f3f4f5;
+ background-image: -moz-linear-gradient(top, #f8f9fa, #edeeef);
+ background-image: -ms-linear-gradient(top, #f8f9fa, #edeeef);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f8f9fa), to(#edeeef));
+ background-image: -webkit-linear-gradient(top, #f8f9fa, #edeeef);
+ background-image: -o-linear-gradient(top, #f8f9fa, #edeeef);
+ background-image: linear-gradient(top, #f8f9fa, #edeeef);
+ background-repeat: repeat-x;
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f8f9fa', endColorstr='#edeeef', GradientType=0);
+ background-color: #f5f6f7;
+ background-image: -moz-linear-gradient(top, #f8f9fa, #f4f5f6 25%, #f2f3f4 50%, #edeeef 75%);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f8f9fa), color-stop(25%, #f4f5f6), color-stop(50%, #f2f3f4), to(75%, #edeeef));
+ background-image: -webkit-linear-gradient(top, #f8f9fa, #f4f5f6 25%, #f2f3f4 50%, #edeeef 75%);
+ background-image: -o-linear-gradient(top, #f8f9fa, #f4f5f6 25%, #f2f3f4 50%, #edeeef 75%);
+ background-image: linear-gradient(to bottom, #f8f9fa, #f4f5f6 25%, #f2f3f4 50%, #edeeef 75%);
+ background-repeat: no-repeat;
+ border-color: #f4f5f6;
+ border-color: #f4f5f6 #f4f5f6 #cacfd4;
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) fadein(rgba(0, 0, 0, 0.1), 15%);
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f8f9fa', endColorstr='#edeeef', GradientType=0);
+ -webkit-border-radius: 0;
+ -moz-border-radius: 0;
+ -ms-border-radius: 0;
+ -o-border-radius: 0;
+ border-radius: 0;
+ font-size: 14px;
+ color: #515c65;
+ text-shadow: 0px 1px 0px white;
+ line-height: 26px;
+ font-weight: bold;
+ border-bottom: 1px solid #d7dadf;
+}
+/* line 548, ../../app/assets/stylesheets/web.css.scss */
+.module .module-title .btn-no-bg {
+ line-height: 26px;
+}
+/* line 550, ../../app/assets/stylesheets/web.css.scss */
+.module .module-content {
+ overflow: hidden;
+ padding: 5px 10px;
+ border-top: none;
+}
+/* line 551, ../../app/assets/stylesheets/web.css.scss */
+.module.half {
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+ width: 49.5%;
+ min-width: 49.5%;
+ max-width: 49.5%;
+ padding: 0;
+ border: 1px solid #d7dadf;
+ float: left;
+}
+/* line 552, ../../app/assets/stylesheets/web.css.scss */
+.module.half.pull-right {
+ display: inline;
+ float: right;
+ margin-right: 0;
+}
+
+/* line 555, ../../app/assets/stylesheets/web.css.scss */
+.module-list {
+ overflow: visible;
+}
+/* line 556, ../../app/assets/stylesheets/web.css.scss */
+.module-list .module-list-header {
+ border-bottom: 2px solid #e1e4e6;
+ font-weight: 500;
+ color: #6d777e;
+ overflow: auto;
+}
+/* line 557, ../../app/assets/stylesheets/web.css.scss */
+.module-list .module-list-header > li {
+ float: left;
+}
+/* line 558, ../../app/assets/stylesheets/web.css.scss */
+.module-list .module-list-header > li:last-child {
+ float: right;
+}
+/* line 562, ../../app/assets/stylesheets/web.css.scss */
+.module-list .module-list-content.selectable > li:hover {
+ background-color: #fdfde0;
+ cursor: pointer;
+}
+/* line 563, ../../app/assets/stylesheets/web.css.scss */
+.module-list .module-list-content > li {
+ line-height: 14px;
+ border-bottom: 1px dotted #e4e8ec;
+ color: #46525b;
+}
+/* line 564, ../../app/assets/stylesheets/web.css.scss */
+.module-list .module-list-content > li:last-child {
+ border-bottom: none;
+}
+/* line 567, ../../app/assets/stylesheets/web.css.scss */
+.module-list.half {
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+ width: 49.5%;
+ min-width: 49.5%;
+ max-width: 49.5%;
+ padding: 0;
+ border: 0 solid #d7dadf;
+ float: left;
+}
+/* line 568, ../../app/assets/stylesheets/web.css.scss */
+.module-list.half.pull-right {
+ display: inline;
+ float: right;
+ margin-right: 0;
+}
+
+/* line 571, ../../app/assets/stylesheets/web.css.scss */
+.module-stacked-list {
+ margin-bottom: 20px;
+ clear: both;
+}
+/* line 572, ../../app/assets/stylesheets/web.css.scss */
+.module-stacked-list > .module {
+ margin: 0;
+ -webkit-border-radius: 0;
+ -moz-border-radius: 0;
+ -ms-border-radius: 0;
+ -o-border-radius: 0;
+ border-radius: 0;
+ border-top: none;
+}
+/* line 573, ../../app/assets/stylesheets/web.css.scss */
+.module-stacked-list > .module:last-child {
+ -webkit-border-radius: 0 0 5px 5px;
+ -moz-border-radius: 0 0 5px 5px;
+ -ms-border-radius: 0 0 5px 5px;
+ -o-border-radius: 0 0 5px 5px;
+ border-radius: 0 0 5px 5px;
+ border-bottom: 1px solid #d7dadf;
+ margin-bottom: 10px;
+}
+/* line 574, ../../app/assets/stylesheets/web.css.scss */
+.module-stacked-list > .module:first-child {
+ -webkit-border-radius: 5px 5px 0 0;
+ -moz-border-radius: 5px 5px 0 0;
+ -ms-border-radius: 5px 5px 0 0;
+ -o-border-radius: 5px 5px 0 0;
+ border-radius: 5px 5px 0 0;
+ border-top: 1px solid #d7dadf;
+}
+/* line 576, ../../app/assets/stylesheets/web.css.scss */
+.module-stacked-list > .module .ListWell > li:nth-child(2n) {
+ background-color: transparent;
+}
+/* line 577, ../../app/assets/stylesheets/web.css.scss */
+.module-stacked-list > .module .ListWell > li > div {
+ padding: 2px 10px;
+}
+/* line 580, ../../app/assets/stylesheets/web.css.scss */
+.module-stacked-list > .module:first-child:last-child {
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+ margin-bottom: 10px;
+}
+/* line 581, ../../app/assets/stylesheets/web.css.scss */
+.module-stacked-list > .module > .module-title {
+ border-bottom: none;
+ border-top: none;
+ line-height: 22px;
+ background-image: none;
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
+ background-color: white;
+}
+/* line 582, ../../app/assets/stylesheets/web.css.scss */
+.module-stacked-list > .module > .module-title h5 {
+ font-size: 13px;
+ font-weight: 500;
+ line-height: 22px;
+}
+
+/* line 585, ../../app/assets/stylesheets/web.css.scss */
+.module-title + table.table {
+ border: none;
+ -webkit-border-radius: 0;
+ -moz-border-radius: 0;
+ -ms-border-radius: 0;
+ -o-border-radius: 0;
+ border-radius: 0;
+ font-weight: normal;
+}
+
+/* line 586, ../../app/assets/stylesheets/web.css.scss */
+.module > .ListWell {
+ border: none;
+ margin-bottom: 0;
+ -webkit-border-radius: 0 0 5px 5px;
+ -moz-border-radius: 0 0 5px 5px;
+ -ms-border-radius: 0 0 5px 5px;
+ -o-border-radius: 0 0 5px 5px;
+ border-radius: 0 0 5px 5px;
+}
+/* line 587, ../../app/assets/stylesheets/web.css.scss */
+.module > .ListWell:first-child li {
+ -webkit-border-radius: 0 0 5px 5px;
+ -moz-border-radius: 0 0 5px 5px;
+ -ms-border-radius: 0 0 5px 5px;
+ -o-border-radius: 0 0 5px 5px;
+ border-radius: 0 0 5px 5px;
+}
+
+/* line 590, ../../app/assets/stylesheets/web.css.scss */
+.analytics-list > li,
+.analytics-header-list > li {
+ clear: both;
+ width: 100%;
+ overflow: auto;
+}
+/* line 591, ../../app/assets/stylesheets/web.css.scss */
+.analytics-list > li > div,
+.analytics-header-list > li > div {
+ float: left;
+}
+/* line 592, ../../app/assets/stylesheets/web.css.scss */
+.analytics-list > li > div:first-child,
+.analytics-header-list > li > div:first-child {
+ width: 33%;
+}
+/* line 593, ../../app/assets/stylesheets/web.css.scss */
+.analytics-list > li > div:first-child + div,
+.analytics-header-list > li > div:first-child + div {
+ width: 33%;
+}
+/* line 594, ../../app/assets/stylesheets/web.css.scss */
+.analytics-list > li > div:first-child + div + div,
+.analytics-header-list > li > div:first-child + div + div {
+ width: 34%;
+}
+/* line 597, ../../app/assets/stylesheets/web.css.scss */
+.analytics-list > li > div > div,
+.analytics-header-list > li > div > div {
+ overflow: auto;
+ padding: 3px 10px;
+}
+
+/* line 600, ../../app/assets/stylesheets/web.css.scss */
+.analytics-header-list > li {
+ font-weight: bold;
+ color: #76797a;
+ border-bottom: 2px solid #eeeeee;
+}
+
+/* line 602, ../../app/assets/stylesheets/web.css.scss */
+.analytics-list > li {
+ display: hidden;
+ border-bottom: 1px solid #efeff3;
+ font-weight: bold;
+ color: #999;
+ font-size: 11px;
+ line-height: 14px;
+}
+/* line 603, ../../app/assets/stylesheets/web.css.scss */
+.analytics-list > li > div > div {
+ padding: 5px 10px;
+ text-shadow: 0px 1px 0px white;
+ overflow: visible;
+ text-overflow: clip;
+ white-space: normal;
+ word-wrap: break-word;
+}
+/* line 604, ../../app/assets/stylesheets/web.css.scss */
+.analytics-list > li > div > div:last-child {
+ border-bottom: none;
+}
+/* line 606, ../../app/assets/stylesheets/web.css.scss */
+.analytics-list > li:last-child {
+ border-bottom: none;
+}
+/* line 608, ../../app/assets/stylesheets/web.css.scss */
+.analytics-list.selectable > li:hover {
+ background-image: none;
+ cursor: pointer;
+ background-color: #fdfde0;
+}
+
+/* line 610, ../../app/assets/stylesheets/web.css.scss */
+.parent-expand-collapse-toggle {
+ cursor: pointer;
+}
+
+/* line 611, ../../app/assets/stylesheets/web.css.scss */
+.expand-collapse-toggle {
+ cursor: pointer;
+}
+/* line 612, ../../app/assets/stylesheets/web.css.scss */
+.expand-collapse-toggle i {
+ vertical-align: middle;
+}
+/* line 613, ../../app/assets/stylesheets/web.css.scss */
+.expand-collapse-toggle i.show {
+ display: inline-block !important;
+}
+
+/* line 616, ../../app/assets/stylesheets/web.css.scss */
+table.table {
+ background-color: white;
+ color: #3e4852;
+ font-size: 13px;
+ width: 100%;
+ overflow: visible;
+ text-overflow: clip;
+ white-space: normal;
+ word-wrap: break-word;
+ margin-bottom: 0;
+ border: 1px solid #d7dadf;
+}
+/* line 617, ../../app/assets/stylesheets/web.css.scss */
+table.table th {
+ overflow: visible;
+ text-overflow: clip;
+ white-space: normal;
+ word-wrap: break-word;
+ background-color: #eee;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+ background-color: #f3f4f5;
+ background-image: -moz-linear-gradient(top, #f8f9fa, #edeeef);
+ background-image: -ms-linear-gradient(top, #f8f9fa, #edeeef);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f8f9fa), to(#edeeef));
+ background-image: -webkit-linear-gradient(top, #f8f9fa, #edeeef);
+ background-image: -o-linear-gradient(top, #f8f9fa, #edeeef);
+ background-image: linear-gradient(top, #f8f9fa, #edeeef);
+ background-repeat: repeat-x;
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f8f9fa', endColorstr='#edeeef', GradientType=0);
+ background-color: #f5f6f7;
+ background-image: -moz-linear-gradient(top, #f8f9fa, #f4f5f6 25%, #f2f3f4 50%, #edeeef 75%);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f8f9fa), color-stop(25%, #f4f5f6), color-stop(50%, #f2f3f4), to(75%, #edeeef));
+ background-image: -webkit-linear-gradient(top, #f8f9fa, #f4f5f6 25%, #f2f3f4 50%, #edeeef 75%);
+ background-image: -o-linear-gradient(top, #f8f9fa, #f4f5f6 25%, #f2f3f4 50%, #edeeef 75%);
+ background-image: linear-gradient(to bottom, #f8f9fa, #f4f5f6 25%, #f2f3f4 50%, #edeeef 75%);
+ background-repeat: no-repeat;
+ border-color: #f4f5f6;
+ border-color: #f4f5f6 #f4f5f6 #cacfd4;
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) fadein(rgba(0, 0, 0, 0.1), 15%);
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f8f9fa', endColorstr='#edeeef', GradientType=0);
+ -webkit-border-radius: 0;
+ -moz-border-radius: 0;
+ -ms-border-radius: 0;
+ -o-border-radius: 0;
+ border-radius: 0;
+ color: #515c65;
+ text-shadow: 0px 1px 0px white;
+ line-height: 26px;
+ font-weight: bold;
+ border: none;
+ border-bottom: 1px solid #d7dadf !important;
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ user-select: none;
+}
+/* line 618, ../../app/assets/stylesheets/web.css.scss */
+table.table th > div {
+ margin: 0 !important;
+ padding-top: 0px;
+ padding-bottom: 0px;
+}
+/* line 620, ../../app/assets/stylesheets/web.css.scss */
+table.table td {
+ vertical-align: middle;
+ border-top: none;
+ color: #3e4852;
+ overflow: visible;
+ text-overflow: clip;
+ white-space: normal;
+ word-wrap: break-word;
+ text-shadow: 0px 1px 0px white;
+}
+/* line 621, ../../app/assets/stylesheets/web.css.scss */
+table.table td div {
+ text-shadow: 0px 1px 0px white;
+ text-shadow: 0 1px 0 white !important;
+}
+/* line 623, ../../app/assets/stylesheets/web.css.scss */
+table.table select {
+ width: 100%;
+}
+/* line 624, ../../app/assets/stylesheets/web.css.scss */
+table.table .controls {
+ margin-bottom: 0;
+}
+/* line 625, ../../app/assets/stylesheets/web.css.scss */
+table.table .td-right-align {
+ text-align: right;
+}
+
+/* line 627, ../../app/assets/stylesheets/web.css.scss */
+.table th, .table td {
+ padding: 0;
+}
+
+/* line 628, ../../app/assets/stylesheets/web.css.scss */
+.table th > div, .table td > div {
+ padding: 8px;
+}
+
+/* line 631, ../../app/assets/stylesheets/web.css.scss */
+.table-striped tbody > tr:nth-child(2n+1) td, .table-striped tbody > tr:nth-child(2n+1) th {
+ background-color: white;
+}
+/* line 632, ../../app/assets/stylesheets/web.css.scss */
+.table-striped tbody > tr:nth-child(odd) {
+ background-color: white;
+}
+/* line 633, ../../app/assets/stylesheets/web.css.scss */
+.table-striped tbody > tr:nth-child(even) {
+ background-color: #F6F6F7;
+}
+
+/* line 636, ../../app/assets/stylesheets/web.css.scss */
+.table-selectable tbody > tr > td {
+ border-top: 1px solid white;
+}
+/* line 637, ../../app/assets/stylesheets/web.css.scss */
+.table-selectable tbody > tr:hover td {
+ background-color: #fdfde0;
+ cursor: pointer !important;
+}
+/* line 638, ../../app/assets/stylesheets/web.css.scss */
+.table-selectable tbody > tr.active td {
+ background: none;
+ background-color: #ddeaf4;
+ border-top: 1px solid #b6dae8;
+}
+
+/* line 640, ../../app/assets/stylesheets/web.css.scss */
+td.zero-results {
+ text-align: center;
+}
+
+/* line 641, ../../app/assets/stylesheets/web.css.scss */
+.table-fixed {
+ table-layout: fixed !important;
+}
+
+/* line 642, ../../app/assets/stylesheets/web.css.scss */
+.table.table-outlined {
+ border: 1px solid #dddddd;
+ border-collapse: separate;
+ *border-collapse: collapsed;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+}
+/* line 644, ../../app/assets/stylesheets/web.css.scss */
+.table.table-outlined thead:first-child tr:first-child th:first-child,
+.table.table-outlined tbody:first-child tr:first-child td:first-child {
+ -webkit-border-radius: 5px 0 0 0;
+ -moz-border-radius: 5px 0 0 0;
+ -ms-border-radius: 5px 0 0 0;
+ -o-border-radius: 5px 0 0 0;
+ border-radius: 5px 0 0 0;
+}
+/* line 646, ../../app/assets/stylesheets/web.css.scss */
+.table.table-outlined thead:first-child tr:first-child th:last-child,
+.table.table-outlined tbody:first-child tr:first-child td:last-child {
+ -webkit-border-radius: 0 5px 0 0;
+ -moz-border-radius: 0 5px 0 0;
+ -ms-border-radius: 0 5px 0 0;
+ -o-border-radius: 0 5px 0 0;
+ border-radius: 0 5px 0 0;
+}
+/* line 648, ../../app/assets/stylesheets/web.css.scss */
+.table.table-outlined thead:last-child tr:last-child th:first-child,
+.table.table-outlined tbody:last-child tr:last-child td:first-child {
+ -webkit-border-radius: 0 0 0 5px;
+ -moz-border-radius: 0 0 0 5px;
+ -ms-border-radius: 0 0 0 5px;
+ -o-border-radius: 0 0 0 5px;
+ border-radius: 0 0 0 5px;
+}
+/* line 650, ../../app/assets/stylesheets/web.css.scss */
+.table.table-outlined thead:last-child tr:last-child th:last-child,
+.table.table-outlined tbody:last-child tr:last-child td:last-child {
+ -webkit-border-radius: 0 0 5px 0;
+ -moz-border-radius: 0 0 5px 0;
+ -ms-border-radius: 0 0 5px 0;
+ -o-border-radius: 0 0 5px 0;
+ border-radius: 0 0 5px 0;
+}
+/* line 651, ../../app/assets/stylesheets/web.css.scss */
+.table.table-outlined td {
+ border-right: none !important;
+}
+
+/* line 654, ../../app/assets/stylesheets/web.css.scss */
+table.table-vertical-align-top td {
+ vertical-align: top;
+}
+
+/* line 657, ../../app/assets/stylesheets/web.css.scss */
+.table-condensed th > div, .table-condensed td > div {
+ padding: 4px 5px;
+}
+
+/* line 660, ../../app/assets/stylesheets/web.css.scss */
+.table-sortable th:hover > div {
+ background-image: none;
+ cursor: pointer;
+ -webkit-box-shadow: #ced1d5 0 2px 8px inset;
+ -moz-box-shadow: #ced1d5 0 2px 8px inset;
+ box-shadow: #ced1d5 0 2px 8px inset;
+ background: url(/assets/icons/arrow-down.png) no-repeat 90% 55%;
+}
+/* line 661, ../../app/assets/stylesheets/web.css.scss */
+.table-sortable th.active {
+ outline: 0 !important;
+}
+/* line 662, ../../app/assets/stylesheets/web.css.scss */
+.table-sortable th.active > div {
+ background-image: none;
+ outline: 0 !important;
+}
+/* line 663, ../../app/assets/stylesheets/web.css.scss */
+.table-sortable th.active.sort-asc {
+ outline: 0 !important;
+}
+/* line 664, ../../app/assets/stylesheets/web.css.scss */
+.table-sortable th.active.sort-asc > div {
+ background: url(/assets/icons/arrow-down.png) #dddfe2 no-repeat 90% 55%;
+}
+/* line 666, ../../app/assets/stylesheets/web.css.scss */
+.table-sortable th.active.sort-desc {
+ outline: 0 !important;
+}
+/* line 667, ../../app/assets/stylesheets/web.css.scss */
+.table-sortable th.active.sort-desc > div {
+ background: url(/assets/icons/arrow-up.png) #dddfe2 no-repeat 90% 55%;
+}
+/* line 670, ../../app/assets/stylesheets/web.css.scss */
+.table-sortable th.noSort:hover > div {
+ -webkit-box-shadow: rgba(0, 0, 0, 0) 0 0 0 inset;
+ -moz-box-shadow: rgba(0, 0, 0, 0) 0 0 0 inset;
+ box-shadow: rgba(0, 0, 0, 0) 0 0 0 inset;
+ -webkit-box-shadow: rgba(0, 0, 0, 0) 0 0 0;
+ -moz-box-shadow: rgba(0, 0, 0, 0) 0 0 0;
+ box-shadow: rgba(0, 0, 0, 0) 0 0 0;
+ background-image: none;
+ cursor: default;
+}
+
+/* line 674, ../../app/assets/stylesheets/web.css.scss */
+.table-inline th > div i {
+ position: relative !important;
+ top: -1px !important;
+}
+/* line 676, ../../app/assets/stylesheets/web.css.scss */
+.table-inline td > div {
+ margin: 0 !important;
+}
+/* line 677, ../../app/assets/stylesheets/web.css.scss */
+.table-inline .control-group {
+ z-index: 1000;
+ list-style-type: none;
+}
+/* line 678, ../../app/assets/stylesheets/web.css.scss */
+.table-inline .control-group .controls {
+ margin-left: 0;
+ overflow: auto;
+}
+/* line 684, ../../app/assets/stylesheets/web.css.scss */
+.table-inline .control-group .controls input[type="text"], .table-inline .control-group .controls textarea, .table-inline .control-group .controls select,
+.table-inline .control-group .controls .k-autocomplete, .table-inline .control-group .controls .k-combobox,
+.table-inline .control-group .controls .k-datepicker, .table-inline .control-group .controls .k-timepicker, .table-inline .control-group .controls .k-datetimepicker,
+.table-inline .control-group .controls .k-numerictextbox,
+.table-inline .control-group .controls .k-dropdown,
+.table-inline .control-group .controls .k-selectbox {
+ width: 96% !important;
+ outline: 0 !important;
+}
+/* line 685, ../../app/assets/stylesheets/web.css.scss */
+.table-inline .control-group .controls .textarea-wrapper {
+ display: block;
+}
+/* line 688, ../../app/assets/stylesheets/web.css.scss */
+.table-inline + .btn {
+ margin-top: 5px;
+ float: right;
+}
+/* line 689, ../../app/assets/stylesheets/web.css.scss */
+.table-inline + div.empty_container + .btn {
+ margin-top: 5px;
+ float: right;
+}
+/* line 692, ../../app/assets/stylesheets/web.css.scss */
+.table-inline .input-prepend .controls .add-on {
+ padding: 4px 3px;
+}
+/* line 693, ../../app/assets/stylesheets/web.css.scss */
+.table-inline .input-prepend .controls input {
+ width: 64% !important;
+}
+
+/* line 698, ../../app/assets/stylesheets/web.css.scss */
+.form-horizontal .table-inline .control-group, .form-horizontal .table-inline td > div {
+ padding: 2px !important;
+ margin-bottom: 0 !important;
+ margin-top: 0 !important;
+ z-index: 1000;
+ list-style-type: none;
+}
+
+/* line 702, ../../app/assets/stylesheets/web.css.scss */
+table tbody tr.highlighting:hover td,
+table tbody tr.highlighting td, table tbody tr.highlighting div {
+ background-color: inherit;
+}
+
+/* line 704, ../../app/assets/stylesheets/web.css.scss */
+.table-title {
+ color: #858a8e;
+ font-size: 16px;
+ font-weight: bold;
+ line-height: 24px;
+}
+
+/* line 706, ../../app/assets/stylesheets/web.css.scss */
+.pagination-region {
+ margin-top: 10px;
+}
+/* line 707, ../../app/assets/stylesheets/web.css.scss */
+.pagination-region .pagination {
+ margin: 0;
+ height: auto;
+}
+/* line 708, ../../app/assets/stylesheets/web.css.scss */
+.pagination-region .pagination ul {
+ -webkit-box-shadow: none;
+ -moz-box-shadow: none;
+ box-shadow: none;
+ padding: 0 !important;
+}
+/* line 709, ../../app/assets/stylesheets/web.css.scss */
+.pagination-region .pagination ul li {
+ overflow: auto;
+}
+/* line 710, ../../app/assets/stylesheets/web.css.scss */
+.pagination-region .pagination ul li.active a {
+ background-color: #d1deea;
+ outline: 0 !important;
+ color: #3e4852;
+}
+/* line 711, ../../app/assets/stylesheets/web.css.scss */
+.pagination-region .pagination ul li.active a:hover {
+ background-color: #d1deea;
+}
+/* line 713, ../../app/assets/stylesheets/web.css.scss */
+.pagination-region .pagination ul li a {
+ text-shadow: 0px 1px 0px white;
+ line-height: 22px;
+ padding: 0 8px;
+ margin: 0 2px;
+ border: none;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+}
+/* line 714, ../../app/assets/stylesheets/web.css.scss */
+.pagination-region .pagination ul li a:hover {
+ background-color: #d1deea;
+}
+/* line 719, ../../app/assets/stylesheets/web.css.scss */
+.pagination-region .pagination-results {
+ line-height: 22px;
+ color: #4b5566;
+ font-size: 13px;
+ text-shadow: 0px 1px 0px white;
+}
+
+/* line 724, ../../app/assets/stylesheets/web.css.scss */
+.destroyed,
+.destroyed td,
+.destroyed > div {
+ background: none;
+ background-color: #f6e1e1 !important;
+}
+
+/* line 725, ../../app/assets/stylesheets/web.css.scss */
+ul, ol {
+ margin: 0;
+ list-style: none;
+}
+
+/* line 728, ../../app/assets/stylesheets/web.css.scss */
+ul.list-selectable li {
+ border-top: 1px solid white;
+}
+/* line 729, ../../app/assets/stylesheets/web.css.scss */
+ul.list-selectable li:hover {
+ background-image: none;
+ cursor: pointer;
+ background-color: #fdfde0;
+}
+/* line 730, ../../app/assets/stylesheets/web.css.scss */
+ul.list-selectable li.active {
+ background: none;
+ background-color: #ddeaf4 !important;
+ border-top: 1px solid #b6dae8;
+}
+/* line 732, ../../app/assets/stylesheets/web.css.scss */
+ul.list-selectable.list-selectable-green li.active {
+ background: none;
+ background-color: #f0f9f0 !important;
+ border-top: 1px solid #b4e0b1;
+}
+
+/* line 735, ../../app/assets/stylesheets/web.css.scss */
+.SimpleSubHeader {
+ background-color: white;
+ overflow: auto;
+ border: 1px solid #d7dadf;
+ border-top: none;
+ padding: 5px 10px;
+}
+/* line 736, ../../app/assets/stylesheets/web.css.scss */
+.SimpleSubHeader a {
+ line-height: 12px;
+ margin-top: 5px;
+}
+/* line 737, ../../app/assets/stylesheets/web.css.scss */
+.SimpleSubHeader h4 {
+ font-weight: 500;
+ line-height: 24px !important;
+}
+
+/* line 740, ../../app/assets/stylesheets/web.css.scss */
+.links-list a:hover {
+ text-decoration: underline;
+}
+/* line 741, ../../app/assets/stylesheets/web.css.scss */
+.links-list li {
+ overflow: auto;
+ margin-top: 5px;
+ border-bottom: 2px solid #e9eaea;
+ font-size: 13px;
+ line-height: 16px;
+ padding-bottom: 2px;
+}
+/* line 742, ../../app/assets/stylesheets/web.css.scss */
+.links-list li .links-list-text {
+ float: left;
+ width: 50%;
+ margin-right: 2%;
+ text-align: right;
+ padding-top: 4px;
+}
+/* line 743, ../../app/assets/stylesheets/web.css.scss */
+.links-list li .links-list-num {
+ float: right;
+ width: 47%;
+ font-weight: bold;
+ padding-top: 4px;
+}
+/* line 744, ../../app/assets/stylesheets/web.css.scss */
+.links-list li .links-list-num .icons-team-tiny {
+ vertical-align: middle;
+}
+
+/* line 750, ../../app/assets/stylesheets/web.css.scss */
+dl dd {
+ margin-bottom: 10px;
+}
+
+/* line 752, ../../app/assets/stylesheets/web.css.scss */
+.dl-horizontal {
+ margin-top: 0;
+ margin-bottom: 5px;
+ overflow: hidden;
+}
+/* line 753, ../../app/assets/stylesheets/web.css.scss */
+.dl-horizontal dt, .dl-horizontal dd {
+ float: left;
+ text-shadow: 0px 1px 0px white;
+ overflow: visible;
+ text-overflow: clip;
+ white-space: normal;
+ word-wrap: break-word;
+ margin-bottom: 10px;
+ margin-left: 1% !important;
+ line-height: 16px !important;
+ font-size: 13.5px;
+}
+/* line 754, ../../app/assets/stylesheets/web.css.scss */
+.dl-horizontal dt {
+ clear: left;
+ text-align: left;
+ width: 25%;
+ color: #555;
+ font-weight: 500;
+}
+/* line 755, ../../app/assets/stylesheets/web.css.scss */
+.dl-horizontal dd {
+ color: #666;
+ width: 73%;
+ margin-top: 0.2%;
+}
+
+/* line 758, ../../app/assets/stylesheets/web.css.scss */
+#reorder-list li {
+ overflow: visible;
+ text-overflow: clip;
+ white-space: normal;
+ word-wrap: break-word;
+ width: 400px;
+ font-weight: 500;
+ overflow: auto;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+ cursor: move;
+ padding: 5px 10px;
+ border: 1px solid #d7dadf;
+ background-color: white;
+ line-height: 16px;
+ margin-bottom: 7px;
+}
+/* line 759, ../../app/assets/stylesheets/web.css.scss */
+#reorder-list li span {
+ display: block;
+ float: left;
+ overflow: visible;
+ text-overflow: clip;
+ white-space: normal;
+ word-wrap: break-word;
+}
+/* line 760, ../../app/assets/stylesheets/web.css.scss */
+#reorder-list li span:first-child {
+ width: 92%;
+ margin-right: 3%;
+}
+/* line 761, ../../app/assets/stylesheets/web.css.scss */
+#reorder-list li span:last-child {
+ width: 5%;
+}
+/* line 762, ../../app/assets/stylesheets/web.css.scss */
+#reorder-list li span:last-child i {
+ vertical-align: baseline;
+}
+
+/* line 767, ../../app/assets/stylesheets/web.css.scss */
+.stat-bubbles > li {
+ overflow: hidden;
+ float: left;
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+ width: 33%;
+ min-width: 33%;
+ max-width: 33%;
+ padding: 0;
+ border: 1px solid #d7dadf;
+ float: left;
+ border-right: none;
+}
+/* line 768, ../../app/assets/stylesheets/web.css.scss */
+.stat-bubbles > li:first-child {
+ -webkit-border-radius: 5px 0 0 5px;
+ -moz-border-radius: 5px 0 0 5px;
+ -ms-border-radius: 5px 0 0 5px;
+ -o-border-radius: 5px 0 0 5px;
+ border-radius: 5px 0 0 5px;
+}
+/* line 769, ../../app/assets/stylesheets/web.css.scss */
+.stat-bubbles > li:last-child {
+ -webkit-border-radius: 0 5px 5px 0;
+ -moz-border-radius: 0 5px 5px 0;
+ -ms-border-radius: 0 5px 5px 0;
+ -o-border-radius: 0 5px 5px 0;
+ border-radius: 0 5px 5px 0;
+ border-right: 1px solid #d7dadf;
+}
+/* line 770, ../../app/assets/stylesheets/web.css.scss */
+.stat-bubbles > li a {
+ display: block;
+ background-color: #f3f6f7;
+ padding: 15px 10px;
+}
+/* line 771, ../../app/assets/stylesheets/web.css.scss */
+.stat-bubbles > li a:hover {
+ text-decoration: none;
+ background-color: #fdfde0;
+}
+/* line 773, ../../app/assets/stylesheets/web.css.scss */
+.stat-bubbles > li .stat-bubble-num {
+ display: block;
+ text-align: center;
+ font-size: 22px;
+ font-weight: 500;
+}
+/* line 774, ../../app/assets/stylesheets/web.css.scss */
+.stat-bubbles > li .stat-bubble-text {
+ display: block;
+ text-align: center;
+}
+/* line 775, ../../app/assets/stylesheets/web.css.scss */
+.stat-bubbles > li .stat-bubble-text i {
+ vertical-align: baseline;
+}
+
+/* line 779, ../../app/assets/stylesheets/web.css.scss */
+.ListWell {
+ overflow: hidden;
+ *zoom: 1;
+ border: 1px solid #d7dadf;
+ border-top: none;
+ overflow: auto;
+ padding: 0;
+ -moz-border-radius-bottomleft: 5px;
+ -webkit-border-bottom-left-radius: 5px;
+ border-bottom-left-radius: 5px;
+ -moz-border-radius-bottomright: 5px;
+ -webkit-border-bottom-right-radius: 5px;
+ border-bottom-right-radius: 5px;
+ text-shadow: 0px 1px 0px white;
+ background-color: #fff;
+}
+/* line 781, ../../app/assets/stylesheets/web.css.scss */
+.ListWell > li a:hover {
+ text-decoration: none;
+}
+/* line 782, ../../app/assets/stylesheets/web.css.scss */
+.ListWell > li > div {
+ padding: 5px 10px;
+ border-top: 1px solid white;
+ overflow: auto;
+}
+/* line 783, ../../app/assets/stylesheets/web.css.scss */
+.ListWell > li:nth-child(odd) {
+ background-color: white;
+}
+/* line 784, ../../app/assets/stylesheets/web.css.scss */
+.ListWell > li:nth-child(even) {
+ background-color: #F6F6F7;
+}
+/* line 785, ../../app/assets/stylesheets/web.css.scss */
+.ListWell > li:first-child > div {
+ border-top: none;
+}
+/* line 786, ../../app/assets/stylesheets/web.css.scss */
+.ListWell > li:last-child > div {
+ border-bottom: none;
+}
+/* line 788, ../../app/assets/stylesheets/web.css.scss */
+.ListWell.ListWellTop {
+ border-top: 1px solid #d7dadf !important;
+}
+/* line 789, ../../app/assets/stylesheets/web.css.scss */
+.ListWell > .empty {
+ background-color: #f8fafc !important;
+}
+
+/* line 791, ../../app/assets/stylesheets/web.css.scss */
+.ListWell.selectable li:hover {
+ background-color: #fdfde0;
+ cursor: pointer;
+}
+
+/* line 792, ../../app/assets/stylesheets/web.css.scss */
+.empty {
+ background-color: #f8fafc;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+ margin-top: 10px;
+ padding: 80px 15%;
+ font-size: 26px;
+ text-shadow: 1px 1px 0 white;
+ color: #b8c2c9;
+ text-align: center;
+ border: 5px solid #e9f0f5;
+ line-height: 30px;
+ -webkit-box-shadow: white 0 1px 0 inset;
+ -moz-box-shadow: white 0 1px 0 inset;
+ box-shadow: white 0 1px 0 inset;
+}
+/* line 793, ../../app/assets/stylesheets/web.css.scss */
+.empty small {
+ font-size: 15px;
+ font-weight: bold;
+ display: block;
+ line-height: 18px;
+ margin-top: 5px;
+}
+/* line 794, ../../app/assets/stylesheets/web.css.scss */
+.empty.empty-square-top {
+ -webkit-border-radius: 0 0 5px 5px;
+ -moz-border-radius: 0 0 5px 5px;
+ -ms-border-radius: 0 0 5px 5px;
+ -o-border-radius: 0 0 5px 5px;
+ border-radius: 0 0 5px 5px;
+ margin-top: 0;
+}
+/* line 795, ../../app/assets/stylesheets/web.css.scss */
+.empty.empty-small {
+ padding: 10px 15%;
+ font-size: 18px;
+ line-height: 22px;
+}
+
+/* line 799, ../../app/assets/stylesheets/web.css.scss */
+input::-webkit-input-placeholder, textarea::-webkit-input-placeholder, .search-query::-webkit-input-placeholder, .uneditable-input::-webkit-input-placeholder {
+ color: #bbb;
+ text-shadow: 0 0 0 rgba(0, 0, 0, 0);
+ letter-spacing: 1px;
+ position: relative;
+ top: 1px;
+}
+
+/* line 800, ../../app/assets/stylesheets/web.css.scss */
+input:focus::-webkit-input-placeholder, textarea:focus::-webkit-input-placeholder, .search-query:focus::-webkit-input-placeholder, .uneditable-input:focus::-webkit-input-placeholder {
+ color: transparent;
+}
+
+/* line 801, ../../app/assets/stylesheets/web.css.scss */
+input:-moz-placeholder, textarea:-moz-placeholder, .search-query:-moz-placeholder, .uneditable-input:-moz-placeholder {
+ color: #bbb;
+ text-shadow: 0 0 0 rgba(0, 0, 0, 0);
+ letter-spacing: 0.5px;
+}
+
+/* line 803, ../../app/assets/stylesheets/web.css.scss */
+fieldset {
+ border-top: 1px solid #d8d8d8;
+ -webkit-box-shadow: white 0 1px 0 inset;
+ -moz-box-shadow: white 0 1px 0 inset;
+ box-shadow: white 0 1px 0 inset;
+ padding-top: 30px;
+ margin: 5px 0;
+ position: relative;
+}
+/* line 804, ../../app/assets/stylesheets/web.css.scss */
+fieldset legend {
+ font-size: 13px;
+ color: #4b5566;
+ font-weight: 600;
+ text-shadow: 0px 1px 0px white;
+ position: absolute;
+ top: -13px;
+ left: 20px;
+ border: 0;
+ width: auto;
+ background: #dadbdb;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+ padding: 0 8px;
+ line-height: 26px;
+}
+/* line 805, ../../app/assets/stylesheets/web.css.scss */
+fieldset legend a {
+ font-weight: normal;
+}
+
+/* line 808, ../../app/assets/stylesheets/web.css.scss */
+.help-block {
+ clear: both;
+ margin-top: 2px !important;
+}
+
+/* line 809, ../../app/assets/stylesheets/web.css.scss */
+form fieldset ~ fieldset {
+ margin-top: 25px;
+}
+
+/* line 811, ../../app/assets/stylesheets/web.css.scss */
+.form-horizontal legend + .control-group {
+ margin-top: 0;
+}
+/* line 812, ../../app/assets/stylesheets/web.css.scss */
+.form-horizontal .control-group {
+ margin-bottom: 5px;
+ margin-top: 5px;
+ overflow: auto;
+ overflow: hidden;
+ *zoom: 1;
+}
+/* line 813, ../../app/assets/stylesheets/web.css.scss */
+.form-horizontal .control-group > li {
+ overflow: auto;
+ line-height: 16px;
+}
+/* line 815, ../../app/assets/stylesheets/web.css.scss */
+.form-horizontal .controls {
+ margin-bottom: 5px;
+ overflow: visible !important;
+}
+/* line 816, ../../app/assets/stylesheets/web.css.scss */
+.form-horizontal .controls a {
+ margin-left: 5px;
+}
+/* line 817, ../../app/assets/stylesheets/web.css.scss */
+.form-horizontal .controls p.help-block {
+ clear: both;
+}
+/* line 818, ../../app/assets/stylesheets/web.css.scss */
+.form-horizontal .controls input[type="checkbox"] {
+ margin-top: 0 !important;
+ vertical-align: middle;
+}
+/* line 820, ../../app/assets/stylesheets/web.css.scss */
+.form-horizontal .controls-no-label {
+ padding-top: 5px !important;
+}
+/* line 821, ../../app/assets/stylesheets/web.css.scss */
+.form-horizontal .controls-no-label .controls {
+ margin-left: 0;
+}
+/* line 822, ../../app/assets/stylesheets/web.css.scss */
+.form-horizontal .controls-no-label .control-label:empty {
+ display: none !important;
+}
+/* line 825, ../../app/assets/stylesheets/web.css.scss */
+.form-horizontal .controls-medium input[type="text"] {
+ vertical-align: center;
+ font-size: 14px;
+ height: 26px;
+ line-height: 26px;
+ padding: 0 10px;
+ min-width: 300px;
+}
+
+/* line 829, ../../app/assets/stylesheets/web.css.scss */
+.control-group.divider {
+ border-bottom: 1px solid #e1e1e1;
+ -webkit-box-shadow: rgba(255, 255, 255, 0.5) 0 8px 10px;
+ -moz-box-shadow: rgba(255, 255, 255, 0.5) 0 8px 10px;
+ box-shadow: rgba(255, 255, 255, 0.5) 0 8px 10px;
+ padding-bottom: 10px;
+ margin-bottom: 20px;
+}
+/* line 830, ../../app/assets/stylesheets/web.css.scss */
+.control-group .static {
+ display: inline-block;
+ overflow: auto;
+ font-size: 14px;
+}
+/* line 831, ../../app/assets/stylesheets/web.css.scss */
+.control-group .textarea-wrapper {
+ position: relative;
+ display: inline-block;
+}
+/* line 832, ../../app/assets/stylesheets/web.css.scss */
+.control-group .character-count {
+ text-align: right;
+ color: #999;
+ position: absolute;
+ bottom: 4px;
+ right: 23px;
+ line-height: 12px;
+}
+
+/* line 834, ../../app/assets/stylesheets/web.css.scss */
+label {
+ color: #40464b;
+ font-weight: 500;
+ font-size: 14px;
+ text-shadow: 0px 1px 0px white;
+}
+/* line 835, ../../app/assets/stylesheets/web.css.scss */
+label i.popover-click {
+ position: relative;
+ right: 3px;
+ bottom: 1px;
+}
+
+/* line 840, ../../app/assets/stylesheets/web.css.scss */
+label[class^="radio"],
+label[class*="radio"],
+label[class^="checkbox"],
+label[class*="checkbox"] {
+ font-weight: normal;
+}
+
+/* line 841, ../../app/assets/stylesheets/web.css.scss */
+hr {
+ margin-top: 0;
+ clear: both;
+ margin-bottom: 0px;
+}
+
+/* line 842, ../../app/assets/stylesheets/web.css.scss */
+.vertical-checks {
+ overflow: auto;
+}
+/* line 843, ../../app/assets/stylesheets/web.css.scss */
+.vertical-checks .controls {
+ margin-bottom: 0;
+}
+/* line 844, ../../app/assets/stylesheets/web.css.scss */
+.vertical-checks .controls label {
+ display: inline-block;
+ margin: auto 15px 0 auto;
+ margin-right: 15px;
+ font-weight: normal;
+ max-width: 93%;
+ overflow: visible;
+ text-overflow: clip;
+ white-space: normal;
+ word-wrap: break-word;
+ vertical-align: middle;
+}
+/* line 845, ../../app/assets/stylesheets/web.css.scss */
+.vertical-checks .controls input {
+ display: inline;
+ margin-right: 5px;
+}
+
+/* line 849, ../../app/assets/stylesheets/web.css.scss */
+#notice {
+ color: #b7893e;
+ -webkit-box-shadow: rgba(0, 0, 0, 0.16) 5px 9px 15px;
+ -moz-box-shadow: rgba(0, 0, 0, 0.16) 5px 9px 15px;
+ box-shadow: rgba(0, 0, 0, 0.16) 5px 9px 15px;
+ font-size: 14px;
+ text-shadow: 0px 1px 0px white;
+ padding: 0 50px;
+ display: none;
+ border: 2px solid #d6cb73;
+ border-top: none;
+ font-weight: bold;
+ line-height: 50px;
+ position: fixed;
+ top: 0px;
+ left: 47%;
+ background-color: #f9f4ce;
+ z-index: 10000;
+ -moz-border-radius-bottomleft: 10px;
+ -webkit-border-bottom-left-radius: 10px;
+ border-bottom-left-radius: 10px;
+ -moz-border-radius-bottomright: 10px;
+ -webkit-border-bottom-right-radius: 10px;
+ border-bottom-right-radius: 10px;
+}
+/* line 850, ../../app/assets/stylesheets/web.css.scss */
+#notice.error {
+ background-color: #9d261d;
+ color: white;
+ left: 42%;
+ border-color: darkRed;
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.35);
+}
+/* line 851, ../../app/assets/stylesheets/web.css.scss */
+#notice.warning {
+ left: 37%;
+}
+
+/* line 854, ../../app/assets/stylesheets/web.css.scss */
+.error input, .error select, .error textarea {
+ background-color: #FFF2F2;
+ color: #505050;
+}
+
+/* line 856, ../../app/assets/stylesheets/web.css.scss */
+.error-wrap {
+ background-color: #f1d9d9;
+ margin-left: 5px;
+ padding: 0 5px;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+}
+
+/* line 859, ../../app/assets/stylesheets/web.css.scss */
+.help-block, .help-inline {
+ line-height: 14px !important;
+ color: #777;
+ font-size: 12px;
+}
+
+/* line 860, ../../app/assets/stylesheets/web.css.scss */
+a.help-block {
+ color: #4d80b4 !important;
+}
+
+/* line 863, ../../app/assets/stylesheets/web.css.scss */
+.control-group.error input,
+.control-group.error select,
+.control-group.error textarea {
+ color: #666;
+}
+
+/* line 867, ../../app/assets/stylesheets/web.css.scss */
+.control-group.disabled label,
+.control-group.disabled input,
+.control-group.disabled a {
+ color: #999999 !important;
+}
+
+/* line 870, ../../app/assets/stylesheets/web.css.scss */
+.control-group.error label {
+ color: #AE5151;
+}
+/* line 871, ../../app/assets/stylesheets/web.css.scss */
+.control-group.error .help-block, .control-group.error .help-inline {
+ color: #AE5151;
+ padding: 4px;
+}
+
+/* line 874, ../../app/assets/stylesheets/web.css.scss */
+.form-actions-wrap {
+ border-top: 1px solid #d6d6d6;
+}
+
+/* line 875, ../../app/assets/stylesheets/web.css.scss */
+.form-actions {
+ margin: 0;
+ overflow: hidden;
+ background-color: #eceeef;
+ padding-left: 20px !important;
+ border-top: 1px solid white;
+ -moz-border-radius-bottomleft: 17px;
+ -webkit-border-bottom-left-radius: 17px;
+ border-bottom-left-radius: 17px;
+ -moz-border-radius-bottomright: 17px;
+ -webkit-border-bottom-right-radius: 17px;
+ border-bottom-right-radius: 17px;
+}
+/* line 876, ../../app/assets/stylesheets/web.css.scss */
+.form-actions button, .form-actions a.btn {
+ margin-left: 5px;
+}
+
+/* line 878, ../../app/assets/stylesheets/web.css.scss */
+.requiredhelp span {
+ color: #737373;
+}
+
+/* line 879, ../../app/assets/stylesheets/web.css.scss */
+span.required, abbr[title=required] {
+ color: #c82222;
+}
+
+/* line 881, ../../app/assets/stylesheets/web.css.scss */
+.ui-dialog-titlebar {
+ background-color: #4A83BD;
+ height: 40px;
+ line-height: 40px;
+ padding: 0 20px;
+ -moz-border-radius-topleft: 17px !important;
+ -webkit-border-top-left-radius: 17px !important;
+ border-top-left-radius: 17px !important;
+ -moz-border-radius-topright: 17px !important;
+ -webkit-border-top-right-radius: 17px !important;
+ border-top-right-radius: 17px !important;
+}
+
+/* line 882, ../../app/assets/stylesheets/web.css.scss */
+.ui-dialog-title {
+ font-weight: bold;
+ color: white;
+ text-shadow: 0 -2px 0 rgba(0, 0, 0, 0.3);
+ font-size: 20px;
+ letter-spacing: 1px;
+}
+
+/* line 883, ../../app/assets/stylesheets/web.css.scss */
+.ui-dialog-titlebar-close .close {
+ color: white;
+ filter: alpha(opacity=100);
+ opacity: 1;
+ text-shadow: 0 0 0 rgba(0, 0, 0, 0);
+ position: relative;
+ top: 8px;
+ outline: 0;
+}
+/* line 884, ../../app/assets/stylesheets/web.css.scss */
+.ui-dialog-titlebar-close .close:hover {
+ filter: alpha(opacity=80);
+ opacity: 0.7;
+}
+
+/* line 886, ../../app/assets/stylesheets/web.css.scss */
+.ui-dialog-content {
+ background-color: #f3f6f7;
+ -moz-border-radius-bottomleft: 17px;
+ -webkit-border-bottom-left-radius: 17px;
+ border-bottom-left-radius: 17px;
+ -moz-border-radius-bottomright: 17px;
+ -webkit-border-bottom-right-radius: 17px;
+ border-bottom-right-radius: 17px;
+}
+/* line 887, ../../app/assets/stylesheets/web.css.scss */
+.ui-dialog-content .controls-wrapper {
+ padding: 0;
+}
+/* line 888, ../../app/assets/stylesheets/web.css.scss */
+.ui-dialog-content .controls-wrapper > ul {
+ padding: 0;
+}
+
+/* line 891, ../../app/assets/stylesheets/web.css.scss */
+.ui-dialog {
+ background-color: #f3f6f7;
+ background: transparent;
+ overflow: hidden;
+ position: absolute;
+ border: 3px solid #666666;
+ width: auto !important;
+ padding: 0;
+ -webkit-box-shadow: #555555 0 0 40px;
+ -moz-box-shadow: #555555 0 0 40px;
+ box-shadow: #555555 0 0 40px;
+ -webkit-border-radius: 20px 20px;
+ -moz-border-radius: 20px / 20px;
+ border-radius: 20px / 20px;
+ max-width: 954px;
+}
+/* line 892, ../../app/assets/stylesheets/web.css.scss */
+.ui-dialog .dialog-size-default {
+ max-width: 960px;
+ min-width: 500px;
+ width: auto;
+}
+/* line 893, ../../app/assets/stylesheets/web.css.scss */
+.ui-dialog .dialog-size-fluid {
+ max-width: 960px;
+ min-width: auto;
+ width: auto;
+}
+/* line 894, ../../app/assets/stylesheets/web.css.scss */
+.ui-dialog .dialog-size-small {
+ max-width: 420px;
+ min-width: 420px;
+}
+/* line 895, ../../app/assets/stylesheets/web.css.scss */
+.ui-dialog .dialog-size-medium {
+ max-width: 550px;
+ min-width: 550px;
+}
+/* line 896, ../../app/assets/stylesheets/web.css.scss */
+.ui-dialog .dialog-size-large {
+ max-width: 700px;
+ min-width: 700px;
+}
+/* line 897, ../../app/assets/stylesheets/web.css.scss */
+.ui-dialog .dialog-size-xlarge {
+ max-width: 800px;
+ min-width: 800px;
+}
+/* line 898, ../../app/assets/stylesheets/web.css.scss */
+.ui-dialog .dialog-size-max {
+ max-width: 960px;
+ min-width: 960px;
+}
+/* line 899, ../../app/assets/stylesheets/web.css.scss */
+.ui-dialog .content-wrapper {
+ padding: 20px;
+ overflow: auto;
+}
+/* line 900, ../../app/assets/stylesheets/web.css.scss */
+.ui-dialog .content-wrapper .controls {
+ line-height: 27px;
+}
+/* line 902, ../../app/assets/stylesheets/web.css.scss */
+.ui-dialog .form-footer {
+ margin: 10px 0 0;
+ -moz-border-radius-bottomleft: 20px;
+ -webkit-border-bottom-left-radius: 20px;
+ border-bottom-left-radius: 20px;
+ -moz-border-radius-bottomright: 20px;
+ -webkit-border-bottom-right-radius: 20px;
+ border-bottom-right-radius: 20px;
+ border-top: 1px solid #cccccc;
+ background-color: #E9E9E9;
+ display: hidden;
+}
+/* line 903, ../../app/assets/stylesheets/web.css.scss */
+.ui-dialog .form-footer div {
+ border-top: 1px solid white;
+ padding: 15px;
+ overflow: hidden;
+}
+/* line 904, ../../app/assets/stylesheets/web.css.scss */
+.ui-dialog .form-footer span {
+ margin: 0 5px;
+}
+/* line 905, ../../app/assets/stylesheets/web.css.scss */
+.ui-dialog .form-footer button {
+ margin-left: 5px;
+}
+/* line 907, ../../app/assets/stylesheets/web.css.scss */
+.ui-dialog .alert {
+ margin: 10px 0;
+}
+
+/* line 911, ../../app/assets/stylesheets/web.css.scss */
+#dialog form,
+#dialog_two form,
+#modal form {
+ margin-bottom: 0;
+}
+
+/* line 912, ../../app/assets/stylesheets/web.css.scss */
+.ui-widget-overlay {
+ background: url(/assets/rgbapng/3333337f.png);
+ background: rgba(51, 51, 51, 0.5);
+ position: absolute;
+ left: 0;
+ top: 0;
+}
+
+/* line 913, ../../app/assets/stylesheets/web.css.scss */
+.ui-helper-clearfix {
+ display: block;
+}
+/* line 914, ../../app/assets/stylesheets/web.css.scss */
+.ui-helper-clearfix:after {
+ clear: both;
+ content: ".";
+ display: block;
+ height: 0;
+ visibility: hidden;
+}
+
+/* line 917, ../../app/assets/stylesheets/web.css.scss */
+.loading-container.loading {
+ background: url(/assets/ajax.gif) transparent no-repeat 50% 50%;
+}
+
+/* line 918, ../../app/assets/stylesheets/web.css.scss */
+.data_content_wrapper {
+ position: relative;
+ overflow: hidden;
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
+ opacity: 1;
+}
+/* line 919, ../../app/assets/stylesheets/web.css.scss */
+.data_content_wrapper.show-overflow {
+ overflow: visible;
+}
+/* line 920, ../../app/assets/stylesheets/web.css.scss */
+.data_content_wrapper .content_loader {
+ position: absolute;
+ top: 30px;
+ background-color: #fdfde0;
+ display: none;
+ color: black;
+}
+
+/* line 924, ../../app/assets/stylesheets/web.css.scss */
+.fetching_results.data_content_wrapper,
+.fetching_results .data_content_wrapper {
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
+ opacity: 0.5;
+}
+
+/* line 926, ../../app/assets/stylesheets/web.css.scss */
+.opacity-wrapper {
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
+ opacity: 0.5;
+}
+
+/* line 927, ../../app/assets/stylesheets/web.css.scss */
+#download_report_container {
+ overflow: hidden;
+}
+/* line 929, ../../app/assets/stylesheets/web.css.scss */
+#download_report_container span.loading-container {
+ display: none;
+ margin-left: 10px;
+ font-weight: normal;
+ top: 3px;
+ position: relative;
+ padding: 5px 25px;
+}
+/* line 930, ../../app/assets/stylesheets/web.css.scss */
+#download_report_container span.loading {
+ background-position: 0% 50%;
+}
+
+/* line 933, ../../app/assets/stylesheets/web.css.scss */
+.fixed-top {
+ position: fixed !important;
+ top: 0 !important;
+}
+
+/* line 934, ../../app/assets/stylesheets/web.css.scss */
+.highlight-overlay {
+ position: absolute;
+ z-index: 10000;
+ opacity: .7;
+}
+
+/* line 935, ../../app/assets/stylesheets/web.css.scss */
+.ui-sortable-helper {
+ -webkit-box-shadow: rgba(0, 0, 0, 0.3) 0 3px 3px, rgba(0, 0, 0, 0.3) 0 -1px 3px;
+ -moz-box-shadow: rgba(0, 0, 0, 0.3) 0 3px 3px, rgba(0, 0, 0, 0.3) 0 -1px 3px;
+ box-shadow: rgba(0, 0, 0, 0.3) 0 3px 3px, rgba(0, 0, 0, 0.3) 0 -1px 3px;
+ background-color: #FFF;
+}
+
+/* line 936, ../../app/assets/stylesheets/web.css.scss */
+.ui-sortable-placeholder-highlight {
+ background-color: #fdfde0 !important;
+ border: 2px dashed #f8e0ba !important;
+}
+
+/* line 937, ../../app/assets/stylesheets/web.css.scss */
+.spinner-loading {
+ background: url(/assets/ajax.gif) transparent no-repeat 50% 50%;
+}
+
+/* line 938, ../../app/assets/stylesheets/web.css.scss */
+.spinner {
+ width: 100%;
+ height: 100%;
+ position: absolute;
+ background: url(/assets/ajax.gif) transparent no-repeat 50% 50%;
+}
+
+/* line 939, ../../app/assets/stylesheets/web.css.scss */
+.opacity-loader {
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
+ opacity: 0.5;
+}
+
+/* line 940, ../../app/assets/stylesheets/web.css.scss */
+#article-region .spinner {
+ background-position: 50% 25%;
+}
+
+/* line 942, ../../app/assets/stylesheets/web.css.scss */
+ul.nav li a {
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ user-select: none;
+ outline: 0;
+}
+
+/* line 3, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-widget {
+ background-color: white;
+}
+
+/* line 44, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-widget,
+.k-input,
+.k-textbox,
+.k-group,
+.k-content,
+.k-header,
+.k-editable-area,
+.k-separator,
+.k-colorpicker .k-arrow-down,
+.k-autocomplete,
+.k-dropdown-wrap,
+.k-toolbar,
+.k-group-footer td,
+.k-grid-footer,
+.k-footer-template td,
+.k-state-default,
+.k-state-default .k-select,
+.k-state-disabled,
+.k-grid-header-wrap,
+.k-grid-header,
+.k-grid td,
+.k-grid-footer-wrap,
+.k-pager-wrap,
+.k-grouping-header,
+.k-grouping-header .k-group-indicator,
+.k-dropdown-wrap,
+.k-autocomplete,
+.k-panelbar > .k-item > .k-link,
+.k-panel > .k-item > .k-link,
+.k-panelbar .k-panel,
+.k-panelbar .k-content,
+.k-calendar th,
+.k-slider-track,
+.k-splitbar,
+.k-dropzone-active,
+.k-upload-files,
+.k-tiles,
+.k-toolbar,
+.k-dropdown-wrap,
+.k-tooltip,
+.k-progress {
+ border-color: rgba(98, 140, 183, 0.8);
+}
+
+/* line 59, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-group,
+.k-toolbar,
+.k-grouping-header,
+.k-pager-wrap,
+.k-group-footer td,
+.k-grid-footer,
+.k-footer-template td,
+.k-widget .k-status,
+.k-grouping-row td,
+td.k-group-cell,
+.k-calendar th,
+.k-dropzone-hovered,
+.k-upload-files {
+ background-color: rgba(81, 135, 190, 0.2);
+}
+
+/* line 62, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-list-container {
+ border-color: #bebebe;
+ background-color: white;
+ min-width: 220px;
+ -webkit-border-radius: 0 5px 5px 5px;
+ -moz-border-radius: 0 5px 5px 5px;
+ -ms-border-radius: 0 5px 5px 5px;
+ -o-border-radius: 0 5px 5px 5px;
+ border-radius: 0 5px 5px 5px;
+}
+
+/* line 72, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-content,
+.k-editable-area,
+.k-panelbar > li.k-item,
+.k-panel > li.k-item,
+.k-tiles {
+ background-color: white;
+ -webkit-border-radius: 0;
+ -moz-border-radius: 0;
+ -ms-border-radius: 0;
+ -o-border-radius: 0;
+ border-radius: 0;
+ outline: 0 !important;
+}
+
+/* line 78, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-alt,
+.k-separator {
+ background-color: #f8f8f8;
+}
+
+/* line 94, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-widget .k-dropdown-wrap,
+.k-widget .k-picker-wrap,
+.k-widget .k-numeric-wrap,
+.k-autocomplete.k-header,
+.k-autocomplete.k-state-focused,
+div.k-dropdown-wrap.k-state-active,
+.k-dropdown-wrap.k-state-focused,
+.k-dropdown-wrap.k-state-focused:hover,
+div.k-picker-wrap.k-state-active,
+.k-picker-wrap.k-state-focused,
+.k-picker-wrap.k-state-focused:hover,
+span.k-numeric-wrap.k-state-active,
+.k-numeric-wrap.k-state-focused,
+.k-numeric-wrap.k-state-focused:hover {
+ border-color: #bebebe;
+ background-color: white;
+}
+
+/* line 103, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-autocomplete .k-input,
+.k-dropdown-wrap .k-input,
+.k-autocomplete.k-state-focused .k-input,
+.k-dropdown-wrap.k-state-focused .k-input,
+.k-picker-wrap.k-state-focused .k-input,
+.k-numeric-wrap.k-state-focused .k-input {
+ border-color: #bebebe;
+}
+
+/* line 107, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-input,
+.k-textbox {
+ background-color: white;
+ color: #4b5566;
+}
+
+/* line 114, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-widget,
+.k-popup,
+.k-content,
+.k-dropdown .k-input {
+ color: #4b5566;
+}
+
+/* line 118, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-link:link,
+.k-link:visited {
+ color: #3d70a5;
+}
+
+/* line 121, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-header {
+ color: #4b5566;
+}
+
+/* line 139, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-header,
+.k-grid-header,
+.k-toolbar,
+.k-dropdown-wrap,
+.k-picker-wrap,
+.k-grouping-header,
+.k-tooltip,
+.k-pager-wrap,
+.k-button,
+.k-draghandle,
+.k-tile,
+.k-autocomplete,
+.k-state-hover,
+.k-state-selected,
+.k-state-focused,
+.k-tabstrip-items .k-item {
+ color: #363636;
+}
+
+/* line 149, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-header,
+.k-grid-header,
+.k-toolbar,
+.k-grouping-header,
+.k-tooltip,
+.k-pager-wrap,
+.k-button,
+.k-draghandle {
+ background-color: #f3f6f7;
+}
+
+/* line 153, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-icon {
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
+ opacity: 0.8;
+}
+
+/* line 159, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-icon:hover,
+.k-state-hover .k-icon,
+.k-state-selected .k-icon,
+.k-state-focused .k-icon {
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
+ opacity: 1;
+}
+
+/* line 168, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-icon,
+.k-tool-icon,
+.k-grouping-dropclue,
+.k-drop-hint,
+.k-callout,
+.k-progress,
+.k-progress-status {
+ background-image: url("http://cdn.kendostatic.com/2012.1.322/styles/Metro/sprite.png");
+}
+
+/* line 171, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-loading {
+ background-image: url("http://cdn.kendostatic.com/2012.1.322/styles/Metro/loading.gif");
+}
+
+/* line 174, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-loading-image {
+ background-image: url("http://cdn.kendostatic.com/2012.1.322/styles/Metro/loading-image.gif");
+}
+
+/* line 177, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-loading-color {
+ background-color: #f8f8f8;
+}
+
+/* line 180, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-button {
+ color: #4b5566;
+}
+
+/* line 186, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-button,
+.k-button.k-state-disabled:hover,
+.k-state-disabled .k-button:hover,
+.k-draghandle {
+ border-color: #dadada;
+ background-color: #f1f1f1;
+}
+
+/* line 191, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-button:hover,
+.k-draghandle:hover {
+ border-color: #e6e6e6;
+ background-color: #e3e3e3;
+}
+
+/* line 198, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-state-active,
+.k-state-active:hover,
+.k-active-filter {
+ background-color: white;
+ border-color: #4A83BD;
+ color: #363636;
+}
+
+/* line 203, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-state-focused {
+ color: #363636;
+ background-color: #e3e3e3;
+ border-color: #e6e6e6;
+}
+
+/* line 216, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-state-selected,
+.k-list > .k-state-selected,
+.k-list > .k-state-focused,
+.k-panelbar > .k-state-selected,
+.k-panel > .k-state-selected,
+.k-button:active,
+.k-ghost-splitbar-vertical,
+.k-ghost-splitbar-horizontal,
+.k-draghandle.k-state-selected:hover {
+ color: white;
+ background-color: #4A83BD;
+ border-color: #4A83BD;
+}
+
+/* line 221, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-state-selected.k-state-focused {
+ background-color: #3f71a3;
+}
+
+/* line 224, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-state-selected > .k-link {
+ color: white;
+}
+
+/* line 231, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-state-hover,
+.k-state-hover:hover,
+.k-splitbar-horizontal-hover:hover,
+.k-splitbar-vertical-hover:hover,
+.k-marquee {
+ border-color: rgba(98, 140, 183, 0.8);
+ box-shadow: 0 1px 1px rgba(0, 0, 0, 0.024) inset, 0 0 8px rgba(82, 168, 236, 0.25);
+ -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.024) inset, 0 0 8px rgba(82, 168, 236, 0.25);
+ -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.024) inset, 0 0 8px rgba(82, 168, 236, 0.25);
+ outline: 0;
+ outline: thin dotted \9;
+}
+
+/* line 235, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-list > .k-state-hover {
+ background-color: #eee;
+ border-color: #eee;
+ -webkit-box-shadow: none;
+ -moz-box-shadow: none;
+ box-shadow: none;
+}
+
+/* line 240, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-state-hover > .k-link,
+.k-other-month.k-state-hover .k-link {
+ color: #363636;
+}
+
+/* line 246, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-autocomplete.k-state-hover,
+.k-picker-wrap.k-state-hover,
+.k-numeric-wrap.k-state-hover,
+.k-dropdown-wrap.k-state-hover {
+ background-color: white;
+ border-color: rgba(98, 140, 183, 0.8);
+ box-shadow: 0 1px 1px rgba(0, 0, 0, 0.024) inset, 0 0 8px rgba(82, 168, 236, 0.25);
+ -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.024) inset, 0 0 8px rgba(82, 168, 236, 0.25);
+ -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.024) inset, 0 0 8px rgba(82, 168, 236, 0.25);
+ outline: 0;
+ outline: thin dotted \9;
+}
+
+/* line 251, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-calendar .k-state-selected.k-state-focused > .k-link {
+ background-color: transparent;
+}
+
+/* line 254, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-dropdown .k-state-hover .k-input {
+ color: #363636;
+}
+
+/* line 257, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-dropdown .k-state-focused .k-input {
+ color: #4b5566;
+}
+
+/* line 260, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-state-error {
+ border-color: #e20000;
+ background-color: #f1d9d9;
+ color: #e20000;
+}
+
+/* line 265, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-state-disabled {
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
+ opacity: 0.7;
+}
+
+/* line 274, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-state-disabled,
+.k-state-disabled .k-link,
+.k-state-disabled .k-button,
+.k-other-month .k-link,
+.k-dropzone em,
+.k-tile-empty strong,
+.k-slider .k-draghandle {
+ color: #dadada;
+}
+
+/* line 278, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-slider-track {
+ background-color: #f3f6f7;
+}
+
+/* line 281, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-slider-selection {
+ background-color: #4A83BD;
+}
+
+/* line 284, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-slider-horizontal .k-tick {
+ background-image: url("http://cdn.kendostatic.com/2012.1.322/styles/Metro/slider-h.gif");
+}
+
+/* line 287, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-slider-vertical .k-tick {
+ background-image: url("http://cdn.kendostatic.com/2012.1.322/styles/Metro/slider-v.gif");
+}
+
+/* line 291, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-tooltip {
+ border-color: #4A83BD;
+ background-color: white;
+ color: #4b5566;
+}
+
+/* line 296, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-tooltip-validation {
+ border-color: #ffe68e;
+ background-color: #ffe68e;
+ color: #4b5566;
+}
+
+/* line 302, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-splitbar {
+ background-color: #dadada;
+}
+
+/* line 306, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-restricted-size-vertical,
+.k-restricted-size-horizontal {
+ background-color: #e20000;
+}
+
+/* line 310, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-progress-status {
+ border-color: #e6e6e6 transparent;
+}
+
+/* line 314, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-tile {
+ border-color: white;
+}
+
+/* line 318, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-textbox:hover,
+.k-tiles li.k-state-hover {
+ border-color: rgba(98, 140, 183, 0.8);
+}
+
+/* line 321, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-tiles li.k-state-selected {
+ border-color: #4A83BD;
+}
+
+/* line 324, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-tile .k-folder {
+ background-image: url("http://cdn.kendostatic.com/2012.1.322/styles/Metro/imagebrowser.png");
+}
+
+/* line 337, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-popup,
+.k-menu .k-group,
+.k-grid .k-filter-options,
+.k-time-popup,
+.k-datepicker-calendar,
+.k-autocomplete.k-state-border-down,
+.k-autocomplete.k-state-border-up,
+.k-dropdown-wrap.k-state-active,
+.k-picker-wrap.k-state-active,
+.k-imagebrowser .k-image {
+ -webkit-box-shadow: #bbbbbb 0 2px 6px 0;
+ -moz-box-shadow: #bbbbbb 0 2px 6px 0;
+ box-shadow: #bbbbbb 0 2px 6px 0;
+}
+
+/* line 340, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-window {
+ border-color: #c4c4c4;
+ -webkit-box-shadow: #c4c4c4 1px 1px 7px 1px;
+ -moz-box-shadow: #c4c4c4 1px 1px 7px 1px;
+ box-shadow: #c4c4c4 1px 1px 7px 1px;
+}
+
+/* line 346, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-autocomplete .k-input,
+.k-combobox .k-input,
+.k-picker-wrap .k-input {
+ -webkit-box-shadow: #c4c4c4 0 0 1px 1px inset;
+ -moz-box-shadow: #c4c4c4 0 0 1px 1px inset;
+ box-shadow: #c4c4c4 0 0 1px 1px inset;
+}
+
+/* line 376, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-button,
+.k-textbox,
+.k-drag-clue,
+.k-touch-scrollbar,
+.k-window,
+.k-window-titleless .k-window-content,
+.k-window-action,
+.k-pager .k-state-active,
+.k-pager .k-state-hover,
+.k-grid .k-filter-options,
+.k-grouping-header .k-group-indicator,
+.k-autocomplete,
+.k-dropdown-wrap,
+.k-picker-wrap,
+.k-numeric-wrap,
+.k-list-container,
+.k-calendar-container,
+.k-calendar td,
+.k-calendar .k-link,
+.k-treeview .k-state-hover,
+.k-treeview .k-state-selected,
+.k-editor-button .k-state-hover,
+.k-editor-button .k-state-active,
+.k-tooltip,
+.k-tile,
+.k-slider-track,
+.k-slider-selection {
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+}
+
+/* line 386, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-calendar-container.k-state-border-up,
+.k-list-container.k-state-border-up,
+.k-autocomplete.k-state-border-up,
+.k-dropdown-wrap.k-state-border-up,
+.k-picker-wrap.k-state-border-up,
+.k-numeric-wrap.k-state-border-up,
+.k-window-content,
+.k-filter-menu {
+ -webkit-border-radius: 0 0 5px 5px;
+ -moz-border-radius: 0 0 5px 5px;
+ -ms-border-radius: 0 0 5px 5px;
+ -o-border-radius: 0 0 5px 5px;
+ border-radius: 0 0 5px 5px;
+}
+
+/* line 398, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-window-titlebar,
+.k-tabstrip-items .k-item,
+.k-panelbar .k-tabstrip-items .k-item,
+.k-tabstrip-items .k-link,
+.k-calendar-container.k-state-border-down,
+.k-list-container.k-state-border-down,
+.k-autocomplete.k-state-border-down,
+.k-dropdown-wrap.k-state-border-down,
+.k-picker-wrap.k-state-border-down,
+.k-numeric-wrap.k-state-border-down {
+ -webkit-border-radius: 5px 5px 0 0;
+ -moz-border-radius: 5px 5px 0 0;
+ -ms-border-radius: 5px 5px 0 0;
+ -o-border-radius: 5px 5px 0 0;
+ border-radius: 5px 5px 0 0;
+}
+
+/* line 406, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-dropdown-wrap .k-select,
+.k-picker-wrap .k-select,
+.k-numeric-wrap .k-select,
+.k-datetimepicker .k-select + .k-select,
+.k-animation-container .k-calendar-container,
+.k-list-container.k-state-border-right {
+ -webkit-border-radius: 0 5px 5px 0;
+ -moz-border-radius: 0 5px 5px 0;
+ -ms-border-radius: 0 5px 5px 0;
+ -o-border-radius: 0 5px 5px 0;
+ border-radius: 0 5px 5px 0;
+}
+
+/* line 416, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-autocomplete .k-input,
+.k-dropdown-wrap .k-input,
+.k-picker-wrap .k-input,
+.k-numeric-wrap .k-input,
+.k-numeric-wrap .k-link,
+.k-colorpicker .k-selected-color,
+.k-progress,
+.k-progress-status {
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+ background-color: white;
+}
+
+/* line 424, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-list .k-state-hover,
+.k-list .k-state-focused,
+.k-list .k-state-selected,
+.k-dropzone,
+.k-upload-files {
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+}
+
+/* line 428, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-slider .k-button,
+.k-grid .k-slider .k-button {
+ -webkit-border-radius: 13px;
+ -moz-border-radius: 13px;
+ -ms-border-radius: 13px;
+ -o-border-radius: 13px;
+ border-radius: 13px;
+}
+
+/* line 431, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-draghandle {
+ -webkit-border-radius: 7px;
+ -moz-border-radius: 7px;
+ -ms-border-radius: 7px;
+ -o-border-radius: 7px;
+ border-radius: 7px;
+}
+
+/* line 436, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-list > li:first-child i {
+ display: none;
+}
+
+/* line 439, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-autocomplete, .k-combobox, .k-datepicker, .k-timepicker, .k-datetimepicker, .k-numerictextbox, .k-dropdown, .k-selectbox {
+ width: 220px;
+ display: inline-block !important;
+ outline: 0 !important;
+}
+
+/* line 441, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.UsersDispatch .k-autocomplete, .UsersDispatch .k-combobox, .UsersDispatch .k-datepicker, .UsersDispatch .k-timepicker, .UsersDispatch .k-datetimepicker, .UsersDispatch .k-numerictextbox, .UsersDispatch .k-selectbox {
+ display: inline-block !important;
+ outline: 0 !important;
+}
+
+/* line 444, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.UsersDispatch .k-dropdown, .UsersDispatch .k-dropdown-wrap {
+ width: 157px !important;
+ display: inline-block !important;
+ outline: 0 !important;
+}
+
+/* line 446, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-autocomplete:hover, .k-combobox:hover, .k-datepicker:hover, .k-timepicker:hover, .k-datetimepicker:hover, .k-numerictextbox:hover, .k-dropdown:hover, .k-selectbox:hover, .k-select:hover, .k-datepicker:hover, .k-datepicker input:hover {
+ outline: 0 !important;
+}
+
+/* line 447, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-dropdown-wrap {
+ cursor: pointer !important;
+}
+
+/* line 448, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-state-selected.k-state-focused {
+ background-color: #3f71a3 !important;
+}
+
+/* line 450, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-calendar-container.k-state-border-up,
+.k-calendar-container.k-state-border-down {
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+}
+
+/* line 451, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-calendar {
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+}
+/* line 452, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-calendar thead {
+ color: #555;
+}
+/* line 453, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-calendar .k-weekend {
+ background-color: #f8f8f8;
+ -webkit-border-radius: 0;
+ -moz-border-radius: 0;
+ -ms-border-radius: 0;
+ -o-border-radius: 0;
+ border-radius: 0;
+}
+/* line 454, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-calendar .k-weekend:hover {
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+}
+/* line 457, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-calendar tr:last-child td:first-child {
+ -webkit-border-radius: 0 0 5px 5px;
+ -moz-border-radius: 0 0 5px 5px;
+ -ms-border-radius: 0 0 5px 5px;
+ -o-border-radius: 0 0 5px 5px;
+ border-radius: 0 0 5px 5px;
+}
+/* line 458, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-calendar tr:last-child td:last-child {
+ -webkit-border-radius: 0 0 5px 5px;
+ -moz-border-radius: 0 0 5px 5px;
+ -ms-border-radius: 0 0 5px 5px;
+ -o-border-radius: 0 0 5px 5px;
+ border-radius: 0 0 5px 5px;
+}
+/* line 460, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-calendar th {
+ border-bottom: none !important;
+}
+/* line 461, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-calendar td:hover {
+ -webkit-box-shadow: rgba(0, 0, 0, 0) 0 0 0 inset;
+ -moz-box-shadow: rgba(0, 0, 0, 0) 0 0 0 inset;
+ box-shadow: rgba(0, 0, 0, 0) 0 0 0 inset;
+ -webkit-box-shadow: rgba(0, 0, 0, 0) 0 0 0;
+ -moz-box-shadow: rgba(0, 0, 0, 0) 0 0 0;
+ box-shadow: rgba(0, 0, 0, 0) 0 0 0;
+ color: #555;
+ background-color: #e1e1e1;
+ border-color: #e1e1e1;
+}
+
+/* line 463, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-icon-calendar {
+ position: relative;
+ top: -1px;
+}
+
+/* line 466, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.input-prepend .k-button, .input-prepend .k-textbox, .input-prepend .k-drag-clue, .input-prepend .k-touch-scrollbar, .input-prepend .k-window, .input-prepend .k-window-titleless .k-window-content, .input-prepend .k-window-action, .input-prepend .k-pager .k-state-active, .input-prepend .k-pager .k-state-hover, .input-prepend .k-grid .k-filter-options, .input-prepend .k-grouping-header .k-group-indicator, .input-prepend .k-autocomplete, .input-prepend .k-dropdown-wrap, .input-prepend .k-picker-wrap, .input-prepend .k-numeric-wrap, .input-prepend .k-list-container, .input-prepend .k-calendar-container, .input-prepend .k-calendar td, .input-prepend .k-calendar .k-link, .input-prepend .k-treeview .k-state-hover, .input-prepend .k-treeview .k-state-selected, .input-prepend .k-editor-button .k-state-hover, .input-prepend .k-editor-button .k-state-active, .input-prepend .k-tooltip, .input-prepend .k-tile, .input-prepend .k-slider-track, .input-prepend .k-slider-selection {
+ -webkit-border-radius: 0 0 5px 5px;
+ -moz-border-radius: 0 0 5px 5px;
+ -ms-border-radius: 0 0 5px 5px;
+ -o-border-radius: 0 0 5px 5px;
+ border-radius: 0 0 5px 5px;
+ border-left: none;
+}
+
+/* line 468, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-list > .k-state-selected.k-state-focused > span {
+ color: white !important;
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.35);
+}
+
+/* line 469, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-autocomplete {
+ -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0 2px 3px inset;
+ -moz-box-shadow: rgba(0, 0, 0, 0.1) 0 2px 3px inset;
+ box-shadow: rgba(0, 0, 0, 0.1) 0 2px 3px inset;
+}
+/* line 470, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-autocomplete .k-input {
+ -webkit-box-shadow: rgba(0, 0, 0, 0) 0 0 0 inset;
+ -moz-box-shadow: rgba(0, 0, 0, 0) 0 0 0 inset;
+ box-shadow: rgba(0, 0, 0, 0) 0 0 0 inset;
+ -webkit-box-shadow: rgba(0, 0, 0, 0) 0 0 0;
+ -moz-box-shadow: rgba(0, 0, 0, 0) 0 0 0;
+ box-shadow: rgba(0, 0, 0, 0) 0 0 0;
+}
+
+/* line 472, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-picker-wrap {
+ -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0 2px 3px inset;
+ -moz-box-shadow: rgba(0, 0, 0, 0.1) 0 2px 3px inset;
+ box-shadow: rgba(0, 0, 0, 0.1) 0 2px 3px inset;
+}
+/* line 473, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-picker-wrap .k-input {
+ -webkit-box-shadow: rgba(0, 0, 0, 0) 0 0 0 inset;
+ -moz-box-shadow: rgba(0, 0, 0, 0) 0 0 0 inset;
+ box-shadow: rgba(0, 0, 0, 0) 0 0 0 inset;
+ -webkit-box-shadow: rgba(0, 0, 0, 0) 0 0 0;
+ -moz-box-shadow: rgba(0, 0, 0, 0) 0 0 0;
+ box-shadow: rgba(0, 0, 0, 0) 0 0 0;
+}
+
+/* line 475, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+a.k-link {
+ font-weight: normal !important;
+}
+
+/* line 2, ../../app/assets/stylesheets/apps/header.css.scss */
+#header {
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+ background-color: #4f7aa5;
+ background-image: -moz-linear-gradient(top, #4e7ca9, #52799f);
+ background-image: -ms-linear-gradient(top, #4e7ca9, #52799f);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#4e7ca9), to(#52799f));
+ background-image: -webkit-linear-gradient(top, #4e7ca9, #52799f);
+ background-image: -o-linear-gradient(top, #4e7ca9, #52799f);
+ background-image: linear-gradient(top, #4e7ca9, #52799f);
+ background-repeat: repeat-x;
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4e7ca9', endColorstr='#52799f', GradientType=0);
+ background-color: #4f7ba6;
+ background-image: -moz-linear-gradient(top, #4e7ca9, #4e7ca9 25%, #52799f 50%, #52799f 75%);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#4e7ca9), color-stop(25%, #4e7ca9), color-stop(50%, #52799f), to(75%, #52799f));
+ background-image: -webkit-linear-gradient(top, #4e7ca9, #4e7ca9 25%, #52799f 50%, #52799f 75%);
+ background-image: -o-linear-gradient(top, #4e7ca9, #4e7ca9 25%, #52799f 50%, #52799f 75%);
+ background-image: linear-gradient(to bottom, #4e7ca9, #4e7ca9 25%, #52799f 50%, #52799f 75%);
+ background-repeat: no-repeat;
+ border-color: #4e7ca9;
+ border-color: #4e7ca9 #4e7ca9 #365675;
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) fadein(rgba(0, 0, 0, 0.1), 15%);
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4e7ca9', endColorstr='#52799f', GradientType=0);
+ -webkit-border-radius: 0;
+ -moz-border-radius: 0;
+ -ms-border-radius: 0;
+ -o-border-radius: 0;
+ border-radius: 0;
+ border-bottom: 1px solid #447bb3;
+ float: left;
+ width: 100%;
+}
+/* line 4, ../../app/assets/stylesheets/apps/header.css.scss */
+#header #links-region .nav,
+#header #search-region .nav {
+ overflow: visible;
+ margin-bottom: 0;
+ margin-left: 20px;
+}
+/* line 5, ../../app/assets/stylesheets/apps/header.css.scss */
+#header #links-region .nav > li,
+#header #search-region .nav > li {
+ float: left;
+ margin: 6px 5px 6px 0;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+ -webkit-box-shadow: #496886 0 1px 0;
+ -moz-box-shadow: #496886 0 1px 0;
+ box-shadow: #496886 0 1px 0;
+}
+/* line 6, ../../app/assets/stylesheets/apps/header.css.scss */
+#header #links-region .nav > li > a,
+#header #search-region .nav > li > a {
+ color: white;
+ font-weight: 500;
+ padding: 3px 10px;
+ background: url(/assets/rgbapng/ffffff4d.png);
+ background: rgba(255, 255, 255, 0.3);
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+ border: 1px solid #3f78af;
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.35);
+ -webkit-box-shadow: #9bbbdc 0 1px 0 inset;
+ -moz-box-shadow: #9bbbdc 0 1px 0 inset;
+ box-shadow: #9bbbdc 0 1px 0 inset;
+}
+/* line 7, ../../app/assets/stylesheets/apps/header.css.scss */
+#header #links-region .nav > li > a:hover,
+#header #search-region .nav > li > a:hover {
+ color: white;
+ background: url(/assets/rgbapng/ffffff33.png);
+ background: rgba(255, 255, 255, 0.2);
+}
+/* line 9, ../../app/assets/stylesheets/apps/header.css.scss */
+#header #links-region .nav > li.active,
+#header #search-region .nav > li.active {
+ background-color: #3b6893;
+ -webkit-box-shadow: #7092b4 0 1px 0;
+ -moz-box-shadow: #7092b4 0 1px 0;
+ box-shadow: #7092b4 0 1px 0;
+ outline: 0 !important;
+}
+/* line 10, ../../app/assets/stylesheets/apps/header.css.scss */
+#header #links-region .nav > li.active > a,
+#header #search-region .nav > li.active > a {
+ background-color: #3b6893;
+ border: 1px solid #41688e;
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.5);
+ -webkit-box-shadow: #2f5070 0 1px 0 inset;
+ -moz-box-shadow: #2f5070 0 1px 0 inset;
+ box-shadow: #2f5070 0 1px 0 inset;
+}
+/* line 11, ../../app/assets/stylesheets/apps/header.css.scss */
+#header #links-region .nav > li.active > a:hover,
+#header #search-region .nav > li.active > a:hover {
+ background-color: #3b6893;
+}
+/* line 16, ../../app/assets/stylesheets/apps/header.css.scss */
+#header #links-region .nav > li.btn-group > a:first-child,
+#header #search-region .nav > li.btn-group > a:first-child {
+ -webkit-border-radius: 5px 0 0 5px;
+ -moz-border-radius: 5px 0 0 5px;
+ -ms-border-radius: 5px 0 0 5px;
+ -o-border-radius: 5px 0 0 5px;
+ border-radius: 5px 0 0 5px;
+}
+/* line 17, ../../app/assets/stylesheets/apps/header.css.scss */
+#header #links-region .nav > li.btn-group > a.dropdown-toggle,
+#header #search-region .nav > li.btn-group > a.dropdown-toggle {
+ -webkit-border-radius: 0 5px 5px 0;
+ -moz-border-radius: 0 5px 5px 0;
+ -ms-border-radius: 0 5px 5px 0;
+ -o-border-radius: 0 5px 5px 0;
+ border-radius: 0 5px 5px 0;
+ padding: 3px 5px;
+}
+/* line 18, ../../app/assets/stylesheets/apps/header.css.scss */
+#header #links-region .nav > li.btn-group > a.dropdown-toggle .caret,
+#header #search-region .nav > li.btn-group > a.dropdown-toggle .caret {
+ opacity: 1;
+ border-bottom-color: white !important;
+ border-top-color: white !important;
+ position: relative;
+ left: -2px;
+}
+/* line 21, ../../app/assets/stylesheets/apps/header.css.scss */
+#header #links-region .nav > li.btn-group.open .dropdown-menu,
+#header #search-region .nav > li.btn-group.open .dropdown-menu {
+ top: 24px;
+ left: auto;
+ padding: 0;
+}
+/* line 24, ../../app/assets/stylesheets/apps/header.css.scss */
+#header #links-region .nav .divider-vertical,
+#header #search-region .nav .divider-vertical {
+ background-color: #f4f4f5;
+ border-right: 1px solid #d7d7d8;
+ margin: 0;
+ height: 35px;
+}
+/* line 25, ../../app/assets/stylesheets/apps/header.css.scss */
+#header #links-region .nav .divider-vertical span,
+#header #search-region .nav .divider-vertical span {
+ font-size: 0;
+ display: none;
+}
+
+/* line 29, ../../app/assets/stylesheets/apps/header.css.scss */
+#results-exceeded-maximum-container {
+ display: none;
+}
+/* line 30, ../../app/assets/stylesheets/apps/header.css.scss */
+#results-exceeded-maximum-container .alert {
+ margin: 5px;
+ padding: 2px 5px;
+ display: inline-block;
+}
+
+/* line 32, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown {
+ margin: 9px 0 0 10px;
+ position: relative;
+}
+/* line 33, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown > a {
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+ -webkit-box-shadow: #496886 0 1px 0;
+ -moz-box-shadow: #496886 0 1px 0;
+ box-shadow: #496886 0 1px 0;
+ color: white;
+ font-weight: 500;
+ padding: 4px 10px;
+ background: url(/assets/rgbapng/ffffff4d.png);
+ background: rgba(255, 255, 255, 0.3);
+ border: 1px solid #3f78af;
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.35);
+ -webkit-box-shadow: #9bbbdc 0 1px 0 inset;
+ -moz-box-shadow: #9bbbdc 0 1px 0 inset;
+ box-shadow: #9bbbdc 0 1px 0 inset;
+}
+/* line 34, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown > a:hover {
+ color: white !important;
+ background: url(/assets/rgbapng/ffffff33.png);
+ background: rgba(255, 255, 255, 0.2);
+ text-decoration: none !important;
+}
+/* line 35, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown > a.active {
+ background-color: #3b6893;
+ -webkit-box-shadow: #7092b4 0 1px 0;
+ -moz-box-shadow: #7092b4 0 1px 0;
+ box-shadow: #7092b4 0 1px 0;
+ outline: 0 !important;
+}
+/* line 36, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown > a.active > a {
+ background-color: #3b6893;
+ border: 1px solid #41688e;
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.5);
+ -webkit-box-shadow: #2f5070 0 1px 0 inset;
+ -moz-box-shadow: #2f5070 0 1px 0 inset;
+ box-shadow: #2f5070 0 1px 0 inset;
+}
+/* line 37, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown > a.active > a:hover {
+ background-color: #3b6893;
+}
+/* line 40, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown > a .icons-search-tiny-white {
+ vertical-align: baseline;
+ margin-right: 1px;
+}
+/* line 41, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown > a .caret {
+ vertical-align: middle;
+ border-bottom-color: white !important;
+ border-top-color: white !important;
+}
+/* line 44, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown.open > a {
+ background-color: #f3f6f7;
+ color: #3e4852;
+ -webkit-border-radius: 5px 5px 0 0;
+ -moz-border-radius: 5px 5px 0 0;
+ -ms-border-radius: 5px 5px 0 0;
+ -o-border-radius: 5px 5px 0 0;
+ border-radius: 5px 5px 0 0;
+ border-bottom: none;
+ text-shadow: 0px 1px 0px white;
+}
+/* line 45, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown.open > a:hover {
+ background-color: #f3f6f7;
+ color: #3e4852 !important;
+}
+/* line 46, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown.open > a:hover .caret {
+ border-bottom-color: #3e4852 !important;
+ border-top-color: #3e4852 !important;
+ opacity: 1 !important;
+}
+/* line 49, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown.open .icons-search-tiny-white {
+ background-position: 0 -1854px;
+ height: 12px;
+ width: 11px;
+}
+/* line 50, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown.open .caret {
+ border-bottom-color: #3e4852 !important;
+ border-top-color: #3e4852 !important;
+}
+/* line 52, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown > .dropdown-menu {
+ background-color: #f3f6f7;
+ border-top: none;
+ -webkit-border-radius: 5px 0 5px 5px;
+ -moz-border-radius: 5px 0 5px 5px;
+ -ms-border-radius: 5px 0 5px 5px;
+ -o-border-radius: 5px 0 5px 5px;
+ border-radius: 5px 0 5px 5px;
+ -webkit-box-shadow: rgba(0, 0, 0, 0.15) 0 10px 13px;
+ -moz-box-shadow: rgba(0, 0, 0, 0.15) 0 10px 13px;
+ box-shadow: rgba(0, 0, 0, 0.15) 0 10px 13px;
+}
+/* line 53, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown > .dropdown-menu form {
+ margin-bottom: 0;
+}
+/* line 54, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown > .dropdown-menu .control-label {
+ font-size: 12px !important;
+ margin-bottom: 1px !important;
+ font-weight: 400 !important;
+ color: #888;
+}
+/* line 55, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown > .dropdown-menu .line-container {
+ text-align: center;
+ font-variant: small-caps;
+ position: relative;
+ top: -5px;
+ margin-bottom: 5px;
+}
+/* line 56, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown > .dropdown-menu .line-container .line {
+ width: 100%;
+ display: inline-block;
+ background-color: #CCC;
+ height: 1px;
+ border-bottom: 1px solid white;
+}
+/* line 57, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown > .dropdown-menu .line-container .line-or {
+ position: absolute;
+ background-color: #f3f6f7;
+ width: 25px;
+ left: 50%;
+ top: 0;
+ font-weight: 500 !important;
+ color: #737373;
+ text-shadow: 0px 1px 0px white;
+ margin-left: -12px;
+ margin-top: 2px;
+}
+/* line 59, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown > .dropdown-menu .controls {
+ line-height: 21px;
+}
+/* line 61, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown > .dropdown-menu .controls input, #search-dropdown > .dropdown-menu .controls textarea,
+#search-dropdown > .dropdown-menu .controls select, #search-dropdown > .dropdown-menu .controls .uneditable-input {
+ -webkit-border-radius: 3px;
+ -moz-border-radius: 3px;
+ -ms-border-radius: 3px;
+ -o-border-radius: 3px;
+ border-radius: 3px;
+ line-height: 14px !important;
+ height: 14px !important;
+}
+/* line 62, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown > .dropdown-menu .controls .error-wrap {
+ margin-left: 0 !important;
+}
+/* line 64, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown > .dropdown-menu .controls input[type=checkbox],
+#search-dropdown > .dropdown-menu .controls .checkbox-label {
+ display: inline-block;
+}
+/* line 65, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown > .dropdown-menu .controls .checkbox-label {
+ margin-left: 5px;
+ margin-right: 10px;
+ vertical-align: text-top;
+ font-size: 13px;
+ color: #888;
+}
+/* line 66, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown > .dropdown-menu .controls .btn.custom-dropdown-toggle {
+ background-color: #f8f8f8;
+ background-image: -moz-linear-gradient(top, white, #eeeeee);
+ background-image: -ms-linear-gradient(top, white, #eeeeee);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(white), to(#eeeeee));
+ background-image: -webkit-linear-gradient(top, white, #eeeeee);
+ background-image: -o-linear-gradient(top, white, #eeeeee);
+ background-image: linear-gradient(top, #ffffff, #eeeeee);
+ background-repeat: repeat-x;
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='white', endColorstr='#eeeeee', GradientType=0);
+ width: 220px;
+ text-align: left;
+ -webkit-border-radius: 3px;
+ -moz-border-radius: 3px;
+ -ms-border-radius: 3px;
+ -o-border-radius: 3px;
+ border-radius: 3px;
+ text-shadow: 0px 1px 0px white;
+}
+/* line 67, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown > .dropdown-menu .controls .btn.custom-dropdown-toggle .caret {
+ float: right;
+ border-bottom-color: #666666 !important;
+ border-top-color: #666666 !important;
+ opacity: 1 !important;
+}
+/* line 68, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown > .dropdown-menu .controls .btn.custom-dropdown-toggle:hover {
+ color: #666666 !important;
+}
+/* line 71, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown > .dropdown-menu .form-actions {
+ padding: 10px;
+ -webkit-border-radius: 0 0 5px 5px;
+ -moz-border-radius: 0 0 5px 5px;
+ -ms-border-radius: 0 0 5px 5px;
+ -o-border-radius: 0 0 5px 5px;
+ border-radius: 0 0 5px 5px;
+}
+/* line 72, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown > .dropdown-menu .form-actions .btn-no-bg {
+ position: relative;
+ top: 4px;
+ color: #737373 !important;
+ text-shadow: 0px 1px 0px white;
+}
+/* line 75, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown .content-wrapper {
+ padding: 0 0 10px 0;
+}
+/* line 76, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown .content-wrapper ul {
+ overflow: auto;
+}
+/* line 77, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown .content-wrapper ul > .control-group {
+ padding: 0 15px;
+}
+/* line 78, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown .content-wrapper ul > .control-group.bolded-label > .control-label {
+ font-weight: 500 !important;
+ text-transform: uppercase;
+}
+/* line 79, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown .content-wrapper ul > .control-group.created-between-input {
+ float: left;
+}
+/* line 80, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown .content-wrapper ul > .control-group.created-between-input .controls {
+ float: left;
+}
+/* line 81, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown .content-wrapper ul > .control-group.created-between-input .controls .k-datepicker {
+ width: 105px !important;
+}
+/* line 83, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown .content-wrapper ul > .control-group.created-between-input.created-between-input-start {
+ padding-right: 0;
+}
+/* line 84, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown .content-wrapper ul > .control-group.created-between-input.created-between-input-end {
+ margin-top: 19px;
+}
+/* line 86, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown .content-wrapper ul > .control-group .folder-types-select-dropdown {
+ padding: 0;
+ z-index: 2000;
+}
+/* line 87, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown .content-wrapper ul > .control-group .folder-types-select-dropdown > li {
+ padding: 0px 5px;
+}
+/* line 88, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown .content-wrapper ul > .control-group .folder-types-select-dropdown > li:first-child {
+ padding-bottom: 1px;
+ margin-bottom: 2px;
+ background-color: #f4f4f4;
+ border-bottom: 1px solid #eeeeee;
+ -webkit-border-radius: 5px 5px 0 0;
+ -moz-border-radius: 5px 5px 0 0;
+ -ms-border-radius: 5px 5px 0 0;
+ -o-border-radius: 5px 5px 0 0;
+ border-radius: 5px 5px 0 0;
+ color: #4d80b4;
+ text-shadow: 0px 1px 0px white;
+}
+/* line 89, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown .content-wrapper ul > .control-group .folder-types-select-dropdown > li:last-child {
+ padding-bottom: 5px;
+ margin-bottom: 0;
+}
+/* line 91, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown .content-wrapper ul > .control-group .folder-types-select-dropdown label {
+ font-weight: normal;
+ font-size: 13px;
+ cursor: pointer;
+}
+/* line 92, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown .content-wrapper ul > .control-group .folder-types-select-dropdown input[type=checkbox] {
+ position: relative;
+ top: -2px;
+}
+/* line 93, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown .content-wrapper ul > .control-group .folder-types-select-dropdown .icons-cancel {
+ float: right;
+ cursor: pointer;
+ position: relative;
+ top: 2px;
+}
+/* line 97, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown .content-wrapper.search-in-container {
+ padding: 0;
+}
+/* line 98, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown .content-wrapper.search-in-container li {
+ padding: 8px 15px 15px !important;
+ border-bottom: 1px solid #cccccc;
+ -webkit-box-shadow: white 0 1px 0;
+ -moz-box-shadow: white 0 1px 0;
+ box-shadow: white 0 1px 0;
+ -webkit-border-radius: 5px 5px 0 0;
+ -moz-border-radius: 5px 5px 0 0;
+ -ms-border-radius: 5px 5px 0 0;
+ -o-border-radius: 5px 5px 0 0;
+ border-radius: 5px 5px 0 0;
+}
+/* line 99, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown .content-wrapper.search-in-container .k-dropdown > .k-dropdown-wrap {
+ background-color: #f8f8f8;
+ background-image: -moz-linear-gradient(top, white, #eeeeee);
+ background-image: -ms-linear-gradient(top, white, #eeeeee);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(white), to(#eeeeee));
+ background-image: -webkit-linear-gradient(top, white, #eeeeee);
+ background-image: -o-linear-gradient(top, white, #eeeeee);
+ background-image: linear-gradient(top, #ffffff, #eeeeee);
+ background-repeat: repeat-x;
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='white', endColorstr='#eeeeee', GradientType=0);
+}
+/* line 100, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown .content-wrapper.search-in-container .k-dropdown > .k-dropdown-wrap > .k-input {
+ background-color: #f8f8f8;
+ background-image: -moz-linear-gradient(top, white, #eeeeee);
+ background-image: -ms-linear-gradient(top, white, #eeeeee);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(white), to(#eeeeee));
+ background-image: -webkit-linear-gradient(top, white, #eeeeee);
+ background-image: -o-linear-gradient(top, white, #eeeeee);
+ background-image: linear-gradient(top, #ffffff, #eeeeee);
+ background-repeat: repeat-x;
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='white', endColorstr='#eeeeee', GradientType=0);
+ -webkit-border-radius: 0;
+ -moz-border-radius: 0;
+ -ms-border-radius: 0;
+ -o-border-radius: 0;
+ border-radius: 0;
+ text-shadow: 0px 1px 0px white;
+}
+
+/* line 105, ../../app/assets/stylesheets/apps/header.css.scss */
+#company_name_or_id-list {
+ width: 210px !important;
+}
+/* line 106, ../../app/assets/stylesheets/apps/header.css.scss */
+#company_name_or_id-list li {
+ border: none;
+ border-bottom: 1px solid #cccccc;
+ line-height: 14px !important;
+ padding: 3px;
+}
+/* line 107, ../../app/assets/stylesheets/apps/header.css.scss */
+#company_name_or_id-list li:hover {
+ -webkit-border-radius: 0;
+ -moz-border-radius: 0;
+ -ms-border-radius: 0;
+ -o-border-radius: 0;
+ border-radius: 0;
+ border: none;
+ border-bottom: 1px solid #cccccc;
+ padding: 3px;
+ cursor: pointer;
+}
+/* line 108, ../../app/assets/stylesheets/apps/header.css.scss */
+#company_name_or_id-list li:last-child {
+ border-bottom: none;
+}
+/* line 109, ../../app/assets/stylesheets/apps/header.css.scss */
+#company_name_or_id-list li > .autocomplete-company-item {
+ padding: 2px 0;
+}
+/* line 110, ../../app/assets/stylesheets/apps/header.css.scss */
+#company_name_or_id-list li > .autocomplete-company-item > div {
+ overflow: auto;
+ text-shadow: 0px 1px 0px white;
+}
+/* line 111, ../../app/assets/stylesheets/apps/header.css.scss */
+#company_name_or_id-list li > .autocomplete-company-item > div > span {
+ overflow: visible;
+ text-overflow: clip;
+ white-space: normal;
+ word-wrap: break-word;
+ overflow: hidden;
+}
+/* line 113, ../../app/assets/stylesheets/apps/header.css.scss */
+#company_name_or_id-list li > .autocomplete-company-item > div .customer-name,
+#company_name_or_id-list li > .autocomplete-company-item > div .customer-number {
+ font-weight: 500;
+ font-size: 13px;
+}
+/* line 114, ../../app/assets/stylesheets/apps/header.css.scss */
+#company_name_or_id-list li > .autocomplete-company-item > div .customer-name {
+ float: left;
+ width: 60%;
+}
+/* line 115, ../../app/assets/stylesheets/apps/header.css.scss */
+#company_name_or_id-list li > .autocomplete-company-item > div .customer-number {
+ float: right;
+ text-align: right;
+ width: 39%;
+ padding-left: 1%;
+}
+/* line 117, ../../app/assets/stylesheets/apps/header.css.scss */
+#company_name_or_id-list li > .autocomplete-company-item > div .customer-address,
+#company_name_or_id-list li > .autocomplete-company-item > div .customer-city-state {
+ color: #999;
+ font-size: 11px;
+}
+/* line 118, ../../app/assets/stylesheets/apps/header.css.scss */
+#company_name_or_id-list li > .autocomplete-company-item > div .customer-address {
+ float: left;
+ width: 40%;
+}
+/* line 119, ../../app/assets/stylesheets/apps/header.css.scss */
+#company_name_or_id-list li > .autocomplete-company-item > div .customer-city-state {
+ float: right;
+ text-align: right;
+ width: 59%;
+ padding-left: 1%;
+}
+/* line 122, ../../app/assets/stylesheets/apps/header.css.scss */
+#company_name_or_id-list li.k-state-focused {
+ -webkit-border-radius: 0;
+ -moz-border-radius: 0;
+ -ms-border-radius: 0;
+ -o-border-radius: 0;
+ border-radius: 0;
+}
+/* line 123, ../../app/assets/stylesheets/apps/header.css.scss */
+#company_name_or_id-list li.k-state-focused > div > div > span {
+ color: white !important;
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.35);
+}
+/* line 125, ../../app/assets/stylesheets/apps/header.css.scss */
+#company_name_or_id-list li.k-state-focused:hover > div > div > span {
+ text-shadow: 0px 1px 0px white;
+}
+/* line 126, ../../app/assets/stylesheets/apps/header.css.scss */
+#company_name_or_id-list li.k-state-focused:hover .customer-name, #company_name_or_id-list li.k-state-focused:hover .customer-number {
+ color: #4b5566 !important;
+}
+/* line 128, ../../app/assets/stylesheets/apps/header.css.scss */
+#company_name_or_id-list li.k-state-focused:hover .customer-address,
+#company_name_or_id-list li.k-state-focused:hover .customer-city-state {
+ color: #999999 !important;
+}
+
+/* line 133, ../../app/assets/stylesheets/apps/header.css.scss */
+.folder-types-select-dropdown {
+ left: 0 !important;
+ right: auto !important;
+ margin: 5px 0 0 15px;
+}
+
+/* line 134, ../../app/assets/stylesheets/apps/header.css.scss */
+.custom-dropdown-toggle {
+ font-weight: normal;
+}
+
+/* line 137, ../../app/assets/stylesheets/apps/header.css.scss */
+.created-between-input-start .controls,
+.created-between-input-end .controls {
+ width: 100px;
+}
+/* line 138, ../../app/assets/stylesheets/apps/header.css.scss */
+.created-between-input-start .k-datepicker,
+.created-between-input-end .k-datepicker {
+ width: auto;
+}
+
+/* line 140, ../../app/assets/stylesheets/apps/header.css.scss */
+#settings-nav {
+ margin-bottom: 0;
+}
+/* line 141, ../../app/assets/stylesheets/apps/header.css.scss */
+#settings-nav > li {
+ float: left;
+ margin-left: 5px;
+ margin-top: 6px;
+ -webkit-box-shadow: rgba(0, 0, 0, 0) 0 0 0 inset;
+ -moz-box-shadow: rgba(0, 0, 0, 0) 0 0 0 inset;
+ box-shadow: rgba(0, 0, 0, 0) 0 0 0 inset;
+ -webkit-box-shadow: rgba(0, 0, 0, 0) 0 0 0;
+ -moz-box-shadow: rgba(0, 0, 0, 0) 0 0 0;
+ box-shadow: rgba(0, 0, 0, 0) 0 0 0;
+}
+/* line 142, ../../app/assets/stylesheets/apps/header.css.scss */
+#settings-nav > li > a {
+ font-size: 12px;
+ background-color: none;
+ background-image: none;
+ background: url(/assets/rgbapng/ffffff00.png);
+ background: rgba(255, 255, 255, 0);
+ border: none;
+ -webkit-box-shadow: rgba(0, 0, 0, 0) 0 0 0 inset;
+ -moz-box-shadow: rgba(0, 0, 0, 0) 0 0 0 inset;
+ box-shadow: rgba(0, 0, 0, 0) 0 0 0 inset;
+ -webkit-box-shadow: rgba(0, 0, 0, 0) 0 0 0;
+ -moz-box-shadow: rgba(0, 0, 0, 0) 0 0 0;
+ box-shadow: rgba(0, 0, 0, 0) 0 0 0;
+ color: white;
+ font-weight: 500;
+ padding: 3px 10px;
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.35);
+}
+/* line 143, ../../app/assets/stylesheets/apps/header.css.scss */
+#settings-nav > li > a:hover {
+ color: white;
+ background: url(/assets/rgbapng/ffffff4d.png);
+ background: rgba(255, 255, 255, 0.3);
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+ -webkit-box-shadow: #9bbbdc 0 1px 0 inset;
+ -moz-box-shadow: #9bbbdc 0 1px 0 inset;
+ box-shadow: #9bbbdc 0 1px 0 inset;
+}
+/* line 144, ../../app/assets/stylesheets/apps/header.css.scss */
+#settings-nav > li > a .caret {
+ border-bottom-color: white !important;
+ border-top-color: white !important;
+ opacity: 1 !important;
+}
+/* line 146, ../../app/assets/stylesheets/apps/header.css.scss */
+#settings-nav > li.active {
+ background-color: #4d80b4;
+ -webkit-box-shadow: #7092b4 0 1px 0;
+ -moz-box-shadow: #7092b4 0 1px 0;
+ box-shadow: #7092b4 0 1px 0;
+ outline: 0 !important;
+ background: url(/assets/rgbapng/ffffff33.png);
+ background: rgba(255, 255, 255, 0.2);
+}
+/* line 147, ../../app/assets/stylesheets/apps/header.css.scss */
+#settings-nav > li.active > a {
+ background-color: #3e78b0;
+ border: 1px solid #41688e;
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.5);
+ -webkit-box-shadow: #3a70a5 0 1px 0 inset;
+ -moz-box-shadow: #3a70a5 0 1px 0 inset;
+ box-shadow: #3a70a5 0 1px 0 inset;
+}
+/* line 148, ../../app/assets/stylesheets/apps/header.css.scss */
+#settings-nav > li.active > a:hover {
+ background-color: #3e78b0;
+}
+/* line 151, ../../app/assets/stylesheets/apps/header.css.scss */
+#settings-nav > li:last-child a:hover {
+ text-decoration: none;
+}
+
+/* line 154, ../../app/assets/stylesheets/apps/header.css.scss */
+#settings-dropdown ul.dropdown-menu {
+ z-index: 2000 !important;
+}
+
+/* line 155, ../../app/assets/stylesheets/apps/header.css.scss */
+.logout-link a {
+ padding: 5px 5px 5px 22px !important;
+ border-top: 1px solid #d7dadf;
+ background: url(/assets/icons/logout-arrow.png) no-repeat 5% 55%;
+}
+/* line 156, ../../app/assets/stylesheets/apps/header.css.scss */
+.logout-link a i.icons-logout-arrow {
+ margin-right: 2px;
+}
+/* line 157, ../../app/assets/stylesheets/apps/header.css.scss */
+.logout-link a:hover {
+ background: url(/assets/icons/logout-arrow-white.png) #eeeeee no-repeat 5% 55%;
+}
+
+/* line 2, ../../app/assets/stylesheets/apps/login.css.scss */
+#SignIn {
+ padding-bottom: 150px;
+}
+/* line 3, ../../app/assets/stylesheets/apps/login.css.scss */
+#SignIn h1 {
+ font-size: 26px;
+ text-shadow: 0px 1px 0px white;
+}
+/* line 4, ../../app/assets/stylesheets/apps/login.css.scss */
+#SignIn #PageTitle {
+ padding-top: 15px;
+ padding-left: 20px;
+}
+/* line 5, ../../app/assets/stylesheets/apps/login.css.scss */
+#SignIn .LoginHeader {
+ margin-top: 10px;
+ margin-bottom: 100px;
+}
+/* line 6, ../../app/assets/stylesheets/apps/login.css.scss */
+#SignIn .well {
+ overflow: auto;
+ background-color: #f4f6f7;
+ margin: 0 250px;
+ padding: 0;
+ -webkit-border-radius: 10px 10px;
+ -moz-border-radius: 10px / 10px;
+ border-radius: 10px / 10px;
+}
+/* line 7, ../../app/assets/stylesheets/apps/login.css.scss */
+#SignIn form {
+ margin-bottom: 0;
+}
+/* line 8, ../../app/assets/stylesheets/apps/login.css.scss */
+#SignIn label {
+ text-shadow: 0px 1px 0px white;
+}
+/* line 9, ../../app/assets/stylesheets/apps/login.css.scss */
+#SignIn fieldset {
+ padding: 10px 20px 20px;
+ border: 0;
+ -webkit-box-shadow: none;
+ -moz-box-shadow: none;
+ box-shadow: none;
+}
+/* line 10, ../../app/assets/stylesheets/apps/login.css.scss */
+#SignIn .btn {
+ margin-bottom: 0;
+}
+/* line 11, ../../app/assets/stylesheets/apps/login.css.scss */
+#SignIn .password {
+ margin-bottom: 0;
+}
+/* line 12, ../../app/assets/stylesheets/apps/login.css.scss */
+#SignIn .password .controls {
+ margin-bottom: 5px;
+}
+/* line 14, ../../app/assets/stylesheets/apps/login.css.scss */
+#SignIn .login-help-links {
+ margin: 0;
+ font-size: 12px;
+ overflow: auto;
+}
+/* line 15, ../../app/assets/stylesheets/apps/login.css.scss */
+#SignIn .login-help-links .controls {
+ overflow: auto;
+}
+/* line 16, ../../app/assets/stylesheets/apps/login.css.scss */
+#SignIn .login-help-links .controls label, #SignIn .login-help-links .controls span {
+ text-shadow: 0px 1px 0px white;
+ float: left;
+}
+/* line 17, ../../app/assets/stylesheets/apps/login.css.scss */
+#SignIn .login-help-links .controls label {
+ padding-top: 0;
+ font-size: 13px;
+}
+/* line 18, ../../app/assets/stylesheets/apps/login.css.scss */
+#SignIn .login-help-links .controls span {
+ display: inline-block;
+}
+/* line 22, ../../app/assets/stylesheets/apps/login.css.scss */
+#SignIn .forgot-pw-field > div:first-child
++ div {
+ margin-bottom: 0;
+}
+/* line 23, ../../app/assets/stylesheets/apps/login.css.scss */
+#SignIn .forgot-pw-field > div:first-child
++ div .controls {
+ margin-bottom: 0;
+}
+/* line 25, ../../app/assets/stylesheets/apps/login.css.scss */
+#SignIn .forgot-user-field {
+ font-size: 12px;
+ overflow: auto;
+}
+/* line 26, ../../app/assets/stylesheets/apps/login.css.scss */
+#SignIn .forgot-user-field .controls {
+ overflow: auto;
+}
+/* line 27, ../../app/assets/stylesheets/apps/login.css.scss */
+#SignIn .forgot-user-field .controls span {
+ display: inline-block;
+}
+/* line 30, ../../app/assets/stylesheets/apps/login.css.scss */
+#SignIn .form-actions {
+ -webkit-border-radius: 0 0 10px 10px;
+ -moz-border-radius: 0 0 10px 10px;
+ -ms-border-radius: 0 0 10px 10px;
+ -o-border-radius: 0 0 10px 10px;
+ border-radius: 0 0 10px 10px;
+}
+/* line 31, ../../app/assets/stylesheets/apps/login.css.scss */
+#SignIn .form-horizontal .controls {
+ overflow: visible !important;
+}
+
+/* line 1, ../../app/assets/stylesheets/apps/admin.css.scss */
+#accounts-list-layout #accounts-list tr {
+ text-shadow: 0px 1px 0px white;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#accounts-list-layout #accounts-list tr th:first-child {
+ width: 7%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#accounts-list-layout #accounts-list tr th:first-child + th {
+ width: 25%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#accounts-list-layout #accounts-list tr th:first-child + th + th {
+ width: 10%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#accounts-list-layout #accounts-list tr th:first-child + th + th + th {
+ width: 27%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#accounts-list-layout #accounts-list tr th:first-child + th + th + th + th {
+ width: 8%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#accounts-list-layout #accounts-list tr th:first-child + th + th + th + th + th {
+ width: 8%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#accounts-list-layout #accounts-list tr th:first-child + th + th + th + th + th + th {
+ width: 15%;
+}
+
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#admin-user-list tr th:first-child {
+ width: 29%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#admin-user-list tr th:first-child + th {
+ width: 25%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#admin-user-list tr th:first-child + th + th {
+ width: 25%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#admin-user-list tr th:first-child + th + th + th {
+ width: 10%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#admin-user-list tr th:first-child + th + th + th + th {
+ width: 11%;
+}
+/* line 4, ../../app/assets/stylesheets/apps/admin.css.scss */
+#admin-user-list tr .user-role-column > div:first-child {
+ width: 10%;
+}
+/* line 5, ../../app/assets/stylesheets/apps/admin.css.scss */
+#admin-user-list tr .user-role-column > div:last-child {
+ width: 90%;
+}
+
+/* line 1, ../../app/assets/stylesheets/apps/analytics/dashboard.scss */
+#customers-recent-activity {
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+ width: 65%;
+ min-width: 65%;
+ max-width: 65%;
+ padding: 20px;
+ border: 1px solid #eef0f1;
+ float: left;
+ border-left: none;
+}
+
+/* line 2, ../../app/assets/stylesheets/apps/analytics/dashboard.scss */
+#folders-recent-created {
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+ width: 35%;
+ min-width: 35%;
+ max-width: 35%;
+ padding: 20px;
+ border: 1px solid #eef0f1;
+ float: left;
+ border-left: none;
+ border-right: none;
+}
+
+/* line 3, ../../app/assets/stylesheets/apps/analytics/planning.css.scss */
+#form-type-overdue-list .analytics-header-list {
+ margin-top: 10px;
+}
+/* line 7, ../../app/assets/stylesheets/apps/analytics/planning.css.scss */
+#form-type-overdue-list .analytics-list > li > div:first-child,
+#form-type-overdue-list .analytics-header-list > li > div:first-child {
+ width: 49%;
+}
+/* line 8, ../../app/assets/stylesheets/apps/analytics/planning.css.scss */
+#form-type-overdue-list .analytics-list > li > div:first-child + div,
+#form-type-overdue-list .analytics-header-list > li > div:first-child + div {
+ width: 26%;
+}
+/* line 9, ../../app/assets/stylesheets/apps/analytics/planning.css.scss */
+#form-type-overdue-list .analytics-list > li > div:first-child + div + div,
+#form-type-overdue-list .analytics-header-list > li > div:first-child + div + div {
+ width: 25%;
+}
+/* line 14, ../../app/assets/stylesheets/apps/analytics/planning.css.scss */
+#form-type-overdue-list .analytics-list {
+ border: 1px solid #eceeee;
+}
+/* line 15, ../../app/assets/stylesheets/apps/analytics/planning.css.scss */
+#form-type-overdue-list .analytics-list > li {
+ text-shadow: 0px 1px 0px white;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+ background-color: #fbfcfc;
+ background-image: -moz-linear-gradient(top, #fcfefe, #fafbfb);
+ background-image: -ms-linear-gradient(top, #fcfefe, #fafbfb);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fcfefe), to(#fafbfb));
+ background-image: -webkit-linear-gradient(top, #fcfefe, #fafbfb);
+ background-image: -o-linear-gradient(top, #fcfefe, #fafbfb);
+ background-image: linear-gradient(top, #fcfefe, #fafbfb);
+ background-repeat: repeat-x;
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fcfefe', endColorstr='#fafbfb', GradientType=0);
+ background-color: #fbfdfd;
+ background-image: -moz-linear-gradient(top, #fcfefe, #fcfefe 25%, #fafbfb 50%, #fafbfb 75%);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fcfefe), color-stop(25%, #fcfefe), color-stop(50%, #fafbfb), to(75%, #fafbfb));
+ background-image: -webkit-linear-gradient(top, #fcfefe, #fcfefe 25%, #fafbfb 50%, #fafbfb 75%);
+ background-image: -o-linear-gradient(top, #fcfefe, #fcfefe 25%, #fafbfb 50%, #fafbfb 75%);
+ background-image: linear-gradient(to bottom, #fcfefe, #fcfefe 25%, #fafbfb 50%, #fafbfb 75%);
+ background-repeat: no-repeat;
+ border-color: #fcfefe;
+ border-color: #fcfefe #fcfefe #c3ebeb;
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) fadein(rgba(0, 0, 0, 0.1), 15%);
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fcfefe', endColorstr='#fafbfb', GradientType=0);
+ -webkit-border-radius: 0;
+ -moz-border-radius: 0;
+ -ms-border-radius: 0;
+ -o-border-radius: 0;
+ border-radius: 0;
+ display: hidden;
+ border-bottom: 1px solid #efeff3;
+ font-weight: bold;
+ color: #999;
+ font-size: 11px;
+}
+/* line 16, ../../app/assets/stylesheets/apps/analytics/planning.css.scss */
+#form-type-overdue-list .analytics-list > li .analytics-list-form-type-text {
+ line-height: 16px;
+ padding-top: 3px;
+ width: 84%;
+}
+/* line 17, ../../app/assets/stylesheets/apps/analytics/planning.css.scss */
+#form-type-overdue-list .analytics-list > li .analytics-list-form-type-name {
+ color: #576165;
+ font-size: 14px;
+}
+/* line 18, ../../app/assets/stylesheets/apps/analytics/planning.css.scss */
+#form-type-overdue-list .analytics-list > li .analytics-list-companies span {
+ padding: 0 5px;
+ display: inline-block;
+}
+/* line 19, ../../app/assets/stylesheets/apps/analytics/planning.css.scss */
+#form-type-overdue-list .analytics-list > li .analytics-list-companies-name {
+ font-size: 17px;
+ line-height: 24px;
+ border-bottom: 1px solid #eeeeee;
+}
+/* line 20, ../../app/assets/stylesheets/apps/analytics/planning.css.scss */
+#form-type-overdue-list .analytics-list > li .analytics-list-companies-out-of {
+ border-top: 1px solid white;
+}
+/* line 21, ../../app/assets/stylesheets/apps/analytics/planning.css.scss */
+#form-type-overdue-list .analytics-list > li .analytics-list-form-type > div {
+ padding-top: 7px;
+ overflow: auto;
+}
+/* line 22, ../../app/assets/stylesheets/apps/analytics/planning.css.scss */
+#form-type-overdue-list .analytics-list > li .analytics-list-form-type > div > div {
+ float: left;
+}
+/* line 23, ../../app/assets/stylesheets/apps/analytics/planning.css.scss */
+#form-type-overdue-list .analytics-list > li .analytics-list-form-type > div .image-wrapper {
+ margin-right: 10px;
+ position: relative;
+ top: 5px;
+}
+/* line 25, ../../app/assets/stylesheets/apps/analytics/planning.css.scss */
+#form-type-overdue-list .analytics-list > li .analytics-list-performed-time {
+ font-weight: normal;
+}
+/* line 26, ../../app/assets/stylesheets/apps/analytics/planning.css.scss */
+#form-type-overdue-list .analytics-list > li .analytics-list-performed-time strong {
+ font-weight: bold;
+}
+/* line 29, ../../app/assets/stylesheets/apps/analytics/planning.css.scss */
+#form-type-overdue-list .analytics-list.selectable > li:hover {
+ background-image: none;
+ cursor: pointer;
+ background-color: #fdfde0;
+}
+
+/* line 32, ../../app/assets/stylesheets/apps/analytics/planning.css.scss */
+.analytics-performance-time-chart {
+ height: 20px;
+ width: 150px;
+}
+
+/* line 34, ../../app/assets/stylesheets/apps/analytics/planning.css.scss */
+#last-form-by-account-list tr:first-child td {
+ width: 60%;
+}
+/* line 35, ../../app/assets/stylesheets/apps/analytics/planning.css.scss */
+#last-form-by-account-list tr:first-child td + td {
+ width: 3%;
+}
+/* line 36, ../../app/assets/stylesheets/apps/analytics/planning.css.scss */
+#last-form-by-account-list tr:first-child td + td + td {
+ width: 25%;
+}
+/* line 37, ../../app/assets/stylesheets/apps/analytics/planning.css.scss */
+#last-form-by-account-list tr:first-child td + td + td + td {
+ width: 12%;
+}
+
+/* line 2, ../../app/assets/stylesheets/apps/analytics/productivity.css.scss */
+#productivity-stats {
+ overflow: auto;
+}
+/* line 3, ../../app/assets/stylesheets/apps/analytics/productivity.css.scss */
+#productivity-stats .sub-title {
+ padding-bottom: 3px;
+}
+/* line 4, ../../app/assets/stylesheets/apps/analytics/productivity.css.scss */
+#productivity-stats #form-types-pie-by-user {
+ overflow: auto;
+ float: left;
+ width: 47%;
+}
+/* line 5, ../../app/assets/stylesheets/apps/analytics/productivity.css.scss */
+#productivity-stats #productivity-links {
+ overflow: auto;
+ float: right;
+ width: 47%;
+}
+/* line 6, ../../app/assets/stylesheets/apps/analytics/productivity.css.scss */
+#productivity-stats #forms-completed-by-user {
+ clear: both;
+ padding-top: 15px;
+}
+/* line 8, ../../app/assets/stylesheets/apps/analytics/productivity.css.scss */
+#productivity-stats #productivity-list-by-user,
+#productivity-stats #productivity-list-of-me {
+ margin-top: 10px;
+ clear: both;
+ overflow: auto;
+}
+/* line 10, ../../app/assets/stylesheets/apps/analytics/productivity.css.scss */
+#productivity-stats #productivity-list-by-user .user-productivity-row,
+#productivity-stats #productivity-list-by-user .module-list-header > li,
+#productivity-stats #productivity-list-of-me .user-productivity-row,
+#productivity-stats #productivity-list-of-me .module-list-header > li {
+ clear: both;
+ width: 100%;
+ overflow: auto;
+}
+/* line 11, ../../app/assets/stylesheets/apps/analytics/productivity.css.scss */
+#productivity-stats #productivity-list-by-user .user-productivity-row > div,
+#productivity-stats #productivity-list-by-user .module-list-header > li > div,
+#productivity-stats #productivity-list-of-me .user-productivity-row > div,
+#productivity-stats #productivity-list-of-me .module-list-header > li > div {
+ float: left;
+}
+/* line 12, ../../app/assets/stylesheets/apps/analytics/productivity.css.scss */
+#productivity-stats #productivity-list-by-user .user-productivity-row > div:first-child,
+#productivity-stats #productivity-list-by-user .module-list-header > li > div:first-child,
+#productivity-stats #productivity-list-of-me .user-productivity-row > div:first-child,
+#productivity-stats #productivity-list-of-me .module-list-header > li > div:first-child {
+ width: 20%;
+}
+/* line 13, ../../app/assets/stylesheets/apps/analytics/productivity.css.scss */
+#productivity-stats #productivity-list-by-user .user-productivity-row > div:first-child + div,
+#productivity-stats #productivity-list-by-user .module-list-header > li > div:first-child + div,
+#productivity-stats #productivity-list-of-me .user-productivity-row > div:first-child + div,
+#productivity-stats #productivity-list-of-me .module-list-header > li > div:first-child + div {
+ width: 15%;
+}
+/* line 14, ../../app/assets/stylesheets/apps/analytics/productivity.css.scss */
+#productivity-stats #productivity-list-by-user .user-productivity-row > div:first-child + div + div,
+#productivity-stats #productivity-list-by-user .module-list-header > li > div:first-child + div + div,
+#productivity-stats #productivity-list-of-me .user-productivity-row > div:first-child + div + div,
+#productivity-stats #productivity-list-of-me .module-list-header > li > div:first-child + div + div {
+ width: 15%;
+}
+/* line 15, ../../app/assets/stylesheets/apps/analytics/productivity.css.scss */
+#productivity-stats #productivity-list-by-user .user-productivity-row > div:first-child + div + div + div,
+#productivity-stats #productivity-list-by-user .module-list-header > li > div:first-child + div + div + div,
+#productivity-stats #productivity-list-of-me .user-productivity-row > div:first-child + div + div + div,
+#productivity-stats #productivity-list-of-me .module-list-header > li > div:first-child + div + div + div {
+ width: 50%;
+}
+/* line 16, ../../app/assets/stylesheets/apps/analytics/productivity.css.scss */
+#productivity-stats #productivity-list-by-user .user-productivity-row > div:first-child + div + div + div > div,
+#productivity-stats #productivity-list-by-user .module-list-header > li > div:first-child + div + div + div > div,
+#productivity-stats #productivity-list-of-me .user-productivity-row > div:first-child + div + div + div > div,
+#productivity-stats #productivity-list-of-me .module-list-header > li > div:first-child + div + div + div > div {
+ padding: 0 10px !important;
+}
+/* line 17, ../../app/assets/stylesheets/apps/analytics/productivity.css.scss */
+#productivity-stats #productivity-list-by-user .user-productivity-row > div:first-child + div + div + div > div .BoldLine,
+#productivity-stats #productivity-list-by-user .module-list-header > li > div:first-child + div + div + div > div .BoldLine,
+#productivity-stats #productivity-list-of-me .user-productivity-row > div:first-child + div + div + div > div .BoldLine,
+#productivity-stats #productivity-list-of-me .module-list-header > li > div:first-child + div + div + div > div .BoldLine {
+ padding: 15px 0;
+}
+/* line 23, ../../app/assets/stylesheets/apps/analytics/productivity.css.scss */
+#productivity-stats #productivity-list-by-user .user-productivity-row > div > div,
+#productivity-stats #productivity-list-by-user .module-list-header > li > div > div,
+#productivity-stats #productivity-list-of-me .user-productivity-row > div > div,
+#productivity-stats #productivity-list-of-me .module-list-header > li > div > div {
+ overflow: auto;
+ padding: 3px 10px;
+}
+/* line 28, ../../app/assets/stylesheets/apps/analytics/productivity.css.scss */
+#productivity-stats #productivity-list-by-user .module-list-header.sortable > li.user-productivity-row > div:hover > div,
+#productivity-stats #productivity-list-of-me .module-list-header.sortable > li.user-productivity-row > div:hover > div {
+ background-image: none;
+ cursor: pointer;
+ -webkit-box-shadow: #dfe3e3 0 2px 8px inset;
+ -moz-box-shadow: #dfe3e3 0 2px 8px inset;
+ box-shadow: #dfe3e3 0 2px 8px inset;
+ background: url(/assets/icons/arrow-down.png) no-repeat 95% 55%;
+ -webkit-border-radius: 5px 5px 0 0;
+ -moz-border-radius: 5px 5px 0 0;
+ -ms-border-radius: 5px 5px 0 0;
+ -o-border-radius: 5px 5px 0 0;
+ border-radius: 5px 5px 0 0;
+}
+/* line 29, ../../app/assets/stylesheets/apps/analytics/productivity.css.scss */
+#productivity-stats #productivity-list-by-user .module-list-header.sortable > li.user-productivity-row > div.active,
+#productivity-stats #productivity-list-of-me .module-list-header.sortable > li.user-productivity-row > div.active {
+ outline: 0 !important;
+}
+/* line 30, ../../app/assets/stylesheets/apps/analytics/productivity.css.scss */
+#productivity-stats #productivity-list-by-user .module-list-header.sortable > li.user-productivity-row > div.active > div,
+#productivity-stats #productivity-list-of-me .module-list-header.sortable > li.user-productivity-row > div.active > div {
+ background-image: none;
+ outline: 0 !important;
+}
+/* line 31, ../../app/assets/stylesheets/apps/analytics/productivity.css.scss */
+#productivity-stats #productivity-list-by-user .module-list-header.sortable > li.user-productivity-row > div.active.sort-asc,
+#productivity-stats #productivity-list-of-me .module-list-header.sortable > li.user-productivity-row > div.active.sort-asc {
+ outline: 0 !important;
+}
+/* line 32, ../../app/assets/stylesheets/apps/analytics/productivity.css.scss */
+#productivity-stats #productivity-list-by-user .module-list-header.sortable > li.user-productivity-row > div.active.sort-asc > div,
+#productivity-stats #productivity-list-of-me .module-list-header.sortable > li.user-productivity-row > div.active.sort-asc > div {
+ background: url(/assets/icons/arrow-down.png) #dddfe2 no-repeat 90% 55%;
+}
+/* line 34, ../../app/assets/stylesheets/apps/analytics/productivity.css.scss */
+#productivity-stats #productivity-list-by-user .module-list-header.sortable > li.user-productivity-row > div.active.sort-desc,
+#productivity-stats #productivity-list-of-me .module-list-header.sortable > li.user-productivity-row > div.active.sort-desc {
+ outline: 0 !important;
+}
+/* line 35, ../../app/assets/stylesheets/apps/analytics/productivity.css.scss */
+#productivity-stats #productivity-list-by-user .module-list-header.sortable > li.user-productivity-row > div.active.sort-desc > div,
+#productivity-stats #productivity-list-of-me .module-list-header.sortable > li.user-productivity-row > div.active.sort-desc > div {
+ background: url(/assets/icons/arrow-up.png) #dddfe2 no-repeat 90% 55%;
+}
+/* line 38, ../../app/assets/stylesheets/apps/analytics/productivity.css.scss */
+#productivity-stats #productivity-list-by-user .module-list-header.sortable > li.user-productivity-row > div.noSort:hover > div,
+#productivity-stats #productivity-list-of-me .module-list-header.sortable > li.user-productivity-row > div.noSort:hover > div {
+ -webkit-box-shadow: rgba(0, 0, 0, 0) 0 0 0 inset;
+ -moz-box-shadow: rgba(0, 0, 0, 0) 0 0 0 inset;
+ box-shadow: rgba(0, 0, 0, 0) 0 0 0 inset;
+ -webkit-box-shadow: rgba(0, 0, 0, 0) 0 0 0;
+ -moz-box-shadow: rgba(0, 0, 0, 0) 0 0 0;
+ box-shadow: rgba(0, 0, 0, 0) 0 0 0;
+ background-image: none;
+ cursor: default;
+}
+/* line 40, ../../app/assets/stylesheets/apps/analytics/productivity.css.scss */
+#productivity-stats #productivity-list-by-user .module-list-header > li,
+#productivity-stats #productivity-list-of-me .module-list-header > li {
+ font-weight: bold;
+ color: #46535c;
+}
+/* line 42, ../../app/assets/stylesheets/apps/analytics/productivity.css.scss */
+#productivity-stats #productivity-list-by-user .user-productivity-row,
+#productivity-stats #productivity-list-of-me .user-productivity-row {
+ position: relative;
+ -webkit-border-radius: 0;
+ -moz-border-radius: 0;
+ -ms-border-radius: 0;
+ -o-border-radius: 0;
+ border-radius: 0;
+ overflow: hidden;
+ border-bottom: 1px dotted #efeff3;
+ font-weight: bold;
+ color: #999;
+ font-size: 11px;
+}
+/* line 43, ../../app/assets/stylesheets/apps/analytics/productivity.css.scss */
+#productivity-stats #productivity-list-by-user .user-productivity-row:hover,
+#productivity-stats #productivity-list-of-me .user-productivity-row:hover {
+ background-color: #fdfde0;
+ cursor: pointer;
+}
+/* line 44, ../../app/assets/stylesheets/apps/analytics/productivity.css.scss */
+#productivity-stats #productivity-list-by-user .user-productivity-row > div > div,
+#productivity-stats #productivity-list-of-me .user-productivity-row > div > div {
+ padding: 15px 10px;
+ text-shadow: 0px 1px 0px white;
+ overflow: visible;
+ text-overflow: clip;
+ white-space: normal;
+ word-wrap: break-word;
+}
+/* line 48, ../../app/assets/stylesheets/apps/analytics/productivity.css.scss */
+#productivity-stats #productivity-list-of-me {
+ overflow: auto;
+ border: 1px solid #ebf3f6;
+ margin: 15px 0;
+}
+/* line 49, ../../app/assets/stylesheets/apps/analytics/productivity.css.scss */
+#productivity-stats .user-productivity-row {
+ position: relative;
+ text-shadow: 0px 1px 0px white;
+ list-style: none !important;
+}
+/* line 50, ../../app/assets/stylesheets/apps/analytics/productivity.css.scss */
+#productivity-stats .user-productivity-row > div > div {
+ padding: 13px 10px;
+}
+/* line 52, ../../app/assets/stylesheets/apps/analytics/productivity.css.scss */
+#productivity-stats #productivity-list-of-me .user-productivity-row {
+ background-color: #f3fcff;
+}
+/* line 53, ../../app/assets/stylesheets/apps/analytics/productivity.css.scss */
+#productivity-stats .forms-completed-circle {
+ float: left;
+ min-width: 16px;
+ min-height: 16px;
+ position: relative;
+ left: -3px;
+ margin-top: 13px;
+ text-align: center;
+ display: inline-block;
+ background-color: #f5f5f5;
+ border: 1px solid #ced4ce;
+ -webkit-border-radius: 1000px;
+ -moz-border-radius: 1000px;
+ -ms-border-radius: 1000px;
+ -o-border-radius: 1000px;
+ border-radius: 1000px;
+ color: #475155;
+ padding: 3px 6px;
+ font-size: 15px;
+ font-weight: bold;
+ text-shadow: 0px 1px 0px white;
+}
+/* line 54, ../../app/assets/stylesheets/apps/analytics/productivity.css.scss */
+#productivity-stats .forms-completed-thermometer {
+ float: left;
+ width: 85%;
+ min-height: 45px;
+ height: 45px;
+ margin-top: 2px;
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
+ opacity: 0.8;
+}
+/* line 55, ../../app/assets/stylesheets/apps/analytics/productivity.css.scss */
+#productivity-stats .icons-user {
+ position: relative;
+ top: 1px;
+ margin-right: 3px;
+}
+
+/* line 57, ../../app/assets/stylesheets/apps/analytics/productivity.css.scss */
+#form-types-pie-chart {
+ min-height: 200px;
+ height: 200px;
+}
+
+/* line 58, ../../app/assets/stylesheets/apps/analytics/productivity.css.scss */
+#form-daily-line-chart {
+ min-height: 225px;
+ height: 225px;
+}
+
+/* line 1, ../../app/assets/stylesheets/apps/analytics/risk.css.scss */
+#analytics-dashboard {
+ overflow: auto;
+}
+/* line 3, ../../app/assets/stylesheets/apps/analytics/risk.css.scss */
+#analytics-dashboard #overview-links-container {
+ width: 49%;
+ float: left;
+}
+/* line 4, ../../app/assets/stylesheets/apps/analytics/risk.css.scss */
+#analytics-dashboard #overview-companies-with-priorities {
+ clear: both;
+}
+/* line 5, ../../app/assets/stylesheets/apps/analytics/risk.css.scss */
+#analytics-dashboard .chart-title {
+ font-weight: bold;
+ text-align: center;
+ color: #5b646a;
+ font-size: 15px;
+ margin-top: 10px;
+}
+/* line 6, ../../app/assets/stylesheets/apps/analytics/risk.css.scss */
+#analytics-dashboard li > .chart-title {
+ font-weight: bold;
+ color: #5b646a;
+ font-size: 15px;
+}
+/* line 7, ../../app/assets/stylesheets/apps/analytics/risk.css.scss */
+#analytics-dashboard #company-priorities-bar-chart {
+ min-height: 275px;
+ height: 275px;
+ width: 100%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#analytics-dashboard #company-priority-list tr th:first-child {
+ width: 40%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#analytics-dashboard #company-priority-list tr th:first-child + th {
+ width: 15%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#analytics-dashboard #company-priority-list tr th:first-child + th + th {
+ width: 16%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#analytics-dashboard #company-priority-list tr th:first-child + th + th + th {
+ width: 9%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#analytics-dashboard #company-priority-list tr th:first-child + th + th + th + th {
+ width: 12%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#analytics-dashboard #company-priority-list tr th:first-child + th + th + th + th + th {
+ width: 8%;
+}
+/* line 9, ../../app/assets/stylesheets/apps/analytics/risk.css.scss */
+#analytics-dashboard #company-priority-list tr td:first-child > div > span.BoldLine {
+ color: #4d80b4;
+ display: inline-block;
+ line-height: 15px;
+}
+/* line 11, ../../app/assets/stylesheets/apps/analytics/risk.css.scss */
+#analytics-dashboard .btn-export i {
+ margin-right: 2px;
+}
+/* line 12, ../../app/assets/stylesheets/apps/analytics/risk.css.scss */
+#analytics-dashboard #panel-region {
+ clear: both;
+}
+
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#reports-list table tr th:first-child {
+ width: 42%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#reports-list table tr th:first-child + th {
+ width: 40%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#reports-list table tr th:first-child + th + th {
+ width: 18%;
+}
+/* line 3, ../../app/assets/stylesheets/apps/analytics/reports.css.scss */
+#reports-list table tr td {
+ cursor: default !important;
+}
+/* line 4, ../../app/assets/stylesheets/apps/analytics/reports.css.scss */
+#reports-list table tr .report-type {
+ color: #999;
+ font-weight: 500;
+ font-size: 12px;
+ padding-bottom: 0;
+ line-height: 8px;
+ padding-top: 4px;
+}
+/* line 5, ../../app/assets/stylesheets/apps/analytics/reports.css.scss */
+#reports-list table tr i {
+ vertical-align: bottom;
+}
+
+/* line 8, ../../app/assets/stylesheets/apps/analytics/reports.css.scss */
+#show-report {
+ overflow: auto;
+ background-color: white;
+}
+/* line 9, ../../app/assets/stylesheets/apps/analytics/reports.css.scss */
+#show-report #ReportsListContainer {
+ margin-top: 20px;
+}
+/* line 10, ../../app/assets/stylesheets/apps/analytics/reports.css.scss */
+#show-report .nav-list {
+ margin-top: 20px;
+}
+/* line 11, ../../app/assets/stylesheets/apps/analytics/reports.css.scss */
+#show-report .ReportsList > li {
+ overflow: auto;
+ margin-bottom: 20px;
+ background-color: white;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+ border: 1px solid #d4d4d4;
+ position: relative;
+}
+/* line 12, ../../app/assets/stylesheets/apps/analytics/reports.css.scss */
+#show-report .ReportsList > li > div {
+ float: left;
+}
+/* line 13, ../../app/assets/stylesheets/apps/analytics/reports.css.scss */
+#show-report .ReportsList > li form {
+ overflow: auto;
+ margin-bottom: 0;
+}
+/* line 15, ../../app/assets/stylesheets/apps/analytics/reports.css.scss */
+#show-report .reports-content {
+ width: 64%;
+ float: left;
+}
+/* line 16, ../../app/assets/stylesheets/apps/analytics/reports.css.scss */
+#show-report .reports-content h3 {
+ text-shadow: 0px 1px 0px white;
+}
+/* line 17, ../../app/assets/stylesheets/apps/analytics/reports.css.scss */
+#show-report .reports-content h5 {
+ display: block;
+ padding: 10px 20px 0;
+ color: #505050;
+}
+/* line 18, ../../app/assets/stylesheets/apps/analytics/reports.css.scss */
+#show-report .reports-content h6 {
+ float: left;
+ padding: 5px 20px 10px;
+}
+/* line 19, ../../app/assets/stylesheets/apps/analytics/reports.css.scss */
+#show-report .reports-content img {
+ float: left;
+ padding: 0 15px 15px 0;
+ padding-bottom: 15px;
+}
+/* line 20, ../../app/assets/stylesheets/apps/analytics/reports.css.scss */
+#show-report .reports-content p {
+ float: left;
+ margin: 5px 20px 15px 20px;
+ font-size: 14px;
+ line-height: 22px;
+}
+/* line 21, ../../app/assets/stylesheets/apps/analytics/reports.css.scss */
+#show-report .reports-content .BoldLine {
+ margin-bottom: 0;
+ display: inline-block;
+ font-weight: bold;
+ font-size: 15px;
+ color: #777;
+}
+/* line 23, ../../app/assets/stylesheets/apps/analytics/reports.css.scss */
+#show-report .parameter-box {
+ float: left;
+ width: 36%;
+ overflow: hidden;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+ background-color: whitesmoke;
+ background-image: -moz-linear-gradient(top, #f9f9f9, #f1f1f1);
+ background-image: -ms-linear-gradient(top, #f9f9f9, #f1f1f1);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f9f9f9), to(#f1f1f1));
+ background-image: -webkit-linear-gradient(top, #f9f9f9, #f1f1f1);
+ background-image: -o-linear-gradient(top, #f9f9f9, #f1f1f1);
+ background-image: linear-gradient(top, #f9f9f9, #f1f1f1);
+ background-repeat: repeat-x;
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9f9f9', endColorstr='#f1f1f1', GradientType=0);
+ background-color: #f7f7f7;
+ background-image: -moz-linear-gradient(top, #f9f9f9, #f4f4f4 25%, #f2f2f2 50%, #f1f1f1 75%);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f9f9f9), color-stop(25%, #f4f4f4), color-stop(50%, #f2f2f2), to(75%, #f1f1f1));
+ background-image: -webkit-linear-gradient(top, #f9f9f9, #f4f4f4 25%, #f2f2f2 50%, #f1f1f1 75%);
+ background-image: -o-linear-gradient(top, #f9f9f9, #f4f4f4 25%, #f2f2f2 50%, #f1f1f1 75%);
+ background-image: linear-gradient(to bottom, #f9f9f9, #f4f4f4 25%, #f2f2f2 50%, #f1f1f1 75%);
+ background-repeat: no-repeat;
+ border-color: #f4f4f4;
+ border-color: #f4f4f4 #f4f4f4 #cecece;
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) fadein(rgba(0, 0, 0, 0.1), 15%);
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9f9f9', endColorstr='#f1f1f1', GradientType=0);
+ -webkit-border-radius: 0;
+ -moz-border-radius: 0;
+ -ms-border-radius: 0;
+ -o-border-radius: 0;
+ border-radius: 0;
+}
+/* line 24, ../../app/assets/stylesheets/apps/analytics/reports.css.scss */
+#show-report .parameter-box li {
+ margin-bottom: 5px;
+}
+/* line 25, ../../app/assets/stylesheets/apps/analytics/reports.css.scss */
+#show-report .parameter-box > div {
+ border-left: 1px solid #d4d4d4;
+ overflow: hidden;
+ padding: 10px 15px 15px;
+}
+/* line 26, ../../app/assets/stylesheets/apps/analytics/reports.css.scss */
+#show-report .parameter-box > div form {
+ overflow: hidden;
+}
+/* line 27, ../../app/assets/stylesheets/apps/analytics/reports.css.scss */
+#show-report .parameter-box > div .btn[type='submit'] {
+ width: 220px !important;
+ margin-top: 10px;
+ margin-bottom: 0;
+}
+/* line 28, ../../app/assets/stylesheets/apps/analytics/reports.css.scss */
+#show-report .parameter-box > div .btn[type='submit'] i {
+ margin-right: 5px;
+ vertical-align: sub;
+}
+/* line 32, ../../app/assets/stylesheets/apps/analytics/reports.css.scss */
+#show-report .parameter-box > div .k-picker-wrap,
+#show-report .parameter-box > div .k-numeric-wrap,
+#show-report .parameter-box > div .k-dropdown-wrap {
+ -webkit-box-shadow: rgba(0, 0, 0, 0) 0 0 0 inset;
+ -moz-box-shadow: rgba(0, 0, 0, 0) 0 0 0 inset;
+ box-shadow: rgba(0, 0, 0, 0) 0 0 0 inset;
+ -webkit-box-shadow: rgba(0, 0, 0, 0) 0 0 0;
+ -moz-box-shadow: rgba(0, 0, 0, 0) 0 0 0;
+ box-shadow: rgba(0, 0, 0, 0) 0 0 0;
+ width: 194px !important;
+}
+/* line 33, ../../app/assets/stylesheets/apps/analytics/reports.css.scss */
+#show-report .parameter-box > div label {
+ font-size: 13px;
+ margin-bottom: 1px;
+ text-shadow: 0px 1px 0px white;
+}
+
+/* line 38, ../../app/assets/stylesheets/apps/analytics/reports.css.scss */
+.class-tree-list {
+ text-shadow: 0px 1px 0px white;
+ border: 1px solid #dddddd;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+ overflow: hidden;
+}
+/* line 39, ../../app/assets/stylesheets/apps/analytics/reports.css.scss */
+.class-tree-list > li {
+ overflow: auto;
+ background-color: white;
+}
+/* line 40, ../../app/assets/stylesheets/apps/analytics/reports.css.scss */
+.class-tree-list > li .class-tree-content {
+ overflow: auto;
+ line-height: 20px;
+ font-weight: bold;
+ padding-left: 8px;
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ user-select: none;
+}
+/* line 41, ../../app/assets/stylesheets/apps/analytics/reports.css.scss */
+.class-tree-list > li .class-tree-content:hover {
+ background-image: none;
+ cursor: pointer;
+ background-color: #fdfde0;
+}
+/* line 43, ../../app/assets/stylesheets/apps/analytics/reports.css.scss */
+.class-tree-list > li .class-tree-content .expand-collapse-toggle i {
+ padding: 2px;
+}
+/* line 45, ../../app/assets/stylesheets/apps/analytics/reports.css.scss */
+.class-tree-list > li .class-tree-content input[type="checkbox"] {
+ margin-left: 3px;
+}
+/* line 46, ../../app/assets/stylesheets/apps/analytics/reports.css.scss */
+.class-tree-list > li .class-tree-content .image-wrapper {
+ margin: 2px 3px 0 2px;
+}
+/* line 47, ../../app/assets/stylesheets/apps/analytics/reports.css.scss */
+.class-tree-list > li .class-tree-content .number-of-forms {
+ font-weight: normal;
+ font-size: 11px;
+}
+/* line 50, ../../app/assets/stylesheets/apps/analytics/reports.css.scss */
+.class-tree-list > li:first-child {
+ padding-top: 2px;
+}
+/* line 51, ../../app/assets/stylesheets/apps/analytics/reports.css.scss */
+.class-tree-list > li:last-child {
+ padding-bottom: 2px;
+}
+
+/* line 53, ../../app/assets/stylesheets/apps/analytics/reports.css.scss */
+.form-tree-list {
+ background-color: #fdfdfd;
+}
+/* line 54, ../../app/assets/stylesheets/apps/analytics/reports.css.scss */
+.form-tree-list li {
+ padding: 0 0 3px 34px;
+ line-height: 23px;
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ user-select: none;
+}
+/* line 55, ../../app/assets/stylesheets/apps/analytics/reports.css.scss */
+.form-tree-list li input[type="checkbox"] {
+ margin: 5px 5px 0 0;
+}
+
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#asset-search-list tr th:first-child {
+ width: 4%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#asset-search-list tr th:first-child + th {
+ width: 20%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#asset-search-list tr th:first-child + th + th {
+ width: 19%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#asset-search-list tr th:first-child + th + th + th {
+ width: 19%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#asset-search-list tr th:first-child + th + th + th + th {
+ width: 19%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#asset-search-list tr th:first-child + th + th + th + th + th {
+ width: 19%;
+}
+/* line 2, ../../app/assets/stylesheets/apps/assets.css.scss */
+#asset-search-list tr td {
+ line-height: 15px;
+}
+/* line 3, ../../app/assets/stylesheets/apps/assets.css.scss */
+#asset-search-list tr .asset-description {
+ font-size: 11.5px;
+ line-height: 11.5px;
+}
+/* line 4, ../../app/assets/stylesheets/apps/assets.css.scss */
+#asset-search-list tr .asset-data-bolded {
+ font-weight: bold;
+ font-size: 11.5px;
+ color: #777;
+}
+/* line 5, ../../app/assets/stylesheets/apps/assets.css.scss */
+#asset-search-list tr .icons-location-small {
+ vertical-align: top;
+}
+
+/* line 7, ../../app/assets/stylesheets/apps/assets.css.scss */
+#asset-show {
+ margin-bottom: 35px;
+}
+
+/* line 8, ../../app/assets/stylesheets/apps/assets.css.scss */
+#asset-show-details {
+ overflow: auto;
+}
+/* line 9, ../../app/assets/stylesheets/apps/assets.css.scss */
+#asset-show-details .asset-details {
+ float: left;
+ width: 50%;
+ text-shadow: 0px 1px 0px white;
+}
+/* line 10, ../../app/assets/stylesheets/apps/assets.css.scss */
+#asset-show-details .asset-details .asset-detail {
+ clear: both;
+ padding: 0 10px 10px;
+}
+/* line 11, ../../app/assets/stylesheets/apps/assets.css.scss */
+#asset-show-details .asset-details .asset-detail h4 {
+ margin-bottom: 2px;
+ font-size: 13.5px;
+ line-height: 14px;
+}
+/* line 12, ../../app/assets/stylesheets/apps/assets.css.scss */
+#asset-show-details .asset-details .asset-detail i {
+ vertical-align: middle;
+}
+/* line 15, ../../app/assets/stylesheets/apps/assets.css.scss */
+#asset-show-details .asset-main-detail {
+ float: left;
+ width: 40%;
+}
+/* line 16, ../../app/assets/stylesheets/apps/assets.css.scss */
+#asset-show-details .asset-main-detail > div {
+ padding: 10px;
+ overflow: auto;
+ border: 1px solid #d7dadf;
+ background-color: #f3f6f7;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+}
+
+/* line 19, ../../app/assets/stylesheets/apps/assets.css.scss */
+#asset-attribute-wrapper {
+ width: 59%;
+ margin-top: 0;
+}
+
+/* line 20, ../../app/assets/stylesheets/apps/assets.css.scss */
+#asset-attribute-list {
+ overflow: auto;
+}
+/* line 21, ../../app/assets/stylesheets/apps/assets.css.scss */
+#asset-attribute-list .half {
+ float: left;
+ width: 48%;
+}
+/* line 22, ../../app/assets/stylesheets/apps/assets.css.scss */
+#asset-attribute-list .half.pull-right {
+ float: right;
+ margin-right: 0;
+}
+/* line 24, ../../app/assets/stylesheets/apps/assets.css.scss */
+#asset-attribute-list .module-list-content > li {
+ overflow: auto;
+ line-height: 16px;
+ margin: 2px 0;
+}
+/* line 25, ../../app/assets/stylesheets/apps/assets.css.scss */
+#asset-attribute-list .module-list-content > li > div {
+ float: left;
+ overflow: visible;
+ text-overflow: clip;
+ white-space: normal;
+ word-wrap: break-word;
+ line-height: 16px;
+}
+/* line 26, ../../app/assets/stylesheets/apps/assets.css.scss */
+#asset-attribute-list .module-list-content > li > div:first-child {
+ float: left;
+ width: 40%;
+ overflow: visible;
+ text-overflow: clip;
+ white-space: normal;
+ word-wrap: break-word;
+}
+/* line 27, ../../app/assets/stylesheets/apps/assets.css.scss */
+#asset-attribute-list .module-list-content > li > div:first-child + div {
+ float: left;
+ width: 60%;
+ overflow: visible;
+ text-overflow: clip;
+ white-space: normal;
+ word-wrap: break-word;
+}
+
+/* line 32, ../../app/assets/stylesheets/apps/assets.css.scss */
+.asset-description-title {
+ font-size: 15px !important;
+ font-weight: normal !important;
+ overflow: visible;
+ text-overflow: clip;
+ white-space: normal;
+ word-wrap: break-word;
+}
+
+/* line 33, ../../app/assets/stylesheets/apps/assets.css.scss */
+#asset-details-region {
+ margin-bottom: 15px;
+}
+
+/* line 3, ../../app/assets/stylesheets/apps/categories.css.scss */
+#categories-list-layout #categories-list-region > ul > li {
+ margin-bottom: 15px;
+}
+/* line 4, ../../app/assets/stylesheets/apps/categories.css.scss */
+#categories-list-layout #categories-list-region .module {
+ clear: both;
+ margin-top: 0;
+}
+/* line 5, ../../app/assets/stylesheets/apps/categories.css.scss */
+#categories-list-layout #categories-list-region .module .module-title {
+ position: relative;
+}
+/* line 6, ../../app/assets/stylesheets/apps/categories.css.scss */
+#categories-list-layout #categories-list-region .module .icons-collapse, #categories-list-layout #categories-list-region .module .icons-expand {
+ margin-right: 5px;
+ position: absolute;
+ top: 6px;
+ cursor: pointer;
+}
+/* line 7, ../../app/assets/stylesheets/apps/categories.css.scss */
+#categories-list-layout #categories-list-region .module .category-name {
+ margin-left: 18px;
+}
+/* line 9, ../../app/assets/stylesheets/apps/categories.css.scss */
+#categories-list-layout #categories-list-region .class-list > li {
+ clear: both;
+ overflow: auto;
+ max-height: 30px;
+}
+/* line 10, ../../app/assets/stylesheets/apps/categories.css.scss */
+#categories-list-layout #categories-list-region .class-list > li:first-child {
+ -moz-border-radius-topleft: 0;
+ -webkit-border-top-left-radius: 0;
+ border-top-left-radius: 0;
+ -moz-border-radius-topright: 0;
+ -webkit-border-top-right-radius: 0;
+ border-top-right-radius: 0;
+}
+/* line 11, ../../app/assets/stylesheets/apps/categories.css.scss */
+#categories-list-layout #categories-list-region .class-list > li > div {
+ float: left;
+ padding: 0;
+ font-size: 13px !important;
+}
+/* line 12, ../../app/assets/stylesheets/apps/categories.css.scss */
+#categories-list-layout #categories-list-region .class-list > li > div > div {
+ padding: 2px 10px;
+ overflow: visible;
+ text-overflow: clip;
+ white-space: normal;
+ word-wrap: break-word;
+ overflow: auto;
+ line-height: 19px;
+}
+/* line 13, ../../app/assets/stylesheets/apps/categories.css.scss */
+#categories-list-layout #categories-list-region .class-list > li > div:first-child {
+ width: 5%;
+}
+/* line 14, ../../app/assets/stylesheets/apps/categories.css.scss */
+#categories-list-layout #categories-list-region .class-list > li > div:first-child > div {
+ line-height: 0;
+ padding-right: 0;
+}
+/* line 15, ../../app/assets/stylesheets/apps/categories.css.scss */
+#categories-list-layout #categories-list-region .class-list > li > div:first-child + div {
+ width: 76%;
+}
+/* line 16, ../../app/assets/stylesheets/apps/categories.css.scss */
+#categories-list-layout #categories-list-region .class-list > li > div:first-child + div + div {
+ width: 13%;
+}
+/* line 17, ../../app/assets/stylesheets/apps/categories.css.scss */
+#categories-list-layout #categories-list-region .class-list > li > div:first-child + div + div + div {
+ width: 6%;
+}
+/* line 18, ../../app/assets/stylesheets/apps/categories.css.scss */
+#categories-list-layout #categories-list-region .class-list > li > div:first-child + div + div + div i {
+ vertical-align: middle;
+}
+
+/* line 3, ../../app/assets/stylesheets/apps/classes.css.scss */
+#class-show #details-region {
+ overflow: auto;
+}
+/* line 4, ../../app/assets/stylesheets/apps/classes.css.scss */
+#class-show #details-region > div {
+ overflow: auto;
+}
+/* line 6, ../../app/assets/stylesheets/apps/classes.css.scss */
+#class-show .SectionTitle {
+ margin-top: 35px;
+}
+/* line 7, ../../app/assets/stylesheets/apps/classes.css.scss */
+#class-show .class-title-container {
+ width: 65%;
+}
+/* line 8, ../../app/assets/stylesheets/apps/classes.css.scss */
+#class-show .class-title-container #upload-class-icon {
+ margin: 6px 10px 0 0;
+}
+/* line 9, ../../app/assets/stylesheets/apps/classes.css.scss */
+#class-show .class-title-container .rowStatus, #class-show .class-title-container .rowStatus > span {
+ font-weight: 500;
+ color: #a7acb1;
+}
+/* line 11, ../../app/assets/stylesheets/apps/classes.css.scss */
+#class-show .breadcrumbWrapper {
+ width: 35%;
+}
+/* line 12, ../../app/assets/stylesheets/apps/classes.css.scss */
+#class-show .class-title-wrapper {
+ width: 84%;
+ overflow: auto;
+}
+/* line 13, ../../app/assets/stylesheets/apps/classes.css.scss */
+#class-show .class-title-wrapper h4, #class-show .class-title-wrapper p {
+ display: block;
+ overflow: visible;
+ text-overflow: clip;
+ white-space: normal;
+ word-wrap: break-word;
+}
+/* line 15, ../../app/assets/stylesheets/apps/classes.css.scss */
+#class-show .class-title {
+ overflow: hidden;
+ float: left;
+ width: 100%;
+}
+/* line 16, ../../app/assets/stylesheets/apps/classes.css.scss */
+#class-show .class-title h3 {
+ overflow: visible;
+ text-overflow: clip;
+ white-space: normal;
+ word-wrap: break-word;
+}
+/* line 17, ../../app/assets/stylesheets/apps/classes.css.scss */
+#class-show .class-title h3 span {
+ max-width: 70%;
+ display: inline-block;
+}
+/* line 18, ../../app/assets/stylesheets/apps/classes.css.scss */
+#class-show .class-title h3 button {
+ margin-top: 15px;
+ vertical-align: top;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#class-show #eventtypes-list-table tr th:first-child {
+ width: 45%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#class-show #eventtypes-list-table tr th:first-child + th {
+ width: 27%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#class-show #eventtypes-list-table tr th:first-child + th + th {
+ width: 18%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#class-show #eventtypes-list-table tr th:first-child + th + th + th {
+ width: 10%;
+}
+/* line 22, ../../app/assets/stylesheets/apps/classes.css.scss */
+#class-show #eventtypes-list-table tr i.icons-asset-small:hover {
+ background-position: 0 -3101px;
+ height: 11px;
+ width: 12px;
+}
+/* line 23, ../../app/assets/stylesheets/apps/classes.css.scss */
+#class-show #eventtypes-list-table tr i.icons-form-small:hover {
+ background-position: 0 -3361px;
+ height: 11px;
+ width: 12px;
+}
+/* line 24, ../../app/assets/stylesheets/apps/classes.css.scss */
+#class-show #eventtypes-list-table tr .icons-publish-grey {
+ position: relative;
+ top: -2px;
+}
+
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#list-class-attributes th:first-child {
+ width: 42%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#list-class-attributes th:first-child + th {
+ width: 15%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#list-class-attributes th:first-child + th + th {
+ width: 15%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#list-class-attributes th:first-child + th + th + th {
+ width: 10%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#list-class-attributes th:first-child + th + th + th + th {
+ width: 10%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#list-class-attributes th:first-child + th + th + th + th + th {
+ width: 4%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#list-class-attributes th:first-child + th + th + th + th + th + th {
+ width: 4%;
+}
+
+/* line 28, ../../app/assets/stylesheets/apps/classes.css.scss */
+#asset-settings {
+ width: 100%;
+ overflow: auto;
+ margin-top: 15px;
+}
+/* line 29, ../../app/assets/stylesheets/apps/classes.css.scss */
+#asset-settings > div {
+ margin-left: 20px;
+}
+/* line 30, ../../app/assets/stylesheets/apps/classes.css.scss */
+#asset-settings .module {
+ margin-top: 0;
+}
+/* line 31, ../../app/assets/stylesheets/apps/classes.css.scss */
+#asset-settings .ListWell {
+ margin-bottom: 0;
+}
+/* line 32, ../../app/assets/stylesheets/apps/classes.css.scss */
+#asset-settings .ListWell > li > div > div {
+ float: left;
+}
+/* line 33, ../../app/assets/stylesheets/apps/classes.css.scss */
+#asset-settings .ListWell > li > div > div:last-child {
+ margin-left: 5px;
+}
+
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#attribute-options-list th:first-child,
+#attribute-uoms-list th:first-child {
+ width: 80%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#attribute-options-list th:first-child + th,
+#attribute-uoms-list th:first-child + th {
+ width: 10%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#attribute-options-list th:first-child + th + th,
+#attribute-uoms-list th:first-child + th + th {
+ width: 10%;
+}
+
+/* line 1, ../../app/assets/stylesheets/apps/companysettings.css.scss */
+#CompanySettings .ListWell {
+ margin-bottom: 30px;
+}
+/* line 2, ../../app/assets/stylesheets/apps/companysettings.css.scss */
+#CompanySettings .ListWell > li > div {
+ padding: 10px 10px 10px 30px;
+}
+/* line 3, ../../app/assets/stylesheets/apps/companysettings.css.scss */
+#CompanySettings .ListWell > li > div > div {
+ float: left;
+}
+/* line 4, ../../app/assets/stylesheets/apps/companysettings.css.scss */
+#CompanySettings .ListWell > li > div > div:first-child {
+ width: 62%;
+}
+/* line 5, ../../app/assets/stylesheets/apps/companysettings.css.scss */
+#CompanySettings .ListWell > li > div > div:first-child + div {
+ width: 15%;
+}
+/* line 6, ../../app/assets/stylesheets/apps/companysettings.css.scss */
+#CompanySettings .ListWell > li > div > div:first-child + div + div {
+ width: 23%;
+}
+
+/* line 2, ../../app/assets/stylesheets/apps/company_show.css.scss */
+#company-show #two-column-content-wrapper {
+ padding-top: 0;
+}
+/* line 3, ../../app/assets/stylesheets/apps/company_show.css.scss */
+#company-show #article-region {
+ border-left: 0;
+}
+/* line 5, ../../app/assets/stylesheets/apps/company_show.css.scss */
+#company-show #company-details-container {
+ float: left;
+ width: 49%;
+ margin: 10px 1% 0 0;
+ position: relative;
+}
+/* line 6, ../../app/assets/stylesheets/apps/company_show.css.scss */
+#company-show #company-details-container #company-details {
+ background-color: #f8f9fa;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+ border: 1px solid #eaebe9;
+ padding: 20px;
+ font-size: 14px;
+ color: #616c73;
+ text-shadow: 0px 1px 0px white;
+ overflow: visible;
+ text-overflow: clip;
+ white-space: normal;
+ word-wrap: break-word;
+}
+/* line 7, ../../app/assets/stylesheets/apps/company_show.css.scss */
+#company-show #company-details-container #company-details i {
+ vertical-align: middle;
+}
+/* line 8, ../../app/assets/stylesheets/apps/company_show.css.scss */
+#company-show #company-details-container #company-details .company-details-edit {
+ position: absolute;
+ top: 5px;
+ right: 5px;
+}
+/* line 9, ../../app/assets/stylesheets/apps/company_show.css.scss */
+#company-show #company-details-container #company-details .company-details-name {
+ font-weight: bold;
+ color: #495259;
+ font-size: 21px;
+}
+/* line 10, ../../app/assets/stylesheets/apps/company_show.css.scss */
+#company-show #company-details-container #company-details .company-details-num {
+ font-weight: bold;
+ color: #616c73;
+ font-size: 16px;
+ margin-bottom: 5px;
+}
+/* line 11, ../../app/assets/stylesheets/apps/company_show.css.scss */
+#company-show #company-details-container #company-details .dl-horizontal {
+ margin-top: 15px;
+ text-shadow: 0px 1px 0px white;
+}
+/* line 12, ../../app/assets/stylesheets/apps/company_show.css.scss */
+#company-show #company-details-container #company-details .dl-horizontal dt, #company-show #company-details-container #company-details .dl-horizontal dd {
+ margin-bottom: 3px;
+}
+/* line 13, ../../app/assets/stylesheets/apps/company_show.css.scss */
+#company-show #company-details-container #company-details .dl-horizontal dt {
+ margin-left: 0;
+}
+/* line 17, ../../app/assets/stylesheets/apps/company_show.css.scss */
+#company-show #company-links-container {
+ float: right;
+ width: 49%;
+ margin-top: 10px;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#company-show #company-forms-priority-list tr th:first-child {
+ width: 6%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#company-show #company-forms-priority-list tr th:first-child + th {
+ width: 25%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#company-show #company-forms-priority-list tr th:first-child + th + th {
+ width: 18%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#company-show #company-forms-priority-list tr th:first-child + th + th + th {
+ width: 8%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#company-show #company-forms-priority-list tr th:first-child + th + th + th + th {
+ width: 8%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#company-show #company-forms-priority-list tr th:first-child + th + th + th + th + th {
+ width: 11%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#company-show #company-forms-priority-list tr th:first-child + th + th + th + th + th + th {
+ width: 8%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#company-show #company-forms-priority-list tr th:first-child + th + th + th + th + th + th + th {
+ width: 16%;
+}
+/* line 20, ../../app/assets/stylesheets/apps/company_show.css.scss */
+#company-show #company-forms-priority-list tr .image-wrapper {
+ margin-left: 5px;
+}
+/* line 21, ../../app/assets/stylesheets/apps/company_show.css.scss */
+#company-show #company-forms-priority-list tr .btn-mini {
+ line-height: 12px;
+ width: 100%;
+}
+/* line 23, ../../app/assets/stylesheets/apps/company_show.css.scss */
+#company-show #grid-region {
+ clear: both;
+}
+/* line 25, ../../app/assets/stylesheets/apps/company_show.css.scss */
+#company-show #current-priorities-pie-chart,
+#company-show #current-priorities-column-chart {
+ height: 150px;
+ width: 100%;
+}
+/* line 27, ../../app/assets/stylesheets/apps/company_show.css.scss */
+#company-show #activity-links {
+ float: right;
+ width: 49%;
+ margin-top: 10px;
+}
+/* line 28, ../../app/assets/stylesheets/apps/company_show.css.scss */
+#company-show #forms-completed-line-chart {
+ width: 100%;
+ float: left;
+ overflow: hidden;
+ *zoom: 1;
+ margin: 0;
+}
+/* line 29, ../../app/assets/stylesheets/apps/company_show.css.scss */
+#company-show #activity-picker-region {
+ margin-bottom: 5px;
+}
+/* line 30, ../../app/assets/stylesheets/apps/company_show.css.scss */
+#company-show #locations-with-activity-list {
+ overflow: auto;
+ clear: both;
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+ width: 68%;
+ min-width: 68%;
+ max-width: 68%;
+ padding: 0;
+ border: 0 solid #d7dadf;
+ float: left;
+}
+/* line 31, ../../app/assets/stylesheets/apps/company_show.css.scss */
+#company-show #locations-with-activity-list #geo-chart-container {
+ min-height: 260px;
+ height: 260px;
+ float: left;
+}
+/* line 32, ../../app/assets/stylesheets/apps/company_show.css.scss */
+#company-show #locations-with-activity-list .module ul {
+ float: left;
+ min-width: 250px !important;
+}
+/* line 33, ../../app/assets/stylesheets/apps/company_show.css.scss */
+#company-show #locations-with-activity-list .module ul > li {
+ margin: 5px 0;
+ padding-bottom: 5px;
+ line-height: 12px;
+}
+/* line 34, ../../app/assets/stylesheets/apps/company_show.css.scss */
+#company-show #locations-with-activity-list .module ul > li > a {
+ font-weight: bold;
+ color: #3e4852;
+}
+/* line 35, ../../app/assets/stylesheets/apps/company_show.css.scss */
+#company-show #locations-with-activity-list .module ul > li > a:hover {
+ text-decoration: none;
+ cursor: default;
+}
+/* line 36, ../../app/assets/stylesheets/apps/company_show.css.scss */
+#company-show #locations-with-activity-list .module ul > li > a i {
+ position: relative;
+ top: -2px;
+}
+/* line 38, ../../app/assets/stylesheets/apps/company_show.css.scss */
+#company-show #locations-with-activity-list .module ul > li > div {
+ padding-left: 17px;
+}
+/* line 42, ../../app/assets/stylesheets/apps/company_show.css.scss */
+#company-show #users-with-activity-list {
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+ width: 30%;
+ min-width: 30%;
+ max-width: 30%;
+ padding: 0;
+ border: 0 solid #d7dadf;
+ float: left;
+ float: right;
+}
+/* line 43, ../../app/assets/stylesheets/apps/company_show.css.scss */
+#company-show #users-with-activity-list .module-list-content > li {
+ line-height: 20px;
+}
+/* line 44, ../../app/assets/stylesheets/apps/company_show.css.scss */
+#company-show #users-with-activity-list i {
+ vertical-align: middle;
+}
+/* line 46, ../../app/assets/stylesheets/apps/company_show.css.scss */
+#company-show #pie-chart-container {
+ min-height: 150px;
+ height: 150px;
+ margin: 15px 0;
+}
+/* line 47, ../../app/assets/stylesheets/apps/company_show.css.scss */
+#company-show #line-chart-container {
+ min-height: 210px;
+ height: 210px;
+}
+
+/* line 2, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#pinned-toolbar {
+ text-shadow: 0px 1px 0px white;
+ background-color: #eaeaea;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+ background-color: #f3f3f3;
+ background-image: -moz-linear-gradient(top, #f9f9f9, #eaeaea);
+ background-image: -ms-linear-gradient(top, #f9f9f9, #eaeaea);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f9f9f9), to(#eaeaea));
+ background-image: -webkit-linear-gradient(top, #f9f9f9, #eaeaea);
+ background-image: -o-linear-gradient(top, #f9f9f9, #eaeaea);
+ background-image: linear-gradient(top, #f9f9f9, #eaeaea);
+ background-repeat: repeat-x;
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9f9f9', endColorstr='#eaeaea', GradientType=0);
+ background-color: whitesmoke;
+ background-image: -moz-linear-gradient(top, #f9f9f9, #f4f4f4 25%, #efefef 50%, #eaeaea 75%);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f9f9f9), color-stop(25%, #f4f4f4), color-stop(50%, #efefef), to(75%, #eaeaea));
+ background-image: -webkit-linear-gradient(top, #f9f9f9, #f4f4f4 25%, #efefef 50%, #eaeaea 75%);
+ background-image: -o-linear-gradient(top, #f9f9f9, #f4f4f4 25%, #efefef 50%, #eaeaea 75%);
+ background-image: linear-gradient(to bottom, #f9f9f9, #f4f4f4 25%, #efefef 50%, #eaeaea 75%);
+ background-repeat: no-repeat;
+ border-color: #f4f4f4;
+ border-color: #f4f4f4 #f4f4f4 #cecece;
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) fadein(rgba(0, 0, 0, 0.1), 15%);
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9f9f9', endColorstr='#eaeaea', GradientType=0);
+ -webkit-border-radius: 0;
+ -moz-border-radius: 0;
+ -ms-border-radius: 0;
+ -o-border-radius: 0;
+ border-radius: 0;
+ color: #4b5566;
+ border-bottom-color: #bcbcbc;
+ -webkit-box-shadow: rgba(0, 0, 0, 0.5) 0 1px 6px;
+ -moz-box-shadow: rgba(0, 0, 0, 0.5) 0 1px 6px;
+ box-shadow: rgba(0, 0, 0, 0.5) 0 1px 6px;
+ width: 100%;
+ left: 0;
+ right: 0;
+ top: 0;
+ position: absolute;
+ z-index: 99;
+ padding-top: 0;
+}
+/* line 3, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#pinned-toolbar h3 {
+ width: 50%;
+ font-size: 18px !important;
+ letter-spacing: 0 !important;
+}
+/* line 4, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#pinned-toolbar h3 button {
+ padding-left: 0;
+}
+/* line 6, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#pinned-toolbar .breadcrumbWrapper {
+ width: 50%;
+ float: left;
+}
+/* line 7, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#pinned-toolbar .divider {
+ margin: 0;
+}
+/* line 8, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#pinned-toolbar .controls-wrapper {
+ margin-bottom: 6px !important;
+}
+/* line 9, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#pinned-toolbar .icons-logout-arrow-blue {
+ vertical-align: top;
+ margin-right: 3px;
+}
+/* line 11, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#pinned-toolbar #eventtype-published-unpublished-wrapper .btn {
+ height: 23px;
+ padding-top: 2px;
+}
+/* line 12, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#pinned-toolbar #eventtype-published-unpublished-wrapper .dropdown-menu {
+ top: auto;
+ right: auto !important;
+}
+/* line 13, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#pinned-toolbar #eventtype-published-unpublished-wrapper i {
+ vertical-align: baseline;
+}
+
+/* line 17, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+.new-points-list, .reorder-points-list {
+ z-index: 101 !important;
+}
+/* line 18, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+.new-points-list:after, .reorder-points-list:after {
+ border-bottom: 6px solid white;
+ border-left: 6px solid transparent;
+ border-right: 6px solid transparent;
+ content: "";
+ display: inline-block;
+ right: 10px;
+ position: absolute;
+ top: -6px;
+}
+/* line 19, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+.new-points-list:before, .reorder-points-list:before {
+ border-bottom: 7px solid rgba(0, 0, 0, 0.2);
+ border-left: 7px solid transparent;
+ border-right: 7px solid transparent;
+ content: "";
+ display: inline-block;
+ right: 9px;
+ position: absolute;
+ top: -8px;
+}
+/* line 21, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+.new-points-list.dropup-menu:after, .reorder-points-list.dropup-menu:after {
+ border-bottom: 0;
+ border-top: 6px solid white;
+ right: 22px;
+ top: 100%;
+}
+/* line 22, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+.new-points-list.dropup-menu:before, .reorder-points-list.dropup-menu:before {
+ border-bottom: 0;
+ border-top: 7px solid rgba(0, 0, 0, 0.2);
+ right: 21px;
+ top: 100%;
+}
+/* line 24, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+.new-points-list > li > a, .reorder-points-list > li > a {
+ overflow: auto;
+ line-height: 15px;
+}
+/* line 25, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+.new-points-list > li > a div.pointIcon, .reorder-points-list > li > a div.pointIcon {
+ width: 17% !important;
+ float: left !important;
+}
+/* line 26, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+.new-points-list > li > a div.pointDes, .reorder-points-list > li > a div.pointDes {
+ width: 83% !important;
+ float: left !important;
+}
+/* line 28, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+.new-points-list .divider, .reorder-points-list .divider {
+ margin: 0;
+}
+
+/* line 30, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+.new-points-list {
+ width: 240px;
+}
+/* line 31, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+.new-points-list:after {
+ right: 20px;
+}
+/* line 32, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+.new-points-list:before {
+ right: 19px;
+}
+/* line 33, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+.new-points-list i {
+ margin-right: 3px;
+ vertical-align: baseline !important;
+}
+/* line 34, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+.new-points-list .pointSingleSelect:hover i {
+ background-position: 0 -2123px;
+ height: 16px;
+ width: 22px;
+}
+/* line 35, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+.new-points-list .pointMultiSelect:hover i {
+ background-position: 0 -3456px;
+ height: 16px;
+ width: 22px;
+}
+/* line 36, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+.new-points-list .pointSingleText:hover i {
+ background-position: 0 -2791px;
+ height: 10px;
+ width: 20px;
+}
+/* line 37, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+.new-points-list .pointParagraph:hover i {
+ background-position: 0 -3772px;
+ height: 10px;
+ width: 17px;
+}
+/* line 38, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+.new-points-list .pointNumber:hover i {
+ background-position: 0 -1355px;
+ height: 10px;
+ width: 23px;
+}
+/* line 39, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+.new-points-list .pointDate:hover i {
+ background-position: 0 -2420px;
+ height: 16px;
+ width: 22px;
+}
+/* line 40, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+.new-points-list .pointBarcode:hover i {
+ background-position: 0 -3976px;
+ height: 10px;
+ width: 17px;
+}
+/* line 41, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+.new-points-list .pointSketch:hover i {
+ background-position: 0 -1638px;
+ height: 16px;
+ width: 15px;
+}
+/* line 42, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+.new-points-list .pointSignature:hover i {
+ background-position: 0 -1385px;
+ height: 16px;
+ width: 20px;
+}
+
+/* line 45, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder {
+ margin-top: 100px;
+}
+/* line 46, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .row.form-builder-content {
+ padding-bottom: 50px;
+}
+/* line 47, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .wrapper {
+ float: left;
+ width: 938px;
+}
+/* line 48, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .point-category-item {
+ float: left;
+ border: 1px solid #d7dadf;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+ margin-bottom: 30px;
+}
+/* line 49, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .point-category-item h3 {
+ color: #3E4852;
+}
+/* line 50, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .point-category-item .empty_container {
+ clear: both;
+}
+/* line 51, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .point-category-item .empty_container .well {
+ margin-bottom: 0;
+ border: 0;
+}
+/* line 54, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .ListWell {
+ float: left;
+ overflow: visible;
+ background-color: #e8edf0 !important;
+ width: 100%;
+ border: 0;
+ margin: 0;
+}
+/* line 55, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .ListWell > li {
+ background-color: #e8edf0;
+ float: left;
+ width: 100%;
+ border-bottom: 1px solid #d7dadf;
+}
+/* line 56, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .ListWell > li:last-child {
+ border-bottom: 0;
+}
+/* line 57, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .ListWell > li > div {
+ padding: 0;
+}
+/* line 59, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .ListWell .point-content {
+ background-color: #fdfdfd;
+ float: left;
+ width: 94%;
+ overflow: visible;
+}
+/* line 60, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .ListWell:empty {
+ width: auto !important;
+ margin: 0;
+ border: none;
+}
+/* line 64, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .header-controls li.dropdown,
+#form-builder .footer-controls li.dropdown {
+ margin-left: 3px !important;
+}
+/* line 65, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .header-controls li.dropdown > .btn,
+#form-builder .footer-controls li.dropdown > .btn {
+ padding-left: 0 !important;
+}
+/* line 66, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .header-controls li.dropdown .new-point,
+#form-builder .footer-controls li.dropdown .new-point {
+ margin-right: 11px !important;
+}
+/* line 68, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .header-controls {
+ background-color: #e8edf0;
+ overflow: visible;
+ float: left;
+ width: 938px;
+ padding: 0;
+ border: 0;
+}
+/* line 69, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .header-controls > div {
+ overflow: visible;
+ margin-bottom: 0;
+ padding: 3px 0 2px;
+ float: left;
+ width: 100%;
+ border-bottom: 1px solid #d7dadf;
+ line-height: 24px;
+}
+/* line 70, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .header-controls > div h5 {
+ margin-left: 8px;
+ overflow: visible;
+ text-overflow: clip;
+ white-space: normal;
+ word-wrap: break-word;
+ line-height: 24px;
+}
+/* line 72, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .header-controls > div > ul.pull-left {
+ width: 87%;
+}
+/* line 73, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .header-controls > div > ul.pull-left > li {
+ line-height: 24px;
+}
+/* line 74, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .header-controls > div > ul.pull-left > li:first-child {
+ width: 4%;
+}
+/* line 75, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .header-controls > div > ul.pull-left > li:first-child > .btn {
+ margin-left: 5px;
+}
+/* line 77, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .header-controls > div > ul.pull-left > li:last-child {
+ width: 94%;
+}
+/* line 80, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .header-controls > div > ul.pull-right {
+ width: 13%;
+}
+/* line 81, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .header-controls > div > ul.pull-right > li {
+ line-height: 24px;
+ float: right;
+}
+/* line 85, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .header-controls .btn {
+ margin: 0;
+}
+/* line 87, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .expand-collapse-toggle {
+ margin-left: 13px;
+}
+/* line 89, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .footer-controls {
+ -webkit-border-radius: 0;
+ -moz-border-radius: 0;
+ -ms-border-radius: 0;
+ -o-border-radius: 0;
+ border-radius: 0;
+}
+/* line 90, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .footer-controls .controlsBar {
+ border-top: 1px solid #d7dadf !important;
+}
+/* line 93, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .point-number {
+ width: 6%;
+ background-color: #e8edf0;
+}
+/* line 94, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .point-number > div {
+ padding: 15px 10px;
+ text-align: center;
+}
+/* line 95, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .point-number h3 {
+ font-size: 20px !important;
+ line-height: 15px !important;
+}
+/* line 96, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .point-number i {
+ vertical-align: middle;
+}
+/* line 99, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .default-value {
+ position: relative;
+ margin-left: 5px;
+ top: 3px;
+ overflow: visible;
+ text-overflow: clip;
+ white-space: normal;
+ word-wrap: break-word;
+}
+/* line 101, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .movePoint {
+ display: inline-block !important;
+ padding: 0 6px !important;
+}
+/* line 102, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .point-controls > div {
+ padding: 15px 15px 0px;
+ overflow: auto;
+}
+/* line 103, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .point-controls {
+ width: 32%;
+}
+/* line 104, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .point-controls .icons-edit-small-grey {
+ cursor: default !important;
+ cursor: not-allowed !important;
+}
+/* line 106, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .point-question {
+ width: 68%;
+}
+/* line 107, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .point-question h5 {
+ line-height: 19px;
+ font-size: 16px;
+ font-weight: 500;
+ margin-bottom: 3px;
+}
+/* line 108, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .point-question h5 i {
+ position: relative;
+ top: -1px;
+}
+/* line 110, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .point-question .content-wrapper {
+ padding: 0;
+ float: left;
+ overflow: visible !important;
+}
+/* line 111, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .point-question .content-wrapper > h4 {
+ margin-left: 50px;
+}
+/* line 113, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .point-question > div {
+ padding: 15px 20px 0 20px;
+ float: left;
+ border-left: 1px solid #d7dadf;
+}
+/* line 114, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .point-question p {
+ width: 500px;
+}
+/* line 115, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .point-question a:hover {
+ text-decoration: underline;
+}
+/* line 116, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .point-question .icons-barcode {
+ vertical-align: baseline;
+}
+/* line 118, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .SketchPlaceholder {
+ width: 280px;
+ height: 80px;
+}
+/* line 120, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .PriorityGrade i {
+ vertical-align: middle;
+ position: relative;
+ top: -1px;
+}
+/* line 122, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .iPhoneRows {
+ width: 500px !important;
+ background-color: white;
+ padding: 5px 10px;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+ border: 1px solid #d7dadf;
+}
+/* line 123, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .iPhoneRows label {
+ margin-bottom: 3px;
+}
+/* line 124, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .iPhoneRows .ConditionText {
+ width: 78%;
+ margin-bottom: 3px;
+ font-size: 13.5px;
+ font-weight: normal !important;
+}
+/* line 125, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .iPhoneRows .ConditionText .LabelText {
+ overflow: visible;
+ text-overflow: clip;
+ white-space: normal;
+ word-wrap: break-word;
+}
+/* line 127, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .iPhoneRows .ConditionScore {
+ width: 5%;
+ text-align: right;
+ color: #999;
+ font-style: italic;
+ font-size: 13.5px;
+}
+/* line 128, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .iPhoneRows .PriorityGrade {
+ display: inline-block;
+ width: 17%;
+ text-align: right;
+ font-size: 13.5px;
+}
+/* line 133, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .ListWell li.active, #form-builder .ListWell li.active .point-number {
+ background-color: #efefc3 !important;
+}
+/* line 136, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .ListWell li.active .point-content,
+#form-builder .ListWell li.active .point-question,
+#form-builder .ListWell li.active .form-options, #form-builder .ListWell li.active .point-number .point-content,
+#form-builder .ListWell li.active .point-number .point-question,
+#form-builder .ListWell li.active .point-number .form-options {
+ background-color: #fcfcdf;
+}
+/* line 139, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .form-vertical {
+ margin-bottom: 0;
+}
+/* line 140, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .form-vertical .point-question > div {
+ padding-top: 10px;
+}
+/* line 141, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .form-vertical #Definition {
+ width: 250px;
+}
+/* line 142, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .form-vertical .control-group {
+ float: left;
+ clear: both;
+ margin-bottom: 5px;
+}
+/* line 143, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .form-vertical .control-label {
+ margin-bottom: 1px;
+ font-size: 13px;
+ text-shadow: 0px 1px 0px white;
+}
+/* line 144, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .form-vertical .control-label > i {
+ right: 0;
+ margin-right: 3px;
+}
+/* line 147, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .controls {
+ overflow: visible !important;
+ display: block;
+ width: 100%;
+ float: left;
+}
+/* line 149, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .controls input[disabled='disabled'],
+#form-builder .controls textarea[disabled='disabled'] {
+ cursor: default !important;
+}
+/* line 150, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .controls input[type=text] {
+ width: 250px;
+}
+/* line 151, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .controls textarea {
+ width: 500px;
+ resize: vertical;
+ max-height: 300px;
+}
+/* line 152, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .controls .btn-group, #form-builder .controls .btn {
+ margin-left: 5px;
+}
+/* line 153, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .controls .btn.btn-mini {
+ line-height: 18px !important;
+}
+/* line 155, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .PointTypesContainer {
+ float: left;
+}
+/* line 156, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .resource-buttons {
+ float: left;
+ padding: 0px 0px 10px 20px;
+ float: left;
+ border-left: 1px solid #d7dadf;
+}
+/* line 157, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .resource-buttons .btn {
+ color: #4d80b4;
+ text-shadow: 0px 1px 0px white;
+ padding-left: 0;
+ padding-bottom: 2px;
+}
+/* line 158, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .resource-buttons .btn:hover {
+ color: #4d80b4;
+ text-shadow: 0px 1px 0px white;
+}
+/* line 161, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .form-options {
+ width: 32%;
+}
+/* line 162, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .form-options .btn-primary {
+ margin-left: 5px;
+}
+/* line 164, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .form-options > div:first-child {
+ padding: 15px 15px 10px;
+ overflow: auto;
+}
+/* line 165, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .form-options > div > div {
+ overflow: auto;
+}
+/* line 167, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .form-options small {
+ margin-top: 5px;
+ display: inline-block;
+}
+/* line 170, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .inputLabeled label {
+ margin-right: 5px;
+ position: relative;
+ top: 4px;
+}
+/* line 171, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .inputLabeled .SketchPlaceholder {
+ margin-top: 10px;
+ float: left;
+}
+
+/* line 2, ../../app/assets/stylesheets/apps/eventtypes_edit.css.scss */
+.editPointContentRegion .controls {
+ float: left;
+ overflow: visible !important;
+}
+
+/* line 3, ../../app/assets/stylesheets/apps/eventtypes_edit.css.scss */
+.list-condition-template-options {
+ vertical-align: middle;
+}
+
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#list-condition-templates tr th:first-child {
+ width: 46%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#list-condition-templates tr th:first-child + th {
+ width: 30%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#list-condition-templates tr th:first-child + th + th {
+ width: 16%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#list-condition-templates tr th:first-child + th + th + th {
+ width: 4%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#list-condition-templates tr th:first-child + th + th + th + th {
+ width: 4%;
+}
+
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#new-edit-condition-template tr th:first-child {
+ width: 7%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#new-edit-condition-template tr th:first-child + th {
+ width: 30%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#new-edit-condition-template tr th:first-child + th + th {
+ width: 16%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#new-edit-condition-template tr th:first-child + th + th + th {
+ width: 16%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#new-edit-condition-template tr th:first-child + th + th + th + th {
+ width: 11%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#new-edit-condition-template tr th:first-child + th + th + th + th + th {
+ width: 12%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#new-edit-condition-template tr th:first-child + th + th + th + th + th + th {
+ width: 4%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#new-edit-condition-template tr th:first-child + th + th + th + th + th + th + th {
+ width: 4%;
+}
+/* line 7, ../../app/assets/stylesheets/apps/eventtypes_edit.css.scss */
+#new-edit-condition-template tr .ColorColumn > div {
+ overflow: auto;
+}
+/* line 8, ../../app/assets/stylesheets/apps/eventtypes_edit.css.scss */
+#new-edit-condition-template tr .ColorColumn i {
+ float: left;
+ position: relative;
+ top: 11px;
+ margin-right: 3px;
+}
+/* line 9, ../../app/assets/stylesheets/apps/eventtypes_edit.css.scss */
+#new-edit-condition-template tr .ColorColumn .square-small {
+ float: left;
+ top: 7px;
+}
+/* line 10, ../../app/assets/stylesheets/apps/eventtypes_edit.css.scss */
+#new-edit-condition-template tr .ColorColumn .control-group {
+ width: 80% !important;
+ margin: 0;
+ line-height: 30px;
+}
+/* line 12, ../../app/assets/stylesheets/apps/eventtypes_edit.css.scss */
+#new-edit-condition-template tr td:first-child input {
+ width: 80% !important;
+}
+/* line 13, ../../app/assets/stylesheets/apps/eventtypes_edit.css.scss */
+#new-edit-condition-template tr .conditionDefaultRadio {
+ width: auto !important;
+ position: relative;
+ left: 28%;
+ vertical-align: middle;
+}
+/* line 15, ../../app/assets/stylesheets/apps/eventtypes_edit.css.scss */
+#new-edit-condition-template tr .content-wrapper > h4 {
+ margin-left: 25px;
+ margin-top: 10px;
+}
+/* line 16, ../../app/assets/stylesheets/apps/eventtypes_edit.css.scss */
+#new-edit-condition-template tr .content-wrapper > ul {
+ padding: 5px 20px 0 !important;
+}
+/* line 17, ../../app/assets/stylesheets/apps/eventtypes_edit.css.scss */
+#new-edit-condition-template tr .content-wrapper > ul label {
+ width: 110px !important;
+}
+/* line 18, ../../app/assets/stylesheets/apps/eventtypes_edit.css.scss */
+#new-edit-condition-template tr .content-wrapper > ul .controls {
+ margin-left: 120px !important;
+}
+/* line 19, ../../app/assets/stylesheets/apps/eventtypes_edit.css.scss */
+#new-edit-condition-template tr .content-wrapper > ul li {
+ line-height: 27px;
+}
+/* line 22, ../../app/assets/stylesheets/apps/eventtypes_edit.css.scss */
+#new-edit-condition-template tr .control-group.divider {
+ padding-bottom: 0 !important;
+ margin-bottom: 10px !important;
+}
+
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#edit-point-canned-comments tr th:first-child,
+#edit-point-procedures tr th:first-child {
+ width: 45%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#edit-point-canned-comments tr th:first-child + th,
+#edit-point-procedures tr th:first-child + th {
+ width: 47%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#edit-point-canned-comments tr th:first-child + th + th,
+#edit-point-procedures tr th:first-child + th + th {
+ width: 4%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#edit-point-canned-comments tr th:first-child + th + th + th,
+#edit-point-procedures tr th:first-child + th + th + th {
+ width: 4%;
+}
+
+/* line 26, ../../app/assets/stylesheets/apps/eventtypes_edit.css.scss */
+.dialog-edit-class-default-fields {
+ min-width: 700px;
+ max-width: 700px;
+}
+
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#list-point-files tr th:first-child {
+ width: 34%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#list-point-files tr th:first-child + th {
+ width: 11%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#list-point-files tr th:first-child + th + th {
+ width: 47%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#list-point-files tr th:first-child + th + th + th {
+ width: 4%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#list-point-files tr th:first-child + th + th + th + th {
+ width: 4%;
+}
+/* line 28, ../../app/assets/stylesheets/apps/eventtypes_edit.css.scss */
+#list-point-files tr .icons-file {
+ vertical-align: top;
+}
+
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#edit-point-uoms tr th:first-child {
+ width: 80%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#edit-point-uoms tr th:first-child + th {
+ width: 10%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#edit-point-uoms tr th:first-child + th + th {
+ width: 10%;
+}
+
+/* line 31, ../../app/assets/stylesheets/apps/eventtypes_edit.css.scss */
+.listConditionTemplateOptions {
+ margin-left: 10px;
+}
+
+/* line 32, ../../app/assets/stylesheets/apps/eventtypes_edit.css.scss */
+.conditionTemplatesDialog {
+ max-width: 500px;
+}
+
+/* line 33, ../../app/assets/stylesheets/apps/eventtypes_edit.css.scss */
+#ConditionTemplateWrapper {
+ display: none;
+}
+/* line 34, ../../app/assets/stylesheets/apps/eventtypes_edit.css.scss */
+#ConditionTemplateWrapper a.help-block {
+ margin-top: 0;
+}
+
+/* line 36, ../../app/assets/stylesheets/apps/eventtypes_edit.css.scss */
+#data-type-wrapper {
+ display: none;
+}
+
+/* line 38, ../../app/assets/stylesheets/apps/eventtypes_edit.css.scss */
+[id^="Color-list"],
+[id*="Color-list"] {
+ width: 100px !important;
+}
+
+/* line 40, ../../app/assets/stylesheets/apps/eventtypes_edit.css.scss */
+.category-options-dropdown .dropdown-menu {
+ z-index: 6000 !important;
+}
+/* line 41, ../../app/assets/stylesheets/apps/eventtypes_edit.css.scss */
+.category-options-dropdown .divider {
+ margin: 0;
+}
+
+/* line 2, ../../app/assets/stylesheets/apps/folders.css.scss */
+#folders #article-title {
+ margin-top: 15px;
+}
+/* line 3, ../../app/assets/stylesheets/apps/folders.css.scss */
+#folders #article-title h3 {
+ line-height: 44px;
+}
+/* line 5, ../../app/assets/stylesheets/apps/folders.css.scss */
+#folders #line_chart_container.loading {
+ background: url(/assets/ajax.gif) transparent no-repeat 50% 50%;
+ min-height: 200px;
+}
+/* line 6, ../../app/assets/stylesheets/apps/folders.css.scss */
+#folders #line_chart_controls {
+ height: 50px;
+}
+/* line 7, ../../app/assets/stylesheets/apps/folders.css.scss */
+#folders #folder_types_pie_chart {
+ float: left;
+}
+/* line 8, ../../app/assets/stylesheets/apps/folders.css.scss */
+#folders #folder_types_pie_chart.loading {
+ background: url(/assets/ajax.gif) transparent no-repeat 50% 50%;
+}
+/* line 10, ../../app/assets/stylesheets/apps/folders.css.scss */
+#folders #folder_types_list {
+ float: right;
+}
+/* line 11, ../../app/assets/stylesheets/apps/folders.css.scss */
+#folders #FoldersList {
+ clear: both;
+ margin-top: 10px;
+}
+/* line 12, ../../app/assets/stylesheets/apps/folders.css.scss */
+#folders #show_wrap {
+ display: none;
+}
+/* line 13, ../../app/assets/stylesheets/apps/folders.css.scss */
+#folders fieldset {
+ margin: 40px 30px 30px;
+}
+/* line 14, ../../app/assets/stylesheets/apps/folders.css.scss */
+#folders .dropdown {
+ margin-left: 3px;
+}
+/* line 16, ../../app/assets/stylesheets/apps/folders.css.scss */
+#folders .dropdown-toggle:hover .caret {
+ border-bottom-color: #3d70a5;
+ border-top-color: #3d70a5;
+}
+/* line 17, ../../app/assets/stylesheets/apps/folders.css.scss */
+#folders .dropdown-toggle .caret {
+ position: relative;
+ top: 2px;
+ border-bottom-color: #3d70a5;
+ border-top-color: #3d70a5;
+}
+/* line 20, ../../app/assets/stylesheets/apps/folders.css.scss */
+#folders .dropdown-toggle.active .icons-folder,
+#folders .dropdown-toggle:active .icons-folder {
+ background-position: 0 -2965px;
+ height: 16px;
+ width: 15px;
+}
+/* line 21, ../../app/assets/stylesheets/apps/folders.css.scss */
+#folders .dropdown-toggle:focus .icons-folder {
+ background-position: 0 -2821px;
+ height: 16px;
+ width: 15px;
+}
+/* line 43, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+#folders .dropdown-toggle:focus .icons-folder:active, #folders .dropdown-toggle:focus .icons-folder.folder_active, #folders .dropdown-toggle:focus .icons-folder.folder-active {
+ background-position: 0 -2965px;
+}
+/* line 22, ../../app/assets/stylesheets/apps/folders.css.scss */
+#folders > .form-horizontal {
+ margin-bottom: 100px;
+}
+
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+.JobsWrapper .table-fixed tr th:first-child {
+ width: 1.5%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+.JobsWrapper .table-fixed tr th:first-child + th {
+ width: 25%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+.JobsWrapper .table-fixed tr th:first-child + th + th {
+ width: 19%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+.JobsWrapper .table-fixed tr th:first-child + th + th + th {
+ width: 20%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+.JobsWrapper .table-fixed tr th:first-child + th + th + th + th {
+ width: 15%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+.JobsWrapper .table-fixed tr th:first-child + th + th + th + th + th {
+ width: 19.5%;
+}
+
+/* line 26, ../../app/assets/stylesheets/apps/folders.css.scss */
+.IndentButton {
+ margin-left: 27px;
+}
+
+/* line 27, ../../app/assets/stylesheets/apps/folders.css.scss */
+.control-group + .AutoGenerate {
+ margin-top: -10px;
+ margin-bottom: 15px;
+}
+
+/* line 28, ../../app/assets/stylesheets/apps/folders.css.scss */
+.AutoGenerate {
+ overflow: auto;
+}
+/* line 29, ../../app/assets/stylesheets/apps/folders.css.scss */
+.AutoGenerate > span {
+ float: right;
+ margin-right: 43px;
+}
+/* line 30, ../../app/assets/stylesheets/apps/folders.css.scss */
+.AutoGenerate > span > label {
+ color: #4d80b4;
+ font-weight: normal !important;
+ float: none !important;
+ display: inline-block;
+ width: auto !important;
+}
+/* line 31, ../../app/assets/stylesheets/apps/folders.css.scss */
+.AutoGenerate > span > input {
+ position: relative;
+ top: -3px;
+}
+
+/* line 35, ../../app/assets/stylesheets/apps/folders.css.scss */
+#ChooseFormsTable {
+ margin-bottom: 5px;
+}
+/* line 36, ../../app/assets/stylesheets/apps/folders.css.scss */
+#ChooseFormsTable + button {
+ margin-bottom: 30px;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#ChooseFormsTable tr th:first-child {
+ width: 24%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#ChooseFormsTable tr th:first-child + th {
+ width: 24%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#ChooseFormsTable tr th:first-child + th + th {
+ width: 24%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#ChooseFormsTable tr th:first-child + th + th + th {
+ width: 25%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#ChooseFormsTable tr th:first-child + th + th + th + th {
+ width: 3%;
+}
+/* line 38, ../../app/assets/stylesheets/apps/folders.css.scss */
+#ChooseFormsTable tr .control-group {
+ margin-bottom: 0;
+ margin-top: 0;
+ z-index: 1000;
+}
+/* line 39, ../../app/assets/stylesheets/apps/folders.css.scss */
+#ChooseFormsTable tr .control-group .controls {
+ margin-left: 0;
+}
+/* line 41, ../../app/assets/stylesheets/apps/folders.css.scss */
+#ChooseFormsTable tr td:first-child + td + td + td > div {
+ float: right;
+ margin-top: 4px;
+}
+/* line 43, ../../app/assets/stylesheets/apps/folders.css.scss */
+#ChooseFormsTable i {
+ margin-top: 6px;
+}
+/* line 44, ../../app/assets/stylesheets/apps/folders.css.scss */
+#ChooseFormsTable span.form_type_task.show {
+ line-height: 12px;
+}
+
+/* line 46, ../../app/assets/stylesheets/apps/folders.css.scss */
+#select_company {
+ margin-left: 0;
+}
+
+/* line 48, ../../app/assets/stylesheets/apps/folders.css.scss */
+[id^="class_select-list"],
+[id*="class_select-list"] {
+ width: 350px !important;
+}
+/* line 49, ../../app/assets/stylesheets/apps/folders.css.scss */
+[id^="class_select-list"] .k-item,
+[id*="class_select-list"] .k-item {
+ overflow: auto !important;
+}
+/* line 50, ../../app/assets/stylesheets/apps/folders.css.scss */
+[id^="class_select-list"] .k-item > div,
+[id*="class_select-list"] .k-item > div {
+ vertical-align: middle;
+}
+/* line 51, ../../app/assets/stylesheets/apps/folders.css.scss */
+[id^="class_select-list"] .k-item > div:last-child,
+[id*="class_select-list"] .k-item > div:last-child {
+ float: left;
+ margin: 0 !important;
+ padding: 0 !important;
+}
+
+/* line 55, ../../app/assets/stylesheets/apps/folders.css.scss */
+.AutoGenerate label {
+ cursor: pointer;
+ vertical-align: middle;
+}
+
+/* line 57, ../../app/assets/stylesheets/apps/folders.css.scss */
+[id^="category_select-list"],
+[id*="category_select-list"] {
+ width: 350px !important;
+}
+
+/* line 58, ../../app/assets/stylesheets/apps/folders.css.scss */
+.assign_assignments_dialog {
+ width: 600px !important;
+}
+
+/* line 59, ../../app/assets/stylesheets/apps/folders.css.scss */
+#assets_count {
+ margin-top: 5px;
+}
+
+/* line 60, ../../app/assets/stylesheets/apps/folders.css.scss */
+.UsersDispatch {
+ margin-bottom: 30px;
+ margin-top: 20px;
+}
+/* line 61, ../../app/assets/stylesheets/apps/folders.css.scss */
+.UsersDispatch .table {
+ margin-bottom: 5px;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+.UsersDispatch .table tr th:first-child {
+ width: 22%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+.UsersDispatch .table tr th:first-child + th {
+ width: 25.5%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+.UsersDispatch .table tr th:first-child + th + th {
+ width: 25.5%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+.UsersDispatch .table tr th:first-child + th + th + th {
+ width: 24%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+.UsersDispatch .table tr th:first-child + th + th + th + th {
+ width: 3%;
+}
+/* line 63, ../../app/assets/stylesheets/apps/folders.css.scss */
+.UsersDispatch .table tr .user_select {
+ width: 180px;
+}
+/* line 64, ../../app/assets/stylesheets/apps/folders.css.scss */
+.UsersDispatch .table tr textarea {
+ height: 50px;
+ width: 180px;
+}
+/* line 66, ../../app/assets/stylesheets/apps/folders.css.scss */
+.UsersDispatch .table i {
+ margin-top: 6px;
+}
+
+/* line 70, ../../app/assets/stylesheets/apps/folders.css.scss */
+#folder-show {
+ overflow: hidden;
+ margin-top: 15px;
+ margin-bottom: 30px;
+}
+
+/* line 71, ../../app/assets/stylesheets/apps/folders.css.scss */
+#folder-details-tab {
+ overflow: auto;
+ max-width: 25%;
+ margin-bottom: -1px;
+ font-weight: bold;
+ text-shadow: 0px 1px 0px white;
+ font-size: 15px;
+ line-height: 18px;
+}
+/* line 72, ../../app/assets/stylesheets/apps/folders.css.scss */
+#folder-details-tab > div {
+ display: inline-block;
+ background-color: #f3f6f7;
+ padding: 5px 15px;
+ border: 1px solid #dddddd;
+ border-bottom: none;
+ -webkit-border-radius: 5px 5px 0 0;
+ -moz-border-radius: 5px 5px 0 0;
+ -ms-border-radius: 5px 5px 0 0;
+ -o-border-radius: 5px 5px 0 0;
+ border-radius: 5px 5px 0 0;
+}
+/* line 73, ../../app/assets/stylesheets/apps/folders.css.scss */
+#folder-details-tab > button {
+ padding-bottom: 0;
+}
+
+/* line 75, ../../app/assets/stylesheets/apps/folders.css.scss */
+#folder-details {
+ width: 25%;
+ float: left;
+ background-color: #f3f6f7;
+}
+/* line 76, ../../app/assets/stylesheets/apps/folders.css.scss */
+#folder-details > div {
+ padding: 5px 15px;
+ border: 1px solid #dddddd;
+ -webkit-border-radius: 0 5px 5px 5px;
+ -moz-border-radius: 0 5px 5px 5px;
+ -ms-border-radius: 0 5px 5px 5px;
+ -o-border-radius: 0 5px 5px 5px;
+ border-radius: 0 5px 5px 5px;
+}
+
+/* line 78, ../../app/assets/stylesheets/apps/folders.css.scss */
+.folder-detail {
+ margin: 5px 0;
+ overflow: hidden;
+ clear: both;
+}
+/* line 79, ../../app/assets/stylesheets/apps/folders.css.scss */
+.folder-detail > h4 {
+ margin-bottom: 0;
+ margin-right: 1%;
+ font-size: 13.5px;
+ line-height: 16px;
+ overflow: visible;
+ text-overflow: clip;
+ white-space: normal;
+ word-wrap: break-word;
+}
+/* line 80, ../../app/assets/stylesheets/apps/folders.css.scss */
+.folder-detail > div {
+ line-height: 16px;
+ overflow: visible;
+ text-overflow: clip;
+ white-space: normal;
+ word-wrap: break-word;
+}
+
+/* line 82, ../../app/assets/stylesheets/apps/folders.css.scss */
+#forms-in-folder-list {
+ width: 75%;
+ float: right;
+}
+/* line 83, ../../app/assets/stylesheets/apps/folders.css.scss */
+#forms-in-folder-list > div {
+ padding-left: 15px;
+}
+
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#forms-in-folder-table tr th:first-child {
+ width: 7%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#forms-in-folder-table tr th:first-child + th {
+ width: 36%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#forms-in-folder-table tr th:first-child + th + th {
+ width: 8%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#forms-in-folder-table tr th:first-child + th + th + th {
+ width: 8%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#forms-in-folder-table tr th:first-child + th + th + th + th {
+ width: 8%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#forms-in-folder-table tr th:first-child + th + th + th + th + th {
+ width: 8%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#forms-in-folder-table tr th:first-child + th + th + th + th + th + th {
+ width: 7%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#forms-in-folder-table tr th:first-child + th + th + th + th + th + th + th {
+ width: 18%;
+}
+
+/* line 2, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#points-list-region {
+ overflow: auto;
+}
+
+/* line 3, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#folder-region {
+ overflow: auto;
+ padding: 4px 0;
+ text-shadow: 0px 1px 0px white;
+}
+/* line 4, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#folder-region > div > .pull-left {
+ line-height: 18px;
+}
+/* line 5, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#folder-region > div > .pull-left > div {
+ float: left;
+}
+/* line 6, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#folder-region > div > .pull-left .form-titles-container {
+ width: 94%;
+ margin-left: 1%;
+ margin-top: 5px;
+ text-shadow: 0px 1px 0px white;
+}
+/* line 7, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#folder-region > div > .pull-left .form-titles-container > span {
+ font-weight: bold;
+ overflow: visible;
+ text-overflow: clip;
+ white-space: normal;
+ word-wrap: break-word;
+ font-size: 18px;
+ float: left;
+}
+/* line 8, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#folder-region > div > .pull-left .form-titles-container .form-class-title {
+ color: #999;
+}
+/* line 9, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#folder-region > div > .pull-left .form-titles-container .form-title {
+ color: #4f595f;
+ margin-left: 5px;
+}
+/* line 10, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#folder-region > div > .pull-left .form-titles-container i {
+ cursor: pointer;
+ position: relative;
+ top: 3px;
+ margin-left: 3px;
+}
+/* line 13, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#folder-region .pull-right {
+ font-size: 11px;
+ color: #777;
+}
+/* line 14, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#folder-region .pull-right i {
+ vertical-align: middle;
+ position: relative;
+ top: -1px;
+}
+
+/* line 17, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#filter-region {
+ padding-right: 10px;
+}
+
+/* line 18, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.aside-filters {
+ padding-right: 10px;
+}
+/* line 19, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.aside-filters #condition-filters-region {
+ border-top: 1px solid white;
+}
+/* line 20, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.aside-filters .nav-header {
+ border-bottom: 1px solid #dcdedf;
+ margin-left: 0;
+ margin-bottom: 0px;
+ line-height: 19px;
+ margin-top: 10px;
+ font-size: 14px;
+ color: #4e565a;
+ text-shadow: 0px 1px 0px white;
+}
+/* line 21, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.aside-filters .filter-label {
+ color: #6d7b80;
+ font-size: 13px;
+ font-weight: bold;
+ text-shadow: 0px 1px 0px white;
+ margin-bottom: 0;
+ padding-top: 15px;
+ padding-bottom: 1px;
+}
+/* line 22, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.aside-filters .filter-label.current-label {
+ padding-top: 3px;
+}
+/* line 24, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.aside-filters .btn-group {
+ width: 100%;
+ overflow: auto;
+}
+/* line 25, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.aside-filters .btn-group > .btn {
+ width: 71px;
+}
+/* line 26, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.aside-filters .btn-group > .btn:first-child + .btn {
+ width: 80px;
+}
+/* line 27, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.aside-filters .btn-group > .btn:hover {
+ background-color: #f0f0f0;
+}
+/* line 28, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.aside-filters .btn-group > .btn.active {
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
+ background-color: #ddd;
+ -webkit-box-shadow: rgba(0, 0, 0, 0.15) 0 2px 1px inset;
+ -moz-box-shadow: rgba(0, 0, 0, 0.15) 0 2px 1px inset;
+ box-shadow: rgba(0, 0, 0, 0.15) 0 2px 1px inset;
+}
+/* line 29, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.aside-filters .btn-group > .btn.active:hover {
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
+ background-color: #d8d8d8;
+ cursor: pointer;
+}
+/* line 31, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.aside-filters .btn-group > .btn i {
+ vertical-align: middle;
+}
+/* line 35, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.aside-filters #completed-buttons > .btn,
+.aside-filters #resolved-buttons > .btn {
+ width: 110px;
+}
+/* line 36, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.aside-filters #other-filters {
+ overflow: auto;
+}
+/* line 37, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.aside-filters #other-filters > li {
+ margin: 5px 0;
+}
+/* line 38, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.aside-filters #other-filters > li:first-child {
+ margin-top: 0;
+}
+/* line 39, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.aside-filters #other-filters > li:last-child {
+ margin-bottom: 0;
+}
+/* line 40, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.aside-filters #other-filters > li label {
+ font-size: 13px;
+ color: #6d7b80;
+ clear: both;
+ vertical-align: middle;
+}
+/* line 41, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.aside-filters #other-filters > li label > input {
+ float: left;
+ margin-bottom: 7px;
+}
+/* line 42, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.aside-filters #other-filters > li label > span {
+ cursor: pointer;
+ float: left;
+ margin-left: 5px;
+ position: relative;
+ top: 1px;
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ user-select: none;
+}
+/* line 45, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.aside-filters #other-filters .label-resolved, .aside-filters #other-filters .label-unresolved {
+ padding: 0px 3px;
+}
+/* line 47, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.aside-filters .css-bar-chart {
+ overflow: auto;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+}
+/* line 48, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.aside-filters .css-bar-chart .color-container {
+ float: left;
+}
+/* line 49, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.aside-filters .css-bar-chart .color-container .color-wrapper {
+ margin-left: 1px;
+ text-align: center;
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.35);
+ font-size: 11px;
+ font-weight: 400;
+ color: white;
+ font-weight: bold;
+ line-height: 20px;
+ overflow: hidden;
+ padding-bottom: 3px;
+}
+/* line 50, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.aside-filters .css-bar-chart .color-container .color-wrapper .color-bar {
+ height: 20px;
+ cursor: default;
+}
+/* line 52, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.aside-filters .css-bar-chart .color-container:first-child > .color-wrapper > .color-bar {
+ -webkit-border-radius: 5px 0 0 5px;
+ -moz-border-radius: 5px 0 0 5px;
+ -ms-border-radius: 5px 0 0 5px;
+ -o-border-radius: 5px 0 0 5px;
+ border-radius: 5px 0 0 5px;
+}
+/* line 53, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.aside-filters .css-bar-chart .color-container:last-child > .color-wrapper > .color-bar {
+ -webkit-border-radius: 0 5px 5px 0;
+ -moz-border-radius: 0 5px 5px 0;
+ -ms-border-radius: 0 5px 5px 0;
+ -o-border-radius: 0 5px 5px 0;
+ border-radius: 0 5px 5px 0;
+}
+
+/* line 57, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#details-region {
+ overflow: auto;
+}
+
+/* line 58, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#form-review-stats {
+ overflow: auto;
+ padding: 10px 20px 10px;
+}
+/* line 59, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#form-review-stats > ul {
+ width: 48%;
+ float: left;
+}
+/* line 60, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#form-review-stats > ul li {
+ margin: 8px 0;
+}
+/* line 61, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#form-review-stats > ul li .links-list-text {
+ font-weight: bold;
+}
+/* line 62, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#form-review-stats > ul li .links-list-num {
+ line-height: 16px;
+}
+/* line 63, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#form-review-stats > ul li .links-list-num i {
+ vertical-align: middle;
+}
+
+/* line 68, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.form-asset-details {
+ clear: both;
+ margin: 10px 5px 20px 15px;
+ border: 1px solid #dddddd;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+}
+/* line 69, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.form-asset-details .form-asset-details-title {
+ background-color: #eee;
+ padding: 5px 10px;
+}
+/* line 70, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.form-asset-details .form-asset-details-content {
+ padding: 0 10px 10px;
+ overflow: auto;
+}
+/* line 71, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.form-asset-details .form-asset-details-content .asset-class-name {
+ display: block;
+ line-height: 22px;
+}
+/* line 72, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.form-asset-details .form-asset-details-content #asset-attribute-list {
+ width: 74%;
+ padding: 0 10px;
+}
+/* line 73, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.form-asset-details .form-asset-details-content .image-wrapper {
+ float: left;
+}
+
+/* line 76, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#form-review-wrapper {
+ padding: 0 0 40px 20px;
+}
+
+/* line 77, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.controls-wrapper.form-review-controls {
+ margin-bottom: 0;
+ background-color: #f0f2f3;
+ background-image: -moz-linear-gradient(top, #f5f7f8, #e9ebec);
+ background-image: -ms-linear-gradient(top, #f5f7f8, #e9ebec);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f5f7f8), to(#e9ebec));
+ background-image: -webkit-linear-gradient(top, #f5f7f8, #e9ebec);
+ background-image: -o-linear-gradient(top, #f5f7f8, #e9ebec);
+ background-image: linear-gradient(top, #f5f7f8, #e9ebec);
+ background-repeat: repeat-x;
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f5f7f8', endColorstr='#e9ebec', GradientType=0);
+ border: 1px solid #c9d2d7;
+ clear: both;
+ -webkit-border-radius: 5px 5px 0 0;
+ -moz-border-radius: 5px 5px 0 0;
+ -ms-border-radius: 5px 5px 0 0;
+ -o-border-radius: 5px 5px 0 0;
+ border-radius: 5px 5px 0 0;
+}
+/* line 78, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.controls-wrapper.form-review-controls .btn.btn-no-bg {
+ -webkit-border-radius: 0;
+ -moz-border-radius: 0;
+ -ms-border-radius: 0;
+ -o-border-radius: 0;
+ border-radius: 0;
+ font-weight: 500;
+ font-size: 14px;
+}
+/* line 79, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.controls-wrapper.form-review-controls .btn.btn-no-bg:hover {
+ text-decoration: none;
+ background-image: none;
+ background-color: white !important;
+}
+
+/* line 82, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.accordian-list {
+ overflow: auto;
+ border: 1px solid #ebedee;
+ border-top: none;
+ -webkit-border-radius: 0 0 5px 5px;
+ -moz-border-radius: 0 0 5px 5px;
+ -ms-border-radius: 0 0 5px 5px;
+ -o-border-radius: 0 0 5px 5px;
+ border-radius: 0 0 5px 5px;
+}
+/* line 83, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.accordian-list i {
+ cursor: pointer;
+}
+/* line 84, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.accordian-list .point-heading-row {
+ overflow: auto;
+ border-top: 1px solid #ebedee;
+ border-bottom: 1px solid #ebedee;
+ background-color: #f0f2f3;
+ background-image: -moz-linear-gradient(top, #f5f7f8, #e9ebec);
+ background-image: -ms-linear-gradient(top, #f5f7f8, #e9ebec);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f5f7f8), to(#e9ebec));
+ background-image: -webkit-linear-gradient(top, #f5f7f8, #e9ebec);
+ background-image: -o-linear-gradient(top, #f5f7f8, #e9ebec);
+ background-image: linear-gradient(top, #f5f7f8, #e9ebec);
+ background-repeat: repeat-x;
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f5f7f8', endColorstr='#e9ebec', GradientType=0);
+}
+/* line 85, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.accordian-list .point-heading-row > div {
+ float: left;
+ font-weight: bold;
+ line-height: 27px;
+}
+/* line 86, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.accordian-list .point-heading-row > div.accordian-icon {
+ width: 3%;
+ position: relative;
+}
+/* line 87, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.accordian-list .point-heading-row > div.accordian-icon > div {
+ width: 13px;
+ height: 13px;
+}
+/* line 88, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.accordian-list .point-heading-row > div.accordian-icon > div i {
+ position: absolute;
+ top: 6px;
+ right: 5px;
+}
+/* line 92, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.accordian-list .point-heading-row .point-heading-title {
+ text-transform: uppercase;
+ text-shadow: 0px 1px 0px white;
+ font-size: 15px;
+ color: #464748;
+ width: 87%;
+}
+/* line 93, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.accordian-list .point-heading-row .point-heading-title > div {
+ line-height: 18px;
+ overflow: visible;
+ text-overflow: clip;
+ white-space: normal;
+ word-wrap: break-word;
+ padding: 4px 5px 5px 2px;
+}
+/* line 95, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.accordian-list .point-heading-row .point-heading-count {
+ color: #696c6e;
+ font-size: 12px;
+ width: 10%;
+ overflow: visible;
+ text-overflow: clip;
+ white-space: normal;
+ word-wrap: break-word;
+ text-align: right;
+}
+/* line 96, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.accordian-list .point-heading-row .point-heading-count > div {
+ padding-right: 10px;
+}
+/* line 99, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.accordian-list .list-points {
+ overflow: auto;
+}
+/* line 100, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.accordian-list .list-points > li {
+ width: 100%;
+ overflow: auto;
+ line-height: 28px;
+ text-shadow: 0px 1px 0px white;
+}
+/* line 101, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.accordian-list .list-points > li > div {
+ float: left;
+ min-height: 1px;
+}
+/* line 102, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.accordian-list .list-points > li > div:first-child {
+ width: 3%;
+}
+/* line 103, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.accordian-list .list-points > li > div:first-child + div {
+ width: 45%;
+ font-weight: 500;
+ color: #4d80b4 !important;
+}
+/* line 105, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.accordian-list .list-points > li > div:first-child + div.points-list-title
+.point-number-and-title {
+ display: inline-block;
+ padding: 5px;
+ line-height: 14px;
+ overflow: visible;
+ text-overflow: clip;
+ white-space: normal;
+ word-wrap: break-word;
+ text-align: left;
+ color: #4d80b4;
+}
+/* line 106, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.accordian-list .list-points > li > div:first-child + div + div {
+ width: 23%;
+ margin-left: 3%;
+ min-height: 1px;
+ line-height: 14px;
+}
+/* line 107, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.accordian-list .list-points > li > div:first-child + div + div > div {
+ padding: 5px;
+}
+/* line 108, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.accordian-list .list-points > li > div:first-child + div + div + div {
+ width: 3%;
+ min-height: 1px;
+}
+/* line 109, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.accordian-list .list-points > li > div:first-child + div + div + div + div {
+ width: 3%;
+ min-height: 1px;
+}
+/* line 110, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.accordian-list .list-points > li > div:first-child + div + div + div + div + div {
+ width: 20%;
+ text-align: right;
+}
+/* line 120, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.accordian-list .list-points.list-striped > li:nth-child(odd) {
+ background-color: white;
+}
+/* line 121, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.accordian-list .list-points.list-striped > li:nth-child(even) {
+ background-color: #f6f6f7;
+}
+/* line 123, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.accordian-list .list-points.list-selectable > li:hover {
+ background-color: #fdfde0;
+ cursor: pointer;
+}
+/* line 124, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.accordian-list .list-points .icon-priority-container > i {
+ position: relative;
+ left: 54%;
+ top: 3px;
+}
+
+/* line 127, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.label-resolved, .label-unresolved {
+ text-shadow: 0px 1px 0px white;
+ display: inline;
+ margin-right: 7px;
+ text-transform: uppercase;
+ font-size: 11px !important;
+ font-weight: bold;
+ padding: 1px 3px 1px 5px;
+ font-style: italic;
+ border-width: 2px;
+ border-style: solid;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+}
+
+/* line 128, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.label-resolved {
+ color: #6d9563 !important;
+ border-color: #729969;
+ background-color: #f0f9ee;
+}
+/* line 129, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.label-resolved .ca-date {
+ font-weight: normal;
+ text-transform: none;
+}
+/* line 130, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.label-resolved i {
+ vertical-align: middle;
+}
+
+/* line 132, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.label-unresolved {
+ color: #999999 !important;
+ border-color: #aaa;
+ background-color: #fafafa;
+}
+
+/* line 134, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#resolved-buttons .btn.label-resolved,
+#resolved-buttons .btn.label-unresolved {
+ padding: 2px 3px !important;
+ margin-right: 0;
+ font-weight: bold !important;
+}
+
+/* line 136, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#resolve-priorities-modal {
+ overflow: auto;
+ padding: 20px;
+}
+/* line 137, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#resolve-priorities-modal .resolve-disclaimer {
+ font-size: 14px;
+ line-height: 24px;
+ text-shadow: 0px 1px 0px white;
+ margin-right: 10px;
+}
+/* line 138, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#resolve-priorities-modal .resolve-actions {
+ overflow: auto;
+ margin-top: 15px;
+}
+
+/* line 140, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#resolve-priorities-table {
+ margin-top: 10px;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#resolve-priorities-table tr th:first-child {
+ width: 3%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#resolve-priorities-table tr th:first-child + th {
+ width: 31%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#resolve-priorities-table tr th:first-child + th + th {
+ width: 26%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#resolve-priorities-table tr th:first-child + th + th + th {
+ width: 10%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#resolve-priorities-table tr th:first-child + th + th + th + th {
+ width: 30%;
+}
+/* line 142, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#resolve-priorities-table tr td {
+ line-height: 14px;
+}
+/* line 144, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#resolve-priorities-table .btn-no-bg {
+ padding: 0;
+}
+/* line 145, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#resolve-priorities-table .BoldLine {
+ font-weight: bold;
+}
+/* line 146, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#resolve-priorities-table textarea {
+ height: 18px;
+ background-color: #fafbfb;
+}
+/* line 147, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#resolve-priorities-table input[type=checkbox] {
+ position: relative;
+ top: -2px;
+}
+/* line 148, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#resolve-priorities-table .icons-point-single {
+ position: relative;
+ top: -2px;
+}
+
+/* line 152, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#share-form-modal .control-label {
+ width: auto;
+ display: block;
+}
+/* line 153, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#share-form-modal .controls {
+ margin-left: 0;
+}
+/* line 154, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#share-form-modal .controls input[type="text"], #share-form-modal .controls textarea {
+ width: 500px;
+}
+/* line 156, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#share-form-modal ul > li:last-of-type {
+ margin-bottom: 0;
+}
+/* line 157, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#share-form-modal .help-block {
+ margin-top: 0;
+ font-weight: bold;
+ color: #999;
+}
+
+/* line 161, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#point-preview-modal #title-region {
+ position: static;
+ width: auto;
+ height: auto;
+}
+/* line 162, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#point-preview-modal #title-region > div {
+ overflow: auto;
+}
+/* line 164, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#point-preview-modal .point-preview-titlebar {
+ overflow: auto;
+ background-color: #e5eaec;
+ padding: 5px 5px 5px 10px;
+ text-shadow: 0px 1px 0px white;
+ border-bottom: 1px solid #c4cdd1;
+}
+/* line 165, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#point-preview-modal .point-preview-titlebar .point-preview-number {
+ width: 6%;
+ float: left;
+ text-align: right;
+ color: #4f565e;
+ font-size: 16px;
+ line-height: 24px;
+ font-weight: bold;
+ overflow: visible;
+ text-overflow: clip;
+ white-space: normal;
+ word-wrap: break-word;
+ text-shadow: 0px 1px 0px white;
+}
+/* line 166, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#point-preview-modal .point-preview-titlebar .point-preview-title-container {
+ width: 94%;
+ float: left;
+}
+/* line 167, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#point-preview-modal .point-preview-titlebar .point-preview-title {
+ margin-left: 3px;
+ padding-top: 3px;
+ float: left;
+ color: #4f565e;
+ font-size: 16px;
+ line-height: 19px;
+ font-weight: bold;
+ overflow: visible;
+ text-overflow: clip;
+ white-space: normal;
+ word-wrap: break-word;
+ text-shadow: 0px 1px 0px white;
+ width: 67%;
+}
+/* line 168, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#point-preview-modal .point-preview-titlebar .point-preview-title > div {
+ color: #6b717a;
+ font-size: 14px;
+ font-weight: normal;
+ margin-top: 10px;
+}
+/* line 170, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#point-preview-modal .point-preview-titlebar .point-preview-pagination {
+ float: left;
+ color: #909ba7;
+ font-size: 13px;
+ overflow: auto;
+ line-height: 24px;
+ text-shadow: 0px 1px 0px white;
+ width: 32%;
+}
+/* line 171, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#point-preview-modal .point-preview-titlebar .point-preview-pagination .btn {
+ padding-right: 10px;
+ padding-left: 10px;
+}
+/* line 172, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#point-preview-modal .point-preview-titlebar .point-preview-pagination span {
+ display: inline-block;
+ padding-right: 5px;
+ padding-left: 5px;
+}
+/* line 174, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#point-preview-modal .point-preview-titlebar .point-preview-definition {
+ margin-left: 3px;
+ clear: both;
+ width: 86%;
+ overflow: visible;
+ text-overflow: clip;
+ white-space: normal;
+ word-wrap: break-word;
+}
+/* line 176, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#point-preview-modal .point-preview-content {
+ padding: 10px 15px;
+ border-top: 1px solid white;
+}
+/* line 177, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#point-preview-modal .point-preview-content .module {
+ background-color: white;
+}
+/* line 178, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#point-preview-modal .point-preview-content dl {
+ margin-bottom: 0;
+}
+/* line 179, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#point-preview-modal .point-preview-content dt {
+ text-align: right;
+ width: 20%;
+}
+/* line 180, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#point-preview-modal .point-preview-content dd {
+ width: 78%;
+}
+/* line 181, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#point-preview-modal .point-preview-content dd > ul {
+ overflow: auto;
+ padding: 0;
+}
+/* line 182, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#point-preview-modal .point-preview-content dd > ul > li {
+ float: left;
+}
+/* line 185, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#point-preview-modal .point-preview-content #condition-priorities-region dt {
+ padding-top: 4px;
+}
+/* line 186, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#point-preview-modal .point-preview-content .icons-quotation-left {
+ margin-right: 2px;
+}
+/* line 187, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#point-preview-modal .point-preview-content .icons-quotation-right {
+ margin-left: 2px;
+}
+/* line 188, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#point-preview-modal .point-preview-content .point-preview-priority-list > ul > li {
+ padding: 2px 0px;
+ margin-right: 2px;
+ display: inline-block;
+}
+/* line 189, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#point-preview-modal .point-preview-content .point-preview-priority-list > ul > li i {
+ vertical-align: middle;
+}
+/* line 191, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#point-preview-modal .point-preview-content .selected-priority {
+ font-weight: bold;
+ -webkit-border-radius: 50px;
+ -moz-border-radius: 50px;
+ -ms-border-radius: 50px;
+ -o-border-radius: 50px;
+ border-radius: 50px;
+ border: 1px solid #999999;
+ text-shadow: 0px 1px 0px white;
+ -webkit-box-shadow: rgba(0, 0, 0, 0.5) 1px 1px 2px inset;
+ -moz-box-shadow: rgba(0, 0, 0, 0.5) 1px 1px 2px inset;
+ box-shadow: rgba(0, 0, 0, 0.5) 1px 1px 2px inset;
+}
+/* line 192, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#point-preview-modal .point-preview-content #grade-region .image-wrapper {
+ max-width: 200px;
+ max-height: 200px;
+}
+/* line 193, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#point-preview-modal .point-preview-content .point-preview-photo-list {
+ clear: both;
+ padding: 0;
+}
+/* line 194, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#point-preview-modal .point-preview-content .point-preview-photo-list li {
+ float: left;
+ margin: 0 10px 10px 0;
+}
+/* line 195, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#point-preview-modal .point-preview-content .point-preview-photo-list .image-wrapper {
+ max-width: 150px;
+ max-height: 150px;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+ position: relative;
+}
+/* line 196, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#point-preview-modal .point-preview-content .point-preview-photo-list .photo-caption {
+ display: block;
+ position: absolute;
+ bottom: 0px;
+ left: 0;
+ background-color: #000;
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
+ opacity: 0.7;
+ color: white;
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.35);
+ width: 100%;
+}
+/* line 197, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#point-preview-modal .point-preview-content .point-preview-photo-list .photo-caption .photo-caption-text {
+ padding: 5px;
+ display: block;
+ font-size: 13px;
+ height: 17px;
+ overflow: hidden !important;
+ overflow: visible;
+ text-overflow: clip;
+ white-space: normal;
+ word-wrap: break-word;
+ line-height: 17px;
+}
+/* line 201, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#point-preview-modal .point-preview-content #resolve-status-module > div .control-group {
+ float: left !important;
+ margin: 0;
+ width: 350px;
+}
+/* line 202, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#point-preview-modal .point-preview-content #resolve-status-module > div .control-group label {
+ display: block;
+ width: auto;
+ padding-top: 0;
+}
+/* line 203, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#point-preview-modal .point-preview-content #resolve-status-module > div .control-group .controls {
+ margin-left: 0;
+ overflow: auto;
+}
+/* line 204, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#point-preview-modal .point-preview-content #resolve-status-module > div .control-group textarea {
+ background-color: #fafbfb;
+ width: 340px;
+}
+/* line 206, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#point-preview-modal .point-preview-content #resolve-status-module > div .btn {
+ font-size: 14px;
+ font-weight: bold;
+ color: #4d80b4;
+ float: right;
+ margin-top: 22px;
+ line-height: 21px;
+}
+/* line 207, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#point-preview-modal .point-preview-content #resolve-status-module > div div.label-resolved {
+ display: block;
+ line-height: 18px;
+ width: 70%;
+ font-size: 14px !important;
+ float: left;
+ min-height: 19px;
+ position: relative;
+}
+/* line 208, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#point-preview-modal .point-preview-content #resolve-status-module > div div.label-resolved > div p {
+ font-style: normal;
+ font-weight: normal;
+ text-transform: none;
+ width: 100%;
+ overflow: visible;
+ text-overflow: clip;
+ white-space: normal;
+ word-wrap: break-word;
+}
+/* line 209, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#point-preview-modal .point-preview-content #resolve-status-module > div div.label-resolved .edit-resolve-note {
+ color: #4d80b4;
+ position: absolute;
+ right: 5px;
+ font-size: 12px;
+ top: 2px;
+ text-transform: capitalize;
+ font-weight: normal;
+}
+/* line 210, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#point-preview-modal .point-preview-content #resolve-status-module > div div.label-resolved .edit-resolve-note:hover {
+ text-decoration: underline;
+ cursor: pointer;
+}
+/* line 212, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#point-preview-modal .point-preview-content #resolve-status-module > div div.label-resolved + .btn {
+ margin-top: 0 !important;
+}
+
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#asset-item-events-list table th:first-child {
+ width: 5%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#asset-item-events-list table th:first-child + th {
+ width: 30%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#asset-item-events-list table th:first-child + th + th {
+ width: 20%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#asset-item-events-list table th:first-child + th + th + th {
+ width: 10%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#asset-item-events-list table th:first-child + th + th + th + th {
+ width: 12%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#asset-item-events-list table th:first-child + th + th + th + th + th {
+ width: 10%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#asset-item-events-list table th:first-child + th + th + th + th + th + th {
+ width: 13%;
+}
+
+/* line 1, ../../app/assets/stylesheets/apps/profile.css.scss */
+#my-profile .profile-badge {
+ background-color: #f4f4f5;
+ overflow: auto;
+ padding: 10px;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+ text-shadow: 0px 1px 0px white;
+}
+/* line 2, ../../app/assets/stylesheets/apps/profile.css.scss */
+#my-profile .profile-badge .user-wrapper, #my-profile .profile-badge .profile-badge-text {
+ float: left;
+}
+/* line 3, ../../app/assets/stylesheets/apps/profile.css.scss */
+#my-profile .profile-badge .user-wrapper {
+ width: 15%;
+}
+/* line 4, ../../app/assets/stylesheets/apps/profile.css.scss */
+#my-profile .profile-badge .user-wrapper .icons-user-large {
+ position: relative;
+ top: 5px;
+ left: 10%;
+}
+/* line 6, ../../app/assets/stylesheets/apps/profile.css.scss */
+#my-profile .profile-badge .profile-badge-text {
+ width: 85%;
+}
+/* line 7, ../../app/assets/stylesheets/apps/profile.css.scss */
+#my-profile .profile-badge .profile-badge-text .my-profile-name {
+ font-weight: 500;
+ font-size: 22px;
+}
+/* line 9, ../../app/assets/stylesheets/apps/profile.css.scss */
+#my-profile .profile-badge .profile-badge-links .btn-no-bg {
+ padding: 0;
+ margin-right: 10px;
+}
+
+/* line 2, ../../app/assets/stylesheets/apps/search_results.css.scss */
+#search-results h3 {
+ line-height: 40px;
+}
+/* line 3, ../../app/assets/stylesheets/apps/search_results.css.scss */
+#search-results .search-param-filters {
+ float: right;
+ margin-left: 10px;
+ position: relative;
+ top: 12px;
+}
+/* line 4, ../../app/assets/stylesheets/apps/search_results.css.scss */
+#search-results .search-param-filters > div {
+ float: left;
+ background-color: #eee;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+ margin-left: 10px;
+ padding: 3px 3px 0px 6px;
+ line-height: 14px;
+ text-shadow: 0px 1px 0px white;
+}
+/* line 5, ../../app/assets/stylesheets/apps/search_results.css.scss */
+#search-results .search-param-filters > div > span {
+ font-weight: 500;
+}
+/* line 6, ../../app/assets/stylesheets/apps/search_results.css.scss */
+#search-results .search-param-filters > div .btn-no-bg {
+ position: relative;
+ top: -4px;
+ padding: 0 2px;
+}
+
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#FolderList th:first-child {
+ width: 1%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#FolderList th:first-child + th {
+ width: 20%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#FolderList th:first-child + th + th {
+ width: 13%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#FolderList th:first-child + th + th + th {
+ width: 19%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#FolderList th:first-child + th + th + th + th {
+ width: 7%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#FolderList th:first-child + th + th + th + th + th {
+ width: 8%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#FolderList th:first-child + th + th + th + th + th + th {
+ width: 14%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#FolderList th:first-child + th + th + th + th + th + th + th {
+ width: 10%;
+}
+/* line 11, ../../app/assets/stylesheets/apps/search_results.css.scss */
+#FolderList .icons-checkbox {
+ margin-left: 10px;
+}
+/* line 12, ../../app/assets/stylesheets/apps/search_results.css.scss */
+#FolderList .close-folder-btn {
+ height: 18px;
+ line-height: 9px;
+ font-size: 11px !important;
+ width: 100%;
+}
+/* line 13, ../../app/assets/stylesheets/apps/search_results.css.scss */
+#FolderList .label-success {
+ width: 95%;
+ display: inline-block;
+ text-align: center;
+}
+/* line 14, ../../app/assets/stylesheets/apps/search_results.css.scss */
+#FolderList .label-success + div {
+ text-align: center;
+}
+/* line 16, ../../app/assets/stylesheets/apps/search_results.css.scss */
+#FolderList .icons-download {
+ padding: 0;
+}
+
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#company-list th:first-child {
+ width: 28%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#company-list th:first-child + th {
+ width: 14%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#company-list th:first-child + th + th {
+ width: 26%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#company-list th:first-child + th + th + th {
+ width: 14%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#company-list th:first-child + th + th + th + th {
+ width: 9%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#company-list th:first-child + th + th + th + th + th {
+ width: 10%;
+}
+
+/* line 2, ../../app/assets/stylesheets/apps/settings.css.scss */
+.logo-container {
+ padding: 15px;
+}
+/* line 3, ../../app/assets/stylesheets/apps/settings.css.scss */
+.logo-container img {
+ max-height: 150px;
+ max-width: 350px;
+}
+
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#item-statuses-list-region th:first-child {
+ width: 88%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#item-statuses-list-region th:first-child + th {
+ width: 12%;
+}
+/* line 7, ../../app/assets/stylesheets/apps/settings.css.scss */
+#item-statuses-list-region i {
+ margin: 0 3px;
+}
+
+/* line 11, ../../app/assets/stylesheets/apps/settings.css.scss */
+#folder-categories-list.ListWell > li {
+ overflow: auto;
+}
+/* line 12, ../../app/assets/stylesheets/apps/settings.css.scss */
+#folder-categories-list.ListWell > li > div {
+ float: left;
+ padding: 0;
+}
+/* line 13, ../../app/assets/stylesheets/apps/settings.css.scss */
+#folder-categories-list.ListWell > li > div:first-child {
+ width: 65.5%;
+}
+/* line 14, ../../app/assets/stylesheets/apps/settings.css.scss */
+#folder-categories-list.ListWell > li > div:first-child > div {
+ padding-left: 20px;
+}
+/* line 15, ../../app/assets/stylesheets/apps/settings.css.scss */
+#folder-categories-list.ListWell > li > div:first-child + div {
+ width: 30%;
+}
+/* line 16, ../../app/assets/stylesheets/apps/settings.css.scss */
+#folder-categories-list.ListWell > li > div:first-child + div + div {
+ width: 4.5%;
+}
+/* line 19, ../../app/assets/stylesheets/apps/settings.css.scss */
+#folder-categories-list.ListWell > li > div > div {
+ padding: 4px 5px;
+}
+/* line 21, ../../app/assets/stylesheets/apps/settings.css.scss */
+#folder-categories-list.ListWell > li .icons-team-tiny {
+ position: relative;
+ top: 2px;
+}
+
+/* line 24, ../../app/assets/stylesheets/apps/settings.css.scss */
+#folder-type-categories-list-region > div > .module {
+ clear: both;
+}
+
+/* line 25, ../../app/assets/stylesheets/apps/settings.css.scss */
+#default-forms-list {
+ border-top: 1px solid #d7dadf;
+}
+/* line 26, ../../app/assets/stylesheets/apps/settings.css.scss */
+#default-forms-list > li {
+ overflow: auto;
+}
+/* line 27, ../../app/assets/stylesheets/apps/settings.css.scss */
+#default-forms-list > li > div {
+ float: left;
+}
+/* line 28, ../../app/assets/stylesheets/apps/settings.css.scss */
+#default-forms-list > li > div:first-child {
+ width: 95%;
+}
+/* line 29, ../../app/assets/stylesheets/apps/settings.css.scss */
+#default-forms-list > li > div:first-child + div {
+ width: 5%;
+}
+/* line 31, ../../app/assets/stylesheets/apps/settings.css.scss */
+#default-forms-list > li > div > div {
+ padding: 4px 5px;
+}
+
+/* line 2, ../../app/assets/stylesheets/apps/teams.css.scss */
+#teams-list-layout .table tr {
+ font-size: 14px;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#teams-list-layout .table tr th:first-child {
+ width: 80%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#teams-list-layout .table tr th:first-child + th {
+ width: 20%;
+}
+/* line 3, ../../app/assets/stylesheets/apps/teams.css.scss */
+#teams-list-layout .icons-team {
+ margin: 0 5px;
+}
+
+/* line 6, ../../app/assets/stylesheets/apps/teams.css.scss */
+#team-show .ListWell > li > div > div {
+ float: left;
+}
+/* line 7, ../../app/assets/stylesheets/apps/teams.css.scss */
+#team-show .ListWell > li > div > div input[type="checkbox"] {
+ margin: 0 4px 4px 0;
+}
+/* line 9, ../../app/assets/stylesheets/apps/teams.css.scss */
+#team-show #list-region i {
+ vertical-align: middle;
+}
+/* line 10, ../../app/assets/stylesheets/apps/teams.css.scss */
+#team-show #team-companies-list > li > div > div:first-child {
+ width: 50%;
+}
+/* line 11, ../../app/assets/stylesheets/apps/teams.css.scss */
+#team-show #team-companies-list > li > div > div:first-child + div {
+ width: 50%;
+}
+/* line 13, ../../app/assets/stylesheets/apps/teams.css.scss */
+#team-show .module > .ListWell > li > div {
+ padding-left: 20px;
+}
+/* line 14, ../../app/assets/stylesheets/apps/teams.css.scss */
+#team-show #team-forms-list .image-wrapper-mini {
+ position: relative;
+ top: 3px;
+ margin: 0 5px;
+}
+/* line 15, ../../app/assets/stylesheets/apps/teams.css.scss */
+#team-show #team-tabs-region {
+ position: relative;
+}
+/* line 16, ../../app/assets/stylesheets/apps/teams.css.scss */
+#team-show #team-tabs-region #delete-team-wrapper {
+ position: absolute;
+ right: 0;
+ top: 0;
+}
+
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#team-customers-list th:first-child {
+ width: 5%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#team-customers-list th:first-child + th {
+ width: 15%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#team-customers-list th:first-child + th + th {
+ width: 80%;
+}
+
+/* line 1, ../../app/assets/stylesheets/apps/uploads.css.scss */
+.fileinput-button {
+ position: relative;
+ overflow: hidden;
+}
+/* line 2, ../../app/assets/stylesheets/apps/uploads.css.scss */
+.fileinput-button input {
+ position: absolute;
+ top: 0;
+ right: 0;
+ margin: 0;
+ border: solid transparent;
+ border-width: 0 0 100px 200px;
+ opacity: 0;
+ filter: alpha(opacity=0);
+ -moz-transform: translate(-300px, 0) scale(4);
+ direction: ltr;
+ cursor: pointer;
+}
+
+/* line 4, ../../app/assets/stylesheets/apps/uploads.css.scss */
+.fileinput-link {
+ color: #3D70A5;
+}
+/* line 5, ../../app/assets/stylesheets/apps/uploads.css.scss */
+.fileinput-link:hover {
+ text-decoration: underline;
+}
+
+/* line 7, ../../app/assets/stylesheets/apps/uploads.css.scss */
+#FilesContainer {
+ padding: 0 10px;
+}
+/* line 8, ../../app/assets/stylesheets/apps/uploads.css.scss */
+#FilesContainer li {
+ border-bottom: 1px dotted #cccccc;
+ padding: 10px 0 10px 40px;
+ background: url(/assets/ajax.gif) no-repeat 5px 15px;
+ overflow: hidden;
+}
+/* line 9, ../../app/assets/stylesheets/apps/uploads.css.scss */
+#FilesContainer li > div {
+ float: left;
+ width: 80%;
+}
+/* line 10, ../../app/assets/stylesheets/apps/uploads.css.scss */
+#FilesContainer li > div .size {
+ float: right;
+}
+/* line 12, ../../app/assets/stylesheets/apps/uploads.css.scss */
+#FilesContainer li > a {
+ float: left;
+ position: relative;
+ top: 14px;
+ margin-left: 15px;
+}
+/* line 13, ../../app/assets/stylesheets/apps/uploads.css.scss */
+#FilesContainer li .alert {
+ margin-bottom: 0;
+ margin-top: 5px;
+}
+/* line 15, ../../app/assets/stylesheets/apps/uploads.css.scss */
+#FilesContainer li.success {
+ background-image: url(/assets/icons/alert-success.png);
+}
+/* line 16, ../../app/assets/stylesheets/apps/uploads.css.scss */
+#FilesContainer li.error {
+ background-image: url(/assets/icons/alert-error.png);
+}
+
+/* line 18, ../../app/assets/stylesheets/apps/uploads.css.scss */
+#ErrorConfirmation {
+ padding: 10px 50px;
+ overflow: hidden;
+}
+/* line 19, ../../app/assets/stylesheets/apps/uploads.css.scss */
+#ErrorConfirmation button {
+ float: right;
+}
+
+/* line 21, ../../app/assets/stylesheets/apps/uploads.css.scss */
+#upload-wrapper {
+ padding: 25px;
+}
+/* line 22, ../../app/assets/stylesheets/apps/uploads.css.scss */
+#upload-wrapper button {
+ margin-right: 10px;
+}
+/* line 23, ../../app/assets/stylesheets/apps/uploads.css.scss */
+#upload-wrapper #loading-area {
+ margin-bottom: 20px;
+ font-weight: bold;
+ display: none;
+ text-align: center;
+}
+
+/* line 2, ../../app/assets/stylesheets/apps/users.css.scss */
+.profile-details {
+ width: 40%;
+ float: left;
+}
+/* line 3, ../../app/assets/stylesheets/apps/users.css.scss */
+.profile-details .links-list {
+ margin-top: 20px;
+}
+/* line 4, ../../app/assets/stylesheets/apps/users.css.scss */
+.profile-details .links-list .links-list-text {
+ width: 40%;
+}
+/* line 5, ../../app/assets/stylesheets/apps/users.css.scss */
+.profile-details .links-list .links-list-num {
+ width: 56%;
+ font-weight: normal;
+}
+/* line 6, ../../app/assets/stylesheets/apps/users.css.scss */
+.profile-details .links-list .links-list-num .icons-team-tiny {
+ vertical-align: middle;
+}
+/* line 8, ../../app/assets/stylesheets/apps/users.css.scss */
+.profile-details .links-list .role-links-list {
+ color: #4d80b4;
+ font-weight: normal;
+}
+/* line 9, ../../app/assets/stylesheets/apps/users.css.scss */
+.profile-details .links-list .italic {
+ font-weight: normal;
+ color: #777;
+}
+
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#users-list-layout table th:first-child {
+ width: 38%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#users-list-layout table th:first-child + th {
+ width: 28%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#users-list-layout table th:first-child + th + th {
+ width: 20%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#users-list-layout table th:first-child + th + th + th {
+ width: 14%;
+}
+/* line 15, ../../app/assets/stylesheets/apps/users.css.scss */
+#users-list-layout .user-role-column {
+ overflow: auto;
+ line-height: 12px;
+}
+/* line 16, ../../app/assets/stylesheets/apps/users.css.scss */
+#users-list-layout .user-role-column > div {
+ float: left;
+}
+/* line 17, ../../app/assets/stylesheets/apps/users.css.scss */
+#users-list-layout .user-role-column > div:first-child {
+ width: 15%;
+}
+/* line 18, ../../app/assets/stylesheets/apps/users.css.scss */
+#users-list-layout .user-role-column > div:last-child {
+ width: 85%;
+}
+/* line 20, ../../app/assets/stylesheets/apps/users.css.scss */
+#users-list-layout .user-role-column .BoldLine {
+ font-size: 14px;
+}
+/* line 22, ../../app/assets/stylesheets/apps/users.css.scss */
+#users-list-layout .role-links {
+ color: #4d80b4;
+ font-size: 11px;
+ line-height: 15px;
+}
+/* line 23, ../../app/assets/stylesheets/apps/users.css.scss */
+#users-list-layout .italic {
+ color: #828383;
+}
+/* line 24, ../../app/assets/stylesheets/apps/users.css.scss */
+#users-list-layout .icons-team-tiny {
+ vertical-align: middle;
+ position: relative;
+ top: -1px;
+}
+
+/* line 27, ../../app/assets/stylesheets/apps/users.css.scss */
+.resend-login-modal {
+ padding: 20px;
+ font-size: 16px;
+}
+/* line 28, ../../app/assets/stylesheets/apps/users.css.scss */
+.resend-login-modal .resend-login-preview {
+ text-align: center;
+ margin-top: 10px;
+}
+/* line 29, ../../app/assets/stylesheets/apps/users.css.scss */
+.resend-login-modal .resend-login-preview .image-wrapper {
+ text-align: center;
+}
+
+/* line 35, ../../app/assets/stylesheets/apps/users.css.scss */
+#user-profile h3 > div {
+ line-height: 15px;
+ margin-top: 10px;
+}
+/* line 36, ../../app/assets/stylesheets/apps/users.css.scss */
+#user-profile h3 i {
+ position: relative;
+ top: 10px;
+ margin-right: 10px;
+}
+/* line 37, ../../app/assets/stylesheets/apps/users.css.scss */
+#user-profile h3 span {
+ font-size: 13px;
+}
+/* line 39, ../../app/assets/stylesheets/apps/users.css.scss */
+#user-profile .icons-mail {
+ position: relative;
+ top: -2px;
+ margin-right: 2px;
+}
+/* line 40, ../../app/assets/stylesheets/apps/users.css.scss */
+#user-profile .icons-edit-tiny-white {
+ vertical-align: baseline;
+}
+
+/* line 43, ../../app/assets/stylesheets/apps/users.css.scss */
+#number-selected-users {
+ margin-bottom: 2px;
+}
+
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#users-selectable-list th:first-child {
+ width: 4%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#users-selectable-list th:first-child + th {
+ width: 30%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#users-selectable-list th:first-child + th + th {
+ width: 40%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#users-selectable-list th:first-child + th + th + th {
+ width: 26%;
+}
+/* line 45, ../../app/assets/stylesheets/apps/users.css.scss */
+#users-selectable-list input[type=checkbox] {
+ margin-top: 0;
+ position: relative;
+ top: -2px;
+}
+
+/* line 48, ../../app/assets/stylesheets/apps/users.css.scss */
+#users-new-layout .controls > input[type=checkbox],
+#users-new-layout .controls > input[type=radio] {
+ margin-left: 20px;
+}
+
+/* line 49, ../../app/assets/stylesheets/apps/users.css.scss */
+#password_options_toggle {
+ margin-left: 5px !important;
+}
+
+@media only screen and (-webkit-min-device-pixel-ratio: 0) and (device-width: 768px), only screen and (-webkit-min-device-pixel-ratio: 0) and (device-width: 1280px), only screen and (-webkit-min-device-pixel-ratio: 0) and (device-width: 800px) {
+ /* line 4, ../../app/assets/stylesheets/tablet.css.scss */
+ .icons-move, .icons-move-small,
+ .reorder-categories {
+ display: none !important;
+ }
+
+ /* line 6, ../../app/assets/stylesheets/tablet.css.scss */
+ .search-wrapper input {
+ border: 1px solid #bebebe !important;
+ }
+ /* line 7, ../../app/assets/stylesheets/tablet.css.scss */
+ .search-wrapper .btn.btn-no-bg {
+ float: left;
+ margin-left: 2px;
+ background-color: white !important;
+ -webkit-border-radius: 10px;
+ -moz-border-radius: 10px;
+ -ms-border-radius: 10px;
+ -o-border-radius: 10px;
+ border-radius: 10px;
+ border: 1px solid #bebebe !important;
+ -webkit-box-shadow: rgba(0, 0, 0, 0.05) -3px 2px 3px inset;
+ -moz-box-shadow: rgba(0, 0, 0, 0.05) -3px 2px 3px inset;
+ box-shadow: rgba(0, 0, 0, 0.05) -3px 2px 3px inset;
+ }
+}
+/* line 1, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 2, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 3, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 4, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 5, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 6, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 7, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 8, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 9, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 10, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 11, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 12, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 13, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 14, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 15, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 16, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 17, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 18, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 19, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 20, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 21, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 22, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 23, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 24, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 25, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 26, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 27, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 28, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 29, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 30, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 31, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 32, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 33, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 34, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 35, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 36, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 37, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 38, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 39, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 40, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 41, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 42, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 43, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 44, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 45, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 46, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 47, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 48, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 49, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 50, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 51, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 52, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 53, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 54, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 55, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 56, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 57, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 58, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 59, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 60, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 61, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 62, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 63, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 64, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 65, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 66, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 67, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 68, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 69, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 70, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 71, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 72, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 73, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 74, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 75, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 76, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 77, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 78, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 79, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 80, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 81, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 82, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 83, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 84, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 85, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 86, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 87, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 88, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 89, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 90, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 91, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 92, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 93, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 94, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 95, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 96, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 97, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 98, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 99, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 100, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 101, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 102, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 103, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 104, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 105, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 106, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 107, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 108, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 109, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 110, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 111, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 112, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 113, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 114, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 115, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 116, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 117, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 118, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 119, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 120, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 121, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 122, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 123, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 124, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 125, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 126, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 127, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 128, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 129, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 130, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 131, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 132, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 133, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 134, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 135, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 136, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 137, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 138, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 139, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 140, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 141, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 142, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 143, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 144, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 145, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 146, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 147, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 148, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 149, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 150, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 151, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 152, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 153, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 154, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 155, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 156, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 157, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 158, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 159, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 160, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 161, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 162, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 163, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 164, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 165, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 166, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 167, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 168, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 169, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 170, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 171, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 172, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 173, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 174, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 175, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 176, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 177, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 178, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 179, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 180, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 181, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 182, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 183, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 184, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 185, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 186, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 187, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 188, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 189, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 190, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 191, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 192, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 193, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 194, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 195, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 196, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 197, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 198, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 199, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 200, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 201, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 202, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 203, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 204, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 205, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 206, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 207, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 208, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 209, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 210, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 211, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 212, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 213, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 214, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 215, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 216, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 217, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 218, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 219, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 220, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 221, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 222, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 223, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 224, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 225, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 226, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 227, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 228, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 229, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 230, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 231, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 232, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 233, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 234, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 235, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 236, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 237, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 238, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 239, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 240, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 241, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 242, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 243, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 244, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 245, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 246, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 247, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 248, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 249, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 250, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 251, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 252, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 253, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 254, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 255, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 256, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 257, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 258, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 259, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 260, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 261, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 262, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 263, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 264, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 265, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 266, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 267, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 268, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 269, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 270, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 271, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 272, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 273, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 274, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 275, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 276, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 277, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 278, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 279, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 280, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 281, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 282, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 283, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 284, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 285, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 286, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 287, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 288, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 289, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 290, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 291, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 292, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 293, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 294, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 295, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 296, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 297, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 298, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 299, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 300, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 301, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 302, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 303, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 304, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 305, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 306, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 307, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 308, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 309, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 310, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 311, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 312, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 313, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 314, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 315, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 316, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 317, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 318, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 319, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 320, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 321, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 322, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 323, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 324, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 325, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 326, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 327, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 328, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 329, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 330, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 331, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 332, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 333, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 334, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 335, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 336, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 337, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 338, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 339, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 340, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 341, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 342, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 343, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 344, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 345, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 346, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 347, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 348, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 349, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 350, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 351, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 352, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 353, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 354, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 355, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 356, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 357, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 358, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 359, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 360, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 361, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 362, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 363, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 364, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 365, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 366, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 367, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 368, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 369, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 370, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 371, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 372, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 373, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 374, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 375, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 376, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 377, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 378, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 379, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 380, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 381, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 382, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 383, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 384, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 385, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 386, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 387, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 388, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 389, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 390, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 391, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 392, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 393, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 394, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 395, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 396, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 397, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 398, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 399, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 400, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 401, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 402, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 403, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 404, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 405, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 406, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 407, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 408, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 409, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 410, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 411, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 412, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 413, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 414, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 415, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 416, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 417, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 418, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 419, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 420, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 421, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 422, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 423, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 424, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 425, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 426, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 427, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 428, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 429, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 430, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 431, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 432, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 433, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 434, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 435, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 436, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 437, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 438, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 439, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 440, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 441, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 442, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 443, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 444, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 445, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 446, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 447, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 448, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 449, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 450, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 451, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 452, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 453, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 454, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 455, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 456, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 457, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 458, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 459, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 460, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 461, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 462, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 463, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 464, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 465, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 466, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 467, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 468, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 469, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 470, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 471, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 472, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 473, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 474, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 475, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 476, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 477, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 478, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 479, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 480, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 481, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 482, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 483, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 484, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 485, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 486, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 487, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 488, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 489, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 490, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 491, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 492, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 493, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 494, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 495, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 496, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 497, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 498, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 499, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 500, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 501, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 502, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 503, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 504, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 505, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 506, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 507, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 508, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 509, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 510, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 511, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 512, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 513, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 514, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 515, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 516, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 517, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 518, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 519, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 520, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 521, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 522, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 523, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 524, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 525, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 526, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 527, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 528, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 529, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 530, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 531, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 532, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 533, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 534, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 535, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 536, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 537, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 538, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 539, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 540, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 541, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 542, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 543, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 544, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 545, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 546, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 547, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 548, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 549, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 550, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 551, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 552, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 553, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 554, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 555, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 556, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 557, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 558, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 559, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 560, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 561, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 562, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 563, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 564, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 565, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 566, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 567, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 568, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 569, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 570, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 571, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 572, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 573, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 574, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 575, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 576, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 577, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 578, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 579, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 580, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 581, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 582, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 583, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 584, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 585, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 586, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 587, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 588, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 589, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 590, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 591, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 592, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 593, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 594, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 595, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 596, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 597, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 598, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 599, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 600, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 601, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 602, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 603, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 604, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 605, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 606, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 607, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 608, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 609, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 610, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 611, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 612, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 613, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 614, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 615, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 616, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 617, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 618, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 619, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 620, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 621, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 622, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 623, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 624, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 625, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 626, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 627, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 628, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 629, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 630, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 631, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 632, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 633, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 634, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 635, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 636, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 637, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 638, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 639, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 640, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 641, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 642, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 643, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 644, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 645, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 646, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 647, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 648, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 649, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 650, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 651, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 652, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 653, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 654, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 655, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 656, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 657, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 658, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 659, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 660, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 661, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 662, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 663, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 664, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 665, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 666, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 667, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 668, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 669, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 670, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 671, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 672, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 673, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 674, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 675, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 676, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 677, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 678, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 679, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 680, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 681, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 682, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 683, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 684, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 685, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 686, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 687, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 688, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 689, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 690, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 691, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 692, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 693, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 694, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 695, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 696, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 697, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 698, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 699, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 700, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 701, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 702, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 703, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 704, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 705, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 706, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 707, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 708, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 709, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 710, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 711, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 712, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 713, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 714, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 715, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 716, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 717, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 718, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 719, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 720, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 721, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 722, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 723, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 724, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 725, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 726, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 727, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 728, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 729, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 730, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 731, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 732, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 733, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 734, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 735, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 736, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 737, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 738, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 739, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 740, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 741, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 742, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 743, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 744, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 745, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 746, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 747, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 748, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 749, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 750, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 751, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 752, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 753, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 754, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 755, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 756, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 757, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 758, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 759, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 760, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 761, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 762, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 763, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 764, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 765, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 766, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 767, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 768, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 769, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 770, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 771, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 772, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 773, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 774, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 775, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 776, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 777, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 778, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 779, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 780, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 781, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 782, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 783, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 784, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 785, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 786, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 787, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 788, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 789, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 790, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 791, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 792, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 793, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 794, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 795, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 796, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 797, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 798, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 799, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 800, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 801, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 802, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 803, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 804, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 805, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 806, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 807, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 808, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 809, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 810, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 811, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 812, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 813, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 814, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 815, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 816, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 817, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 818, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 819, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 820, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 821, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 822, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 823, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 824, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 825, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 826, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 827, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 828, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 829, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 830, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 831, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 832, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 833, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 834, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 835, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 836, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 837, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 838, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 839, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 840, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 841, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 842, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 843, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 844, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 845, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 846, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 847, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 848, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 849, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 850, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 851, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 852, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 853, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 854, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 855, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 856, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 857, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 858, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 859, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 860, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 861, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 862, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 863, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 864, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 865, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 866, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 867, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 868, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 869, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 870, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 871, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 872, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 873, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 874, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 875, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 876, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 877, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 878, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 879, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 880, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 881, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 882, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 883, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 884, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 885, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 886, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 887, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 888, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 889, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 890, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 891, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 892, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 893, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 894, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 895, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 896, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 897, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 898, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 899, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 900, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 901, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 902, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 903, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 904, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 905, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 906, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 907, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 908, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 909, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 910, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 911, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 912, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 913, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 914, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 915, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 916, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 917, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 918, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 919, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 920, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 921, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 922, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 923, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 924, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 925, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 926, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 927, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 928, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 929, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 930, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 931, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 932, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 933, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 934, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 935, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 936, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 937, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 938, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 939, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 940, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 941, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 942, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 943, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 944, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 945, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 946, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 947, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 948, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 949, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 950, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 951, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 952, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 953, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 954, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 955, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 956, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 957, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 958, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 959, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 960, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 961, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 962, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 963, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 964, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 965, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 966, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 967, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 968, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 969, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 970, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 971, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 972, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 973, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 974, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 975, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 976, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 977, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 978, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 979, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 980, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 981, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 982, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 983, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 984, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 985, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 986, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 987, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 988, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 989, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 990, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 991, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 992, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 993, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 994, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 995, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 996, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 997, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 998, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 999, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1000, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1001, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1002, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1003, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1004, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1005, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1006, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1007, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1008, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1009, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1010, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1011, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1012, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1013, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1014, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1015, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1016, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1017, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1018, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1019, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1020, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1021, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1022, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1023, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1024, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1025, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1026, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1027, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1028, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1029, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1030, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1031, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1032, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1033, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1034, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1035, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1036, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1037, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1038, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1039, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1040, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1041, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1042, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1043, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1044, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1045, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1046, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1047, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1048, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1049, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1050, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1051, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1052, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1053, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1054, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1055, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1056, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1057, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1058, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1059, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1060, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1061, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1062, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1063, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1064, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1065, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1066, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1067, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1068, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1069, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1070, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1071, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1072, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1073, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1074, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1075, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1076, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1077, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1078, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1079, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1080, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1081, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1082, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1083, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1084, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1085, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1086, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1087, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1088, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1089, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1090, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1091, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1092, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1093, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1094, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1095, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1096, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1097, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1098, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1099, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1100, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1101, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1102, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1103, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1104, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1105, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1106, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1107, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1108, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1109, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1110, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1111, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1112, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1113, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1114, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1115, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1116, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1117, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1118, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1119, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1120, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1121, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1122, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1123, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1124, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1125, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1126, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1127, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1128, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1129, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1130, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1131, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1132, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1133, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1134, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1135, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1136, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1137, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1138, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1139, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1140, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1141, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1142, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1143, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1144, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1145, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1146, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1147, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1148, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1149, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1150, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1151, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1152, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1153, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1154, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1155, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1156, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1157, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1159, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1160, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1161, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1162, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1163, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1164, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1165, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1166, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1167, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1168, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1169, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1170, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1171, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1172, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1173, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1174, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1175, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1176, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1177, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1178, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1179, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1180, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1181, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1182, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1183, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1184, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1185, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1186, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1187, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1188, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1189, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1190, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1191, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1192, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1193, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1194, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1195, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1196, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1197, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1198, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1199, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1200, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1201, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1202, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1203, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1204, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1205, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1206, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1207, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1208, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1209, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1210, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1211, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1212, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1213, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1214, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1215, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1216, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1217, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1218, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1219, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1220, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1221, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1222, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1223, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1224, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1225, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1226, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1227, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1228, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1229, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1230, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1231, ../../app/assets/stylesheets/test.css.scss */
+#foo {
+ display: none;
+}
+
+/* line 1234, ../../app/assets/stylesheets/test.css.scss */
+html, body {
+ background-color: red !important;
+}
+
+/* line 1235, ../../app/assets/stylesheets/test.css.scss */
+#two-column-content-wrapper {
+ background-color: yellow !important;
+}
diff --git a/test/dummy/app/assets/stylesheets/test_stylesheet_with_media_queries_split2.css b/test/dummy/app/assets/stylesheets/test_stylesheet_with_media_queries_split2.css
new file mode 100644
index 0000000..23b2f80
--- /dev/null
+++ b/test/dummy/app/assets/stylesheets/test_stylesheet_with_media_queries_split2.css
@@ -0,0 +1,3 @@
+/*
+ *= require 'test_stylesheet_with_media_queries'
+ */
diff --git a/test/dummy/app/assets/stylesheets/too_big_stylesheet.css.scss b/test/dummy/app/assets/stylesheets/too_big_stylesheet.css.scss
index efe4c12..1c7b1bf 100644
--- a/test/dummy/app/assets/stylesheets/too_big_stylesheet.css.scss
+++ b/test/dummy/app/assets/stylesheets/too_big_stylesheet.css.scss
@@ -1,3 +1,7 @@
+@charset "UTF-8";
+/* mulit
+line
+comment */
#test { background-color: red ;}
#test { background-color: red ;}
#test { background-color: red ;}
diff --git a/test/dummy/app/assets/stylesheets/too_big_stylesheet_split2.css b/test/dummy/app/assets/stylesheets/too_big_stylesheet_split2.css
new file mode 100644
index 0000000..1cf401d
--- /dev/null
+++ b/test/dummy/app/assets/stylesheets/too_big_stylesheet_split2.css
@@ -0,0 +1,3 @@
+/*
+ *= require 'too_big_stylesheet.css'
+ */
diff --git a/test/dummy/app/assets/stylesheets/too_big_stylesheet_split2.css.split2 b/test/dummy/app/assets/stylesheets/too_big_stylesheet_split2.css.split2
deleted file mode 100644
index ffa49f3..0000000
--- a/test/dummy/app/assets/stylesheets/too_big_stylesheet_split2.css.split2
+++ /dev/null
@@ -1 +0,0 @@
-//= include 'too_big_stylesheet.css'
\ No newline at end of file
diff --git a/test/dummy/app/helpers/application_helper.rb b/test/dummy/app/helpers/application_helper.rb
deleted file mode 100644
index de6be79..0000000
--- a/test/dummy/app/helpers/application_helper.rb
+++ /dev/null
@@ -1,2 +0,0 @@
-module ApplicationHelper
-end
diff --git a/test/dummy/app/helpers/tests_helper.rb b/test/dummy/app/helpers/tests_helper.rb
deleted file mode 100644
index c54aa99..0000000
--- a/test/dummy/app/helpers/tests_helper.rb
+++ /dev/null
@@ -1,2 +0,0 @@
-module TestsHelper
-end
diff --git a/test/dummy/app/mailers/.gitkeep b/test/dummy/app/mailers/.gitkeep
deleted file mode 100644
index e69de29..0000000
diff --git a/test/dummy/app/models/.gitkeep b/test/dummy/app/models/.gitkeep
deleted file mode 100644
index e69de29..0000000
diff --git a/test/dummy/app/views/layouts/application.html.erb b/test/dummy/app/views/layouts/application.html.erb
index 9fa37cd..f9e8544 100644
--- a/test/dummy/app/views/layouts/application.html.erb
+++ b/test/dummy/app/views/layouts/application.html.erb
@@ -5,7 +5,7 @@
<%= stylesheet_link_tag "application", :media => "all" %>
- <%= split_stylesheet_link_tag "too_big_stylesheet", :media => "all" %>
+ <%= split_stylesheet_link_tag "too_big_stylesheet", :media => "all", :debug => true %>
<%= csrf_meta_tags %>
diff --git a/test/dummy/config/application.rb b/test/dummy/config/application.rb
index 213c46b..7a5b60e 100644
--- a/test/dummy/config/application.rb
+++ b/test/dummy/config/application.rb
@@ -1,6 +1,10 @@
require File.expand_path('../boot', __FILE__)
-require 'rails/all'
+# require 'rails/all'
+require "action_controller/railtie"
+require "action_mailer/railtie"
+require "rails/test_unit/railtie"
+require "sprockets/railtie"
Bundler.require
require "css_splitter"
@@ -34,7 +38,8 @@ class Application < Rails::Application
# Configure sensitive parameters which will be filtered from the log file.
config.filter_parameters += [:password]
-
+ config.sass.line_comments = false
+ config.assets.compress = true
# Enable escaping HTML in JSON.
config.active_support.escape_html_entities_in_json = true
@@ -47,13 +52,10 @@ class Application < Rails::Application
# This will create an empty whitelist of attributes available for mass-assignment for all models
# in your app. As such, your models will need to explicitly whitelist or blacklist accessible
# parameters by using an attr_accessible or attr_protected declaration.
- config.active_record.whitelist_attributes = true
+ # config.active_record.whitelist_attributes = true
# Enable the asset pipeline
config.assets.enabled = true
-
- # Version of your assets, change this if you want to expire all your assets
- config.assets.version = '1.0'
end
end
diff --git a/test/dummy/config/environments/development.rb b/test/dummy/config/environments/development.rb
index 82c74d1..ef8997c 100644
--- a/test/dummy/config/environments/development.rb
+++ b/test/dummy/config/environments/development.rb
@@ -23,15 +23,17 @@
config.action_dispatch.best_standards_support = :builtin
# Raise exception on mass assignment protection for Active Record models
- config.active_record.mass_assignment_sanitizer = :strict
+ # config.active_record.mass_assignment_sanitizer = :strict
# Log the query plan for queries taking more than this (works
# with SQLite, MySQL, and PostgreSQL)
- config.active_record.auto_explain_threshold_in_seconds = 0.5
+ # config.active_record.auto_explain_threshold_in_seconds = 0.5
# Do not compress assets
config.assets.compress = false
# Expands the lines which load the assets
config.assets.debug = true
+
+ config.eager_load = false
end
diff --git a/test/dummy/config/environments/production.rb b/test/dummy/config/environments/production.rb
index bdac56a..d92c150 100644
--- a/test/dummy/config/environments/production.rb
+++ b/test/dummy/config/environments/production.rb
@@ -9,7 +9,7 @@
config.action_controller.perform_caching = true
# Disable Rails's static asset server (Apache or nginx will already do this)
- config.serve_static_assets = false
+ config.serve_static_files = false
# Compress JavaScripts and CSS
config.assets.compress = true
@@ -31,7 +31,7 @@
# config.force_ssl = true
# See everything in the log (default is :info)
- # config.log_level = :debug
+ config.log_level = :debug
# Prepend all log lines with the following tags
# config.log_tags = [ :subdomain, :uuid ]
@@ -45,9 +45,6 @@
# Enable serving of images, stylesheets, and JavaScripts from an asset server
# config.action_controller.asset_host = "http://assets.example.com"
- # Precompile additional assets (application.js, application.css, and all non-JS/CSS are already added)
- # config.assets.precompile += %w( search.js )
-
# Disable delivery errors, bad email addresses will be ignored
# config.action_mailer.raise_delivery_errors = false
@@ -64,4 +61,6 @@
# Log the query plan for queries taking more than this (works
# with SQLite, MySQL, and PostgreSQL)
# config.active_record.auto_explain_threshold_in_seconds = 0.5
+
+ config.eager_load = true
end
diff --git a/test/dummy/config/environments/test.rb b/test/dummy/config/environments/test.rb
index f1a4814..3171e7c 100644
--- a/test/dummy/config/environments/test.rb
+++ b/test/dummy/config/environments/test.rb
@@ -8,7 +8,7 @@
config.cache_classes = true
# Configure static asset server for tests with Cache-Control for performance
- config.serve_static_assets = true
+ config.serve_static_files = true
config.static_cache_control = "public, max-age=3600"
# Log error messages when you accidentally call methods on nil
@@ -29,9 +29,14 @@
# ActionMailer::Base.deliveries array.
config.action_mailer.delivery_method = :test
+ # run tests in a random order
+ config.active_support.test_order = :random
+
# Raise exception on mass assignment protection for Active Record models
- config.active_record.mass_assignment_sanitizer = :strict
+ # config.active_record.mass_assignment_sanitizer = :strict
# Print deprecation notices to the stderr
config.active_support.deprecation = :stderr
+
+ config.eager_load = false
end
diff --git a/test/dummy/config/initializers/assets.rb b/test/dummy/config/initializers/assets.rb
new file mode 100644
index 0000000..91073da
--- /dev/null
+++ b/test/dummy/config/initializers/assets.rb
@@ -0,0 +1,8 @@
+# Be sure to restart your server when you modify this file.
+
+# Version of your assets, change this if you want to expire all your assets.
+Rails.application.config.assets.version = '1.0'
+
+# Precompile additional assets.
+# application.js, application.css, and all non-JS/CSS in app/assets folder are already added.
+Rails.application.config.assets.precompile += %w( too_big_stylesheet.css too_big_stylesheet_split2.css test_stylesheet_with_media_queries.css test_stylesheet_with_media_queries_split2.css )
\ No newline at end of file
diff --git a/test/dummy/config/secrets.yml b/test/dummy/config/secrets.yml
new file mode 100644
index 0000000..5dc368e
--- /dev/null
+++ b/test/dummy/config/secrets.yml
@@ -0,0 +1,4 @@
+test:
+ secret_key_base: c2a98602cc1537b2e38d4f279f20d24db66ff86fe523ab5197529f2ea907b6d70e2dca2fa3da50dcc9cad7bb1b861f0c45b6920fc576cc3e170d8c1ded61887f
+development:
+ secret_key_base: c2a98602cc1537b2e38d4f279f20d24db66ff86fe523ab5197529f2ea907b6d70e2dca2fa3da50dcc9cad7bb1b861f0c45b6920fc576cc3e170d8c1ded61887f
\ No newline at end of file
diff --git a/test/integration/navigation_test.rb b/test/integration/navigation_test.rb
index 97a94c9..576cd31 100644
--- a/test/integration/navigation_test.rb
+++ b/test/integration/navigation_test.rb
@@ -1,7 +1,7 @@
require 'test_helper'
class NavigationTest < ActionDispatch::IntegrationTest
- fixtures :all
+ # fixtures :all
# test "the truth" do
# assert true
diff --git a/test/test_helper.rb b/test/test_helper.rb
index 1e26a31..16b684b 100644
--- a/test/test_helper.rb
+++ b/test/test_helper.rb
@@ -12,4 +12,4 @@
# Load fixtures from the engine
if ActiveSupport::TestCase.method_defined?(:fixture_path=)
ActiveSupport::TestCase.fixture_path = File.expand_path("../fixtures", __FILE__)
-end
+end
\ No newline at end of file
diff --git a/test/unit/helpers/css_splitter/application_helper_test.rb b/test/unit/helpers/css_splitter/application_helper_test.rb
index 1fedb0a..4dc8d39 100644
--- a/test/unit/helpers/css_splitter/application_helper_test.rb
+++ b/test/unit/helpers/css_splitter/application_helper_test.rb
@@ -5,13 +5,41 @@ class ApplicationHelperTest < ActionView::TestCase
test "should work w/out options" do
output = split_stylesheet_link_tag("too_big_stylesheet")
- assert_equal " \n", output
+ assert_equal " \n", output
end
test "should work with options and multiple stylesheets" do
output = split_stylesheet_link_tag("too_big_stylesheet", "foo", media: "print")
- assert_equal " \n \n", output
+ assert_equal " \n\n \n", output
end
+ test "should work with split_count option" do
+ output = split_stylesheet_link_tag("too_big_stylesheet", split_count: 3)
+ assert_equal " \n", output
+ end
+
+ class RailsEnvDefault < ActionView::TestCase
+ setup do
+ Rails.env = 'development'
+ end
+
+ teardown do
+ Rails.env = 'test'
+ end
+
+ test "should default to false on splits" do
+ output = split_stylesheet_link_tag("too_big_stylesheet")
+ assert_equal " \n", output
+ end
+
+ test "should respect the debug=true option" do
+ output = split_stylesheet_link_tag("too_big_stylesheet", debug: true)
+ assert_equal " \n", output
+ end
+ test "should respect the debug=false option" do
+ output = split_stylesheet_link_tag("too_big_stylesheet", debug: false)
+ assert_equal " \n", output
+ end
+ end
end
end
diff --git a/test/unit/splitter_test.rb b/test/unit/splitter_test.rb
new file mode 100644
index 0000000..f9713ea
--- /dev/null
+++ b/test/unit/splitter_test.rb
@@ -0,0 +1,202 @@
+require 'test_helper'
+
+class CssSplitterTest < ActiveSupport::TestCase
+ test "#count_selectors" do
+ assert_equal 2937, CssSplitter::Splitter.count_selectors('test/unit/too_many_selectors.css')
+ end
+
+ test "#count_selectors_of_rule" do
+ assert_equal 1, CssSplitter::Splitter.count_selectors_of_rule('foo { color: baz; }')
+ assert_equal 2, CssSplitter::Splitter.count_selectors_of_rule('foo, bar { color: baz; }')
+
+ # split_string_into_rules splits the closing brace of a media query into its own rule
+ assert_equal 0, CssSplitter::Splitter.count_selectors_of_rule('}')
+ end
+
+ # --- split_string_into_rules ---
+
+ test '#split_string_into_rules' do
+ simple = "a{foo:bar;}b{baz:qux;}"
+ assert_equal ["a{foo:bar;}", "b{baz:qux;}"], CssSplitter::Splitter.split_string_into_rules(simple)
+ end
+
+ test '#split_string_into_rules for single line comments' do
+ multi_line = "a{foo:bar;} /* comment p{bar:foo;} */ b{baz:qux;}"
+ assert_equal ["a{foo:bar;}", " b{baz:qux;}"], CssSplitter::Splitter.split_string_into_rules(multi_line)
+ end
+
+ test '#split_string_into_rules for multiline comments' do
+ multi_line = "a{foo:bar;}\n/*\nMultiline comment p{bar:foo;}\n*/\nb{baz:qux;}"
+ assert_equal ["a{foo:bar;}", "\n\nb{baz:qux;}"], CssSplitter::Splitter.split_string_into_rules(multi_line)
+ end
+
+ test '#split_string_into_rules for strings with protocol independent urls' do
+ simple = "a{foo:url(//assets.server.com);}b{bar:url(//assets/server.com);}"
+ assert_equal ["a{foo:url(//assets.server.com);}", "b{bar:url(//assets/server.com);}"], CssSplitter::Splitter.split_string_into_rules(simple)
+ end
+
+ test '#split_string_into_rules containing media queries' do
+ has_media = "a{foo:bar;}@media print{b{baz:qux;}c{quux:corge;}}d{grault:garply;}"
+ assert_equal ["a{foo:bar;}", "@media print{b{baz:qux;}", "c{quux:corge;}", "}", "d{grault:garply;}"], CssSplitter::Splitter.split_string_into_rules(has_media)
+ end
+
+ test '#split_string_into_rules containing media queries with leading whitespace' do
+ has_media = "a{foo:bar;}\n @media print{b{baz:qux;}c{quux:corge;}}d{grault:garply;}"
+ assert_equal ["a{foo:bar;}", "\n @media print{b{baz:qux;}", "c{quux:corge;}", "}", "d{grault:garply;}"], CssSplitter::Splitter.split_string_into_rules(has_media)
+ end
+
+ test "#split_string_into_rules containing keyframes" do
+ has_keyframes = "a{foo:bar;}@keyframes rubes{from{baz:qux;}50%{quux:corge;}}d{grault:garply;}"
+ assert_equal ["a{foo:bar;}", "@keyframes rubes{from{baz:qux;}50%{quux:corge;}}", "d{grault:garply;}"], CssSplitter::Splitter.split_string_into_rules(has_keyframes)
+ end
+
+ # --- extract_charset ---
+
+ test '#extract_charset with no charset' do
+ first_rule = ".foo { color: black; }"
+ assert_equal [nil, first_rule], CssSplitter::Splitter.send(:extract_charset, first_rule)
+ end
+
+ test '#extract_charset with charset' do
+ first_rule = '@charset "UTF-8"; .foo { color: black; }'
+ assert_equal ['@charset "UTF-8";', ' .foo { color: black; }'], CssSplitter::Splitter.send(:extract_charset, first_rule)
+ end
+
+ # --- extract_media ---
+
+ test '#extract_media with no media block' do
+ first_rule = ".foo { color: black; }"
+ assert_equal nil, CssSplitter::Splitter.send(:extract_media, first_rule)
+ end
+
+ test '#extract_media with media block' do
+ first_rule = <<< ".a#{n} { color: black; }"
+ end
+ css_rules << "@media only screen and (-webkit-min-device-pixel-ratio: 0) and (device-width: 768px), only screen and (-webkit-min-device-pixel-ratio: 0) and (device-width: 1280px), only screen and (-webkit-min-device-pixel-ratio: 0) and (device-width: 800px) {"
+ css_rules << ".first-in-media-after-split { color: black; } }"
+ last_part = ".first-after-media { color: black; }"
+
+ first_contents = css_rules.join("").gsub(/\s/, '')
+ last_contents = last_part.gsub(/\s/, '')
+ css_contents = "#{first_contents}#{last_contents}"
+
+ assert_equal first_contents, CssSplitter::Splitter.split_string(css_contents, 1, max_selectors)
+ assert_equal last_contents, CssSplitter::Splitter.split_string(css_contents, 2, max_selectors)
+ end
+
+ test '#split_string where the media part would overlap the split, no rules in media before the split' do
+ # This tests the following situation:
+ # Part 1: CssSplitter::Splitter::MAX_SELECTORS_DEFAULT
+ # Part 2: Opens with media block with 1 rule inside and one after
+
+ # Change this line to any number, for example 4, if it fails to ease debugging
+ max_selectors = CssSplitter::Splitter::MAX_SELECTORS_DEFAULT
+
+ css_rules = []
+ max_selectors.times do |n|
+ css_rules << ".a#{n} { color: black; }"
+ end
+ media_rule = "@media only screen and (-webkit-min-device-pixel-ratio: 0) and (device-width: 768px), only screen and (-webkit-min-device-pixel-ratio: 0) and (device-width: 1280px), only screen and (-webkit-min-device-pixel-ratio: 0) and (device-width: 800px) {"
+ last_part = "#{media_rule} .first-in-media-after-split { color: black; } } .first-after-media { color: black; }"
+
+ first_contents = css_rules.join("").gsub(/\s/, '')
+ last_contents = last_part.gsub(/\s/, '')
+ css_contents = "#{first_contents}#{last_contents}"
+
+ assert_equal first_contents, CssSplitter::Splitter.split_string(css_contents, 1, max_selectors)
+ assert_equal last_contents, CssSplitter::Splitter.split_string(css_contents, 2, max_selectors)
+ end
+
+ test '#split_string where the media part would overlap the split, with rules in media before the split' do
+ # This tests the following situation:
+ # Part 1: CssSplitter::Splitter::MAX_SELECTORS_DEFAULT - 1 rules
+ # + Media block and first rule inside the media block
+ # Part 2: Opens with media block with last rule inside and one after
+
+ # Change this line to any number, for example 4, if it fails to ease debugging
+ max_selectors = CssSplitter::Splitter::MAX_SELECTORS_DEFAULT
+
+ css_rules = []
+ (max_selectors - 1).times do |n|
+ css_rules << ".a#{n} { color: black; }"
+ end
+ css_rules << media_rule = "@media only screen and (-webkit-min-device-pixel-ratio: 0) and (device-width: 768px), only screen and (-webkit-min-device-pixel-ratio: 0) and (device-width: 1280px), only screen and (-webkit-min-device-pixel-ratio: 0) and (device-width: 800px) {"
+ css_rules << ".last-before-split { color: black; }"
+
+ after_split = ".last-after-split { color: black; } } .first-after-media { color: black; }".gsub(/\s/, '')
+
+ first_contents = css_rules.join("").gsub(/\s/, '')
+ css_contents = "#{first_contents}#{after_split}"
+
+ # The last part should open with the media, followed by the rules defined in after_split
+ last_contents = "#{media_rule}#{after_split}".gsub(/\s/, '')
+
+ # The first file should be closed neatly, as the media part opened before the last rule
+ # it should be closed as well.
+ assert_equal "#{first_contents}}", CssSplitter::Splitter.split_string(css_contents, 1, max_selectors)
+
+ # The second part should open with the media definition, followed by one rule inside
+ # the media block and one rule after.
+ assert_equal last_contents, CssSplitter::Splitter.split_string(css_contents, 2, max_selectors)
+ end
+
+ test '#split_string where the media part comes before the split' do
+ # This tests the following situation:
+ # Part 1: Media block with rule inside media block
+ # + CssSplitter::Splitter::MAX_SELECTORS_DEFAULT - 1 rules outside media block
+ # Part 2: Outputs the last rule outside media block
+
+ # Change this line to any number, for example 4, if it fails to ease debugging
+ max_selectors = CssSplitter::Splitter::MAX_SELECTORS_DEFAULT
+
+ css_rules = []
+ css_rules << "@media print { .media-rule { color: black; } }"
+
+ (max_selectors - 1).times do |n|
+ css_rules << ".a#{n} { color: black; }"
+ end
+
+ first_contents = css_rules.join("").gsub(/\s/, '')
+ last_contents = ".first-after-split { color: black; }".gsub(/\s/, '')
+
+ css_contents = "#{first_contents}#{last_contents}"
+
+ assert_equal first_contents, CssSplitter::Splitter.split_string(css_contents, 1, max_selectors)
+ assert_equal last_contents, CssSplitter::Splitter.split_string(css_contents, 2, max_selectors)
+ end
+
+ # --- strip_comments ---
+
+ test '#strip_comments: strip single line CSS coment' do
+ assert_equal ".foo { color: black; }\n.foo { color: black; }", CssSplitter::Splitter.send(:strip_comments, ".foo { color: black; }\n/* comment */.foo { color: black; }")
+ end
+
+ test '#strip_comments: strip multiline CSS coment' do
+ assert_equal ".foo { color: black; }\n.foo { color: black; }", CssSplitter::Splitter.send(:strip_comments, ".foo { color: black; }\n/* multi\nline\ncomment */.foo { color: black; }")
+ end
+end
diff --git a/test/unit/too_many_selectors.css b/test/unit/too_many_selectors.css
new file mode 100644
index 0000000..32c1290
--- /dev/null
+++ b/test/unit/too_many_selectors.css
@@ -0,0 +1,12986 @@
+/* line 2986, icons/*.png */
+.icons-sprite, .icons-ad, .icons-add-small, .icons-add-tiny, .icons-ae, .icons-af, .icons-ag, .icons-ai, .icons-al, .icons-alert-error, .icons-alert-info, .icons-alert-notice, .icons-alert-question, .icons-alert-success, .icons-am, .icons-an, .icons-analytics, .icons-ao, .icons-ar, .icons-arrow-down-green, .icons-arrow-down-red, .icons-arrow-down, .icons-arrow-left, .icons-arrow-right-white, .icons-arrow-right, .icons-arrow-up-green, .icons-arrow-up-red, .icons-arrow-up, .icons-as, .icons-asset-small, .icons-at, .icons-au, .icons-aw, .icons-ax, .icons-az, .icons-ba, .icons-barcode, .icons-bb, .icons-bd, .icons-be, .icons-beta, .icons-bf, .icons-bg, .icons-bh, .icons-bi, .icons-bj, .icons-blank, .icons-bm, .icons-bn, .icons-bo, .icons-br, .icons-bs, .icons-bt, .icons-bug-error, .icons-bv, .icons-bw, .icons-by, .icons-bz, .icons-ca, .icons-calendar, .icons-cancel, .icons-catalonia, .icons-cc, .icons-cd, .icons-cf, .icons-cg, .icons-ch, .icons-check-green, .icons-ci, .icons-ck, .icons-cl, .icons-clone-small, .icons-cm, .icons-cn, .icons-co, .icons-cog-small-white, .icons-cog-small, .icons-cog, .icons-collapse, .icons-comment, .icons-comments-small, .icons-cr, .icons-cs, .icons-cu, .icons-cv, .icons-cx, .icons-cy, .icons-cz, .icons-de, .icons-dj, .icons-dk, .icons-dm, .icons-do, .icons-dot-gray, .icons-dot-green, .icons-dot-orange, .icons-dot-red, .icons-dot-yellow, .icons-download-white, .icons-download, .icons-dz, .icons-ec, .icons-edit-small-grey, .icons-edit-small, .icons-edit-tiny-white, .icons-edit-tiny, .icons-ee, .icons-eg, .icons-eh, .icons-england, .icons-er, .icons-es, .icons-et, .icons-europeanunion, .icons-expand, .icons-fam, .icons-fi, .icons-file-excel, .icons-file-pdf, .icons-file-word, .icons-file, .icons-files-small, .icons-fj, .icons-fk, .icons-fm, .icons-fo, .icons-folder-tiny-blue, .icons-folder-tiny, .icons-folder, .icons-form-small, .icons-fr, .icons-ga, .icons-gb, .icons-gd, .icons-ge, .icons-gf, .icons-gh, .icons-gi, .icons-gl, .icons-gm, .icons-gn, .icons-gp, .icons-gq, .icons-gr, .icons-gs, .icons-gt, .icons-gu, .icons-gw, .icons-gy, .icons-hk, .icons-hm, .icons-hn, .icons-hr, .icons-ht, .icons-hu, .icons-id, .icons-ie, .icons-il, .icons-in, .icons-io, .icons-iq, .icons-ir, .icons-is, .icons-it, .icons-jm, .icons-jo, .icons-jp, .icons-ke, .icons-kg, .icons-kh, .icons-ki, .icons-km, .icons-kn, .icons-kp, .icons-kr, .icons-kw, .icons-ky, .icons-kz, .icons-la, .icons-lb, .icons-lc, .icons-li, .icons-lk, .icons-location-small, .icons-lockpad, .icons-logo-colored, .icons-logo-white, .icons-logout-arrow-blue, .icons-logout-arrow-white, .icons-logout-arrow, .icons-lr, .icons-ls, .icons-lt, .icons-lu, .icons-lv, .icons-ly, .icons-ma, .icons-mail, .icons-mc, .icons-md, .icons-me, .icons-mg, .icons-mh, .icons-mk, .icons-ml, .icons-mm, .icons-mn, .icons-mo, .icons-move-small, .icons-mp, .icons-mq, .icons-mr, .icons-ms, .icons-mt, .icons-mu, .icons-mv, .icons-mw, .icons-mx, .icons-my, .icons-mz, .icons-na, .icons-nc, .icons-ne, .icons-next-arrow, .icons-nf, .icons-ng, .icons-ni, .icons-nl, .icons-no, .icons-note, .icons-np, .icons-nr, .icons-nu, .icons-nz, .icons-om, .icons-pa, .icons-pe, .icons-pf, .icons-pg, .icons-ph, .icons-photo, .icons-pk, .icons-pl, .icons-pm, .icons-pn, .icons-point-barcode-white, .icons-point-barcode, .icons-point-date-gray, .icons-point-date-white, .icons-point-date, .icons-point-multi-gray, .icons-point-multi-white, .icons-point-multi, .icons-point-number-gray, .icons-point-number-white, .icons-point-number, .icons-point-paragraph-gray, .icons-point-paragraph-white, .icons-point-paragraph, .icons-point-signature-gray, .icons-point-signature-white, .icons-point-signature, .icons-point-single-gray, .icons-point-single-white, .icons-point-single, .icons-point-sketch-gray, .icons-point-sketch-white, .icons-point-sketch, .icons-point-text-gray, .icons-point-text-white, .icons-point-text, .icons-pr, .icons-prev-arrow, .icons-preview-gray, .icons-preview, .icons-procedures-small, .icons-ps, .icons-pt, .icons-publish-grey, .icons-publish-white, .icons-pw, .icons-py, .icons-qa, .icons-quotation-left, .icons-quotation-right, .icons-re, .icons-regulations-small, .icons-remove-small-grey, .icons-remove-small, .icons-resolve-large, .icons-resolve-note, .icons-resolve, .icons-ro, .icons-rs, .icons-ru, .icons-rw, .icons-sa, .icons-sb, .icons-sc, .icons-scotland, .icons-sd, .icons-se, .icons-search-tiny-gray, .icons-search-tiny-white, .icons-search, .icons-sg, .icons-sh, .icons-share, .icons-si, .icons-sj, .icons-sk, .icons-sl, .icons-sm, .icons-sn, .icons-so, .icons-sr, .icons-st, .icons-sv, .icons-sy, .icons-sz, .icons-tc, .icons-td, .icons-team-tiny, .icons-team, .icons-tf, .icons-tg, .icons-th, .icons-tj, .icons-tk, .icons-tl, .icons-tm, .icons-tn, .icons-to, .icons-tr, .icons-tt, .icons-tv, .icons-tw, .icons-tz, .icons-ua, .icons-ug, .icons-um, .icons-us, .icons-user-large, .icons-user, .icons-uy, .icons-uz, .icons-va, .icons-vc, .icons-ve, .icons-vg, .icons-vi, .icons-vn, .icons-vu, .icons-wales, .icons-wf, .icons-ws, .icons-ye, .icons-yt, .icons-za, .icons-zm, .icons-zw, .search-wrapper input:focus + button.btn.btn-no-bg i.icons-search, .search-wrapper button:hover i.icons-search, #full-screen-edit .send-email-link.disabled i.icons-preview, #search-dropdown.open .icons-search-tiny-white, #class-show #eventtypes-list-table tr i.icons-asset-small:hover, #class-show #eventtypes-list-table tr i.icons-form-small:hover, .new-points-list .pointSingleSelect:hover i, .new-points-list .pointMultiSelect:hover i, .new-points-list .pointSingleText:hover i, .new-points-list .pointParagraph:hover i, .new-points-list .pointNumber:hover i, .new-points-list .pointDate:hover i, .new-points-list .pointBarcode:hover i, .new-points-list .pointSketch:hover i, .new-points-list .pointSignature:hover i, #folders .dropdown-toggle.active .icons-folder,
+#folders .dropdown-toggle:active .icons-folder, #folders .dropdown-toggle:focus .icons-folder {
+ background: url(/assets/icons-sef57a8c5b0.png) no-repeat;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-ad {
+ background-position: 0 -4596px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-add-small {
+ background-position: 0 -1886px;
+ height: 17px;
+ width: 16px;
+}
+/* line 43, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-add-small:hover, .icons-add-small.add-small_hover, .icons-add-small.add-small-hover {
+ background-position: 0 -1817px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-add-tiny {
+ background-position: 0 -839px;
+ height: 13px;
+ width: 12px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-ae {
+ background-position: 0 -11479px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-af {
+ background-position: 0 -5588px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-ag {
+ background-position: 0 -6084px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-ai {
+ background-position: 0 -4627px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-al {
+ background-position: 0 -5712px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-alert-error {
+ background-position: 0 -419px;
+ height: 16px;
+ width: 15px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-alert-info {
+ background-position: 0 -1174px;
+ height: 16px;
+ width: 15px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-alert-notice {
+ background-position: 0 -1781px;
+ height: 16px;
+ width: 15px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-alert-question {
+ background-position: 0 0;
+ height: 16px;
+ width: 15px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-alert-success {
+ background-position: 0 -971px;
+ height: 16px;
+ width: 15px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-am {
+ background-position: 0 -9029px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-an {
+ background-position: 0 -9525px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-analytics {
+ background-position: 0 -491px;
+ height: 15px;
+ width: 14px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-ao {
+ background-position: 0 -11138px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-ar {
+ background-position: 0 -8750px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-arrow-down-green {
+ background-position: 0 -1468px;
+ height: 19px;
+ width: 14px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-arrow-down-red {
+ background-position: 0 -2659px;
+ height: 13px;
+ width: 12px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-arrow-down {
+ background-position: 0 -3802px;
+ height: 8px;
+ width: 8px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-arrow-left {
+ background-position: 0 -3830px;
+ height: 8px;
+ width: 8px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-arrow-right-white {
+ background-position: 0 -3686px;
+ height: 11px;
+ width: 9px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-arrow-right {
+ background-position: 0 -3492px;
+ height: 8px;
+ width: 8px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-arrow-up-green {
+ background-position: 0 -2386px;
+ height: 14px;
+ width: 12px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-arrow-up-red {
+ background-position: 0 -1280px;
+ height: 19px;
+ width: 14px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-arrow-up {
+ background-position: 0 -3744px;
+ height: 8px;
+ width: 8px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-as {
+ background-position: 0 -4472px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-asset-small {
+ background-position: 0 -3101px;
+ height: 11px;
+ width: 12px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-at {
+ background-position: 0 -11510px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-au {
+ background-position: 0 -4100px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-aw {
+ background-position: 0 -8037px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-ax {
+ background-position: 0 -4193px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-az {
+ background-position: 0 -6146px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-ba {
+ background-position: 0 -5867px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-barcode {
+ background-position: 0 -3916px;
+ height: 10px;
+ width: 17px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-bb {
+ background-position: 0 -6239px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-bd {
+ background-position: 0 -8781px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-be {
+ background-position: 0 -10765px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-beta {
+ background-position: 0 -78px;
+ height: 14px;
+ width: 33px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-bf {
+ background-position: 0 -9060px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-bg {
+ background-position: 0 -10517px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-bh {
+ background-position: 0 -10548px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-bi {
+ background-position: 0 -4069px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-bj {
+ background-position: 0 -9649px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-blank {
+ background-position: 0 -4006px;
+ height: 12px;
+ width: 12px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-bm {
+ background-position: 0 -5433px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-bn {
+ background-position: 0 -4782px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-bo {
+ background-position: 0 -8905px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-br {
+ background-position: 0 -5898px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-bs {
+ background-position: 0 -7975px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-bt {
+ background-position: 0 -4937px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-bug-error {
+ background-position: 0 -172px;
+ height: 16px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-bv {
+ background-position: 0 -8409px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-bw {
+ background-position: 0 -10859px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-by {
+ background-position: 0 -8316px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-bz {
+ background-position: 0 -5743px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-ca {
+ background-position: 0 -5030px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-calendar {
+ background-position: 0 -1674px;
+ height: 17px;
+ width: 15px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-cancel {
+ background-position: 0 -3227px;
+ height: 14px;
+ width: 14px;
+}
+/* line 43, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-cancel:hover, .icons-cancel.cancel_hover, .icons-cancel.cancel-hover {
+ background-position: 0 -2894px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-catalonia {
+ background-position: 0 -11541px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-cc {
+ background-position: 0 -5154px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-cd {
+ background-position: 0 -7789px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-cf {
+ background-position: 0 -5371px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-cg {
+ background-position: 0 -8099px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-ch {
+ background-position: 0 -11665px;
+ height: 11px;
+ width: 11px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-check-green {
+ background-position: 0 -3520px;
+ height: 12px;
+ width: 12px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-ci {
+ background-position: 0 -10579px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-ck {
+ background-position: 0 -6208px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-cl {
+ background-position: 0 -10703px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-clone-small {
+ background-position: 0 -3585px;
+ height: 17px;
+ width: 16px;
+}
+/* line 43, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-clone-small:hover, .icons-clone-small.clone-small_hover, .icons-clone-small.clone-small-hover {
+ background-position: 0 -3622px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-cm {
+ background-position: 0 -8006px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-cn {
+ background-position: 0 -10207px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-co {
+ background-position: 0 -9711px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-cog-small-white {
+ background-position: 0 -2561px;
+ height: 13px;
+ width: 11px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-cog-small {
+ background-position: 0 -1992px;
+ height: 12px;
+ width: 11px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-cog {
+ background-position: 0 -802px;
+ height: 17px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-collapse {
+ background-position: 0 -11729px;
+ height: 13px;
+ width: 13px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-comment {
+ background-position: 0 -3324px;
+ height: 17px;
+ width: 18px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-comments-small {
+ background-position: 0 -2725px;
+ height: 13px;
+ width: 12px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-cr {
+ background-position: 0 -9959px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-cs {
+ background-position: 0 -10921px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-cu {
+ background-position: 0 -6766px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-cv {
+ background-position: 0 -7727px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-cx {
+ background-position: 0 -5526px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-cy {
+ background-position: 0 -11169px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-cz {
+ background-position: 0 -9990px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-de {
+ background-position: 0 -7169px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-dj {
+ background-position: 0 -6487px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-dk {
+ background-position: 0 -9184px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-dm {
+ background-position: 0 -5247px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-do {
+ background-position: 0 -8626px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-dot-gray {
+ background-position: 0 -2355px;
+ height: 11px;
+ width: 10px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-dot-green {
+ background-position: 0 -2159px;
+ height: 11px;
+ width: 10px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-dot-orange {
+ background-position: 0 -2292px;
+ height: 11px;
+ width: 10px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-dot-red {
+ background-position: 0 -2055px;
+ height: 11px;
+ width: 10px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-dot-yellow {
+ background-position: 0 -2190px;
+ height: 11px;
+ width: 10px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-download-white {
+ background-position: 0 -2692px;
+ height: 13px;
+ width: 13px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-download {
+ background-position: 0 -563px;
+ height: 13px;
+ width: 13px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-dz {
+ background-position: 0 -6332px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-ec {
+ background-position: 0 -8936px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-edit-small-grey {
+ background-position: 0 -3001px;
+ height: 17px;
+ width: 14px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-edit-small {
+ background-position: 0 -2928px;
+ height: 17px;
+ width: 14px;
+}
+/* line 43, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-edit-small:hover, .icons-edit-small.edit-small_hover, .icons-edit-small.edit-small-hover {
+ background-position: 0 -2857px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-edit-tiny-white {
+ background-position: 0 -3162px;
+ height: 12px;
+ width: 9px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-edit-tiny {
+ background-position: 0 -208px;
+ height: 11px;
+ width: 9px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-ee {
+ background-position: 0 -11107px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-eg {
+ background-position: 0 -10393px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-eh {
+ background-position: 0 -8657px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-england {
+ background-position: 0 -9091px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-er {
+ background-position: 0 -4348px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-es {
+ background-position: 0 -10300px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-et {
+ background-position: 0 -6022px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-europeanunion {
+ background-position: 0 -9897px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-expand {
+ background-position: 0 -11696px;
+ height: 13px;
+ width: 13px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-fam {
+ background-position: 0 -7572px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-fi {
+ background-position: 0 -9463px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-file-excel {
+ background-position: 0 -904px;
+ height: 12px;
+ width: 12px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-file-pdf {
+ background-position: 0 -1079px;
+ height: 12px;
+ width: 10px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-file-word {
+ background-position: 0 -872px;
+ height: 12px;
+ width: 12px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-file {
+ background-position: 0 -1569px;
+ height: 16px;
+ width: 12px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-files-small {
+ background-position: 0 -1605px;
+ height: 13px;
+ width: 12px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-fj {
+ background-position: 0 -5464px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-fk {
+ background-position: 0 -4441px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-fm {
+ background-position: 0 -7045px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-fo {
+ background-position: 0 -10052px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-folder-tiny-blue {
+ background-position: 0 -1960px;
+ height: 12px;
+ width: 11px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-folder-tiny {
+ background-position: 0 -2323px;
+ height: 12px;
+ width: 11px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-folder {
+ background-position: 0 -2821px;
+ height: 16px;
+ width: 15px;
+}
+/* line 43, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-folder:active, .icons-folder.folder_active, .icons-folder.folder-active {
+ background-position: 0 -2965px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-form-small {
+ background-position: 0 -3361px;
+ height: 11px;
+ width: 12px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-fr {
+ background-position: 0 -7200px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-ga {
+ background-position: 0 -9494px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-gb {
+ background-position: 0 -5774px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-gd {
+ background-position: 0 -4875px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-ge {
+ background-position: 0 -5836px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-gf {
+ background-position: 0 -7231px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-gh {
+ background-position: 0 -9432px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-gi {
+ background-position: 0 -10486px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-gl {
+ background-position: 0 -10269px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-gm {
+ background-position: 0 -9277px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-gn {
+ background-position: 0 -9866px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-gp {
+ background-position: 0 -9556px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-gq {
+ background-position: 0 -7386px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-gr {
+ background-position: 0 -9587px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-gs {
+ background-position: 0 -4968px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-gt {
+ background-position: 0 -9308px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-gu {
+ background-position: 0 -8595px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-gw {
+ background-position: 0 -8223px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-gy {
+ background-position: 0 -4534px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-hk {
+ background-position: 0 -7851px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-hm {
+ background-position: 0 -4131px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-hn {
+ background-position: 0 -7417px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-hr {
+ background-position: 0 -8068px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-ht {
+ background-position: 0 -9618px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-hu {
+ background-position: 0 -10983px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-id {
+ background-position: 0 -11076px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-ie {
+ background-position: 0 -9804px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-il {
+ background-position: 0 -11045px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-in {
+ background-position: 0 -8812px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-io {
+ background-position: 0 -4224px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-iq {
+ background-position: 0 -8254px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-ir {
+ background-position: 0 -8440px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-is {
+ background-position: 0 -7603px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-it {
+ background-position: 0 -11293px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-jm {
+ background-position: 0 -4906px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-jo {
+ background-position: 0 -10145px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-jp {
+ background-position: 0 -11324px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-ke {
+ background-position: 0 -6642px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-kg {
+ background-position: 0 -8533px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-kh {
+ background-position: 0 -7138px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-ki {
+ background-position: 0 -4286px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-km {
+ background-position: 0 -6363px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-kn {
+ background-position: 0 -5619px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-kp {
+ background-position: 0 -6890px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-kr {
+ background-position: 0 -6053px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-kw {
+ background-position: 0 -9680px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-ky {
+ background-position: 0 -4658px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-kz {
+ background-position: 0 -5309px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-la {
+ background-position: 0 -6797px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-lb {
+ background-position: 0 -8192px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-lc {
+ background-position: 0 -8130px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-li {
+ background-position: 0 -7448px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-lk {
+ background-position: 0 -5123px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-location-small {
+ background-position: 0 -2221px;
+ height: 14px;
+ width: 9px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-lockpad {
+ background-position: 0 -2594px;
+ height: 13px;
+ width: 11px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-logo-colored {
+ background-position: 0 -36px;
+ height: 22px;
+ width: 21px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-logo-white {
+ background-position: 0 -668px;
+ height: 22px;
+ width: 21px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-logout-arrow-blue {
+ background-position: 0 -1711px;
+ height: 13px;
+ width: 11px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-logout-arrow-white {
+ background-position: 0 -3552px;
+ height: 13px;
+ width: 11px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-logout-arrow {
+ background-position: 0 -3038px;
+ height: 13px;
+ width: 11px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-lr {
+ background-position: 0 -10362px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-ls {
+ background-position: 0 -5061px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-lt {
+ background-position: 0 -8688px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-lu {
+ background-position: 0 -9835px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-lv {
+ background-position: 0 -10424px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-ly {
+ background-position: 0 -11417px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-ma {
+ background-position: 0 -11014px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-mail {
+ background-position: 0 -3071px;
+ height: 10px;
+ width: 14px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-mc {
+ background-position: 0 -11603px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-md {
+ background-position: 0 -6735px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-me {
+ background-position: 0 -10796px;
+ height: 12px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-mg {
+ background-position: 0 -10610px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-mh {
+ background-position: 0 -5092px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-mk {
+ background-position: 0 -4162px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-ml {
+ background-position: 0 -10083px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-mm {
+ background-position: 0 -9742px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-mn {
+ background-position: 0 -9339px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-mo {
+ background-position: 0 -6177px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-move-small {
+ background-position: 0 -3858px;
+ height: 9px;
+ width: 16px;
+}
+/* line 43, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-move-small:hover, .icons-move-small.move-small_hover, .icons-move-small.move-small-hover {
+ background-position: 0 -3887px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-mp {
+ background-position: 0 -5805px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-mq {
+ background-position: 0 -4317px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-mr {
+ background-position: 0 -6673px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-ms {
+ background-position: 0 -5402px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-mt {
+ background-position: 0 -11355px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-mu {
+ background-position: 0 -9122px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-mv {
+ background-position: 0 -7293px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-mw {
+ background-position: 0 -7758px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-mx {
+ background-position: 0 -6425px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-my {
+ background-position: 0 -6549px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-mz {
+ background-position: 0 -6270px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-na {
+ background-position: 0 -4503px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-nc {
+ background-position: 0 -6115px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-ne {
+ background-position: 0 -7479px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-next-arrow {
+ background-position: 0 -3194px;
+ height: 13px;
+ width: 9px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-nf {
+ background-position: 0 -5681px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-ng {
+ background-position: 0 -9773px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-ni {
+ background-position: 0 -8719px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-nl {
+ background-position: 0 -10641px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-no {
+ background-position: 0 -8471px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-note {
+ background-position: 0 -1319px;
+ height: 16px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-np {
+ background-position: 0 -10890px;
+ height: 11px;
+ width: 9px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-nr {
+ background-position: 0 -7882px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-nu {
+ background-position: 0 -6518px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-nz {
+ background-position: 0 -4813px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-om {
+ background-position: 0 -9928px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-pa {
+ background-position: 0 -8161px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-pe {
+ background-position: 0 -11572px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-pf {
+ background-position: 0 -8998px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-pg {
+ background-position: 0 -5929px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-ph {
+ background-position: 0 -7355px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-photo {
+ background-position: 0 -1744px;
+ height: 17px;
+ width: 17px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-pk {
+ background-position: 0 -6704px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-pl {
+ background-position: 0 -11634px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-pm {
+ background-position: 0 -4038px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-pn {
+ background-position: 0 -4255px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-point-barcode-white {
+ background-position: 0 -3976px;
+ height: 10px;
+ width: 17px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-point-barcode {
+ background-position: 0 -3946px;
+ height: 10px;
+ width: 17px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-point-date-gray {
+ background-position: 0 -596px;
+ height: 16px;
+ width: 22px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-point-date-white {
+ background-position: 0 -2420px;
+ height: 16px;
+ width: 22px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-point-date {
+ background-position: 0 -632px;
+ height: 16px;
+ width: 22px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-point-multi-gray {
+ background-position: 0 -2456px;
+ height: 16px;
+ width: 22px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-point-multi-white {
+ background-position: 0 -3456px;
+ height: 16px;
+ width: 22px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-point-multi {
+ background-position: 0 -2492px;
+ height: 16px;
+ width: 22px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-point-number-gray {
+ background-position: 0 -142px;
+ height: 10px;
+ width: 23px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-point-number-white {
+ background-position: 0 -1355px;
+ height: 10px;
+ width: 23px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-point-number {
+ background-position: 0 -112px;
+ height: 10px;
+ width: 23px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-point-paragraph-gray {
+ background-position: 0 -3261px;
+ height: 10px;
+ width: 17px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-point-paragraph-white {
+ background-position: 0 -3772px;
+ height: 10px;
+ width: 17px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-point-paragraph {
+ background-position: 0 -3132px;
+ height: 10px;
+ width: 17px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-point-signature-gray {
+ background-position: 0 -275px;
+ height: 16px;
+ width: 20px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-point-signature-white {
+ background-position: 0 -1385px;
+ height: 16px;
+ width: 20px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-point-signature {
+ background-position: 0 -239px;
+ height: 16px;
+ width: 20px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-point-single-gray {
+ background-position: 0 -455px;
+ height: 16px;
+ width: 22px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-point-single-white {
+ background-position: 0 -2123px;
+ height: 16px;
+ width: 22px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-point-single {
+ background-position: 0 -383px;
+ height: 16px;
+ width: 22px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-point-sketch-gray {
+ background-position: 0 -347px;
+ height: 16px;
+ width: 15px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-point-sketch-white {
+ background-position: 0 -1638px;
+ height: 16px;
+ width: 15px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-point-sketch {
+ background-position: 0 -311px;
+ height: 16px;
+ width: 15px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-point-text-gray {
+ background-position: 0 -710px;
+ height: 10px;
+ width: 20px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-point-text-white {
+ background-position: 0 -2791px;
+ height: 10px;
+ width: 20px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-point-text {
+ background-position: 0 -772px;
+ height: 10px;
+ width: 20px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-pr {
+ background-position: 0 -6921px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-prev-arrow {
+ background-position: 0 -3291px;
+ height: 13px;
+ width: 9px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-preview-gray {
+ background-position: 0 -2024px;
+ height: 11px;
+ width: 10px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-preview {
+ background-position: 0 -1538px;
+ height: 11px;
+ width: 10px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-procedures-small {
+ background-position: 0 -2758px;
+ height: 13px;
+ width: 12px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-ps {
+ background-position: 0 -10238px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-pt {
+ background-position: 0 -6952px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-publish-grey {
+ background-position: 0 -740px;
+ height: 12px;
+ width: 12px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-publish-white {
+ background-position: 0 -1111px;
+ height: 12px;
+ width: 11px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-pw {
+ background-position: 0 -7107px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-py {
+ background-position: 0 -10176px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-qa {
+ background-position: 0 -10734px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-quotation-left {
+ background-position: 0 -3659px;
+ height: 7px;
+ width: 8px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-quotation-right {
+ background-position: 0 -3717px;
+ height: 7px;
+ width: 8px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-re {
+ background-position: 0 -7262px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-regulations-small {
+ background-position: 0 -1007px;
+ height: 13px;
+ width: 13px;
+}
+/* line 43, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-regulations-small:hover, .icons-regulations-small.regulations-small_hover, .icons-regulations-small.regulations-small-hover {
+ background-position: 0 -2528px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-remove-small-grey {
+ background-position: 0 -2255px;
+ height: 17px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-remove-small {
+ background-position: 0 -1923px;
+ height: 17px;
+ width: 16px;
+}
+/* line 43, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-remove-small:hover, .icons-remove-small.remove-small_hover, .icons-remove-small.remove-small-hover {
+ background-position: 0 -2086px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-resolve-large {
+ background-position: 0 -526px;
+ height: 17px;
+ width: 17px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-resolve-note {
+ background-position: 0 -3392px;
+ height: 13px;
+ width: 13px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-resolve {
+ background-position: 0 -936px;
+ height: 15px;
+ width: 15px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-ro {
+ background-position: 0 -9215px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-rs {
+ background-position: 0 -11231px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-ru {
+ background-position: 0 -11386px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-rw {
+ background-position: 0 -7541px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-sa {
+ background-position: 0 -7076px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-sb {
+ background-position: 0 -5185px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-sc {
+ background-position: 0 -5557px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-scotland {
+ background-position: 0 -4410px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-sd {
+ background-position: 0 -9370px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-se {
+ background-position: 0 -7324px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-search-tiny-gray {
+ background-position: 0 -1854px;
+ height: 12px;
+ width: 11px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-search-tiny-white {
+ background-position: 0 -2627px;
+ height: 12px;
+ width: 11px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-search {
+ background-position: 0 -1245px;
+ height: 15px;
+ width: 14px;
+}
+/* line 43, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-search:hover, .icons-search.search_hover, .icons-search.search-hover {
+ background-position: 0 -1210px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-sg {
+ background-position: 0 -10331px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-sh {
+ background-position: 0 -4565px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-share {
+ background-position: 0 -1143px;
+ height: 11px;
+ width: 14px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-si {
+ background-position: 0 -8564px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-sj {
+ background-position: 0 -8502px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-sk {
+ background-position: 0 -6828px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-sl {
+ background-position: 0 -10952px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-sm {
+ background-position: 0 -8843px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-sn {
+ background-position: 0 -7634px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-so {
+ background-position: 0 -7913px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-sr {
+ background-position: 0 -8378px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-st {
+ background-position: 0 -6301px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-sv {
+ background-position: 0 -8874px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-sy {
+ background-position: 0 -11262px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-sz {
+ background-position: 0 -4689px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-tc {
+ background-position: 0 -5216px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-td {
+ background-position: 0 -6611px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-team-tiny {
+ background-position: 0 -1507px;
+ height: 11px;
+ width: 12px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-team {
+ background-position: 0 -1040px;
+ height: 19px;
+ width: 20px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-tf {
+ background-position: 0 -7944px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-tg {
+ background-position: 0 -6859px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-th {
+ background-position: 0 -10672px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-tj {
+ background-position: 0 -9153px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-tk {
+ background-position: 0 -4844px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-tl {
+ background-position: 0 -8347px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-tm {
+ background-position: 0 -5960px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-tn {
+ background-position: 0 -9246px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-to {
+ background-position: 0 -11200px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-tr {
+ background-position: 0 -9401px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-tt {
+ background-position: 0 -5278px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-tv {
+ background-position: 0 -7510px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-tw {
+ background-position: 0 -10455px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-tz {
+ background-position: 0 -4720px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-ua {
+ background-position: 0 -10828px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-ug {
+ background-position: 0 -7696px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-um {
+ background-position: 0 -6580px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-us {
+ background-position: 0 -5495px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-user-large {
+ background-position: 0 -1421px;
+ height: 27px;
+ width: 29px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-user {
+ background-position: 0 -3425px;
+ height: 11px;
+ width: 11px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-uy {
+ background-position: 0 -7665px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-uz {
+ background-position: 0 -8285px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-va {
+ background-position: 0 -7014px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-vc {
+ background-position: 0 -6394px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-ve {
+ background-position: 0 -7820px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-vg {
+ background-position: 0 -4999px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-vi {
+ background-position: 0 -5340px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-vn {
+ background-position: 0 -10114px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-vu {
+ background-position: 0 -5650px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-wales {
+ background-position: 0 -4379px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-wf {
+ background-position: 0 -6983px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-ws {
+ background-position: 0 -10021px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-ye {
+ background-position: 0 -11448px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-yt {
+ background-position: 0 -5991px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-za {
+ background-position: 0 -4751px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-zm {
+ background-position: 0 -8967px;
+ height: 11px;
+ width: 16px;
+}
+
+/* line 60, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+.icons-zw {
+ background-position: 0 -6456px;
+ height: 11px;
+ width: 16px;
+}
+
+/*
+ Mixins are slightly modified from Benjamin Doherty's first implementations: http://gist.github.com/377912
+ rgba-background mixin can now be passed an option $dir variable
+*/
+/* line 3, ../../app/assets/stylesheets/web.css.scss */
+[class^="icons-"],
+[class*="icons-"] {
+ display: inline-block;
+ vertical-align: text-top;
+ background-repeat: no-repeat;
+ *margin-right: .3em;
+}
+/* line 66, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass_twitter_bootstrap-2.0.3/stylesheets/compass_twitter_bootstrap/_mixins.scss */
+[class^="icons-"]:last-child,
+[class*="icons-"]:last-child {
+ *margin-left: 0;
+}
+
+/* line 4, ../../app/assets/stylesheets/web.css.scss */
+[class^="icon-"], [class*=" icon-"] {
+ background-image: none !important;
+}
+
+/* line 7, ../../app/assets/stylesheets/web.css.scss */
+.table [class*="icons-"], .icons-alert-question,
+.btn-no-bg [class*="icons-"], .icons-move-small {
+ vertical-align: middle;
+}
+
+/* line 8, ../../app/assets/stylesheets/web.css.scss */
+.icons-add-tiny {
+ vertical-align: bottom;
+}
+
+/* line 9, ../../app/assets/stylesheets/web.css.scss */
+.icons-move-small {
+ cursor: move;
+}
+
+/* line 10, ../../app/assets/stylesheets/web.css.scss */
+.btn input[type="checkbox"] {
+ margin: 0;
+ position: relative;
+ top: -2px;
+}
+
+/* line 11, ../../app/assets/stylesheets/web.css.scss */
+.icons-arrow-down, .icons-arrow-right {
+ vertical-align: baseline;
+}
+
+/* line 12, ../../app/assets/stylesheets/web.css.scss */
+.icons-arrow-right {
+ position: relative;
+ top: -2px;
+}
+
+/* line 13, ../../app/assets/stylesheets/web.css.scss */
+.btn-mini.dropdown-toggle > .caret {
+ vertical-align: middle !important;
+}
+
+/* line 14, ../../app/assets/stylesheets/web.css.scss */
+.btn-no-bg.btn-no-padding > .caret {
+ vertical-align: middle !important;
+}
+
+/* line 15, ../../app/assets/stylesheets/web.css.scss */
+[class*="icons-file"] {
+ vertical-align: baseline;
+}
+
+/* line 17, ../../app/assets/stylesheets/web.css.scss */
+html {
+ background-color: #e8e9ea;
+}
+
+/* line 18, ../../app/assets/stylesheets/web.css.scss */
+body {
+ background-color: white;
+ color: #4b5566;
+}
+
+/* line 19, ../../app/assets/stylesheets/web.css.scss */
+#content {
+ min-height: 250px;
+ float: left;
+ width: 100%;
+ position: relative;
+}
+
+/* line 20, ../../app/assets/stylesheets/web.css.scss */
+a {
+ color: #3d70a5;
+}
+/* line 18, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/typography/links/_link-colors.scss */
+a:visited {
+ color: #3d70a5;
+}
+/* line 21, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/typography/links/_link-colors.scss */
+a:focus {
+ color: #3d70a5;
+}
+/* line 24, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/typography/links/_link-colors.scss */
+a:hover {
+ color: #3d70a5;
+}
+/* line 27, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/typography/links/_link-colors.scss */
+a:active {
+ color: #3d70a5;
+}
+
+/* line 21, ../../app/assets/stylesheets/web.css.scss */
+h1 {
+ color: #4d80b4;
+ font-size: 18px;
+ letter-spacing: 1px;
+ font-weight: 500;
+}
+
+/* line 22, ../../app/assets/stylesheets/web.css.scss */
+h3 {
+ color: #3e4852;
+ font-size: 20px;
+ font-weight: 500;
+ letter-spacing: 0.5px;
+ overflow: hidden;
+}
+
+/* line 23, ../../app/assets/stylesheets/web.css.scss */
+h4 {
+ font-size: 14px;
+ line-height: 30px;
+ color: #3e4852;
+ font-weight: 600;
+}
+
+/* line 24, ../../app/assets/stylesheets/web.css.scss */
+h5 {
+ font-size: 18px;
+ color: #3e4852;
+ text-shadow: 0px 2px 0px white;
+ line-height: 30px;
+}
+/* line 25, ../../app/assets/stylesheets/web.css.scss */
+h5 + a {
+ text-shadow: 0px 1px 0px white;
+ line-height: 30px;
+}
+
+/* line 27, ../../app/assets/stylesheets/web.css.scss */
+h6 {
+ font-size: 13px;
+ text-transform: none;
+}
+
+/* line 28, ../../app/assets/stylesheets/web.css.scss */
+p {
+ overflow: visible;
+ text-overflow: clip;
+ white-space: normal;
+ word-wrap: break-word;
+}
+
+/* line 29, ../../app/assets/stylesheets/web.css.scss */
+.hide {
+ display: none;
+}
+
+/* line 30, ../../app/assets/stylesheets/web.css.scss */
+.show {
+ display: block;
+}
+
+/* line 31, ../../app/assets/stylesheets/web.css.scss */
+small {
+ font-size: 12px;
+}
+
+/* line 33, ../../app/assets/stylesheets/web.css.scss */
+input, textarea,
+.search-query {
+ -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0 2px 3px inset;
+ -moz-box-shadow: rgba(0, 0, 0, 0.1) 0 2px 3px inset;
+ box-shadow: rgba(0, 0, 0, 0.1) 0 2px 3px inset;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+ border: 1px solid #bebebe;
+ vertical-align: middle;
+}
+
+/* line 34, ../../app/assets/stylesheets/web.css.scss */
+input:focus, textarea:focus {
+ outline: 0 !important;
+}
+
+/* line 36, ../../app/assets/stylesheets/web.css.scss */
+input, textarea, select,
+.uneditable-input {
+ margin-bottom: 0;
+}
+
+/* line 38, ../../app/assets/stylesheets/web.css.scss */
+input[type="radio"] {
+ -webkit-box-shadow: rgba(0, 0, 0, 0) 0 0 0 inset;
+ -moz-box-shadow: rgba(0, 0, 0, 0) 0 0 0 inset;
+ box-shadow: rgba(0, 0, 0, 0) 0 0 0 inset;
+ -webkit-box-shadow: rgba(0, 0, 0, 0) 0 0 0;
+ -moz-box-shadow: rgba(0, 0, 0, 0) 0 0 0;
+ box-shadow: rgba(0, 0, 0, 0) 0 0 0;
+}
+/* line 39, ../../app/assets/stylesheets/web.css.scss */
+input[type="text"] {
+ cursor: text !important;
+}
+/* line 40, ../../app/assets/stylesheets/web.css.scss */
+input[type="submit"] {
+ margin-bottom: 0;
+}
+
+/* line 43, ../../app/assets/stylesheets/web.css.scss */
+.input-append .add-on,
+.input-append .btn {
+ margin-left: -5px;
+ -webkit-border-radius: 3px;
+ -moz-border-radius: 3px;
+ -ms-border-radius: 3px;
+ -o-border-radius: 3px;
+ border-radius: 3px;
+ margin-right: 0;
+}
+
+/* line 45, ../../app/assets/stylesheets/web.css.scss */
+.input-prepend
+.add-on, .input-prepend .btn {
+ margin-right: -5px !important;
+ margin-left: 0;
+}
+
+/* line 46, ../../app/assets/stylesheets/web.css.scss */
+.add-on > .icons-calendar {
+ position: relative;
+ top: -2px;
+}
+
+/* line 49, ../../app/assets/stylesheets/web.css.scss */
+input:focus, textarea:focus,
+input:active, textarea:active,
+.k-state-focus > input {
+ border-color: #81a3c5;
+ box-shadow: 0 1px 1px rgba(0, 0, 0, 0.024) inset, 0 0 8px rgba(82, 168, 236, 0.25);
+ -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.024) inset, 0 0 8px rgba(82, 168, 236, 0.25);
+ -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.024) inset, 0 0 8px rgba(82, 168, 236, 0.25);
+ outline: 0 !important;
+ outline: thin dotted \9;
+}
+
+/* line 53, ../../app/assets/stylesheets/web.css.scss */
+input[type="file"]:focus,
+input[type="radio"]:focus,
+input[type="checkbox"]:focus,
+select:focus {
+ -webkit-box-shadow: rgba(0, 0, 0, 0) 0 0 0 inset;
+ -moz-box-shadow: rgba(0, 0, 0, 0) 0 0 0 inset;
+ box-shadow: rgba(0, 0, 0, 0) 0 0 0 inset;
+ -webkit-box-shadow: rgba(0, 0, 0, 0) 0 0 0;
+ -moz-box-shadow: rgba(0, 0, 0, 0) 0 0 0;
+ box-shadow: rgba(0, 0, 0, 0) 0 0 0;
+ outline: thin dotted #333333;
+ outline: 5px auto -webkit-focus-ring-color;
+ outline-offset: -2px;
+}
+
+/* line 54, ../../app/assets/stylesheets/web.css.scss */
+input.disabled {
+ color: #888;
+}
+
+/* line 55, ../../app/assets/stylesheets/web.css.scss */
+textarea, .textarea-autosize {
+ resize: vertical;
+ max-height: 300px;
+ -webkit-transition: height 0.2s ease;
+ -webkit-transition-delay: 0s;
+ -moz-transition: height 0.2s ease 0s;
+ -o-transition: height 0.2s ease 0s;
+ transition: height 0.2s ease 0s;
+}
+
+/* line 56, ../../app/assets/stylesheets/web.css.scss */
+textarea[disabled] {
+ resize: none !important;
+}
+
+/* line 57, ../../app/assets/stylesheets/web.css.scss */
+.full-screen-layout {
+ margin: 0 auto;
+ min-width: 970px;
+ max-width: 1370px;
+ padding: 0 15px;
+ overflow: visible;
+}
+
+/* line 58, ../../app/assets/stylesheets/web.css.scss */
+#title-region {
+ position: relative;
+ min-height: 30px;
+ width: 100%;
+}
+
+/* line 59, ../../app/assets/stylesheets/web.css.scss */
+#aside-region {
+ width: 230px;
+ float: left;
+}
+/* line 60, ../../app/assets/stylesheets/web.css.scss */
+#aside-region .left-nav {
+ position: absolute;
+ top: 0;
+ bottom: 0;
+}
+/* line 62, ../../app/assets/stylesheets/web.css.scss */
+#aside-region.non-column .left-nav {
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+ position: absolute;
+ top: auto;
+ bottom: auto;
+ left: auto;
+ right: auto;
+}
+/* line 63, ../../app/assets/stylesheets/web.css.scss */
+#aside-region.non-column .left-nav > ul {
+ border: 1px solid #d7dadf;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+}
+
+/* line 68, ../../app/assets/stylesheets/web.css.scss */
+.itemevent-class-name {
+ font-weight: bold;
+ font-size: 12px;
+ line-height: 12px;
+ color: #999;
+ padding-bottom: 0;
+}
+/* line 69, ../../app/assets/stylesheets/web.css.scss */
+.itemevent-class-name + div {
+ padding-top: 0 !important;
+ line-height: 15px;
+}
+
+/* line 71, ../../app/assets/stylesheets/web.css.scss */
+#article-region-wrapper {
+ background-color: #F1F3F5;
+}
+
+/* line 72, ../../app/assets/stylesheets/web.css.scss */
+#article-region {
+ background-color: white;
+ margin-left: 230px;
+ position: relative;
+ border-left: 1px solid #c8d5de;
+ min-height: 250px;
+}
+/* line 73, ../../app/assets/stylesheets/web.css.scss */
+#article-region > div > div {
+ overflow: auto;
+}
+
+/* line 75, ../../app/assets/stylesheets/web.css.scss */
+#center-wrapper {
+ background-color: #f9fafb;
+ border-bottom: 1px solid white;
+ text-shadow: 0px 1px 0px white;
+ overflow: auto;
+}
+/* line 76, ../../app/assets/stylesheets/web.css.scss */
+#center-wrapper.as-island {
+ margin-bottom: 20px;
+}
+
+/* line 78, ../../app/assets/stylesheets/web.css.scss */
+#center-panel {
+ border-bottom: 1px solid #dddddd;
+ overflow: hidden;
+}
+/* line 79, ../../app/assets/stylesheets/web.css.scss */
+#center-panel > .full-screen-layout > div {
+ padding: 8px 0;
+ overflow: hidden;
+}
+/* line 80, ../../app/assets/stylesheets/web.css.scss */
+#center-panel > .full-screen-layout > div > div {
+ overflow: hidden;
+}
+/* line 81, ../../app/assets/stylesheets/web.css.scss */
+#center-panel > .full-screen-layout > div > div > .pull-left {
+ width: 65%;
+ overflow: visible;
+ text-overflow: clip;
+ white-space: normal;
+ word-wrap: break-word;
+}
+/* line 82, ../../app/assets/stylesheets/web.css.scss */
+#center-panel > .full-screen-layout > div > div h3 > span {
+ color: #788893;
+ font-weight: bold;
+ font-size: 20px;
+ margin-left: 8px;
+}
+/* line 83, ../../app/assets/stylesheets/web.css.scss */
+#center-panel > .full-screen-layout > div > div > .pull-right {
+ width: 35%;
+ overflow: visible;
+ text-overflow: clip;
+ white-space: normal;
+ word-wrap: break-word;
+ text-align: right;
+}
+/* line 84, ../../app/assets/stylesheets/web.css.scss */
+#center-panel > .full-screen-layout > div > div > .pull-right > span {
+ color: #555e64;
+ font-size: 16px;
+ line-height: 16px;
+ display: inline-block;
+ margin-top: 3px;
+ height: 16px;
+ overflow: visible;
+ text-overflow: clip;
+ white-space: normal;
+ word-wrap: break-word;
+}
+
+/* line 89, ../../app/assets/stylesheets/web.css.scss */
+#two-column-background {
+ background-color: transparent;
+ background-image: -moz-linear-gradient(left, #f1f3f5 50%, transparent 50%, transparent 100%);
+ background-image: -webkit-gradient(linear, 0 0, 100% 0, color-stop(50%, #f1f3f5), color-stop(50%, transparent), color-stop(100%, transparent));
+ background-image: -webkit-linear-gradient(left, #f1f3f5 50%, transparent 50%, transparent 100%);
+ background-image: -o-linear-gradient(left, #f1f3f5 50%, transparent 50%, transparent 100%);
+ background-image: linear-gradient(to right, #f1f3f5 50%, transparent 50%, transparent 100%);
+ background-repeat: repeat-x;
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#F1F3F5', endColorstr='#ffffff', GradientType=1);
+ position: relative;
+}
+
+/* line 90, ../../app/assets/stylesheets/web.css.scss */
+#liquid-inner-title {
+ position: absolute;
+ left: 0;
+ right: 0;
+}
+
+/* line 91, ../../app/assets/stylesheets/web.css.scss */
+#liquid-inner-title, #inner-title {
+ background-color: #f9fafb;
+ border-bottom: 1px solid #f2f2f2;
+ height: 48px;
+}
+
+/* line 92, ../../app/assets/stylesheets/web.css.scss */
+#inner-title {
+ padding: 0 0 0 20px;
+ overflow: auto;
+ line-height: 48px;
+}
+/* line 93, ../../app/assets/stylesheets/web.css.scss */
+#inner-title h3 {
+ padding: 0;
+ display: block !important;
+ font-size: 20px;
+ line-height: 48px;
+}
+
+/* line 95, ../../app/assets/stylesheets/web.css.scss */
+#two-column-content-wrapper {
+ overflow: auto;
+ padding: 15px 0 15px 20px;
+ padding-bottom: 50px;
+}
+
+/* line 96, ../../app/assets/stylesheets/web.css.scss */
+.sub-title {
+ overflow: auto;
+ border-bottom: 1px solid #c2c8cc;
+ font-size: 15px;
+ line-height: 22px;
+ margin-top: 5px;
+ color: #46535c;
+ font-weight: bold;
+}
+/* line 97, ../../app/assets/stylesheets/web.css.scss */
+.sub-title.sub-title-no-underline {
+ border-bottom: none;
+}
+/* line 98, ../../app/assets/stylesheets/web.css.scss */
+.sub-title > h5 {
+ font-size: 15px;
+ line-height: 22px;
+ color: #46535c;
+ font-weight: bold;
+}
+/* line 99, ../../app/assets/stylesheets/web.css.scss */
+.sub-title > .btn {
+ line-height: 15px;
+ margin-bottom: 2px;
+}
+/* line 100, ../../app/assets/stylesheets/web.css.scss */
+.sub-title > .btn-no-bg {
+ line-height: 22px;
+ margin-bottom: 0;
+}
+/* line 101, ../../app/assets/stylesheets/web.css.scss */
+.sub-title + .dl-horizontal {
+ margin-top: 10px;
+}
+/* line 102, ../../app/assets/stylesheets/web.css.scss */
+.sub-title .pull-right > a {
+ font-size: 12px;
+ font-weight: normal;
+}
+/* line 103, ../../app/assets/stylesheets/web.css.scss */
+.sub-title + .help-block {
+ margin-top: 5px !important;
+ margin-bottom: 5px !important;
+}
+
+/* line 105, ../../app/assets/stylesheets/web.css.scss */
+#article-title {
+ overflow: auto;
+}
+
+/* line 107, ../../app/assets/stylesheets/web.css.scss */
+.pull-right {
+ float: right !important;
+}
+
+/* line 108, ../../app/assets/stylesheets/web.css.scss */
+.pull-left {
+ float: left !important;
+}
+
+/* line 109, ../../app/assets/stylesheets/web.css.scss */
+.square-small {
+ display: inline-block;
+ width: 15px;
+ height: 15px;
+ position: relative;
+ top: 2px;
+ margin-right: 3px;
+}
+
+/* line 110, ../../app/assets/stylesheets/web.css.scss */
+.italic {
+ font-style: italic;
+ font-weight: normal;
+ color: #777;
+}
+
+/* line 111, ../../app/assets/stylesheets/web.css.scss */
+.BoldLine {
+ font-weight: 500;
+ font-size: 13px;
+ color: #5a5a5a;
+}
+
+/* line 112, ../../app/assets/stylesheets/web.css.scss */
+.uppercase {
+ text-transform: uppercase;
+}
+
+/* line 113, ../../app/assets/stylesheets/web.css.scss */
+.green {
+ color: #449042;
+ font-weight: bold;
+ margin-left: 1px;
+}
+
+/* line 114, ../../app/assets/stylesheets/web.css.scss */
+.red, .btn.red, .btn.red:hover {
+ color: #d42a2a !important;
+}
+
+/* line 115, ../../app/assets/stylesheets/web.css.scss */
+.blue {
+ color: #4d80b4;
+}
+
+/* line 117, ../../app/assets/stylesheets/web.css.scss */
+.logo-header {
+ margin-bottom: 70px;
+ margin-top: 10px;
+}
+
+/* line 119, ../../app/assets/stylesheets/web.css.scss */
+a.logo {
+ font-weight: 400;
+ font-size: 18px;
+ margin-top: 9px;
+}
+/* line 120, ../../app/assets/stylesheets/web.css.scss */
+a.logo i {
+ margin-right: 3px;
+ position: relative;
+ top: -1px;
+}
+/* line 121, ../../app/assets/stylesheets/web.css.scss */
+a.logo:active, a.logo.active, a.logo:focus {
+ outline: 0 !important;
+}
+/* line 122, ../../app/assets/stylesheets/web.css.scss */
+a.logo span {
+ font-weight: 600;
+}
+/* line 123, ../../app/assets/stylesheets/web.css.scss */
+a.logo:hover {
+ text-decoration: none;
+}
+/* line 125, ../../app/assets/stylesheets/web.css.scss */
+a.logo-white {
+ color: white;
+}
+/* line 126, ../../app/assets/stylesheets/web.css.scss */
+a.logo-white:active, a.logo-white.active, a.logo-white:focus, a.logo-white span {
+ color: white;
+}
+/* line 129, ../../app/assets/stylesheets/web.css.scss */
+a.logo-colored:active, a.logo-colored.active, a.logo-colored:focus {
+ color: #4d80b4;
+}
+/* line 130, ../../app/assets/stylesheets/web.css.scss */
+a.logo-colored span {
+ color: #317404;
+}
+
+/* line 134, ../../app/assets/stylesheets/web.css.scss */
+.search-wrapper {
+ overflow: auto;
+}
+/* line 135, ../../app/assets/stylesheets/web.css.scss */
+.search-wrapper input {
+ float: left;
+ padding-left: 10px;
+ margin-right: 0 !important;
+ -webkit-border-radius: 10px 0 0 10px;
+ -moz-border-radius: 10px 0 0 10px;
+ -ms-border-radius: 10px 0 0 10px;
+ -o-border-radius: 10px 0 0 10px;
+ border-radius: 10px 0 0 10px;
+ border-right: none;
+ -webkit-box-shadow: rgba(0, 0, 0, 0.05) 3px 2px 3px inset;
+ -moz-box-shadow: rgba(0, 0, 0, 0.05) 3px 2px 3px inset;
+ box-shadow: rgba(0, 0, 0, 0.05) 3px 2px 3px inset;
+}
+/* line 136, ../../app/assets/stylesheets/web.css.scss */
+.search-wrapper input:focus {
+ border-color: #81a3c5 !important;
+ -webkit-box-shadow: rgba(0, 0, 0, 0) 0 0 0 inset;
+ -moz-box-shadow: rgba(0, 0, 0, 0) 0 0 0 inset;
+ box-shadow: rgba(0, 0, 0, 0) 0 0 0 inset;
+ -webkit-box-shadow: rgba(0, 0, 0, 0) 0 0 0;
+ -moz-box-shadow: rgba(0, 0, 0, 0) 0 0 0;
+ box-shadow: rgba(0, 0, 0, 0) 0 0 0;
+ outline: 0 !important;
+ outline: thin dotted \9;
+}
+/* line 137, ../../app/assets/stylesheets/web.css.scss */
+.search-wrapper input:focus + button.btn.btn-no-bg {
+ -webkit-box-shadow: rgba(0, 0, 0, 0) 0 0 0 inset;
+ -moz-box-shadow: rgba(0, 0, 0, 0) 0 0 0 inset;
+ box-shadow: rgba(0, 0, 0, 0) 0 0 0 inset;
+ -webkit-box-shadow: rgba(0, 0, 0, 0) 0 0 0;
+ -moz-box-shadow: rgba(0, 0, 0, 0) 0 0 0;
+ box-shadow: rgba(0, 0, 0, 0) 0 0 0;
+ border-color: #81a3c5 !important;
+}
+/* line 138, ../../app/assets/stylesheets/web.css.scss */
+.search-wrapper input:focus + button.btn.btn-no-bg i.icons-search {
+ background-position: 0 -1210px;
+ height: 15px;
+ width: 14px;
+}
+/* line 142, ../../app/assets/stylesheets/web.css.scss */
+.search-wrapper .btn.btn-no-bg {
+ float: left;
+ margin-left: 0;
+ background-color: white !important;
+ -webkit-border-radius: 0 10px 10px 0;
+ -moz-border-radius: 0 10px 10px 0;
+ -ms-border-radius: 0 10px 10px 0;
+ -o-border-radius: 0 10px 10px 0;
+ border-radius: 0 10px 10px 0;
+ border: 1px solid #bebebe !important;
+ border-left: none !important;
+ -webkit-box-shadow: rgba(0, 0, 0, 0.05) -3px 2px 3px inset;
+ -moz-box-shadow: rgba(0, 0, 0, 0.05) -3px 2px 3px inset;
+ box-shadow: rgba(0, 0, 0, 0.05) -3px 2px 3px inset;
+}
+/* line 143, ../../app/assets/stylesheets/web.css.scss */
+.search-wrapper i.icons-search {
+ vertical-align: text-top;
+}
+/* line 144, ../../app/assets/stylesheets/web.css.scss */
+.search-wrapper button:hover i.icons-search {
+ background-position: 0 -1210px;
+ height: 15px;
+ width: 14px;
+}
+
+/* line 148, ../../app/assets/stylesheets/web.css.scss */
+.search-block .controls-wrapper ul.pull-left {
+ width: 89%;
+}
+/* line 149, ../../app/assets/stylesheets/web.css.scss */
+.search-block .controls-wrapper ul.pull-left li {
+ width: 100%;
+}
+/* line 150, ../../app/assets/stylesheets/web.css.scss */
+.search-block .controls-wrapper ul.pull-left .search-wrapper {
+ width: 100%;
+}
+/* line 151, ../../app/assets/stylesheets/web.css.scss */
+.search-block .controls-wrapper ul.pull-left .search-wrapper input {
+ width: 94%;
+}
+/* line 154, ../../app/assets/stylesheets/web.css.scss */
+.search-block .controls-wrapper ul.pull-right {
+ width: 11%;
+}
+/* line 156, ../../app/assets/stylesheets/web.css.scss */
+.search-block h4 {
+ line-height: 16px;
+ padding-left: 5px;
+}
+
+/* line 159, ../../app/assets/stylesheets/web.css.scss */
+.nav-header {
+ font-weight: bold;
+ text-transform: uppercase;
+ color: #4b5566;
+ margin-left: 5px;
+ font-size: 16px;
+ line-height: 30px;
+ text-shadow: 0px 2px 0px white;
+}
+
+/* line 160, ../../app/assets/stylesheets/web.css.scss */
+.left-nav {
+ min-width: 230px;
+ width: 230px;
+ background-color: #f1f3f5;
+ float: right;
+}
+/* line 161, ../../app/assets/stylesheets/web.css.scss */
+.left-nav > ul {
+ padding: 0;
+}
+/* line 164, ../../app/assets/stylesheets/web.css.scss */
+.left-nav > ul > li.active a {
+ background-color: #e5e9eb;
+ border-bottom: none;
+ color: #284862 !important;
+ font-weight: bold;
+}
+/* line 165, ../../app/assets/stylesheets/web.css.scss */
+.left-nav > ul > li.active a:hover {
+ text-decoration: none;
+}
+/* line 168, ../../app/assets/stylesheets/web.css.scss */
+.left-nav > ul > li > a {
+ text-shadow: 0px 1px 0px white;
+ border-bottom: 1px solid #d0d2d3;
+ border-top: 1px solid white;
+ padding: 8px 10px 8px 20px;
+ display: block;
+}
+/* line 169, ../../app/assets/stylesheets/web.css.scss */
+.left-nav > ul > li > a:focus {
+ outline: 0;
+}
+/* line 170, ../../app/assets/stylesheets/web.css.scss */
+.left-nav > ul > li > a:hover {
+ text-decoration: none;
+ background-color: #e5e9eb;
+}
+/* line 171, ../../app/assets/stylesheets/web.css.scss */
+.left-nav > ul > li > a.active {
+ background-color: #e5e9eb;
+ border-bottom: none;
+ color: #284862 !important;
+ font-weight: bold;
+}
+/* line 172, ../../app/assets/stylesheets/web.css.scss */
+.left-nav > ul > li > a.active:hover {
+ text-decoration: none;
+}
+/* line 175, ../../app/assets/stylesheets/web.css.scss */
+.left-nav > ul > li:first-child > a {
+ border-top: none;
+}
+/* line 176, ../../app/assets/stylesheets/web.css.scss */
+.left-nav > ul > li:last-child > a {
+ border-bottom: none;
+}
+
+/* line 181, ../../app/assets/stylesheets/web.css.scss */
+.dropdown-menu {
+ overflow: visible;
+ padding-top: 0;
+ padding-bottom: 0;
+ margin-top: 0;
+}
+/* line 183, ../../app/assets/stylesheets/web.css.scss */
+.dropdown-menu > li.divider {
+ margin: 0;
+}
+/* line 184, ../../app/assets/stylesheets/web.css.scss */
+.dropdown-menu > li i {
+ vertical-align: middle;
+}
+/* line 185, ../../app/assets/stylesheets/web.css.scss */
+.dropdown-menu > li i.icons-logout-arrow {
+ margin-right: 2px;
+}
+/* line 186, ../../app/assets/stylesheets/web.css.scss */
+.dropdown-menu > li > a, .dropdown-menu > li > .btn {
+ color: #4d80b4;
+ font-size: 13px;
+ font-weight: 500;
+ line-height: 16px;
+ min-width: 130px;
+ padding: 3px 10px;
+}
+/* line 188, ../../app/assets/stylesheets/web.css.scss */
+.dropdown-menu > li > a:hover, .dropdown-menu > li.active > a, .dropdown-menu > li.active > a:hover {
+ background-color: #4d80b4;
+ color: white;
+ outline: 0 !important;
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.35);
+}
+/* line 189, ../../app/assets/stylesheets/web.css.scss */
+.dropdown-menu > li:first-child {
+ -webkit-border-radius: 5px 5px 0 0;
+ -moz-border-radius: 5px 5px 0 0;
+ -ms-border-radius: 5px 5px 0 0;
+ -o-border-radius: 5px 5px 0 0;
+ border-radius: 5px 5px 0 0;
+}
+/* line 191, ../../app/assets/stylesheets/web.css.scss */
+.dropdown-menu > li:first-child > a:hover, .dropdown-menu > li:first-child.active > a, .dropdown-menu > li:first-child.active > a:hover {
+ -webkit-border-radius: 5px 5px 0 0;
+ -moz-border-radius: 5px 5px 0 0;
+ -ms-border-radius: 5px 5px 0 0;
+ -o-border-radius: 5px 5px 0 0;
+ border-radius: 5px 5px 0 0;
+}
+/* line 193, ../../app/assets/stylesheets/web.css.scss */
+.dropdown-menu > li:last-child {
+ -webkit-border-radius: 0 0 5px 5px;
+ -moz-border-radius: 0 0 5px 5px;
+ -ms-border-radius: 0 0 5px 5px;
+ -o-border-radius: 0 0 5px 5px;
+ border-radius: 0 0 5px 5px;
+}
+/* line 195, ../../app/assets/stylesheets/web.css.scss */
+.dropdown-menu > li:last-child > a:hover, .dropdown-menu > li:last-child.active > a, .dropdown-menu > li:last-child.active > a:hover {
+ -webkit-border-radius: 0 0 5px 5px;
+ -moz-border-radius: 0 0 5px 5px;
+ -ms-border-radius: 0 0 5px 5px;
+ -o-border-radius: 0 0 5px 5px;
+ border-radius: 0 0 5px 5px;
+}
+/* line 197, ../../app/assets/stylesheets/web.css.scss */
+.dropdown-menu > li.nav-header {
+ background-color: #f4f4f4;
+ margin-top: 0;
+ margin-bottom: 0;
+ margin-left: 0;
+ padding-left: 5px;
+}
+/* line 199, ../../app/assets/stylesheets/web.css.scss */
+.dropdown-menu.dropup-menu {
+ bottom: 100%;
+ top: auto !important;
+}
+
+/* line 202, ../../app/assets/stylesheets/web.css.scss */
+.btn-group .dropdown-menu {
+ top: 100% !important;
+}
+
+/* line 204, ../../app/assets/stylesheets/web.css.scss */
+.navbar .dropup-menu:before {
+ border-bottom: none;
+ border-left: 7px solid transparent;
+ border-right: 7px solid transparent;
+ border-top: 7px solid rgba(0, 0, 0, 0.2);
+ left: 7px;
+ top: 100%;
+}
+
+/* line 205, ../../app/assets/stylesheets/web.css.scss */
+.navbar .dropup-menu:after {
+ border-bottom: none;
+ border-left: 6px solid transparent;
+ border-right: 6px solid transparent;
+ border-top: 6px solid white;
+ left: 10px;
+ top: 100%;
+ left: 6px;
+}
+
+/* line 206, ../../app/assets/stylesheets/web.css.scss */
+.date-range-dropdown {
+ z-index: 101 !important;
+ width: 260px;
+ padding: 0;
+ background-color: #F3F6F7;
+}
+/* line 207, ../../app/assets/stylesheets/web.css.scss */
+.date-range-dropdown form {
+ margin-bottom: 0;
+}
+/* line 208, ../../app/assets/stylesheets/web.css.scss */
+.date-range-dropdown:after {
+ border-bottom: 6px solid #f3f6f7;
+ border-left: 6px solid transparent;
+ border-right: 6px solid transparent;
+ content: "";
+ display: inline-block;
+ right: 10px;
+ position: absolute;
+ top: -6px;
+}
+/* line 209, ../../app/assets/stylesheets/web.css.scss */
+.date-range-dropdown:before {
+ border-bottom: 7px solid rgba(0, 0, 0, 0.2);
+ border-left: 7px solid transparent;
+ border-right: 7px solid transparent;
+ content: "";
+ display: inline-block;
+ right: 9px;
+ position: absolute;
+ top: -8px;
+}
+/* line 210, ../../app/assets/stylesheets/web.css.scss */
+.date-range-dropdown ul {
+ overflow: auto;
+ padding: 5px 10px 0;
+}
+/* line 211, ../../app/assets/stylesheets/web.css.scss */
+.date-range-dropdown ul .control-group.created-between-input {
+ float: left;
+}
+/* line 212, ../../app/assets/stylesheets/web.css.scss */
+.date-range-dropdown ul .control-group.created-between-input .control-label {
+ color: #888888;
+ font-size: 12px !important;
+ font-weight: 400 !important;
+ margin-bottom: 1px !important;
+ text-shadow: 0px 1px 0px white;
+}
+/* line 213, ../../app/assets/stylesheets/web.css.scss */
+.date-range-dropdown ul .control-group.created-between-input .controls {
+ float: left;
+ line-height: 21px;
+ width: 107px;
+}
+/* line 214, ../../app/assets/stylesheets/web.css.scss */
+.date-range-dropdown ul .control-group.created-between-input .controls .k-datepicker {
+ width: 105px !important;
+ font-size: 13px;
+}
+/* line 217, ../../app/assets/stylesheets/web.css.scss */
+.date-range-dropdown ul .control-group.created-between-input.created-between-input-end {
+ margin-top: 19px;
+ float: right;
+}
+/* line 220, ../../app/assets/stylesheets/web.css.scss */
+.date-range-dropdown .form-actions-wrap {
+ border-top: none !important;
+}
+/* line 221, ../../app/assets/stylesheets/web.css.scss */
+.date-range-dropdown .form-actions {
+ padding: 0 10px 5px !important;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+ border-top: none;
+}
+
+/* line 224, ../../app/assets/stylesheets/web.css.scss */
+.breadcrumb {
+ padding: 8px 15px;
+ margin: 0 0 18px;
+ list-style: none;
+ line-height: 15px !important;
+ overflow: visible;
+ text-overflow: clip;
+ white-space: normal;
+ word-wrap: break-word;
+ text-align: right;
+ background: none;
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
+ border: none;
+ -webkit-box-shadow: rgba(0, 0, 0, 0) 0 0 0 inset;
+ -moz-box-shadow: rgba(0, 0, 0, 0) 0 0 0 inset;
+ box-shadow: rgba(0, 0, 0, 0) 0 0 0 inset;
+ -webkit-box-shadow: rgba(0, 0, 0, 0) 0 0 0;
+ -moz-box-shadow: rgba(0, 0, 0, 0) 0 0 0;
+ box-shadow: rgba(0, 0, 0, 0) 0 0 0;
+ margin-bottom: 0;
+ padding-right: 0;
+}
+/* line 225, ../../app/assets/stylesheets/web.css.scss */
+.breadcrumb li {
+ display: inline-block;
+ text-shadow: 0px 1px 0px white;
+ overflow: visible;
+ text-overflow: clip;
+ white-space: normal;
+ word-wrap: break-word;
+ line-height: 15px !important;
+}
+/* line 226, ../../app/assets/stylesheets/web.css.scss */
+.breadcrumb li a, .breadcrumb li a:hover, .breadcrumb li a:visited {
+ color: #4d80b4;
+ overflow: visible;
+ text-overflow: clip;
+ white-space: normal;
+ word-wrap: break-word;
+}
+/* line 227, ../../app/assets/stylesheets/web.css.scss */
+.breadcrumb li.active a, .breadcrumb li:active a {
+ color: #4b5566;
+ outline: 0 !important;
+}
+/* line 228, ../../app/assets/stylesheets/web.css.scss */
+.breadcrumb li span {
+ line-height: 15px !important;
+ overflow: visible;
+ text-overflow: clip;
+ white-space: normal;
+ word-wrap: break-word;
+}
+/* line 229, ../../app/assets/stylesheets/web.css.scss */
+.breadcrumb li span.divider {
+ color: #4d80b4;
+ padding: 0 2px;
+ line-height: 15px !important;
+}
+
+/* line 235, ../../app/assets/stylesheets/web.css.scss */
+.controls-wrapper,
+#controls, .controlsBar {
+ overflow: hidden;
+ *zoom: 1;
+ margin-bottom: 10px;
+ overflow: auto;
+}
+/* line 236, ../../app/assets/stylesheets/web.css.scss */
+.controls-wrapper.pull-left,
+#controls.pull-left, .controlsBar.pull-left {
+ margin-left: 5px;
+ margin-bottom: 5px;
+}
+/* line 237, ../../app/assets/stylesheets/web.css.scss */
+.controls-wrapper.controls-dropdowns,
+#controls.controls-dropdowns, .controlsBar.controls-dropdowns {
+ float: left;
+ width: 100%;
+ overflow: visible;
+}
+/* line 238, ../../app/assets/stylesheets/web.css.scss */
+.controls-wrapper > div,
+#controls > div, .controlsBar > div {
+ overflow: auto;
+}
+/* line 240, ../../app/assets/stylesheets/web.css.scss */
+.controls-wrapper > ul > li,
+#controls > ul > li, .controlsBar > ul > li {
+ float: left;
+}
+/* line 241, ../../app/assets/stylesheets/web.css.scss */
+.controls-wrapper > ul > li > .btn > span:first-child,
+#controls > ul > li > .btn > span:first-child, .controlsBar > ul > li > .btn > span:first-child {
+ font-weight: 500;
+ font-size: 15px !important;
+ margin: 0 !important;
+ vertical-align: text-top;
+}
+/* line 242, ../../app/assets/stylesheets/web.css.scss */
+.controls-wrapper > ul > li > span,
+#controls > ul > li > span, .controlsBar > ul > li > span {
+ font-weight: 500;
+ margin: 0 5px;
+}
+/* line 244, ../../app/assets/stylesheets/web.css.scss */
+.controls-wrapper > ul.pull-left > li,
+#controls > ul.pull-left > li, .controlsBar > ul.pull-left > li {
+ margin-right: 5px;
+}
+/* line 245, ../../app/assets/stylesheets/web.css.scss */
+.controls-wrapper > ul.pull-right > li,
+#controls > ul.pull-right > li, .controlsBar > ul.pull-right > li {
+ margin-left: 5px;
+}
+
+/* line 249, ../../app/assets/stylesheets/web.css.scss */
+.footer-wrapper {
+ overflow: auto;
+ background-color: #e8e9ea;
+ border-top: 1px solid #cbcbcb;
+ width: 100%;
+}
+/* line 250, ../../app/assets/stylesheets/web.css.scss */
+.footer-wrapper #footer {
+ height: 20px;
+ color: #8f9399;
+ padding: 25px;
+ text-shadow: 0px 1px 0px white;
+ border-top: 1px solid white;
+}
+/* line 251, ../../app/assets/stylesheets/web.css.scss */
+.footer-wrapper #footer p {
+ clear: both;
+ text-align: center;
+ overflow: hidden;
+ *zoom: 1;
+ text-shadow: 0px 1px 0px white;
+}
+
+/* line 255, ../../app/assets/stylesheets/web.css.scss */
+#full-screen-edit {
+ margin-bottom: 0;
+}
+/* line 256, ../../app/assets/stylesheets/web.css.scss */
+#full-screen-edit .controls {
+ overflow: auto;
+}
+/* line 257, ../../app/assets/stylesheets/web.css.scss */
+#full-screen-edit .content-wrapper {
+ margin: 15px 0 20px 20px;
+ overflow: auto;
+}
+/* line 258, ../../app/assets/stylesheets/web.css.scss */
+#full-screen-edit legend {
+ margin-bottom: 0;
+ font-size: 16px;
+ font-weight: 500;
+ line-height: 24px;
+ padding-bottom: 2px solid #d6d7d9;
+}
+/* line 259, ../../app/assets/stylesheets/web.css.scss */
+#full-screen-edit ul {
+ background-color: #f8f9fa;
+ padding: 20px 30px 5px;
+ margin-top: 0;
+ margin-bottom: 20px;
+ -webkit-border-radius: 0 0 5px 5px;
+ -moz-border-radius: 0 0 5px 5px;
+ -ms-border-radius: 0 0 5px 5px;
+ -o-border-radius: 0 0 5px 5px;
+ border-radius: 0 0 5px 5px;
+}
+/* line 260, ../../app/assets/stylesheets/web.css.scss */
+#full-screen-edit ul li {
+ margin-bottom: 15px;
+}
+/* line 261, ../../app/assets/stylesheets/web.css.scss */
+#full-screen-edit ul .control-label {
+ line-height: 16px;
+ margin-bottom: 0;
+ text-shadow: 0px 1px 0px white;
+}
+/* line 262, ../../app/assets/stylesheets/web.css.scss */
+#full-screen-edit ul .icons-preview {
+ position: relative;
+ top: -1px;
+}
+/* line 263, ../../app/assets/stylesheets/web.css.scss */
+#full-screen-edit ul .checkbox-label {
+ cursor: pointer;
+}
+/* line 264, ../../app/assets/stylesheets/web.css.scss */
+#full-screen-edit ul .vertical-checks .controls {
+ margin-left: 0;
+}
+/* line 266, ../../app/assets/stylesheets/web.css.scss */
+#full-screen-edit ul.ListWell {
+ background-color: transparent;
+ padding: 0;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+}
+/* line 267, ../../app/assets/stylesheets/web.css.scss */
+#full-screen-edit ul.ListWell > li {
+ overflow: auto;
+ margin-bottom: 0;
+}
+/* line 268, ../../app/assets/stylesheets/web.css.scss */
+#full-screen-edit ul.ListWell > li > div {
+ padding: 0;
+ float: left;
+}
+/* line 269, ../../app/assets/stylesheets/web.css.scss */
+#full-screen-edit ul.ListWell > li > div > div {
+ padding: 4px 5px;
+}
+/* line 274, ../../app/assets/stylesheets/web.css.scss */
+#full-screen-edit .user-status .controls > label {
+ margin-top: 3px;
+}
+/* line 275, ../../app/assets/stylesheets/web.css.scss */
+#full-screen-edit .user-status .controls > input[type="radio"] {
+ top: 4px;
+}
+/* line 277, ../../app/assets/stylesheets/web.css.scss */
+#full-screen-edit .alert-info {
+ margin-bottom: 0;
+}
+/* line 278, ../../app/assets/stylesheets/web.css.scss */
+#full-screen-edit .form-actions {
+ -webkit-border-radius: 0;
+ -moz-border-radius: 0;
+ -ms-border-radius: 0;
+ -o-border-radius: 0;
+ border-radius: 0;
+ border-right: 1px solid #d6d6d6;
+}
+/* line 279, ../../app/assets/stylesheets/web.css.scss */
+#full-screen-edit input#password {
+ float: left;
+}
+/* line 280, ../../app/assets/stylesheets/web.css.scss */
+#full-screen-edit .auto-generate-password {
+ float: left;
+}
+/* line 281, ../../app/assets/stylesheets/web.css.scss */
+#full-screen-edit .auto-generate-password .controls {
+ margin-left: 5px;
+}
+/* line 282, ../../app/assets/stylesheets/web.css.scss */
+#full-screen-edit .auto-generate-password input, #full-screen-edit .auto-generate-password label {
+ float: left;
+ margin: 0;
+}
+/* line 283, ../../app/assets/stylesheets/web.css.scss */
+#full-screen-edit .auto-generate-password label {
+ color: #4d80b4;
+ font-size: 13px;
+ cursor: pointer;
+}
+/* line 284, ../../app/assets/stylesheets/web.css.scss */
+#full-screen-edit .auto-generate-password input {
+ vertical-align: top;
+ position: relative;
+ top: 3px;
+ margin-right: 3px;
+ margin-left: 3px;
+}
+/* line 285, ../../app/assets/stylesheets/web.css.scss */
+#full-screen-edit .auto-generate-password .error-wrap {
+ display: none;
+}
+/* line 287, ../../app/assets/stylesheets/web.css.scss */
+#full-screen-edit .ImgPreviewPopover {
+ margin-left: 0;
+}
+/* line 289, ../../app/assets/stylesheets/web.css.scss */
+#full-screen-edit .send-email-link .icons-preview {
+ vertical-align: middle;
+}
+/* line 290, ../../app/assets/stylesheets/web.css.scss */
+#full-screen-edit .send-email-link.disabled i.icons-preview {
+ background-position: 0 -2024px;
+ height: 11px;
+ width: 10px;
+}
+/* line 291, ../../app/assets/stylesheets/web.css.scss */
+#full-screen-edit .send-email-link > label {
+ padding-top: 2px;
+}
+/* line 292, ../../app/assets/stylesheets/web.css.scss */
+#full-screen-edit .send-email-link .controls > label {
+ margin-right: 2px !important;
+}
+/* line 294, ../../app/assets/stylesheets/web.css.scss */
+#full-screen-edit .role-definition {
+ color: #888;
+}
+
+/* line 297, ../../app/assets/stylesheets/web.css.scss */
+.alert {
+ text-shadow: 0px 1px 0px white;
+ margin-bottom: 8px;
+}
+/* line 298, ../../app/assets/stylesheets/web.css.scss */
+.alert i {
+ margin-right: 3px;
+}
+/* line 299, ../../app/assets/stylesheets/web.css.scss */
+.alert .alert-info ~ form {
+ margin-top: 35px;
+}
+/* line 300, ../../app/assets/stylesheets/web.css.scss */
+.alert p:last-child {
+ margin-bottom: 0;
+}
+
+/* line 302, ../../app/assets/stylesheets/web.css.scss */
+.alert-fullscreen {
+ padding: 14px 25px 14px 25px;
+ margin-bottom: 0;
+}
+
+/* line 303, ../../app/assets/stylesheets/web.css.scss */
+.alert-wrapper .alert {
+ margin-bottom: 0;
+}
+
+/* line 304, ../../app/assets/stylesheets/web.css.scss */
+.close {
+ outline: 0 !important;
+}
+
+/* line 305, ../../app/assets/stylesheets/web.css.scss */
+.alert-margins {
+ margin: 10px 20px !important;
+}
+
+/* line 307, ../../app/assets/stylesheets/web.css.scss */
+.progress {
+ height: 12px;
+ line-height: 12px;
+ margin: 0;
+ margin-top: 2px;
+ border: 1px solid #dddddd;
+ -webkit-border-radius: 3px;
+ -moz-border-radius: 3px;
+ -ms-border-radius: 3px;
+ -o-border-radius: 3px;
+ border-radius: 3px;
+ padding: 0 !important;
+ overflow: hidden;
+}
+/* line 308, ../../app/assets/stylesheets/web.css.scss */
+.progress.progress-success .bar {
+ background-color: #459143;
+ background-image: -moz-linear-gradient(top, #459143, #459143);
+ background-image: -ms-linear-gradient(top, #459143, #459143);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#459143), to(#459143));
+ background-image: -webkit-linear-gradient(top, #459143, #459143);
+ background-image: -o-linear-gradient(top, #459143, #459143);
+ background-image: linear-gradient(top, #459143, #459143);
+ background-repeat: repeat-x;
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#459143', endColorstr='#459143', GradientType=0);
+}
+/* line 309, ../../app/assets/stylesheets/web.css.scss */
+.progress.progress-success.progress-striped .bar {
+ background-color: #459143;
+ 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: 20px 20px;
+ -moz-background-size: 20px 20px;
+ -o-background-size: 20px 20px;
+ background-size: 20px 20px;
+}
+
+/* line 312, ../../app/assets/stylesheets/web.css.scss */
+.label {
+ padding: 0 3px 0.5px 3.5px;
+ border-radius: 5px;
+ background-color: #888;
+}
+
+/* line 313, ../../app/assets/stylesheets/web.css.scss */
+.label-important, .label-danger {
+ background-color: #ae5151;
+}
+
+/* line 315, ../../app/assets/stylesheets/web.css.scss */
+.label-important:hover,
+.label-danger:hover {
+ background-color: #ae5151;
+}
+
+/* line 316, ../../app/assets/stylesheets/web.css.scss */
+.label-warning {
+ background-color: #c76024;
+}
+
+/* line 317, ../../app/assets/stylesheets/web.css.scss */
+.label-warning:hover {
+ background-color: #c76024;
+}
+
+/* line 318, ../../app/assets/stylesheets/web.css.scss */
+.label-success {
+ background-color: #449042;
+}
+
+/* line 319, ../../app/assets/stylesheets/web.css.scss */
+.label-success:hover {
+ background-color: #449042;
+}
+
+/* line 320, ../../app/assets/stylesheets/web.css.scss */
+.label-info {
+ background-color: #5986b5;
+}
+
+/* line 321, ../../app/assets/stylesheets/web.css.scss */
+.label-info:hover {
+ background-color: #5986b5;
+}
+
+/* line 322, ../../app/assets/stylesheets/web.css.scss */
+.label-date {
+ background-color: #7195b8 !important;
+ color: white;
+ font-weight: 500;
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.35);
+}
+
+/* line 323, ../../app/assets/stylesheets/web.css.scss */
+.label-date:hover {
+ background-color: #7195b8 !important;
+ color: white !important;
+}
+
+/* line 324, ../../app/assets/stylesheets/web.css.scss */
+.inactive-label, .active-label {
+ font-weight: 500;
+ color: white;
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.35);
+ font-style: italic;
+ padding: 1px 6px;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+ line-height: 12px;
+ font-size: 11px;
+}
+
+/* line 325, ../../app/assets/stylesheets/web.css.scss */
+.inactive-label {
+ background-color: #c96e6e;
+}
+
+/* line 326, ../../app/assets/stylesheets/web.css.scss */
+.active-label {
+ background-color: #6ea469;
+}
+
+/* line 328, ../../app/assets/stylesheets/web.css.scss */
+.popover {
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
+ opacity: 1;
+ z-index: 4000;
+}
+/* line 329, ../../app/assets/stylesheets/web.css.scss */
+.popover .popover-inner {
+ background: #4d80b4;
+ background: url(/assets/rgbapng/4d80b4cc.png);
+ background: rgba(77, 128, 180, 0.8);
+ width: 250px;
+ overflow: hidden;
+}
+/* line 330, ../../app/assets/stylesheets/web.css.scss */
+.popover .popover-content {
+ background: #fefefe;
+ font-size: 14px;
+ line-height: 21px;
+ color: #4b5566;
+ padding: 0;
+}
+/* line 331, ../../app/assets/stylesheets/web.css.scss */
+.popover .popover-content p {
+ padding: 8px 12px;
+}
+/* line 332, ../../app/assets/stylesheets/web.css.scss */
+.popover .popover-content p:empty {
+ display: none;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+}
+/* line 335, ../../app/assets/stylesheets/web.css.scss */
+.popover .popover-title {
+ font-size: 15px;
+ padding: 7px 15px;
+ font-weight: 500;
+}
+/* line 336, ../../app/assets/stylesheets/web.css.scss */
+.popover .popover-title:empty {
+ display: none;
+}
+/* line 337, ../../app/assets/stylesheets/web.css.scss */
+.popover .popover-title:empty + .popover-inner {
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+}
+/* line 338, ../../app/assets/stylesheets/web.css.scss */
+.popover .popover-title:empty + .popover-content {
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+}
+/* line 341, ../../app/assets/stylesheets/web.css.scss */
+.popover.top .arrow {
+ border-top: 5px solid #4d80b4;
+}
+/* line 342, ../../app/assets/stylesheets/web.css.scss */
+.popover.right .arrow {
+ border-right: 5px solid #4d80b4;
+}
+/* line 343, ../../app/assets/stylesheets/web.css.scss */
+.popover.bottom .arrow {
+ border-bottom: 5px solid #4d80b4;
+}
+/* line 344, ../../app/assets/stylesheets/web.css.scss */
+.popover.left .arrow {
+ border-left: 5px solid #4d80b4;
+}
+/* line 346, ../../app/assets/stylesheets/web.css.scss */
+.popover.top .popover-inner {
+ color: #4b5566;
+ border: 1px solid #d7dadf;
+ text-align: center;
+ overflow: hidden;
+ text-decoration: none;
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=95);
+ opacity: 0.95;
+ background-color: white;
+}
+/* line 347, ../../app/assets/stylesheets/web.css.scss */
+.popover.top .popover-content {
+ font-size: 11px;
+ line-height: 21px;
+ background-color: white;
+}
+/* line 348, ../../app/assets/stylesheets/web.css.scss */
+.popover.top .popover-content p {
+ padding: 4px 8px;
+ color: #4b5566;
+}
+/* line 350, ../../app/assets/stylesheets/web.css.scss */
+.popover.top .popover-title {
+ font-size: 12px;
+ padding: 3px 10px;
+ background-color: white;
+ color: #4b5566;
+ border-bottom: 0;
+}
+/* line 351, ../../app/assets/stylesheets/web.css.scss */
+.popover.top.top .arrow {
+ border-top: 5px solid #4d80b4;
+}
+/* line 352, ../../app/assets/stylesheets/web.css.scss */
+.popover.top.right .arrow {
+ border-right: 5px solid #4d80b4;
+}
+/* line 353, ../../app/assets/stylesheets/web.css.scss */
+.popover.top.bottom .arrow {
+ border-bottom: 5px solid #4d80b4;
+}
+/* line 354, ../../app/assets/stylesheets/web.css.scss */
+.popover.top.left .arrow {
+ border-left: 5px solid #4d80b4;
+}
+/* line 355, ../../app/assets/stylesheets/web.css.scss */
+.popover.top .arrow {
+ position: absolute;
+ width: 0;
+ height: 0;
+}
+/* line 358, ../../app/assets/stylesheets/web.css.scss */
+.popover.bottom .popover-inner {
+ width: 100px;
+ border: 1px solid #c76024;
+ text-align: center;
+ overflow: hidden;
+ text-decoration: none;
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=85);
+ opacity: 0.85;
+ background-color: #c76024;
+}
+/* line 359, ../../app/assets/stylesheets/web.css.scss */
+.popover.bottom .popover-content {
+ font-size: 11px;
+ line-height: 21px;
+ background-color: #c76024;
+}
+/* line 360, ../../app/assets/stylesheets/web.css.scss */
+.popover.bottom .popover-content p {
+ padding: 2px 4px;
+ color: #fff;
+ font-weight: bold;
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.35);
+ line-height: 16px;
+}
+/* line 362, ../../app/assets/stylesheets/web.css.scss */
+.popover.bottom .popover-title {
+ font-size: 12px;
+ padding: 3px 10px;
+ background-color: white;
+ color: #4b5566;
+ border-bottom: 0;
+}
+/* line 363, ../../app/assets/stylesheets/web.css.scss */
+.popover.bottom.top .arrow {
+ border-top: 5px solid #c76024;
+}
+/* line 364, ../../app/assets/stylesheets/web.css.scss */
+.popover.bottom.right .arrow {
+ border-right: 5px solid #c76024;
+}
+/* line 365, ../../app/assets/stylesheets/web.css.scss */
+.popover.bottom.bottom .arrow {
+ border-bottom: 5px solid #c76024;
+}
+/* line 366, ../../app/assets/stylesheets/web.css.scss */
+.popover.bottom.left .arrow {
+ border-left: 5px solid #c76024;
+}
+/* line 367, ../../app/assets/stylesheets/web.css.scss */
+.popover.bottom .arrow {
+ position: absolute;
+ width: 0;
+ height: 0;
+}
+
+/* line 370, ../../app/assets/stylesheets/web.css.scss */
+.popover-click {
+ cursor: help;
+}
+
+/* line 371, ../../app/assets/stylesheets/web.css.scss */
+span.popover-hover {
+ cursor: pointer;
+}
+
+/* line 372, ../../app/assets/stylesheets/web.css.scss */
+.tooltip {
+ line-height: 16px;
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.35);
+ font-size: 12px;
+}
+
+/* line 374, ../../app/assets/stylesheets/web.css.scss */
+.btn-mini {
+ font-size: 13px !important;
+ padding: 4px 6px;
+ font-weight: 500;
+}
+/* line 375, ../../app/assets/stylesheets/web.css.scss */
+.btn-mini .caret {
+ margin-top: 0;
+}
+
+/* line 377, ../../app/assets/stylesheets/web.css.scss */
+.btn-small {
+ font-size: 12px;
+ line-height: 13px;
+}
+
+/* line 378, ../../app/assets/stylesheets/web.css.scss */
+.btn-group .btn-mini {
+ text-shadow: 0px 1px 0px white;
+ font-weight: 500;
+}
+
+/* line 380, ../../app/assets/stylesheets/web.css.scss */
+button {
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+}
+
+/* line 381, ../../app/assets/stylesheets/web.css.scss */
+.btn {
+ background-color: #eaeaea;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+ background-color: #f3f3f3;
+ background-image: -moz-linear-gradient(top, #f9f9f9, #eaeaea);
+ background-image: -ms-linear-gradient(top, #f9f9f9, #eaeaea);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f9f9f9), to(#eaeaea));
+ background-image: -webkit-linear-gradient(top, #f9f9f9, #eaeaea);
+ background-image: -o-linear-gradient(top, #f9f9f9, #eaeaea);
+ background-image: linear-gradient(top, #f9f9f9, #eaeaea);
+ background-repeat: repeat-x;
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9f9f9', endColorstr='#eaeaea', GradientType=0);
+ background-color: whitesmoke;
+ background-image: -moz-linear-gradient(top, #f9f9f9, #f4f4f4 25%, #efefef 50%, #eaeaea 75%);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f9f9f9), color-stop(25%, #f4f4f4), color-stop(50%, #efefef), to(75%, #eaeaea));
+ background-image: -webkit-linear-gradient(top, #f9f9f9, #f4f4f4 25%, #efefef 50%, #eaeaea 75%);
+ background-image: -o-linear-gradient(top, #f9f9f9, #f4f4f4 25%, #efefef 50%, #eaeaea 75%);
+ background-image: linear-gradient(to bottom, #f9f9f9, #f4f4f4 25%, #efefef 50%, #eaeaea 75%);
+ background-repeat: no-repeat;
+ border-color: #f4f4f4;
+ border-color: #f4f4f4 #f4f4f4 #cecece;
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) fadein(rgba(0, 0, 0, 0.1), 15%);
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9f9f9', endColorstr='#eaeaea', GradientType=0);
+ color: #4b5566;
+ border: 1px solid #cfcfcf;
+ border-bottom-color: #bcbcbc;
+ outline: 0 !important;
+ cursor: pointer;
+}
+/* line 382, ../../app/assets/stylesheets/web.css.scss */
+.btn.dropdown-toggle {
+ background-color: #eaeaea;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+ background-color: #f3f3f3;
+ background-image: -moz-linear-gradient(top, #f9f9f9, #eaeaea);
+ background-image: -ms-linear-gradient(top, #f9f9f9, #eaeaea);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f9f9f9), to(#eaeaea));
+ background-image: -webkit-linear-gradient(top, #f9f9f9, #eaeaea);
+ background-image: -o-linear-gradient(top, #f9f9f9, #eaeaea);
+ background-image: linear-gradient(top, #f9f9f9, #eaeaea);
+ background-repeat: repeat-x;
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9f9f9', endColorstr='#eaeaea', GradientType=0);
+ background-color: whitesmoke;
+ background-image: -moz-linear-gradient(top, #f9f9f9, #f4f4f4 25%, #efefef 50%, #eaeaea 75%);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f9f9f9), color-stop(25%, #f4f4f4), color-stop(50%, #efefef), to(75%, #eaeaea));
+ background-image: -webkit-linear-gradient(top, #f9f9f9, #f4f4f4 25%, #efefef 50%, #eaeaea 75%);
+ background-image: -o-linear-gradient(top, #f9f9f9, #f4f4f4 25%, #efefef 50%, #eaeaea 75%);
+ background-image: linear-gradient(to bottom, #f9f9f9, #f4f4f4 25%, #efefef 50%, #eaeaea 75%);
+ background-repeat: no-repeat;
+ border-color: #f4f4f4;
+ border-color: #f4f4f4 #f4f4f4 #cecece;
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) fadein(rgba(0, 0, 0, 0.1), 15%);
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9f9f9', endColorstr='#eaeaea', GradientType=0);
+ color: #4b5566;
+ border: 1px solid #cfcfcf;
+ border-bottom-color: #bcbcbc;
+}
+/* line 384, ../../app/assets/stylesheets/web.css.scss */
+.btn.dropdown-toggle:hover, .btn.dropdown-toggle:active, .btn.dropdown-toggle.active, .btn.dropdown-toggle:focus {
+ background-color: #e3e3e3;
+ color: #4b5566 !important;
+ border: 1px solid #cfcfcf;
+ border-bottom-color: #bcbcbc;
+ -webkit-transition: background-position 0.05s linear;
+ -moz-transition: background-position 0.05s linear;
+ -ms-transition: background-position 0.05s linear;
+ -o-transition: background-position 0.05s linear;
+ transition: background-position 0.05s linear;
+ outline: 0 !important;
+}
+/* line 385, ../../app/assets/stylesheets/web.css.scss */
+.btn.dropdown-toggle:hover .caret, .btn.dropdown-toggle:active .caret, .btn.dropdown-toggle.active .caret, .btn.dropdown-toggle:focus .caret {
+ opacity: 0.3 !important;
+}
+/* line 387, ../../app/assets/stylesheets/web.css.scss */
+.btn.dropdown-toggle.disabled:hover, .btn.dropdown-toggle[disabled]:hover {
+ color: #888888 !important;
+}
+/* line 388, ../../app/assets/stylesheets/web.css.scss */
+.btn.dropdown-toggle:visited {
+ color: #4b5566;
+}
+/* line 391, ../../app/assets/stylesheets/web.css.scss */
+.btn:hover, .btn:active, .btn.active, .btn:focus {
+ cursor: pointer;
+ background-position: 0 -30px;
+ background-color: #e3e3e3;
+ color: #4b5566 !important;
+ -webkit-transition: background-position 0.05s linear;
+ -moz-transition: background-position 0.05s linear;
+ -ms-transition: background-position 0.05s linear;
+ -o-transition: background-position 0.05s linear;
+ transition: background-position 0.05s linear;
+ outline: 0 !important;
+}
+/* line 392, ../../app/assets/stylesheets/web.css.scss */
+.btn.active, .btn:active {
+ cursor: default;
+}
+/* line 394, ../../app/assets/stylesheets/web.css.scss */
+.btn.disabled, .btn[disabled], .btn.disabled:hover {
+ background-color: whitesmoke !important;
+ border: 1px solid #bcbcbc;
+ cursor: default;
+ background-image: none;
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=65);
+ opacity: 0.65;
+ -webkit-box-shadow: none;
+ -moz-box-shadow: none;
+ box-shadow: none;
+ text-shadow: 0 0 0 rgba(0, 0, 0, 0);
+ color: #888888 !important;
+ cursor: default;
+}
+/* line 395, ../../app/assets/stylesheets/web.css.scss */
+.btn:visited {
+ color: #4b5566;
+ cursor: pointer;
+}
+
+/* line 397, ../../app/assets/stylesheets/web.css.scss */
+.btn-primary {
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.35);
+ background-color: #449142;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+ background-color: #4b9d4b;
+ background-image: -moz-linear-gradient(top, #51a652, #449142);
+ background-image: -ms-linear-gradient(top, #51a652, #449142);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#51a652), to(#449142));
+ background-image: -webkit-linear-gradient(top, #51a652, #449142);
+ background-image: -o-linear-gradient(top, #51a652, #449142);
+ background-image: linear-gradient(top, #51a652, #449142);
+ background-repeat: repeat-x;
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#51a652', endColorstr='#449142', GradientType=0);
+ background-color: #4da04e;
+ background-image: -moz-linear-gradient(top, #51a652, #4fa24d 25%, #469446 50%, #449142 75%);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#51a652), color-stop(25%, #4fa24d), color-stop(50%, #469446), to(75%, #449142));
+ background-image: -webkit-linear-gradient(top, #51a652, #4fa24d 25%, #469446 50%, #449142 75%);
+ background-image: -o-linear-gradient(top, #51a652, #4fa24d 25%, #469446 50%, #449142 75%);
+ background-image: linear-gradient(to bottom, #51a652, #4fa24d 25%, #469446 50%, #449142 75%);
+ background-repeat: no-repeat;
+ border-color: #4fa24d;
+ border-color: #4fa24d #4fa24d #366e34;
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) fadein(rgba(0, 0, 0, 0.1), 15%);
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#51a652', endColorstr='#449142', GradientType=0);
+ color: white;
+}
+/* line 398, ../../app/assets/stylesheets/web.css.scss */
+.btn-primary.dropdown-toggle {
+ background-color: #449142;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+ background-color: #4b9d4b;
+ background-image: -moz-linear-gradient(top, #51a652, #449142);
+ background-image: -ms-linear-gradient(top, #51a652, #449142);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#51a652), to(#449142));
+ background-image: -webkit-linear-gradient(top, #51a652, #449142);
+ background-image: -o-linear-gradient(top, #51a652, #449142);
+ background-image: linear-gradient(top, #51a652, #449142);
+ background-repeat: repeat-x;
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#51a652', endColorstr='#449142', GradientType=0);
+ background-color: #4da04e;
+ background-image: -moz-linear-gradient(top, #51a652, #4fa24d 25%, #469446 50%, #449142 75%);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#51a652), color-stop(25%, #4fa24d), color-stop(50%, #469446), to(75%, #449142));
+ background-image: -webkit-linear-gradient(top, #51a652, #4fa24d 25%, #469446 50%, #449142 75%);
+ background-image: -o-linear-gradient(top, #51a652, #4fa24d 25%, #469446 50%, #449142 75%);
+ background-image: linear-gradient(to bottom, #51a652, #4fa24d 25%, #469446 50%, #449142 75%);
+ background-repeat: no-repeat;
+ border-color: #4fa24d;
+ border-color: #4fa24d #4fa24d #366e34;
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) fadein(rgba(0, 0, 0, 0.1), 15%);
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#51a652', endColorstr='#449142', GradientType=0);
+ color: white;
+}
+/* line 399, ../../app/assets/stylesheets/web.css.scss */
+.btn-primary.dropdown-toggle:hover, .btn-primary.dropdown-toggle:active, .btn-primary.dropdown-toggle.active, .btn-primary.dropdown-toggle:focus {
+ background-color: #3b8539 !important;
+ color: white !important;
+ outline: 0 !important;
+}
+/* line 401, ../../app/assets/stylesheets/web.css.scss */
+.btn-primary:hover, .btn-primary:active, .btn-primary.active, .btn-primary:focus {
+ background-color: #3b8539 !important;
+ color: white !important;
+ outline: 0 !important;
+}
+/* line 402, ../../app/assets/stylesheets/web.css.scss */
+.btn-primary:visited {
+ color: white !important;
+}
+
+/* line 404, ../../app/assets/stylesheets/web.css.scss */
+.btn-danger {
+ color: white;
+ background-color: #b34c4c;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+ background-color: #bf5a5a;
+ background-image: -moz-linear-gradient(top, #c76464, #b34c4c);
+ background-image: -ms-linear-gradient(top, #c76464, #b34c4c);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#c76464), to(#b34c4c));
+ background-image: -webkit-linear-gradient(top, #c76464, #b34c4c);
+ background-image: -o-linear-gradient(top, #c76464, #b34c4c);
+ background-image: linear-gradient(top, #c76464, #b34c4c);
+ background-repeat: repeat-x;
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#c76464', endColorstr='#b34c4c', GradientType=0);
+ background-color: #c25e5e;
+ background-image: -moz-linear-gradient(top, #c76464, #c55f5f 25%, #b45050 50%, #b34c4c 75%);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#c76464), color-stop(25%, #c55f5f), color-stop(50%, #b45050), to(75%, #b34c4c));
+ background-image: -webkit-linear-gradient(top, #c76464, #c55f5f 25%, #b45050 50%, #b34c4c 75%);
+ background-image: -o-linear-gradient(top, #c76464, #c55f5f 25%, #b45050 50%, #b34c4c 75%);
+ background-image: linear-gradient(to bottom, #c76464, #c55f5f 25%, #b45050 50%, #b34c4c 75%);
+ background-repeat: no-repeat;
+ border-color: #c55f5f;
+ border-color: #c55f5f #c55f5f #9e3939;
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) fadein(rgba(0, 0, 0, 0.1), 15%);
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#c76464', endColorstr='#b34c4c', GradientType=0);
+}
+/* line 405, ../../app/assets/stylesheets/web.css.scss */
+.btn-danger.dropdown-toggle {
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.35);
+ color: white;
+ background-color: #b34c4c;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+ background-color: #bf5a5a;
+ background-image: -moz-linear-gradient(top, #c76464, #b34c4c);
+ background-image: -ms-linear-gradient(top, #c76464, #b34c4c);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#c76464), to(#b34c4c));
+ background-image: -webkit-linear-gradient(top, #c76464, #b34c4c);
+ background-image: -o-linear-gradient(top, #c76464, #b34c4c);
+ background-image: linear-gradient(top, #c76464, #b34c4c);
+ background-repeat: repeat-x;
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#c76464', endColorstr='#b34c4c', GradientType=0);
+ background-color: #c25e5e;
+ background-image: -moz-linear-gradient(top, #c76464, #c55f5f 25%, #b45050 50%, #b34c4c 75%);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#c76464), color-stop(25%, #c55f5f), color-stop(50%, #b45050), to(75%, #b34c4c));
+ background-image: -webkit-linear-gradient(top, #c76464, #c55f5f 25%, #b45050 50%, #b34c4c 75%);
+ background-image: -o-linear-gradient(top, #c76464, #c55f5f 25%, #b45050 50%, #b34c4c 75%);
+ background-image: linear-gradient(to bottom, #c76464, #c55f5f 25%, #b45050 50%, #b34c4c 75%);
+ background-repeat: no-repeat;
+ border-color: #c55f5f;
+ border-color: #c55f5f #c55f5f #9e3939;
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) fadein(rgba(0, 0, 0, 0.1), 15%);
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#c76464', endColorstr='#b34c4c', GradientType=0);
+}
+/* line 406, ../../app/assets/stylesheets/web.css.scss */
+.btn-danger.dropdown-toggle:hover, .btn-danger.dropdown-toggle:active, .btn-danger.dropdown-toggle.active, .btn-danger.dropdown-toggle:focus {
+ background-color: #9d3939 !important;
+ color: white !important;
+ outline: 0 !important;
+}
+/* line 408, ../../app/assets/stylesheets/web.css.scss */
+.btn-danger:hover, .btn-danger:active, .btn-danger.active, .btn-danger:focus {
+ background-color: #9d3939 !important;
+ color: white !important;
+ outline: 0 !important;
+}
+/* line 409, ../../app/assets/stylesheets/web.css.scss */
+.btn-danger:visited {
+ color: white !important;
+}
+
+/* line 411, ../../app/assets/stylesheets/web.css.scss */
+.btn-info {
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+ background-color: #558bbb;
+ background-image: -moz-linear-gradient(top, #5b95c3, #4d7eaf);
+ background-image: -ms-linear-gradient(top, #5b95c3, #4d7eaf);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5b95c3), to(#4d7eaf));
+ background-image: -webkit-linear-gradient(top, #5b95c3, #4d7eaf);
+ background-image: -o-linear-gradient(top, #5b95c3, #4d7eaf);
+ background-image: linear-gradient(top, #5b95c3, #4d7eaf);
+ background-repeat: repeat-x;
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5b95c3', endColorstr='#4d7eaf', GradientType=0);
+ background-color: #578fbe;
+ background-image: -moz-linear-gradient(top, #5b95c3, #5991be 25%, #4f81b4 50%, #4d7eaf 75%);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5b95c3), color-stop(25%, #5991be), color-stop(50%, #4f81b4), to(75%, #4d7eaf));
+ background-image: -webkit-linear-gradient(top, #5b95c3, #5991be 25%, #4f81b4 50%, #4d7eaf 75%);
+ background-image: -o-linear-gradient(top, #5b95c3, #5991be 25%, #4f81b4 50%, #4d7eaf 75%);
+ background-image: linear-gradient(to bottom, #5b95c3, #5991be 25%, #4f81b4 50%, #4d7eaf 75%);
+ background-repeat: no-repeat;
+ border-color: #5991be;
+ border-color: #5991be #5991be #396a92;
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) fadein(rgba(0, 0, 0, 0.1), 15%);
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5b95c3', endColorstr='#4d7eaf', GradientType=0);
+ color: white;
+ font-weight: 500;
+}
+/* line 412, ../../app/assets/stylesheets/web.css.scss */
+.btn-info.dropdown-toggle {
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+ background-color: #558bbb;
+ background-image: -moz-linear-gradient(top, #5b95c3, #4d7eaf);
+ background-image: -ms-linear-gradient(top, #5b95c3, #4d7eaf);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5b95c3), to(#4d7eaf));
+ background-image: -webkit-linear-gradient(top, #5b95c3, #4d7eaf);
+ background-image: -o-linear-gradient(top, #5b95c3, #4d7eaf);
+ background-image: linear-gradient(top, #5b95c3, #4d7eaf);
+ background-repeat: repeat-x;
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5b95c3', endColorstr='#4d7eaf', GradientType=0);
+ background-color: #578fbe;
+ background-image: -moz-linear-gradient(top, #5b95c3, #5991be 25%, #4f81b4 50%, #4d7eaf 75%);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5b95c3), color-stop(25%, #5991be), color-stop(50%, #4f81b4), to(75%, #4d7eaf));
+ background-image: -webkit-linear-gradient(top, #5b95c3, #5991be 25%, #4f81b4 50%, #4d7eaf 75%);
+ background-image: -o-linear-gradient(top, #5b95c3, #5991be 25%, #4f81b4 50%, #4d7eaf 75%);
+ background-image: linear-gradient(to bottom, #5b95c3, #5991be 25%, #4f81b4 50%, #4d7eaf 75%);
+ background-repeat: no-repeat;
+ border-color: #5991be;
+ border-color: #5991be #5991be #396a92;
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) fadein(rgba(0, 0, 0, 0.1), 15%);
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5b95c3', endColorstr='#4d7eaf', GradientType=0);
+ color: white !important;
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.35);
+}
+/* line 413, ../../app/assets/stylesheets/web.css.scss */
+.btn-info.dropdown-toggle:hover, .btn-info.dropdown-toggle:active, .btn-info.dropdown-toggle.active, .btn-info.dropdown-toggle:focus {
+ background-color: #3b70a5 !important;
+ color: white !important;
+ outline: 0 !important;
+}
+/* line 414, ../../app/assets/stylesheets/web.css.scss */
+.btn-info.dropdown-toggle:visited {
+ color: white !important;
+}
+/* line 415, ../../app/assets/stylesheets/web.css.scss */
+.btn-info.dropdown-toggle.disabled {
+ color: #888888 !important;
+}
+/* line 416, ../../app/assets/stylesheets/web.css.scss */
+.btn-info.dropdown-toggle.disabled:hover {
+ color: #888888 !important;
+}
+/* line 419, ../../app/assets/stylesheets/web.css.scss */
+.btn-info:hover, .btn-info:active, .btn-info.active, .btn-info:focus {
+ background-color: #3b70a5 !important;
+ color: white !important;
+ outline: 0 !important;
+}
+/* line 420, ../../app/assets/stylesheets/web.css.scss */
+.btn-info:visited {
+ color: white !important;
+}
+/* line 421, ../../app/assets/stylesheets/web.css.scss */
+.btn-info.disabled {
+ color: #888888 !important;
+}
+/* line 422, ../../app/assets/stylesheets/web.css.scss */
+.btn-info.disabled:hover {
+ color: #888888 !important;
+}
+
+/* line 426, ../../app/assets/stylesheets/web.css.scss */
+.btn-no-padding {
+ padding: 0 !important;
+}
+
+/* line 427, ../../app/assets/stylesheets/web.css.scss */
+.btn-link {
+ color: #4d80b4 !important;
+ text-shadow: 0px 1px 0px white;
+}
+/* line 428, ../../app/assets/stylesheets/web.css.scss */
+.btn-link:hover, .btn-link:active, .btn-link.active, .btn-link:focus {
+ color: #4d80b4 !important;
+ outline: 0 !important;
+ text-decoration: none;
+}
+/* line 429, ../../app/assets/stylesheets/web.css.scss */
+.btn-link.dropdown-toggle {
+ color: #4d80b4 !important;
+ text-shadow: 0px 1px 0px white;
+}
+/* line 430, ../../app/assets/stylesheets/web.css.scss */
+.btn-link.dropdown-toggle:hover, .btn-link.dropdown-toggle:active, .btn-link.dropdown-toggle.active, .btn-link.dropdown-toggle:focus {
+ color: #4d80b4 !important;
+ text-shadow: 0px 1px 0px white;
+}
+/* line 431, ../../app/assets/stylesheets/web.css.scss */
+.btn-link.dropdown-toggle:visited {
+ color: #4d80b4 !important;
+ text-shadow: 0px 1px 0px white;
+}
+/* line 432, ../../app/assets/stylesheets/web.css.scss */
+.btn-link.dropdown-toggle.disabled {
+ color: #888888 !important;
+}
+/* line 433, ../../app/assets/stylesheets/web.css.scss */
+.btn-link.dropdown-toggle.disabled:hover {
+ color: #888888 !important;
+}
+
+/* line 438, ../../app/assets/stylesheets/web.css.scss */
+.btn-no-bg, .dropdown > .btn-no-bg, button.btn-no-bg,
+.btn-no-bg.dropdown-toggle {
+ background-color: transparent !important;
+ background-image: none !important;
+ color: #4d80b4 !important;
+ border: none !important;
+ -webkit-box-shadow: none;
+ -moz-box-shadow: none;
+ box-shadow: none;
+ text-shadow: 0 0 0 rgba(0, 0, 0, 0);
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
+}
+/* line 439, ../../app/assets/stylesheets/web.css.scss */
+.btn-no-bg:hover, .dropdown > .btn-no-bg:hover, button.btn-no-bg:hover,
+.btn-no-bg.dropdown-toggle:hover {
+ text-decoration: underline;
+}
+/* line 440, ../../app/assets/stylesheets/web.css.scss */
+.btn-no-bg.disabled, .dropdown > .btn-no-bg.disabled, button.btn-no-bg.disabled,
+.btn-no-bg.dropdown-toggle.disabled {
+ cursor: default !important;
+ cursor: not-allowed !important;
+ outline: 0 !important;
+ background-color: transparent !important;
+}
+/* line 441, ../../app/assets/stylesheets/web.css.scss */
+.btn-no-bg.disabled:hover, .dropdown > .btn-no-bg.disabled:hover, button.btn-no-bg.disabled:hover,
+.btn-no-bg.dropdown-toggle.disabled:hover {
+ background-color: transparent !important;
+}
+
+/* line 444, ../../app/assets/stylesheets/web.css.scss */
+.btn-link-green {
+ color: #449042 !important;
+ text-shadow: 0px 1px 0px white;
+}
+/* line 445, ../../app/assets/stylesheets/web.css.scss */
+.btn-link-green:hover, .btn-link-green:active, .btn-link-green.active, .btn-link-green:focus {
+ color: #449042 !important;
+ outline: 0 !important;
+}
+/* line 446, ../../app/assets/stylesheets/web.css.scss */
+.btn-link-green.dropdown-toggle {
+ color: #449042 !important;
+ text-shadow: 0px 1px 0px white;
+}
+/* line 447, ../../app/assets/stylesheets/web.css.scss */
+.btn-link-green.dropdown-toggle:hover, .btn-link-green.dropdown-toggle:active, .btn-link-green.dropdown-toggle.active, .btn-link-green.dropdown-toggle:focus {
+ color: #449042 !important;
+ text-shadow: 0px 1px 0px white;
+}
+/* line 448, ../../app/assets/stylesheets/web.css.scss */
+.btn-link-green.dropdown-toggle:visited {
+ color: #449042 !important;
+ text-shadow: 0px 1px 0px white;
+}
+/* line 449, ../../app/assets/stylesheets/web.css.scss */
+.btn-link-green.dropdown-toggle.disabled {
+ color: #888888 !important;
+}
+/* line 450, ../../app/assets/stylesheets/web.css.scss */
+.btn-link-green.dropdown-toggle.disabled:hover {
+ color: #888888 !important;
+}
+
+/* line 455, ../../app/assets/stylesheets/web.css.scss */
+.btn-group .btn-info {
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+ background-color: #558bbb;
+ background-image: -moz-linear-gradient(top, #5b95c3, #4d7eaf);
+ background-image: -ms-linear-gradient(top, #5b95c3, #4d7eaf);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5b95c3), to(#4d7eaf));
+ background-image: -webkit-linear-gradient(top, #5b95c3, #4d7eaf);
+ background-image: -o-linear-gradient(top, #5b95c3, #4d7eaf);
+ background-image: linear-gradient(top, #5b95c3, #4d7eaf);
+ background-repeat: repeat-x;
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5b95c3', endColorstr='#4d7eaf', GradientType=0);
+ background-color: #578fbe;
+ background-image: -moz-linear-gradient(top, #5b95c3, #5991be 25%, #4f81b4 50%, #4d7eaf 75%);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5b95c3), color-stop(25%, #5991be), color-stop(50%, #4f81b4), to(75%, #4d7eaf));
+ background-image: -webkit-linear-gradient(top, #5b95c3, #5991be 25%, #4f81b4 50%, #4d7eaf 75%);
+ background-image: -o-linear-gradient(top, #5b95c3, #5991be 25%, #4f81b4 50%, #4d7eaf 75%);
+ background-image: linear-gradient(to bottom, #5b95c3, #5991be 25%, #4f81b4 50%, #4d7eaf 75%);
+ background-repeat: no-repeat;
+ border-color: #5991be;
+ border-color: #5991be #5991be #396a92;
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) fadein(rgba(0, 0, 0, 0.1), 15%);
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5b95c3', endColorstr='#4d7eaf', GradientType=0);
+ color: white;
+ font-weight: 500;
+ text-shadow: 0 0 0 rgba(0, 0, 0, 0);
+}
+/* line 456, ../../app/assets/stylesheets/web.css.scss */
+.btn-group .btn-info.dropdown-toggle {
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+ background-color: #558bbb;
+ background-image: -moz-linear-gradient(top, #5b95c3, #4d7eaf);
+ background-image: -ms-linear-gradient(top, #5b95c3, #4d7eaf);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5b95c3), to(#4d7eaf));
+ background-image: -webkit-linear-gradient(top, #5b95c3, #4d7eaf);
+ background-image: -o-linear-gradient(top, #5b95c3, #4d7eaf);
+ background-image: linear-gradient(top, #5b95c3, #4d7eaf);
+ background-repeat: repeat-x;
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5b95c3', endColorstr='#4d7eaf', GradientType=0);
+ background-color: #578fbe;
+ background-image: -moz-linear-gradient(top, #5b95c3, #5991be 25%, #4f81b4 50%, #4d7eaf 75%);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5b95c3), color-stop(25%, #5991be), color-stop(50%, #4f81b4), to(75%, #4d7eaf));
+ background-image: -webkit-linear-gradient(top, #5b95c3, #5991be 25%, #4f81b4 50%, #4d7eaf 75%);
+ background-image: -o-linear-gradient(top, #5b95c3, #5991be 25%, #4f81b4 50%, #4d7eaf 75%);
+ background-image: linear-gradient(to bottom, #5b95c3, #5991be 25%, #4f81b4 50%, #4d7eaf 75%);
+ background-repeat: no-repeat;
+ border-color: #5991be;
+ border-color: #5991be #5991be #396a92;
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) fadein(rgba(0, 0, 0, 0.1), 15%);
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5b95c3', endColorstr='#4d7eaf', GradientType=0);
+ color: white !important;
+ text-shadow: 0 0 0 rgba(0, 0, 0, 0);
+}
+/* line 457, ../../app/assets/stylesheets/web.css.scss */
+.btn-group .btn-info.dropdown-toggle:hover, .btn-group .btn-info.dropdown-toggle:active, .btn-group .btn-info.dropdown-toggle.active, .btn-group .btn-info.dropdown-toggle:focus {
+ background-color: #3b70a5 !important;
+ color: white !important;
+ outline: 0 !important;
+}
+/* line 458, ../../app/assets/stylesheets/web.css.scss */
+.btn-group .btn-info.dropdown-toggle:visited {
+ color: white !important;
+}
+/* line 459, ../../app/assets/stylesheets/web.css.scss */
+.btn-group .btn-info.dropdown-toggle.disabled {
+ color: #888888 !important;
+}
+/* line 460, ../../app/assets/stylesheets/web.css.scss */
+.btn-group .btn-info.dropdown-toggle.disabled:hover {
+ color: #888888 !important;
+}
+/* line 463, ../../app/assets/stylesheets/web.css.scss */
+.btn-group .btn-info:hover, .btn-group .btn-info:active, .btn-group .btn-info.active, .btn-group .btn-info:focus {
+ background-color: #3b70a5 !important;
+ color: white !important;
+ outline: 0 !important;
+}
+/* line 464, ../../app/assets/stylesheets/web.css.scss */
+.btn-group .btn-info:visited {
+ color: white !important;
+}
+/* line 465, ../../app/assets/stylesheets/web.css.scss */
+.btn-group .btn-info.disabled {
+ color: #888888 !important;
+}
+/* line 466, ../../app/assets/stylesheets/web.css.scss */
+.btn-group .btn-info.disabled:hover {
+ color: #888888 !important;
+}
+/* line 469, ../../app/assets/stylesheets/web.css.scss */
+.btn-group .btn-primary {
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.35);
+ background-color: #449142;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+ background-color: #4b9d4b;
+ background-image: -moz-linear-gradient(top, #51a652, #449142);
+ background-image: -ms-linear-gradient(top, #51a652, #449142);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#51a652), to(#449142));
+ background-image: -webkit-linear-gradient(top, #51a652, #449142);
+ background-image: -o-linear-gradient(top, #51a652, #449142);
+ background-image: linear-gradient(top, #51a652, #449142);
+ background-repeat: repeat-x;
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#51a652', endColorstr='#449142', GradientType=0);
+ background-color: #4da04e;
+ background-image: -moz-linear-gradient(top, #51a652, #4fa24d 25%, #469446 50%, #449142 75%);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#51a652), color-stop(25%, #4fa24d), color-stop(50%, #469446), to(75%, #449142));
+ background-image: -webkit-linear-gradient(top, #51a652, #4fa24d 25%, #469446 50%, #449142 75%);
+ background-image: -o-linear-gradient(top, #51a652, #4fa24d 25%, #469446 50%, #449142 75%);
+ background-image: linear-gradient(to bottom, #51a652, #4fa24d 25%, #469446 50%, #449142 75%);
+ background-repeat: no-repeat;
+ border-color: #4fa24d;
+ border-color: #4fa24d #4fa24d #366e34;
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) fadein(rgba(0, 0, 0, 0.1), 15%);
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#51a652', endColorstr='#449142', GradientType=0);
+ color: white;
+}
+/* line 470, ../../app/assets/stylesheets/web.css.scss */
+.btn-group .btn-primary.dropdown-toggle {
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.35);
+ background-color: #449142;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+ background-color: #4b9d4b;
+ background-image: -moz-linear-gradient(top, #51a652, #449142);
+ background-image: -ms-linear-gradient(top, #51a652, #449142);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#51a652), to(#449142));
+ background-image: -webkit-linear-gradient(top, #51a652, #449142);
+ background-image: -o-linear-gradient(top, #51a652, #449142);
+ background-image: linear-gradient(top, #51a652, #449142);
+ background-repeat: repeat-x;
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#51a652', endColorstr='#449142', GradientType=0);
+ background-color: #4da04e;
+ background-image: -moz-linear-gradient(top, #51a652, #4fa24d 25%, #469446 50%, #449142 75%);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#51a652), color-stop(25%, #4fa24d), color-stop(50%, #469446), to(75%, #449142));
+ background-image: -webkit-linear-gradient(top, #51a652, #4fa24d 25%, #469446 50%, #449142 75%);
+ background-image: -o-linear-gradient(top, #51a652, #4fa24d 25%, #469446 50%, #449142 75%);
+ background-image: linear-gradient(to bottom, #51a652, #4fa24d 25%, #469446 50%, #449142 75%);
+ background-repeat: no-repeat;
+ border-color: #4fa24d;
+ border-color: #4fa24d #4fa24d #366e34;
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) fadein(rgba(0, 0, 0, 0.1), 15%);
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#51a652', endColorstr='#449142', GradientType=0);
+ color: white;
+}
+/* line 471, ../../app/assets/stylesheets/web.css.scss */
+.btn-group .btn-primary.dropdown-toggle:hover, .btn-group .btn-primary.dropdown-toggle:active, .btn-group .btn-primary.dropdown-toggle.active, .btn-group .btn-primary.dropdown-toggle:focus {
+ background-color: #3b8539 !important;
+ color: white !important;
+ outline: 0 !important;
+}
+/* line 473, ../../app/assets/stylesheets/web.css.scss */
+.btn-group .btn-primary:hover, .btn-group .btn-primary:active, .btn-group .btn-primary.active, .btn-group .btn-primary:focus {
+ background-color: #3b8539 !important;
+ color: white !important;
+ outline: 0 !important;
+}
+/* line 474, ../../app/assets/stylesheets/web.css.scss */
+.btn-group .btn-primary:visited {
+ color: white !important;
+}
+
+/* line 478, ../../app/assets/stylesheets/web.css.scss */
+.btn-group.open .btn-info {
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+ background-color: #558bbb;
+ background-image: -moz-linear-gradient(top, #5b95c3, #4d7eaf);
+ background-image: -ms-linear-gradient(top, #5b95c3, #4d7eaf);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5b95c3), to(#4d7eaf));
+ background-image: -webkit-linear-gradient(top, #5b95c3, #4d7eaf);
+ background-image: -o-linear-gradient(top, #5b95c3, #4d7eaf);
+ background-image: linear-gradient(top, #5b95c3, #4d7eaf);
+ background-repeat: repeat-x;
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5b95c3', endColorstr='#4d7eaf', GradientType=0);
+ background-color: #578fbe;
+ background-image: -moz-linear-gradient(top, #5b95c3, #5991be 25%, #4f81b4 50%, #4d7eaf 75%);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5b95c3), color-stop(25%, #5991be), color-stop(50%, #4f81b4), to(75%, #4d7eaf));
+ background-image: -webkit-linear-gradient(top, #5b95c3, #5991be 25%, #4f81b4 50%, #4d7eaf 75%);
+ background-image: -o-linear-gradient(top, #5b95c3, #5991be 25%, #4f81b4 50%, #4d7eaf 75%);
+ background-image: linear-gradient(to bottom, #5b95c3, #5991be 25%, #4f81b4 50%, #4d7eaf 75%);
+ background-repeat: no-repeat;
+ border-color: #5991be;
+ border-color: #5991be #5991be #396a92;
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) fadein(rgba(0, 0, 0, 0.1), 15%);
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5b95c3', endColorstr='#4d7eaf', GradientType=0);
+ color: white;
+ font-weight: 500;
+ text-shadow: 0 0 0 rgba(0, 0, 0, 0);
+}
+/* line 479, ../../app/assets/stylesheets/web.css.scss */
+.btn-group.open .btn-info.dropdown-toggle {
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+ background-color: #558bbb;
+ background-image: -moz-linear-gradient(top, #5b95c3, #4d7eaf);
+ background-image: -ms-linear-gradient(top, #5b95c3, #4d7eaf);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5b95c3), to(#4d7eaf));
+ background-image: -webkit-linear-gradient(top, #5b95c3, #4d7eaf);
+ background-image: -o-linear-gradient(top, #5b95c3, #4d7eaf);
+ background-image: linear-gradient(top, #5b95c3, #4d7eaf);
+ background-repeat: repeat-x;
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5b95c3', endColorstr='#4d7eaf', GradientType=0);
+ background-color: #578fbe;
+ background-image: -moz-linear-gradient(top, #5b95c3, #5991be 25%, #4f81b4 50%, #4d7eaf 75%);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5b95c3), color-stop(25%, #5991be), color-stop(50%, #4f81b4), to(75%, #4d7eaf));
+ background-image: -webkit-linear-gradient(top, #5b95c3, #5991be 25%, #4f81b4 50%, #4d7eaf 75%);
+ background-image: -o-linear-gradient(top, #5b95c3, #5991be 25%, #4f81b4 50%, #4d7eaf 75%);
+ background-image: linear-gradient(to bottom, #5b95c3, #5991be 25%, #4f81b4 50%, #4d7eaf 75%);
+ background-repeat: no-repeat;
+ border-color: #5991be;
+ border-color: #5991be #5991be #396a92;
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) fadein(rgba(0, 0, 0, 0.1), 15%);
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5b95c3', endColorstr='#4d7eaf', GradientType=0);
+ color: white !important;
+ text-shadow: 0 0 0 rgba(0, 0, 0, 0);
+}
+/* line 480, ../../app/assets/stylesheets/web.css.scss */
+.btn-group.open .btn-info.dropdown-toggle:hover, .btn-group.open .btn-info.dropdown-toggle:active, .btn-group.open .btn-info.dropdown-toggle.active, .btn-group.open .btn-info.dropdown-toggle:focus {
+ background-color: #3b70a5 !important;
+ color: white !important;
+ outline: 0 !important;
+}
+/* line 481, ../../app/assets/stylesheets/web.css.scss */
+.btn-group.open .btn-info.dropdown-toggle:visited {
+ color: white !important;
+}
+/* line 482, ../../app/assets/stylesheets/web.css.scss */
+.btn-group.open .btn-info.dropdown-toggle.disabled {
+ color: #888888 !important;
+}
+/* line 483, ../../app/assets/stylesheets/web.css.scss */
+.btn-group.open .btn-info.dropdown-toggle.disabled:hover {
+ color: #888888 !important;
+}
+/* line 486, ../../app/assets/stylesheets/web.css.scss */
+.btn-group.open .btn-info:hover, .btn-group.open .btn-info:active, .btn-group.open .btn-info.active, .btn-group.open .btn-info:focus {
+ background-color: #3b70a5 !important;
+ color: white !important;
+ outline: 0 !important;
+}
+/* line 487, ../../app/assets/stylesheets/web.css.scss */
+.btn-group.open .btn-info:visited {
+ color: white !important;
+}
+/* line 488, ../../app/assets/stylesheets/web.css.scss */
+.btn-group.open .btn-info.disabled {
+ color: #888888 !important;
+}
+/* line 489, ../../app/assets/stylesheets/web.css.scss */
+.btn-group.open .btn-info.disabled:hover {
+ color: #888888 !important;
+}
+
+/* line 493, ../../app/assets/stylesheets/web.css.scss */
+.btn-group {
+ -webkit-border-radius: 0;
+ -moz-border-radius: 0;
+ -ms-border-radius: 0;
+ -o-border-radius: 0;
+ border-radius: 0;
+}
+/* line 494, ../../app/assets/stylesheets/web.css.scss */
+.btn-group > a {
+ position: relative;
+ float: left;
+ margin-left: -1px;
+ -webkit-border-radius: 0;
+ -moz-border-radius: 0;
+ -ms-border-radius: 0;
+ -o-border-radius: 0;
+ border-radius: 0;
+}
+/* line 495, ../../app/assets/stylesheets/web.css.scss */
+.btn-group > a:first-child {
+ -webkit-border-radius: 5px 0 0 5px;
+ -moz-border-radius: 5px 0 0 5px;
+ -ms-border-radius: 5px 0 0 5px;
+ -o-border-radius: 5px 0 0 5px;
+ border-radius: 5px 0 0 5px;
+}
+/* line 496, ../../app/assets/stylesheets/web.css.scss */
+.btn-group > a.dropdown-toggle {
+ -webkit-border-radius: 0 5px 5px 0;
+ -moz-border-radius: 0 5px 5px 0;
+ -ms-border-radius: 0 5px 5px 0;
+ -o-border-radius: 0 5px 5px 0;
+ border-radius: 0 5px 5px 0;
+}
+
+/* line 499, ../../app/assets/stylesheets/web.css.scss */
+.open .dropdown-menu {
+ left: auto;
+ top: auto;
+}
+
+/* line 500, ../../app/assets/stylesheets/web.css.scss */
+.btn-last-type {
+ -webkit-border-top-right-radius: 5px !important;
+ -webkit-border-bottom-right-radius: 5px !important;
+ -moz-border-radius-topright: 5px !important;
+ -moz-border-radius-bottomright: 5px !important;
+ border-top-right-radius: 5px !important;
+ border-bottom-right-radius: 5px !important;
+}
+
+/* line 502, ../../app/assets/stylesheets/web.css.scss */
+.btn-group > .btn:first-child:active,
+.btn-group > .btn:first-child.active {
+ -moz-border-radius-topleft: 5px;
+ -webkit-border-top-left-radius: 5px;
+ border-top-left-radius: 5px;
+ -moz-border-radius-bottomleft: 5px;
+ -webkit-border-bottom-left-radius: 5px;
+ border-bottom-left-radius: 5px;
+ outline: 0 !important;
+}
+
+/* line 504, ../../app/assets/stylesheets/web.css.scss */
+.btn-group > .btn:last-child.active,
+.btn-group > .btn:last-child:active {
+ -moz-border-radius-topright: 5px;
+ -webkit-border-top-right-radius: 5px;
+ border-top-right-radius: 5px;
+ -moz-border-radius-bottomright: 5px;
+ -webkit-border-bottom-right-radius: 5px;
+ border-bottom-right-radius: 5px;
+ outline: 0 !important;
+}
+
+/* line 506, ../../app/assets/stylesheets/web.css.scss */
+.buttons-radio > .btn.active, .buttons-radio > .btn:active {
+ overflow: auto;
+ outline: 0 !important;
+ background-color: #4d7eaf !important;
+ color: white !important;
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.35);
+ border-color: rgba(255, 255, 255, 0);
+ -webkit-background-clip: padding-box;
+ -moz-background-clip: padding-box;
+ background-clip: padding-box;
+}
+
+/* line 508, ../../app/assets/stylesheets/web.css.scss */
+.btn-mark-complete {
+ font-size: 11px !important;
+ font-weight: bold;
+ height: 18px;
+ line-height: 9px !important;
+}
+
+/* line 509, ../../app/assets/stylesheets/web.css.scss */
+#category-options-button {
+ border-radius: 0 5px 5px 0;
+}
+
+/* line 511, ../../app/assets/stylesheets/web.css.scss */
+.btn.red:hover {
+ text-decoration: underline;
+}
+/* line 512, ../../app/assets/stylesheets/web.css.scss */
+.btn.red > span {
+ font-size: 18px;
+}
+
+/* line 515, ../../app/assets/stylesheets/web.css.scss */
+.nav-pills > li {
+ margin-right: 3px;
+ padding: 0px 5px !important;
+}
+/* line 516, ../../app/assets/stylesheets/web.css.scss */
+.nav-pills > li.active, .nav-pills > li.active:hover, .nav-pills > li:hover {
+ background-color: #ddeaf4 !important;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+}
+
+/* line 518, ../../app/assets/stylesheets/web.css.scss */
+.nav-tabs {
+ margin-bottom: 5px;
+}
+/* line 520, ../../app/assets/stylesheets/web.css.scss */
+.nav-tabs > li > a {
+ padding-bottom: 4px;
+ padding-top: 4px;
+}
+/* line 521, ../../app/assets/stylesheets/web.css.scss */
+.nav-tabs > li.active > a {
+ font-weight: bold;
+}
+
+/* line 525, ../../app/assets/stylesheets/web.css.scss */
+img {
+ max-width: 100%;
+ max-height: 100%;
+ outline: 0 !important;
+}
+/* line 526, ../../app/assets/stylesheets/web.css.scss */
+img:hover, img:focus {
+ outline: 0 !important;
+}
+
+/* line 528, ../../app/assets/stylesheets/web.css.scss */
+.image-wrapper {
+ line-height: 0;
+ overflow: hidden;
+ -webkit-border-radius: 2px;
+ -moz-border-radius: 2px;
+ -ms-border-radius: 2px;
+ -o-border-radius: 2px;
+ border-radius: 2px;
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ user-select: none;
+ background-color: white;
+}
+/* line 529, ../../app/assets/stylesheets/web.css.scss */
+.image-wrapper.image-wrapper-mini {
+ max-width: 15px;
+ max-height: 15px;
+ min-width: 15px;
+ min-height: 15px;
+}
+/* line 530, ../../app/assets/stylesheets/web.css.scss */
+.image-wrapper.image-wrapper-small {
+ max-width: 22px;
+ max-height: 22px;
+ min-width: 22px;
+ min-height: 22px;
+}
+/* line 531, ../../app/assets/stylesheets/web.css.scss */
+.image-wrapper.image-wrapper-medium {
+ max-width: 30px;
+ max-height: 30px;
+ min-width: 22px;
+ min-height: 22px;
+}
+/* line 532, ../../app/assets/stylesheets/web.css.scss */
+.image-wrapper.image-wrapper-large {
+ max-width: 150px;
+ max-height: 150px;
+ min-width: 150px;
+ min-height: 150px;
+}
+/* line 533, ../../app/assets/stylesheets/web.css.scss */
+.image-wrapper.image-wrapper-xlarge {
+ max-width: 430px;
+ max-height: 430px;
+ min-width: 430px;
+ min-height: 430px;
+}
+/* line 534, ../../app/assets/stylesheets/web.css.scss */
+.image-wrapper.image-wrapper-liquid {
+ min-height: auto;
+ min-width: auto;
+ width: auto;
+}
+/* line 535, ../../app/assets/stylesheets/web.css.scss */
+.image-wrapper.image-wrapper-bordered {
+ border: 1px solid #d7dadf;
+}
+/* line 536, ../../app/assets/stylesheets/web.css.scss */
+.image-wrapper.image-wrapper-shadowed {
+ -webkit-box-shadow: #dddddd 1px 1px 2px;
+ -moz-box-shadow: #dddddd 1px 1px 2px;
+ box-shadow: #dddddd 1px 1px 2px;
+}
+/* line 537, ../../app/assets/stylesheets/web.css.scss */
+.image-wrapper.image-wrapper-padded {
+ padding: 2px;
+}
+/* line 538, ../../app/assets/stylesheets/web.css.scss */
+.image-wrapper.image-wrapper-transparent {
+ background-color: transparent;
+}
+/* line 540, ../../app/assets/stylesheets/web.css.scss */
+.image-wrapper.image-wrapper-link:hover {
+ border-color: #F1F3F5;
+ -webkit-box-shadow: #4d80b4 0 1px 3px;
+ -moz-box-shadow: #4d80b4 0 1px 3px;
+ box-shadow: #4d80b4 0 1px 3px;
+ cursor: pointer;
+}
+/* line 542, ../../app/assets/stylesheets/web.css.scss */
+.image-wrapper img {
+ display: inline-block;
+}
+
+/* line 545, ../../app/assets/stylesheets/web.css.scss */
+.module-wrapper {
+ width: 100%;
+ clear: both;
+}
+
+/* line 546, ../../app/assets/stylesheets/web.css.scss */
+.module {
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+ width: 100%;
+ min-width: 100%;
+ max-width: 100%;
+ padding: 0;
+ border: 1px solid #d7dadf;
+ float: left;
+ overflow: hidden;
+ margin: 10px 0;
+}
+/* line 547, ../../app/assets/stylesheets/web.css.scss */
+.module .module-title {
+ overflow: hidden;
+ padding: 0 8px;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+ background-color: #f3f4f5;
+ background-image: -moz-linear-gradient(top, #f8f9fa, #edeeef);
+ background-image: -ms-linear-gradient(top, #f8f9fa, #edeeef);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f8f9fa), to(#edeeef));
+ background-image: -webkit-linear-gradient(top, #f8f9fa, #edeeef);
+ background-image: -o-linear-gradient(top, #f8f9fa, #edeeef);
+ background-image: linear-gradient(top, #f8f9fa, #edeeef);
+ background-repeat: repeat-x;
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f8f9fa', endColorstr='#edeeef', GradientType=0);
+ background-color: #f5f6f7;
+ background-image: -moz-linear-gradient(top, #f8f9fa, #f4f5f6 25%, #f2f3f4 50%, #edeeef 75%);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f8f9fa), color-stop(25%, #f4f5f6), color-stop(50%, #f2f3f4), to(75%, #edeeef));
+ background-image: -webkit-linear-gradient(top, #f8f9fa, #f4f5f6 25%, #f2f3f4 50%, #edeeef 75%);
+ background-image: -o-linear-gradient(top, #f8f9fa, #f4f5f6 25%, #f2f3f4 50%, #edeeef 75%);
+ background-image: linear-gradient(to bottom, #f8f9fa, #f4f5f6 25%, #f2f3f4 50%, #edeeef 75%);
+ background-repeat: no-repeat;
+ border-color: #f4f5f6;
+ border-color: #f4f5f6 #f4f5f6 #cacfd4;
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) fadein(rgba(0, 0, 0, 0.1), 15%);
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f8f9fa', endColorstr='#edeeef', GradientType=0);
+ -webkit-border-radius: 0;
+ -moz-border-radius: 0;
+ -ms-border-radius: 0;
+ -o-border-radius: 0;
+ border-radius: 0;
+ font-size: 14px;
+ color: #515c65;
+ text-shadow: 0px 1px 0px white;
+ line-height: 26px;
+ font-weight: bold;
+ border-bottom: 1px solid #d7dadf;
+}
+/* line 548, ../../app/assets/stylesheets/web.css.scss */
+.module .module-title .btn-no-bg {
+ line-height: 26px;
+}
+/* line 550, ../../app/assets/stylesheets/web.css.scss */
+.module .module-content {
+ overflow: hidden;
+ padding: 5px 10px;
+ border-top: none;
+}
+/* line 551, ../../app/assets/stylesheets/web.css.scss */
+.module.half {
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+ width: 49.5%;
+ min-width: 49.5%;
+ max-width: 49.5%;
+ padding: 0;
+ border: 1px solid #d7dadf;
+ float: left;
+}
+/* line 552, ../../app/assets/stylesheets/web.css.scss */
+.module.half.pull-right {
+ display: inline;
+ float: right;
+ margin-right: 0;
+}
+
+/* line 555, ../../app/assets/stylesheets/web.css.scss */
+.module-list {
+ overflow: visible;
+}
+/* line 556, ../../app/assets/stylesheets/web.css.scss */
+.module-list .module-list-header {
+ border-bottom: 2px solid #e1e4e6;
+ font-weight: 500;
+ color: #6d777e;
+ overflow: auto;
+}
+/* line 557, ../../app/assets/stylesheets/web.css.scss */
+.module-list .module-list-header > li {
+ float: left;
+}
+/* line 558, ../../app/assets/stylesheets/web.css.scss */
+.module-list .module-list-header > li:last-child {
+ float: right;
+}
+/* line 562, ../../app/assets/stylesheets/web.css.scss */
+.module-list .module-list-content.selectable > li:hover {
+ background-color: #fdfde0;
+ cursor: pointer;
+}
+/* line 563, ../../app/assets/stylesheets/web.css.scss */
+.module-list .module-list-content > li {
+ line-height: 14px;
+ border-bottom: 1px dotted #e4e8ec;
+ color: #46525b;
+}
+/* line 564, ../../app/assets/stylesheets/web.css.scss */
+.module-list .module-list-content > li:last-child {
+ border-bottom: none;
+}
+/* line 567, ../../app/assets/stylesheets/web.css.scss */
+.module-list.half {
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+ width: 49.5%;
+ min-width: 49.5%;
+ max-width: 49.5%;
+ padding: 0;
+ border: 0 solid #d7dadf;
+ float: left;
+}
+/* line 568, ../../app/assets/stylesheets/web.css.scss */
+.module-list.half.pull-right {
+ display: inline;
+ float: right;
+ margin-right: 0;
+}
+
+/* line 571, ../../app/assets/stylesheets/web.css.scss */
+.module-stacked-list {
+ margin-bottom: 20px;
+ clear: both;
+}
+/* line 572, ../../app/assets/stylesheets/web.css.scss */
+.module-stacked-list > .module {
+ margin: 0;
+ -webkit-border-radius: 0;
+ -moz-border-radius: 0;
+ -ms-border-radius: 0;
+ -o-border-radius: 0;
+ border-radius: 0;
+ border-top: none;
+}
+/* line 573, ../../app/assets/stylesheets/web.css.scss */
+.module-stacked-list > .module:last-child {
+ -webkit-border-radius: 0 0 5px 5px;
+ -moz-border-radius: 0 0 5px 5px;
+ -ms-border-radius: 0 0 5px 5px;
+ -o-border-radius: 0 0 5px 5px;
+ border-radius: 0 0 5px 5px;
+ border-bottom: 1px solid #d7dadf;
+ margin-bottom: 10px;
+}
+/* line 574, ../../app/assets/stylesheets/web.css.scss */
+.module-stacked-list > .module:first-child {
+ -webkit-border-radius: 5px 5px 0 0;
+ -moz-border-radius: 5px 5px 0 0;
+ -ms-border-radius: 5px 5px 0 0;
+ -o-border-radius: 5px 5px 0 0;
+ border-radius: 5px 5px 0 0;
+ border-top: 1px solid #d7dadf;
+}
+/* line 576, ../../app/assets/stylesheets/web.css.scss */
+.module-stacked-list > .module .ListWell > li:nth-child(2n) {
+ background-color: transparent;
+}
+/* line 577, ../../app/assets/stylesheets/web.css.scss */
+.module-stacked-list > .module .ListWell > li > div {
+ padding: 2px 10px;
+}
+/* line 580, ../../app/assets/stylesheets/web.css.scss */
+.module-stacked-list > .module:first-child:last-child {
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+ margin-bottom: 10px;
+}
+/* line 581, ../../app/assets/stylesheets/web.css.scss */
+.module-stacked-list > .module > .module-title {
+ border-bottom: none;
+ border-top: none;
+ line-height: 22px;
+ background-image: none;
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
+ background-color: white;
+}
+/* line 582, ../../app/assets/stylesheets/web.css.scss */
+.module-stacked-list > .module > .module-title h5 {
+ font-size: 13px;
+ font-weight: 500;
+ line-height: 22px;
+}
+
+/* line 585, ../../app/assets/stylesheets/web.css.scss */
+.module-title + table.table {
+ border: none;
+ -webkit-border-radius: 0;
+ -moz-border-radius: 0;
+ -ms-border-radius: 0;
+ -o-border-radius: 0;
+ border-radius: 0;
+ font-weight: normal;
+}
+
+/* line 586, ../../app/assets/stylesheets/web.css.scss */
+.module > .ListWell {
+ border: none;
+ margin-bottom: 0;
+ -webkit-border-radius: 0 0 5px 5px;
+ -moz-border-radius: 0 0 5px 5px;
+ -ms-border-radius: 0 0 5px 5px;
+ -o-border-radius: 0 0 5px 5px;
+ border-radius: 0 0 5px 5px;
+}
+/* line 587, ../../app/assets/stylesheets/web.css.scss */
+.module > .ListWell:first-child li {
+ -webkit-border-radius: 0 0 5px 5px;
+ -moz-border-radius: 0 0 5px 5px;
+ -ms-border-radius: 0 0 5px 5px;
+ -o-border-radius: 0 0 5px 5px;
+ border-radius: 0 0 5px 5px;
+}
+
+/* line 590, ../../app/assets/stylesheets/web.css.scss */
+.analytics-list > li,
+.analytics-header-list > li {
+ clear: both;
+ width: 100%;
+ overflow: auto;
+}
+/* line 591, ../../app/assets/stylesheets/web.css.scss */
+.analytics-list > li > div,
+.analytics-header-list > li > div {
+ float: left;
+}
+/* line 592, ../../app/assets/stylesheets/web.css.scss */
+.analytics-list > li > div:first-child,
+.analytics-header-list > li > div:first-child {
+ width: 33%;
+}
+/* line 593, ../../app/assets/stylesheets/web.css.scss */
+.analytics-list > li > div:first-child + div,
+.analytics-header-list > li > div:first-child + div {
+ width: 33%;
+}
+/* line 594, ../../app/assets/stylesheets/web.css.scss */
+.analytics-list > li > div:first-child + div + div,
+.analytics-header-list > li > div:first-child + div + div {
+ width: 34%;
+}
+/* line 597, ../../app/assets/stylesheets/web.css.scss */
+.analytics-list > li > div > div,
+.analytics-header-list > li > div > div {
+ overflow: auto;
+ padding: 3px 10px;
+}
+
+/* line 600, ../../app/assets/stylesheets/web.css.scss */
+.analytics-header-list > li {
+ font-weight: bold;
+ color: #76797a;
+ border-bottom: 2px solid #eeeeee;
+}
+
+/* line 602, ../../app/assets/stylesheets/web.css.scss */
+.analytics-list > li {
+ display: hidden;
+ border-bottom: 1px solid #efeff3;
+ font-weight: bold;
+ color: #999;
+ font-size: 11px;
+ line-height: 14px;
+}
+/* line 603, ../../app/assets/stylesheets/web.css.scss */
+.analytics-list > li > div > div {
+ padding: 5px 10px;
+ text-shadow: 0px 1px 0px white;
+ overflow: visible;
+ text-overflow: clip;
+ white-space: normal;
+ word-wrap: break-word;
+}
+/* line 604, ../../app/assets/stylesheets/web.css.scss */
+.analytics-list > li > div > div:last-child {
+ border-bottom: none;
+}
+/* line 606, ../../app/assets/stylesheets/web.css.scss */
+.analytics-list > li:last-child {
+ border-bottom: none;
+}
+/* line 608, ../../app/assets/stylesheets/web.css.scss */
+.analytics-list.selectable > li:hover {
+ background-image: none;
+ cursor: pointer;
+ background-color: #fdfde0;
+}
+
+/* line 610, ../../app/assets/stylesheets/web.css.scss */
+.parent-expand-collapse-toggle {
+ cursor: pointer;
+}
+
+/* line 611, ../../app/assets/stylesheets/web.css.scss */
+.expand-collapse-toggle {
+ cursor: pointer;
+}
+/* line 612, ../../app/assets/stylesheets/web.css.scss */
+.expand-collapse-toggle i {
+ vertical-align: middle;
+}
+/* line 613, ../../app/assets/stylesheets/web.css.scss */
+.expand-collapse-toggle i.show {
+ display: inline-block !important;
+}
+
+/* line 616, ../../app/assets/stylesheets/web.css.scss */
+table.table {
+ background-color: white;
+ color: #3e4852;
+ font-size: 13px;
+ width: 100%;
+ overflow: visible;
+ text-overflow: clip;
+ white-space: normal;
+ word-wrap: break-word;
+ margin-bottom: 0;
+ border: 1px solid #d7dadf;
+}
+/* line 617, ../../app/assets/stylesheets/web.css.scss */
+table.table th {
+ overflow: visible;
+ text-overflow: clip;
+ white-space: normal;
+ word-wrap: break-word;
+ background-color: #eee;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+ background-color: #f3f4f5;
+ background-image: -moz-linear-gradient(top, #f8f9fa, #edeeef);
+ background-image: -ms-linear-gradient(top, #f8f9fa, #edeeef);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f8f9fa), to(#edeeef));
+ background-image: -webkit-linear-gradient(top, #f8f9fa, #edeeef);
+ background-image: -o-linear-gradient(top, #f8f9fa, #edeeef);
+ background-image: linear-gradient(top, #f8f9fa, #edeeef);
+ background-repeat: repeat-x;
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f8f9fa', endColorstr='#edeeef', GradientType=0);
+ background-color: #f5f6f7;
+ background-image: -moz-linear-gradient(top, #f8f9fa, #f4f5f6 25%, #f2f3f4 50%, #edeeef 75%);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f8f9fa), color-stop(25%, #f4f5f6), color-stop(50%, #f2f3f4), to(75%, #edeeef));
+ background-image: -webkit-linear-gradient(top, #f8f9fa, #f4f5f6 25%, #f2f3f4 50%, #edeeef 75%);
+ background-image: -o-linear-gradient(top, #f8f9fa, #f4f5f6 25%, #f2f3f4 50%, #edeeef 75%);
+ background-image: linear-gradient(to bottom, #f8f9fa, #f4f5f6 25%, #f2f3f4 50%, #edeeef 75%);
+ background-repeat: no-repeat;
+ border-color: #f4f5f6;
+ border-color: #f4f5f6 #f4f5f6 #cacfd4;
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) fadein(rgba(0, 0, 0, 0.1), 15%);
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f8f9fa', endColorstr='#edeeef', GradientType=0);
+ -webkit-border-radius: 0;
+ -moz-border-radius: 0;
+ -ms-border-radius: 0;
+ -o-border-radius: 0;
+ border-radius: 0;
+ color: #515c65;
+ text-shadow: 0px 1px 0px white;
+ line-height: 26px;
+ font-weight: bold;
+ border: none;
+ border-bottom: 1px solid #d7dadf !important;
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ user-select: none;
+}
+/* line 618, ../../app/assets/stylesheets/web.css.scss */
+table.table th > div {
+ margin: 0 !important;
+ padding-top: 0px;
+ padding-bottom: 0px;
+}
+/* line 620, ../../app/assets/stylesheets/web.css.scss */
+table.table td {
+ vertical-align: middle;
+ border-top: none;
+ color: #3e4852;
+ overflow: visible;
+ text-overflow: clip;
+ white-space: normal;
+ word-wrap: break-word;
+ text-shadow: 0px 1px 0px white;
+}
+/* line 621, ../../app/assets/stylesheets/web.css.scss */
+table.table td div {
+ text-shadow: 0px 1px 0px white;
+ text-shadow: 0 1px 0 white !important;
+}
+/* line 623, ../../app/assets/stylesheets/web.css.scss */
+table.table select {
+ width: 100%;
+}
+/* line 624, ../../app/assets/stylesheets/web.css.scss */
+table.table .controls {
+ margin-bottom: 0;
+}
+/* line 625, ../../app/assets/stylesheets/web.css.scss */
+table.table .td-right-align {
+ text-align: right;
+}
+
+/* line 627, ../../app/assets/stylesheets/web.css.scss */
+.table th, .table td {
+ padding: 0;
+}
+
+/* line 628, ../../app/assets/stylesheets/web.css.scss */
+.table th > div, .table td > div {
+ padding: 8px;
+}
+
+/* line 631, ../../app/assets/stylesheets/web.css.scss */
+.table-striped tbody > tr:nth-child(2n+1) td, .table-striped tbody > tr:nth-child(2n+1) th {
+ background-color: white;
+}
+/* line 632, ../../app/assets/stylesheets/web.css.scss */
+.table-striped tbody > tr:nth-child(odd) {
+ background-color: white;
+}
+/* line 633, ../../app/assets/stylesheets/web.css.scss */
+.table-striped tbody > tr:nth-child(even) {
+ background-color: #F6F6F7;
+}
+
+/* line 636, ../../app/assets/stylesheets/web.css.scss */
+.table-selectable tbody > tr > td {
+ border-top: 1px solid white;
+}
+/* line 637, ../../app/assets/stylesheets/web.css.scss */
+.table-selectable tbody > tr:hover td {
+ background-color: #fdfde0;
+ cursor: pointer !important;
+}
+/* line 638, ../../app/assets/stylesheets/web.css.scss */
+.table-selectable tbody > tr.active td {
+ background: none;
+ background-color: #ddeaf4;
+ border-top: 1px solid #b6dae8;
+}
+
+/* line 640, ../../app/assets/stylesheets/web.css.scss */
+td.zero-results {
+ text-align: center;
+}
+
+/* line 641, ../../app/assets/stylesheets/web.css.scss */
+.table-fixed {
+ table-layout: fixed !important;
+}
+
+/* line 642, ../../app/assets/stylesheets/web.css.scss */
+.table.table-outlined {
+ border: 1px solid #dddddd;
+ border-collapse: separate;
+ *border-collapse: collapsed;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+}
+/* line 644, ../../app/assets/stylesheets/web.css.scss */
+.table.table-outlined thead:first-child tr:first-child th:first-child,
+.table.table-outlined tbody:first-child tr:first-child td:first-child {
+ -webkit-border-radius: 5px 0 0 0;
+ -moz-border-radius: 5px 0 0 0;
+ -ms-border-radius: 5px 0 0 0;
+ -o-border-radius: 5px 0 0 0;
+ border-radius: 5px 0 0 0;
+}
+/* line 646, ../../app/assets/stylesheets/web.css.scss */
+.table.table-outlined thead:first-child tr:first-child th:last-child,
+.table.table-outlined tbody:first-child tr:first-child td:last-child {
+ -webkit-border-radius: 0 5px 0 0;
+ -moz-border-radius: 0 5px 0 0;
+ -ms-border-radius: 0 5px 0 0;
+ -o-border-radius: 0 5px 0 0;
+ border-radius: 0 5px 0 0;
+}
+/* line 648, ../../app/assets/stylesheets/web.css.scss */
+.table.table-outlined thead:last-child tr:last-child th:first-child,
+.table.table-outlined tbody:last-child tr:last-child td:first-child {
+ -webkit-border-radius: 0 0 0 5px;
+ -moz-border-radius: 0 0 0 5px;
+ -ms-border-radius: 0 0 0 5px;
+ -o-border-radius: 0 0 0 5px;
+ border-radius: 0 0 0 5px;
+}
+/* line 650, ../../app/assets/stylesheets/web.css.scss */
+.table.table-outlined thead:last-child tr:last-child th:last-child,
+.table.table-outlined tbody:last-child tr:last-child td:last-child {
+ -webkit-border-radius: 0 0 5px 0;
+ -moz-border-radius: 0 0 5px 0;
+ -ms-border-radius: 0 0 5px 0;
+ -o-border-radius: 0 0 5px 0;
+ border-radius: 0 0 5px 0;
+}
+/* line 651, ../../app/assets/stylesheets/web.css.scss */
+.table.table-outlined td {
+ border-right: none !important;
+}
+
+/* line 654, ../../app/assets/stylesheets/web.css.scss */
+table.table-vertical-align-top td {
+ vertical-align: top;
+}
+
+/* line 657, ../../app/assets/stylesheets/web.css.scss */
+.table-condensed th > div, .table-condensed td > div {
+ padding: 4px 5px;
+}
+
+/* line 660, ../../app/assets/stylesheets/web.css.scss */
+.table-sortable th:hover > div {
+ background-image: none;
+ cursor: pointer;
+ -webkit-box-shadow: #ced1d5 0 2px 8px inset;
+ -moz-box-shadow: #ced1d5 0 2px 8px inset;
+ box-shadow: #ced1d5 0 2px 8px inset;
+ background: url(/assets/icons/arrow-down.png) no-repeat 90% 55%;
+}
+/* line 661, ../../app/assets/stylesheets/web.css.scss */
+.table-sortable th.active {
+ outline: 0 !important;
+}
+/* line 662, ../../app/assets/stylesheets/web.css.scss */
+.table-sortable th.active > div {
+ background-image: none;
+ outline: 0 !important;
+}
+/* line 663, ../../app/assets/stylesheets/web.css.scss */
+.table-sortable th.active.sort-asc {
+ outline: 0 !important;
+}
+/* line 664, ../../app/assets/stylesheets/web.css.scss */
+.table-sortable th.active.sort-asc > div {
+ background: url(/assets/icons/arrow-down.png) #dddfe2 no-repeat 90% 55%;
+}
+/* line 666, ../../app/assets/stylesheets/web.css.scss */
+.table-sortable th.active.sort-desc {
+ outline: 0 !important;
+}
+/* line 667, ../../app/assets/stylesheets/web.css.scss */
+.table-sortable th.active.sort-desc > div {
+ background: url(/assets/icons/arrow-up.png) #dddfe2 no-repeat 90% 55%;
+}
+/* line 670, ../../app/assets/stylesheets/web.css.scss */
+.table-sortable th.noSort:hover > div {
+ -webkit-box-shadow: rgba(0, 0, 0, 0) 0 0 0 inset;
+ -moz-box-shadow: rgba(0, 0, 0, 0) 0 0 0 inset;
+ box-shadow: rgba(0, 0, 0, 0) 0 0 0 inset;
+ -webkit-box-shadow: rgba(0, 0, 0, 0) 0 0 0;
+ -moz-box-shadow: rgba(0, 0, 0, 0) 0 0 0;
+ box-shadow: rgba(0, 0, 0, 0) 0 0 0;
+ background-image: none;
+ cursor: default;
+}
+
+/* line 674, ../../app/assets/stylesheets/web.css.scss */
+.table-inline th > div i {
+ position: relative !important;
+ top: -1px !important;
+}
+/* line 676, ../../app/assets/stylesheets/web.css.scss */
+.table-inline td > div {
+ margin: 0 !important;
+}
+/* line 677, ../../app/assets/stylesheets/web.css.scss */
+.table-inline .control-group {
+ z-index: 1000;
+ list-style-type: none;
+}
+/* line 678, ../../app/assets/stylesheets/web.css.scss */
+.table-inline .control-group .controls {
+ margin-left: 0;
+ overflow: auto;
+}
+/* line 684, ../../app/assets/stylesheets/web.css.scss */
+.table-inline .control-group .controls input[type="text"], .table-inline .control-group .controls textarea, .table-inline .control-group .controls select,
+.table-inline .control-group .controls .k-autocomplete, .table-inline .control-group .controls .k-combobox,
+.table-inline .control-group .controls .k-datepicker, .table-inline .control-group .controls .k-timepicker, .table-inline .control-group .controls .k-datetimepicker,
+.table-inline .control-group .controls .k-numerictextbox,
+.table-inline .control-group .controls .k-dropdown,
+.table-inline .control-group .controls .k-selectbox {
+ width: 96% !important;
+ outline: 0 !important;
+}
+/* line 685, ../../app/assets/stylesheets/web.css.scss */
+.table-inline .control-group .controls .textarea-wrapper {
+ display: block;
+}
+/* line 688, ../../app/assets/stylesheets/web.css.scss */
+.table-inline + .btn {
+ margin-top: 5px;
+ float: right;
+}
+/* line 689, ../../app/assets/stylesheets/web.css.scss */
+.table-inline + div.empty_container + .btn {
+ margin-top: 5px;
+ float: right;
+}
+/* line 692, ../../app/assets/stylesheets/web.css.scss */
+.table-inline .input-prepend .controls .add-on {
+ padding: 4px 3px;
+}
+/* line 693, ../../app/assets/stylesheets/web.css.scss */
+.table-inline .input-prepend .controls input {
+ width: 64% !important;
+}
+
+/* line 698, ../../app/assets/stylesheets/web.css.scss */
+.form-horizontal .table-inline .control-group, .form-horizontal .table-inline td > div {
+ padding: 2px !important;
+ margin-bottom: 0 !important;
+ margin-top: 0 !important;
+ z-index: 1000;
+ list-style-type: none;
+}
+
+/* line 702, ../../app/assets/stylesheets/web.css.scss */
+table tbody tr.highlighting:hover td,
+table tbody tr.highlighting td, table tbody tr.highlighting div {
+ background-color: inherit;
+}
+
+/* line 704, ../../app/assets/stylesheets/web.css.scss */
+.table-title {
+ color: #858a8e;
+ font-size: 16px;
+ font-weight: bold;
+ line-height: 24px;
+}
+
+/* line 706, ../../app/assets/stylesheets/web.css.scss */
+.pagination-region {
+ margin-top: 10px;
+}
+/* line 707, ../../app/assets/stylesheets/web.css.scss */
+.pagination-region .pagination {
+ margin: 0;
+ height: auto;
+}
+/* line 708, ../../app/assets/stylesheets/web.css.scss */
+.pagination-region .pagination ul {
+ -webkit-box-shadow: none;
+ -moz-box-shadow: none;
+ box-shadow: none;
+ padding: 0 !important;
+}
+/* line 709, ../../app/assets/stylesheets/web.css.scss */
+.pagination-region .pagination ul li {
+ overflow: auto;
+}
+/* line 710, ../../app/assets/stylesheets/web.css.scss */
+.pagination-region .pagination ul li.active a {
+ background-color: #d1deea;
+ outline: 0 !important;
+ color: #3e4852;
+}
+/* line 711, ../../app/assets/stylesheets/web.css.scss */
+.pagination-region .pagination ul li.active a:hover {
+ background-color: #d1deea;
+}
+/* line 713, ../../app/assets/stylesheets/web.css.scss */
+.pagination-region .pagination ul li a {
+ text-shadow: 0px 1px 0px white;
+ line-height: 22px;
+ padding: 0 8px;
+ margin: 0 2px;
+ border: none;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+}
+/* line 714, ../../app/assets/stylesheets/web.css.scss */
+.pagination-region .pagination ul li a:hover {
+ background-color: #d1deea;
+}
+/* line 719, ../../app/assets/stylesheets/web.css.scss */
+.pagination-region .pagination-results {
+ line-height: 22px;
+ color: #4b5566;
+ font-size: 13px;
+ text-shadow: 0px 1px 0px white;
+}
+
+/* line 724, ../../app/assets/stylesheets/web.css.scss */
+.destroyed,
+.destroyed td,
+.destroyed > div {
+ background: none;
+ background-color: #f6e1e1 !important;
+}
+
+/* line 725, ../../app/assets/stylesheets/web.css.scss */
+ul, ol {
+ margin: 0;
+ list-style: none;
+}
+
+/* line 728, ../../app/assets/stylesheets/web.css.scss */
+ul.list-selectable li {
+ border-top: 1px solid white;
+}
+/* line 729, ../../app/assets/stylesheets/web.css.scss */
+ul.list-selectable li:hover {
+ background-image: none;
+ cursor: pointer;
+ background-color: #fdfde0;
+}
+/* line 730, ../../app/assets/stylesheets/web.css.scss */
+ul.list-selectable li.active {
+ background: none;
+ background-color: #ddeaf4 !important;
+ border-top: 1px solid #b6dae8;
+}
+/* line 732, ../../app/assets/stylesheets/web.css.scss */
+ul.list-selectable.list-selectable-green li.active {
+ background: none;
+ background-color: #f0f9f0 !important;
+ border-top: 1px solid #b4e0b1;
+}
+
+/* line 735, ../../app/assets/stylesheets/web.css.scss */
+.SimpleSubHeader {
+ background-color: white;
+ overflow: auto;
+ border: 1px solid #d7dadf;
+ border-top: none;
+ padding: 5px 10px;
+}
+/* line 736, ../../app/assets/stylesheets/web.css.scss */
+.SimpleSubHeader a {
+ line-height: 12px;
+ margin-top: 5px;
+}
+/* line 737, ../../app/assets/stylesheets/web.css.scss */
+.SimpleSubHeader h4 {
+ font-weight: 500;
+ line-height: 24px !important;
+}
+
+/* line 740, ../../app/assets/stylesheets/web.css.scss */
+.links-list a:hover {
+ text-decoration: underline;
+}
+/* line 741, ../../app/assets/stylesheets/web.css.scss */
+.links-list li {
+ overflow: auto;
+ margin-top: 5px;
+ border-bottom: 2px solid #e9eaea;
+ font-size: 13px;
+ line-height: 16px;
+ padding-bottom: 2px;
+}
+/* line 742, ../../app/assets/stylesheets/web.css.scss */
+.links-list li .links-list-text {
+ float: left;
+ width: 50%;
+ margin-right: 2%;
+ text-align: right;
+ padding-top: 4px;
+}
+/* line 743, ../../app/assets/stylesheets/web.css.scss */
+.links-list li .links-list-num {
+ float: right;
+ width: 47%;
+ font-weight: bold;
+ padding-top: 4px;
+}
+/* line 744, ../../app/assets/stylesheets/web.css.scss */
+.links-list li .links-list-num .icons-team-tiny {
+ vertical-align: middle;
+}
+
+/* line 750, ../../app/assets/stylesheets/web.css.scss */
+dl dd {
+ margin-bottom: 10px;
+}
+
+/* line 752, ../../app/assets/stylesheets/web.css.scss */
+.dl-horizontal {
+ margin-top: 0;
+ margin-bottom: 5px;
+ overflow: hidden;
+}
+/* line 753, ../../app/assets/stylesheets/web.css.scss */
+.dl-horizontal dt, .dl-horizontal dd {
+ float: left;
+ text-shadow: 0px 1px 0px white;
+ overflow: visible;
+ text-overflow: clip;
+ white-space: normal;
+ word-wrap: break-word;
+ margin-bottom: 10px;
+ margin-left: 1% !important;
+ line-height: 16px !important;
+ font-size: 13.5px;
+}
+/* line 754, ../../app/assets/stylesheets/web.css.scss */
+.dl-horizontal dt {
+ clear: left;
+ text-align: left;
+ width: 25%;
+ color: #555;
+ font-weight: 500;
+}
+/* line 755, ../../app/assets/stylesheets/web.css.scss */
+.dl-horizontal dd {
+ color: #666;
+ width: 73%;
+ margin-top: 0.2%;
+}
+
+/* line 758, ../../app/assets/stylesheets/web.css.scss */
+#reorder-list li {
+ overflow: visible;
+ text-overflow: clip;
+ white-space: normal;
+ word-wrap: break-word;
+ width: 400px;
+ font-weight: 500;
+ overflow: auto;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+ cursor: move;
+ padding: 5px 10px;
+ border: 1px solid #d7dadf;
+ background-color: white;
+ line-height: 16px;
+ margin-bottom: 7px;
+}
+/* line 759, ../../app/assets/stylesheets/web.css.scss */
+#reorder-list li span {
+ display: block;
+ float: left;
+ overflow: visible;
+ text-overflow: clip;
+ white-space: normal;
+ word-wrap: break-word;
+}
+/* line 760, ../../app/assets/stylesheets/web.css.scss */
+#reorder-list li span:first-child {
+ width: 92%;
+ margin-right: 3%;
+}
+/* line 761, ../../app/assets/stylesheets/web.css.scss */
+#reorder-list li span:last-child {
+ width: 5%;
+}
+/* line 762, ../../app/assets/stylesheets/web.css.scss */
+#reorder-list li span:last-child i {
+ vertical-align: baseline;
+}
+
+/* line 767, ../../app/assets/stylesheets/web.css.scss */
+.stat-bubbles > li {
+ overflow: hidden;
+ float: left;
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+ width: 33%;
+ min-width: 33%;
+ max-width: 33%;
+ padding: 0;
+ border: 1px solid #d7dadf;
+ float: left;
+ border-right: none;
+}
+/* line 768, ../../app/assets/stylesheets/web.css.scss */
+.stat-bubbles > li:first-child {
+ -webkit-border-radius: 5px 0 0 5px;
+ -moz-border-radius: 5px 0 0 5px;
+ -ms-border-radius: 5px 0 0 5px;
+ -o-border-radius: 5px 0 0 5px;
+ border-radius: 5px 0 0 5px;
+}
+/* line 769, ../../app/assets/stylesheets/web.css.scss */
+.stat-bubbles > li:last-child {
+ -webkit-border-radius: 0 5px 5px 0;
+ -moz-border-radius: 0 5px 5px 0;
+ -ms-border-radius: 0 5px 5px 0;
+ -o-border-radius: 0 5px 5px 0;
+ border-radius: 0 5px 5px 0;
+ border-right: 1px solid #d7dadf;
+}
+/* line 770, ../../app/assets/stylesheets/web.css.scss */
+.stat-bubbles > li a {
+ display: block;
+ background-color: #f3f6f7;
+ padding: 15px 10px;
+}
+/* line 771, ../../app/assets/stylesheets/web.css.scss */
+.stat-bubbles > li a:hover {
+ text-decoration: none;
+ background-color: #fdfde0;
+}
+/* line 773, ../../app/assets/stylesheets/web.css.scss */
+.stat-bubbles > li .stat-bubble-num {
+ display: block;
+ text-align: center;
+ font-size: 22px;
+ font-weight: 500;
+}
+/* line 774, ../../app/assets/stylesheets/web.css.scss */
+.stat-bubbles > li .stat-bubble-text {
+ display: block;
+ text-align: center;
+}
+/* line 775, ../../app/assets/stylesheets/web.css.scss */
+.stat-bubbles > li .stat-bubble-text i {
+ vertical-align: baseline;
+}
+
+/* line 779, ../../app/assets/stylesheets/web.css.scss */
+.ListWell {
+ overflow: hidden;
+ *zoom: 1;
+ border: 1px solid #d7dadf;
+ border-top: none;
+ overflow: auto;
+ padding: 0;
+ -moz-border-radius-bottomleft: 5px;
+ -webkit-border-bottom-left-radius: 5px;
+ border-bottom-left-radius: 5px;
+ -moz-border-radius-bottomright: 5px;
+ -webkit-border-bottom-right-radius: 5px;
+ border-bottom-right-radius: 5px;
+ text-shadow: 0px 1px 0px white;
+ background-color: #fff;
+}
+/* line 781, ../../app/assets/stylesheets/web.css.scss */
+.ListWell > li a:hover {
+ text-decoration: none;
+}
+/* line 782, ../../app/assets/stylesheets/web.css.scss */
+.ListWell > li > div {
+ padding: 5px 10px;
+ border-top: 1px solid white;
+ overflow: auto;
+}
+/* line 783, ../../app/assets/stylesheets/web.css.scss */
+.ListWell > li:nth-child(odd) {
+ background-color: white;
+}
+/* line 784, ../../app/assets/stylesheets/web.css.scss */
+.ListWell > li:nth-child(even) {
+ background-color: #F6F6F7;
+}
+/* line 785, ../../app/assets/stylesheets/web.css.scss */
+.ListWell > li:first-child > div {
+ border-top: none;
+}
+/* line 786, ../../app/assets/stylesheets/web.css.scss */
+.ListWell > li:last-child > div {
+ border-bottom: none;
+}
+/* line 788, ../../app/assets/stylesheets/web.css.scss */
+.ListWell.ListWellTop {
+ border-top: 1px solid #d7dadf !important;
+}
+/* line 789, ../../app/assets/stylesheets/web.css.scss */
+.ListWell > .empty {
+ background-color: #f8fafc !important;
+}
+
+/* line 791, ../../app/assets/stylesheets/web.css.scss */
+.ListWell.selectable li:hover {
+ background-color: #fdfde0;
+ cursor: pointer;
+}
+
+/* line 792, ../../app/assets/stylesheets/web.css.scss */
+.empty {
+ background-color: #f8fafc;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+ margin-top: 10px;
+ padding: 80px 15%;
+ font-size: 26px;
+ text-shadow: 1px 1px 0 white;
+ color: #b8c2c9;
+ text-align: center;
+ border: 5px solid #e9f0f5;
+ line-height: 30px;
+ -webkit-box-shadow: white 0 1px 0 inset;
+ -moz-box-shadow: white 0 1px 0 inset;
+ box-shadow: white 0 1px 0 inset;
+}
+/* line 793, ../../app/assets/stylesheets/web.css.scss */
+.empty small {
+ font-size: 15px;
+ font-weight: bold;
+ display: block;
+ line-height: 18px;
+ margin-top: 5px;
+}
+/* line 794, ../../app/assets/stylesheets/web.css.scss */
+.empty.empty-square-top {
+ -webkit-border-radius: 0 0 5px 5px;
+ -moz-border-radius: 0 0 5px 5px;
+ -ms-border-radius: 0 0 5px 5px;
+ -o-border-radius: 0 0 5px 5px;
+ border-radius: 0 0 5px 5px;
+ margin-top: 0;
+}
+/* line 795, ../../app/assets/stylesheets/web.css.scss */
+.empty.empty-small {
+ padding: 10px 15%;
+ font-size: 18px;
+ line-height: 22px;
+}
+
+/* line 799, ../../app/assets/stylesheets/web.css.scss */
+input::-webkit-input-placeholder, textarea::-webkit-input-placeholder, .search-query::-webkit-input-placeholder, .uneditable-input::-webkit-input-placeholder {
+ color: #bbb;
+ text-shadow: 0 0 0 rgba(0, 0, 0, 0);
+ letter-spacing: 1px;
+ position: relative;
+ top: 1px;
+}
+
+/* line 800, ../../app/assets/stylesheets/web.css.scss */
+input:focus::-webkit-input-placeholder, textarea:focus::-webkit-input-placeholder, .search-query:focus::-webkit-input-placeholder, .uneditable-input:focus::-webkit-input-placeholder {
+ color: transparent;
+}
+
+/* line 801, ../../app/assets/stylesheets/web.css.scss */
+input:-moz-placeholder, textarea:-moz-placeholder, .search-query:-moz-placeholder, .uneditable-input:-moz-placeholder {
+ color: #bbb;
+ text-shadow: 0 0 0 rgba(0, 0, 0, 0);
+ letter-spacing: 0.5px;
+}
+
+/* line 803, ../../app/assets/stylesheets/web.css.scss */
+fieldset {
+ border-top: 1px solid #d8d8d8;
+ -webkit-box-shadow: white 0 1px 0 inset;
+ -moz-box-shadow: white 0 1px 0 inset;
+ box-shadow: white 0 1px 0 inset;
+ padding-top: 30px;
+ margin: 5px 0;
+ position: relative;
+}
+/* line 804, ../../app/assets/stylesheets/web.css.scss */
+fieldset legend {
+ font-size: 13px;
+ color: #4b5566;
+ font-weight: 600;
+ text-shadow: 0px 1px 0px white;
+ position: absolute;
+ top: -13px;
+ left: 20px;
+ border: 0;
+ width: auto;
+ background: #dadbdb;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+ padding: 0 8px;
+ line-height: 26px;
+}
+/* line 805, ../../app/assets/stylesheets/web.css.scss */
+fieldset legend a {
+ font-weight: normal;
+}
+
+/* line 808, ../../app/assets/stylesheets/web.css.scss */
+.help-block {
+ clear: both;
+ margin-top: 2px !important;
+}
+
+/* line 809, ../../app/assets/stylesheets/web.css.scss */
+form fieldset ~ fieldset {
+ margin-top: 25px;
+}
+
+/* line 811, ../../app/assets/stylesheets/web.css.scss */
+.form-horizontal legend + .control-group {
+ margin-top: 0;
+}
+/* line 812, ../../app/assets/stylesheets/web.css.scss */
+.form-horizontal .control-group {
+ margin-bottom: 5px;
+ margin-top: 5px;
+ overflow: auto;
+ overflow: hidden;
+ *zoom: 1;
+}
+/* line 813, ../../app/assets/stylesheets/web.css.scss */
+.form-horizontal .control-group > li {
+ overflow: auto;
+ line-height: 16px;
+}
+/* line 815, ../../app/assets/stylesheets/web.css.scss */
+.form-horizontal .controls {
+ margin-bottom: 5px;
+ overflow: visible !important;
+}
+/* line 816, ../../app/assets/stylesheets/web.css.scss */
+.form-horizontal .controls a {
+ margin-left: 5px;
+}
+/* line 817, ../../app/assets/stylesheets/web.css.scss */
+.form-horizontal .controls p.help-block {
+ clear: both;
+}
+/* line 818, ../../app/assets/stylesheets/web.css.scss */
+.form-horizontal .controls input[type="checkbox"] {
+ margin-top: 0 !important;
+ vertical-align: middle;
+}
+/* line 820, ../../app/assets/stylesheets/web.css.scss */
+.form-horizontal .controls-no-label {
+ padding-top: 5px !important;
+}
+/* line 821, ../../app/assets/stylesheets/web.css.scss */
+.form-horizontal .controls-no-label .controls {
+ margin-left: 0;
+}
+/* line 822, ../../app/assets/stylesheets/web.css.scss */
+.form-horizontal .controls-no-label .control-label:empty {
+ display: none !important;
+}
+/* line 825, ../../app/assets/stylesheets/web.css.scss */
+.form-horizontal .controls-medium input[type="text"] {
+ vertical-align: center;
+ font-size: 14px;
+ height: 26px;
+ line-height: 26px;
+ padding: 0 10px;
+ min-width: 300px;
+}
+
+/* line 829, ../../app/assets/stylesheets/web.css.scss */
+.control-group.divider {
+ border-bottom: 1px solid #e1e1e1;
+ -webkit-box-shadow: rgba(255, 255, 255, 0.5) 0 8px 10px;
+ -moz-box-shadow: rgba(255, 255, 255, 0.5) 0 8px 10px;
+ box-shadow: rgba(255, 255, 255, 0.5) 0 8px 10px;
+ padding-bottom: 10px;
+ margin-bottom: 20px;
+}
+/* line 830, ../../app/assets/stylesheets/web.css.scss */
+.control-group .static {
+ display: inline-block;
+ overflow: auto;
+ font-size: 14px;
+}
+/* line 831, ../../app/assets/stylesheets/web.css.scss */
+.control-group .textarea-wrapper {
+ position: relative;
+ display: inline-block;
+}
+/* line 832, ../../app/assets/stylesheets/web.css.scss */
+.control-group .character-count {
+ text-align: right;
+ color: #999;
+ position: absolute;
+ bottom: 4px;
+ right: 23px;
+ line-height: 12px;
+}
+
+/* line 834, ../../app/assets/stylesheets/web.css.scss */
+label {
+ color: #40464b;
+ font-weight: 500;
+ font-size: 14px;
+ text-shadow: 0px 1px 0px white;
+}
+/* line 835, ../../app/assets/stylesheets/web.css.scss */
+label i.popover-click {
+ position: relative;
+ right: 3px;
+ bottom: 1px;
+}
+
+/* line 840, ../../app/assets/stylesheets/web.css.scss */
+label[class^="radio"],
+label[class*="radio"],
+label[class^="checkbox"],
+label[class*="checkbox"] {
+ font-weight: normal;
+}
+
+/* line 841, ../../app/assets/stylesheets/web.css.scss */
+hr {
+ margin-top: 0;
+ clear: both;
+ margin-bottom: 0px;
+}
+
+/* line 842, ../../app/assets/stylesheets/web.css.scss */
+.vertical-checks {
+ overflow: auto;
+}
+/* line 843, ../../app/assets/stylesheets/web.css.scss */
+.vertical-checks .controls {
+ margin-bottom: 0;
+}
+/* line 844, ../../app/assets/stylesheets/web.css.scss */
+.vertical-checks .controls label {
+ display: inline-block;
+ margin: auto 15px 0 auto;
+ margin-right: 15px;
+ font-weight: normal;
+ max-width: 93%;
+ overflow: visible;
+ text-overflow: clip;
+ white-space: normal;
+ word-wrap: break-word;
+ vertical-align: middle;
+}
+/* line 845, ../../app/assets/stylesheets/web.css.scss */
+.vertical-checks .controls input {
+ display: inline;
+ margin-right: 5px;
+}
+
+/* line 849, ../../app/assets/stylesheets/web.css.scss */
+#notice {
+ color: #b7893e;
+ -webkit-box-shadow: rgba(0, 0, 0, 0.16) 5px 9px 15px;
+ -moz-box-shadow: rgba(0, 0, 0, 0.16) 5px 9px 15px;
+ box-shadow: rgba(0, 0, 0, 0.16) 5px 9px 15px;
+ font-size: 14px;
+ text-shadow: 0px 1px 0px white;
+ padding: 0 50px;
+ display: none;
+ border: 2px solid #d6cb73;
+ border-top: none;
+ font-weight: bold;
+ line-height: 50px;
+ position: fixed;
+ top: 0px;
+ left: 47%;
+ background-color: #f9f4ce;
+ z-index: 10000;
+ -moz-border-radius-bottomleft: 10px;
+ -webkit-border-bottom-left-radius: 10px;
+ border-bottom-left-radius: 10px;
+ -moz-border-radius-bottomright: 10px;
+ -webkit-border-bottom-right-radius: 10px;
+ border-bottom-right-radius: 10px;
+}
+/* line 850, ../../app/assets/stylesheets/web.css.scss */
+#notice.error {
+ background-color: #9d261d;
+ color: white;
+ left: 42%;
+ border-color: darkRed;
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.35);
+}
+/* line 851, ../../app/assets/stylesheets/web.css.scss */
+#notice.warning {
+ left: 37%;
+}
+
+/* line 854, ../../app/assets/stylesheets/web.css.scss */
+.error input, .error select, .error textarea {
+ background-color: #FFF2F2;
+ color: #505050;
+}
+
+/* line 856, ../../app/assets/stylesheets/web.css.scss */
+.error-wrap {
+ background-color: #f1d9d9;
+ margin-left: 5px;
+ padding: 0 5px;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+}
+
+/* line 859, ../../app/assets/stylesheets/web.css.scss */
+.help-block, .help-inline {
+ line-height: 14px !important;
+ color: #777;
+ font-size: 12px;
+}
+
+/* line 860, ../../app/assets/stylesheets/web.css.scss */
+a.help-block {
+ color: #4d80b4 !important;
+}
+
+/* line 863, ../../app/assets/stylesheets/web.css.scss */
+.control-group.error input,
+.control-group.error select,
+.control-group.error textarea {
+ color: #666;
+}
+
+/* line 867, ../../app/assets/stylesheets/web.css.scss */
+.control-group.disabled label,
+.control-group.disabled input,
+.control-group.disabled a {
+ color: #999999 !important;
+}
+
+/* line 870, ../../app/assets/stylesheets/web.css.scss */
+.control-group.error label {
+ color: #AE5151;
+}
+/* line 871, ../../app/assets/stylesheets/web.css.scss */
+.control-group.error .help-block, .control-group.error .help-inline {
+ color: #AE5151;
+ padding: 4px;
+}
+
+/* line 874, ../../app/assets/stylesheets/web.css.scss */
+.form-actions-wrap {
+ border-top: 1px solid #d6d6d6;
+}
+
+/* line 875, ../../app/assets/stylesheets/web.css.scss */
+.form-actions {
+ margin: 0;
+ overflow: hidden;
+ background-color: #eceeef;
+ padding-left: 20px !important;
+ border-top: 1px solid white;
+ -moz-border-radius-bottomleft: 17px;
+ -webkit-border-bottom-left-radius: 17px;
+ border-bottom-left-radius: 17px;
+ -moz-border-radius-bottomright: 17px;
+ -webkit-border-bottom-right-radius: 17px;
+ border-bottom-right-radius: 17px;
+}
+/* line 876, ../../app/assets/stylesheets/web.css.scss */
+.form-actions button, .form-actions a.btn {
+ margin-left: 5px;
+}
+
+/* line 878, ../../app/assets/stylesheets/web.css.scss */
+.requiredhelp span {
+ color: #737373;
+}
+
+/* line 879, ../../app/assets/stylesheets/web.css.scss */
+span.required, abbr[title=required] {
+ color: #c82222;
+}
+
+/* line 881, ../../app/assets/stylesheets/web.css.scss */
+.ui-dialog-titlebar {
+ background-color: #4A83BD;
+ height: 40px;
+ line-height: 40px;
+ padding: 0 20px;
+ -moz-border-radius-topleft: 17px !important;
+ -webkit-border-top-left-radius: 17px !important;
+ border-top-left-radius: 17px !important;
+ -moz-border-radius-topright: 17px !important;
+ -webkit-border-top-right-radius: 17px !important;
+ border-top-right-radius: 17px !important;
+}
+
+/* line 882, ../../app/assets/stylesheets/web.css.scss */
+.ui-dialog-title {
+ font-weight: bold;
+ color: white;
+ text-shadow: 0 -2px 0 rgba(0, 0, 0, 0.3);
+ font-size: 20px;
+ letter-spacing: 1px;
+}
+
+/* line 883, ../../app/assets/stylesheets/web.css.scss */
+.ui-dialog-titlebar-close .close {
+ color: white;
+ filter: alpha(opacity=100);
+ opacity: 1;
+ text-shadow: 0 0 0 rgba(0, 0, 0, 0);
+ position: relative;
+ top: 8px;
+ outline: 0;
+}
+/* line 884, ../../app/assets/stylesheets/web.css.scss */
+.ui-dialog-titlebar-close .close:hover {
+ filter: alpha(opacity=80);
+ opacity: 0.7;
+}
+
+/* line 886, ../../app/assets/stylesheets/web.css.scss */
+.ui-dialog-content {
+ background-color: #f3f6f7;
+ -moz-border-radius-bottomleft: 17px;
+ -webkit-border-bottom-left-radius: 17px;
+ border-bottom-left-radius: 17px;
+ -moz-border-radius-bottomright: 17px;
+ -webkit-border-bottom-right-radius: 17px;
+ border-bottom-right-radius: 17px;
+}
+/* line 887, ../../app/assets/stylesheets/web.css.scss */
+.ui-dialog-content .controls-wrapper {
+ padding: 0;
+}
+/* line 888, ../../app/assets/stylesheets/web.css.scss */
+.ui-dialog-content .controls-wrapper > ul {
+ padding: 0;
+}
+
+/* line 891, ../../app/assets/stylesheets/web.css.scss */
+.ui-dialog {
+ background-color: #f3f6f7;
+ background: transparent;
+ overflow: hidden;
+ position: absolute;
+ border: 3px solid #666666;
+ width: auto !important;
+ padding: 0;
+ -webkit-box-shadow: #555555 0 0 40px;
+ -moz-box-shadow: #555555 0 0 40px;
+ box-shadow: #555555 0 0 40px;
+ -webkit-border-radius: 20px 20px;
+ -moz-border-radius: 20px / 20px;
+ border-radius: 20px / 20px;
+ max-width: 954px;
+}
+/* line 892, ../../app/assets/stylesheets/web.css.scss */
+.ui-dialog .dialog-size-default {
+ max-width: 960px;
+ min-width: 500px;
+ width: auto;
+}
+/* line 893, ../../app/assets/stylesheets/web.css.scss */
+.ui-dialog .dialog-size-fluid {
+ max-width: 960px;
+ min-width: auto;
+ width: auto;
+}
+/* line 894, ../../app/assets/stylesheets/web.css.scss */
+.ui-dialog .dialog-size-small {
+ max-width: 420px;
+ min-width: 420px;
+}
+/* line 895, ../../app/assets/stylesheets/web.css.scss */
+.ui-dialog .dialog-size-medium {
+ max-width: 550px;
+ min-width: 550px;
+}
+/* line 896, ../../app/assets/stylesheets/web.css.scss */
+.ui-dialog .dialog-size-large {
+ max-width: 700px;
+ min-width: 700px;
+}
+/* line 897, ../../app/assets/stylesheets/web.css.scss */
+.ui-dialog .dialog-size-xlarge {
+ max-width: 800px;
+ min-width: 800px;
+}
+/* line 898, ../../app/assets/stylesheets/web.css.scss */
+.ui-dialog .dialog-size-max {
+ max-width: 960px;
+ min-width: 960px;
+}
+/* line 899, ../../app/assets/stylesheets/web.css.scss */
+.ui-dialog .content-wrapper {
+ padding: 20px;
+ overflow: auto;
+}
+/* line 900, ../../app/assets/stylesheets/web.css.scss */
+.ui-dialog .content-wrapper .controls {
+ line-height: 27px;
+}
+/* line 902, ../../app/assets/stylesheets/web.css.scss */
+.ui-dialog .form-footer {
+ margin: 10px 0 0;
+ -moz-border-radius-bottomleft: 20px;
+ -webkit-border-bottom-left-radius: 20px;
+ border-bottom-left-radius: 20px;
+ -moz-border-radius-bottomright: 20px;
+ -webkit-border-bottom-right-radius: 20px;
+ border-bottom-right-radius: 20px;
+ border-top: 1px solid #cccccc;
+ background-color: #E9E9E9;
+ display: hidden;
+}
+/* line 903, ../../app/assets/stylesheets/web.css.scss */
+.ui-dialog .form-footer div {
+ border-top: 1px solid white;
+ padding: 15px;
+ overflow: hidden;
+}
+/* line 904, ../../app/assets/stylesheets/web.css.scss */
+.ui-dialog .form-footer span {
+ margin: 0 5px;
+}
+/* line 905, ../../app/assets/stylesheets/web.css.scss */
+.ui-dialog .form-footer button {
+ margin-left: 5px;
+}
+/* line 907, ../../app/assets/stylesheets/web.css.scss */
+.ui-dialog .alert {
+ margin: 10px 0;
+}
+
+/* line 911, ../../app/assets/stylesheets/web.css.scss */
+#dialog form,
+#dialog_two form,
+#modal form {
+ margin-bottom: 0;
+}
+
+/* line 912, ../../app/assets/stylesheets/web.css.scss */
+.ui-widget-overlay {
+ background: url(/assets/rgbapng/3333337f.png);
+ background: rgba(51, 51, 51, 0.5);
+ position: absolute;
+ left: 0;
+ top: 0;
+}
+
+/* line 913, ../../app/assets/stylesheets/web.css.scss */
+.ui-helper-clearfix {
+ display: block;
+}
+/* line 914, ../../app/assets/stylesheets/web.css.scss */
+.ui-helper-clearfix:after {
+ clear: both;
+ content: ".";
+ display: block;
+ height: 0;
+ visibility: hidden;
+}
+
+/* line 917, ../../app/assets/stylesheets/web.css.scss */
+.loading-container.loading {
+ background: url(/assets/ajax.gif) transparent no-repeat 50% 50%;
+}
+
+/* line 918, ../../app/assets/stylesheets/web.css.scss */
+.data_content_wrapper {
+ position: relative;
+ overflow: hidden;
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
+ opacity: 1;
+}
+/* line 919, ../../app/assets/stylesheets/web.css.scss */
+.data_content_wrapper.show-overflow {
+ overflow: visible;
+}
+/* line 920, ../../app/assets/stylesheets/web.css.scss */
+.data_content_wrapper .content_loader {
+ position: absolute;
+ top: 30px;
+ background-color: #fdfde0;
+ display: none;
+ color: black;
+}
+
+/* line 924, ../../app/assets/stylesheets/web.css.scss */
+.fetching_results.data_content_wrapper,
+.fetching_results .data_content_wrapper {
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
+ opacity: 0.5;
+}
+
+/* line 926, ../../app/assets/stylesheets/web.css.scss */
+.opacity-wrapper {
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
+ opacity: 0.5;
+}
+
+/* line 927, ../../app/assets/stylesheets/web.css.scss */
+#download_report_container {
+ overflow: hidden;
+}
+/* line 929, ../../app/assets/stylesheets/web.css.scss */
+#download_report_container span.loading-container {
+ display: none;
+ margin-left: 10px;
+ font-weight: normal;
+ top: 3px;
+ position: relative;
+ padding: 5px 25px;
+}
+/* line 930, ../../app/assets/stylesheets/web.css.scss */
+#download_report_container span.loading {
+ background-position: 0% 50%;
+}
+
+/* line 933, ../../app/assets/stylesheets/web.css.scss */
+.fixed-top {
+ position: fixed !important;
+ top: 0 !important;
+}
+
+/* line 934, ../../app/assets/stylesheets/web.css.scss */
+.highlight-overlay {
+ position: absolute;
+ z-index: 10000;
+ opacity: .7;
+}
+
+/* line 935, ../../app/assets/stylesheets/web.css.scss */
+.ui-sortable-helper {
+ -webkit-box-shadow: rgba(0, 0, 0, 0.3) 0 3px 3px, rgba(0, 0, 0, 0.3) 0 -1px 3px;
+ -moz-box-shadow: rgba(0, 0, 0, 0.3) 0 3px 3px, rgba(0, 0, 0, 0.3) 0 -1px 3px;
+ box-shadow: rgba(0, 0, 0, 0.3) 0 3px 3px, rgba(0, 0, 0, 0.3) 0 -1px 3px;
+ background-color: #FFF;
+}
+
+/* line 936, ../../app/assets/stylesheets/web.css.scss */
+.ui-sortable-placeholder-highlight {
+ background-color: #fdfde0 !important;
+ border: 2px dashed #f8e0ba !important;
+}
+
+/* line 937, ../../app/assets/stylesheets/web.css.scss */
+.spinner-loading {
+ background: url(/assets/ajax.gif) transparent no-repeat 50% 50%;
+}
+
+/* line 938, ../../app/assets/stylesheets/web.css.scss */
+.spinner {
+ width: 100%;
+ height: 100%;
+ position: absolute;
+ background: url(/assets/ajax.gif) transparent no-repeat 50% 50%;
+}
+
+/* line 939, ../../app/assets/stylesheets/web.css.scss */
+.opacity-loader {
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
+ opacity: 0.5;
+}
+
+/* line 940, ../../app/assets/stylesheets/web.css.scss */
+#article-region .spinner {
+ background-position: 50% 25%;
+}
+
+/* line 942, ../../app/assets/stylesheets/web.css.scss */
+ul.nav li a {
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ user-select: none;
+ outline: 0;
+}
+
+/* line 3, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-widget {
+ background-color: white;
+}
+
+/* line 44, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-widget,
+.k-input,
+.k-textbox,
+.k-group,
+.k-content,
+.k-header,
+.k-editable-area,
+.k-separator,
+.k-colorpicker .k-arrow-down,
+.k-autocomplete,
+.k-dropdown-wrap,
+.k-toolbar,
+.k-group-footer td,
+.k-grid-footer,
+.k-footer-template td,
+.k-state-default,
+.k-state-default .k-select,
+.k-state-disabled,
+.k-grid-header-wrap,
+.k-grid-header,
+.k-grid td,
+.k-grid-footer-wrap,
+.k-pager-wrap,
+.k-grouping-header,
+.k-grouping-header .k-group-indicator,
+.k-dropdown-wrap,
+.k-autocomplete,
+.k-panelbar > .k-item > .k-link,
+.k-panel > .k-item > .k-link,
+.k-panelbar .k-panel,
+.k-panelbar .k-content,
+.k-calendar th,
+.k-slider-track,
+.k-splitbar,
+.k-dropzone-active,
+.k-upload-files,
+.k-tiles,
+.k-toolbar,
+.k-dropdown-wrap,
+.k-tooltip,
+.k-progress {
+ border-color: rgba(98, 140, 183, 0.8);
+}
+
+/* line 59, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-group,
+.k-toolbar,
+.k-grouping-header,
+.k-pager-wrap,
+.k-group-footer td,
+.k-grid-footer,
+.k-footer-template td,
+.k-widget .k-status,
+.k-grouping-row td,
+td.k-group-cell,
+.k-calendar th,
+.k-dropzone-hovered,
+.k-upload-files {
+ background-color: rgba(81, 135, 190, 0.2);
+}
+
+/* line 62, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-list-container {
+ border-color: #bebebe;
+ background-color: white;
+ min-width: 220px;
+ -webkit-border-radius: 0 5px 5px 5px;
+ -moz-border-radius: 0 5px 5px 5px;
+ -ms-border-radius: 0 5px 5px 5px;
+ -o-border-radius: 0 5px 5px 5px;
+ border-radius: 0 5px 5px 5px;
+}
+
+/* line 72, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-content,
+.k-editable-area,
+.k-panelbar > li.k-item,
+.k-panel > li.k-item,
+.k-tiles {
+ background-color: white;
+ -webkit-border-radius: 0;
+ -moz-border-radius: 0;
+ -ms-border-radius: 0;
+ -o-border-radius: 0;
+ border-radius: 0;
+ outline: 0 !important;
+}
+
+/* line 78, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-alt,
+.k-separator {
+ background-color: #f8f8f8;
+}
+
+/* line 94, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-widget .k-dropdown-wrap,
+.k-widget .k-picker-wrap,
+.k-widget .k-numeric-wrap,
+.k-autocomplete.k-header,
+.k-autocomplete.k-state-focused,
+div.k-dropdown-wrap.k-state-active,
+.k-dropdown-wrap.k-state-focused,
+.k-dropdown-wrap.k-state-focused:hover,
+div.k-picker-wrap.k-state-active,
+.k-picker-wrap.k-state-focused,
+.k-picker-wrap.k-state-focused:hover,
+span.k-numeric-wrap.k-state-active,
+.k-numeric-wrap.k-state-focused,
+.k-numeric-wrap.k-state-focused:hover {
+ border-color: #bebebe;
+ background-color: white;
+}
+
+/* line 103, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-autocomplete .k-input,
+.k-dropdown-wrap .k-input,
+.k-autocomplete.k-state-focused .k-input,
+.k-dropdown-wrap.k-state-focused .k-input,
+.k-picker-wrap.k-state-focused .k-input,
+.k-numeric-wrap.k-state-focused .k-input {
+ border-color: #bebebe;
+}
+
+/* line 107, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-input,
+.k-textbox {
+ background-color: white;
+ color: #4b5566;
+}
+
+/* line 114, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-widget,
+.k-popup,
+.k-content,
+.k-dropdown .k-input {
+ color: #4b5566;
+}
+
+/* line 118, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-link:link,
+.k-link:visited {
+ color: #3d70a5;
+}
+
+/* line 121, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-header {
+ color: #4b5566;
+}
+
+/* line 139, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-header,
+.k-grid-header,
+.k-toolbar,
+.k-dropdown-wrap,
+.k-picker-wrap,
+.k-grouping-header,
+.k-tooltip,
+.k-pager-wrap,
+.k-button,
+.k-draghandle,
+.k-tile,
+.k-autocomplete,
+.k-state-hover,
+.k-state-selected,
+.k-state-focused,
+.k-tabstrip-items .k-item {
+ color: #363636;
+}
+
+/* line 149, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-header,
+.k-grid-header,
+.k-toolbar,
+.k-grouping-header,
+.k-tooltip,
+.k-pager-wrap,
+.k-button,
+.k-draghandle {
+ background-color: #f3f6f7;
+}
+
+/* line 153, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-icon {
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
+ opacity: 0.8;
+}
+
+/* line 159, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-icon:hover,
+.k-state-hover .k-icon,
+.k-state-selected .k-icon,
+.k-state-focused .k-icon {
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
+ opacity: 1;
+}
+
+/* line 168, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-icon,
+.k-tool-icon,
+.k-grouping-dropclue,
+.k-drop-hint,
+.k-callout,
+.k-progress,
+.k-progress-status {
+ background-image: url("http://cdn.kendostatic.com/2012.1.322/styles/Metro/sprite.png");
+}
+
+/* line 171, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-loading {
+ background-image: url("http://cdn.kendostatic.com/2012.1.322/styles/Metro/loading.gif");
+}
+
+/* line 174, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-loading-image {
+ background-image: url("http://cdn.kendostatic.com/2012.1.322/styles/Metro/loading-image.gif");
+}
+
+/* line 177, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-loading-color {
+ background-color: #f8f8f8;
+}
+
+/* line 180, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-button {
+ color: #4b5566;
+}
+
+/* line 186, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-button,
+.k-button.k-state-disabled:hover,
+.k-state-disabled .k-button:hover,
+.k-draghandle {
+ border-color: #dadada;
+ background-color: #f1f1f1;
+}
+
+/* line 191, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-button:hover,
+.k-draghandle:hover {
+ border-color: #e6e6e6;
+ background-color: #e3e3e3;
+}
+
+/* line 198, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-state-active,
+.k-state-active:hover,
+.k-active-filter {
+ background-color: white;
+ border-color: #4A83BD;
+ color: #363636;
+}
+
+/* line 203, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-state-focused {
+ color: #363636;
+ background-color: #e3e3e3;
+ border-color: #e6e6e6;
+}
+
+/* line 216, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-state-selected,
+.k-list > .k-state-selected,
+.k-list > .k-state-focused,
+.k-panelbar > .k-state-selected,
+.k-panel > .k-state-selected,
+.k-button:active,
+.k-ghost-splitbar-vertical,
+.k-ghost-splitbar-horizontal,
+.k-draghandle.k-state-selected:hover {
+ color: white;
+ background-color: #4A83BD;
+ border-color: #4A83BD;
+}
+
+/* line 221, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-state-selected.k-state-focused {
+ background-color: #3f71a3;
+}
+
+/* line 224, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-state-selected > .k-link {
+ color: white;
+}
+
+/* line 231, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-state-hover,
+.k-state-hover:hover,
+.k-splitbar-horizontal-hover:hover,
+.k-splitbar-vertical-hover:hover,
+.k-marquee {
+ border-color: rgba(98, 140, 183, 0.8);
+ box-shadow: 0 1px 1px rgba(0, 0, 0, 0.024) inset, 0 0 8px rgba(82, 168, 236, 0.25);
+ -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.024) inset, 0 0 8px rgba(82, 168, 236, 0.25);
+ -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.024) inset, 0 0 8px rgba(82, 168, 236, 0.25);
+ outline: 0;
+ outline: thin dotted \9;
+}
+
+/* line 235, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-list > .k-state-hover {
+ background-color: #eee;
+ border-color: #eee;
+ -webkit-box-shadow: none;
+ -moz-box-shadow: none;
+ box-shadow: none;
+}
+
+/* line 240, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-state-hover > .k-link,
+.k-other-month.k-state-hover .k-link {
+ color: #363636;
+}
+
+/* line 246, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-autocomplete.k-state-hover,
+.k-picker-wrap.k-state-hover,
+.k-numeric-wrap.k-state-hover,
+.k-dropdown-wrap.k-state-hover {
+ background-color: white;
+ border-color: rgba(98, 140, 183, 0.8);
+ box-shadow: 0 1px 1px rgba(0, 0, 0, 0.024) inset, 0 0 8px rgba(82, 168, 236, 0.25);
+ -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.024) inset, 0 0 8px rgba(82, 168, 236, 0.25);
+ -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.024) inset, 0 0 8px rgba(82, 168, 236, 0.25);
+ outline: 0;
+ outline: thin dotted \9;
+}
+
+/* line 251, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-calendar .k-state-selected.k-state-focused > .k-link {
+ background-color: transparent;
+}
+
+/* line 254, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-dropdown .k-state-hover .k-input {
+ color: #363636;
+}
+
+/* line 257, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-dropdown .k-state-focused .k-input {
+ color: #4b5566;
+}
+
+/* line 260, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-state-error {
+ border-color: #e20000;
+ background-color: #f1d9d9;
+ color: #e20000;
+}
+
+/* line 265, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-state-disabled {
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
+ opacity: 0.7;
+}
+
+/* line 274, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-state-disabled,
+.k-state-disabled .k-link,
+.k-state-disabled .k-button,
+.k-other-month .k-link,
+.k-dropzone em,
+.k-tile-empty strong,
+.k-slider .k-draghandle {
+ color: #dadada;
+}
+
+/* line 278, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-slider-track {
+ background-color: #f3f6f7;
+}
+
+/* line 281, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-slider-selection {
+ background-color: #4A83BD;
+}
+
+/* line 284, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-slider-horizontal .k-tick {
+ background-image: url("http://cdn.kendostatic.com/2012.1.322/styles/Metro/slider-h.gif");
+}
+
+/* line 287, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-slider-vertical .k-tick {
+ background-image: url("http://cdn.kendostatic.com/2012.1.322/styles/Metro/slider-v.gif");
+}
+
+/* line 291, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-tooltip {
+ border-color: #4A83BD;
+ background-color: white;
+ color: #4b5566;
+}
+
+/* line 296, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-tooltip-validation {
+ border-color: #ffe68e;
+ background-color: #ffe68e;
+ color: #4b5566;
+}
+
+/* line 302, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-splitbar {
+ background-color: #dadada;
+}
+
+/* line 306, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-restricted-size-vertical,
+.k-restricted-size-horizontal {
+ background-color: #e20000;
+}
+
+/* line 310, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-progress-status {
+ border-color: #e6e6e6 transparent;
+}
+
+/* line 314, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-tile {
+ border-color: white;
+}
+
+/* line 318, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-textbox:hover,
+.k-tiles li.k-state-hover {
+ border-color: rgba(98, 140, 183, 0.8);
+}
+
+/* line 321, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-tiles li.k-state-selected {
+ border-color: #4A83BD;
+}
+
+/* line 324, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-tile .k-folder {
+ background-image: url("http://cdn.kendostatic.com/2012.1.322/styles/Metro/imagebrowser.png");
+}
+
+/* line 337, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-popup,
+.k-menu .k-group,
+.k-grid .k-filter-options,
+.k-time-popup,
+.k-datepicker-calendar,
+.k-autocomplete.k-state-border-down,
+.k-autocomplete.k-state-border-up,
+.k-dropdown-wrap.k-state-active,
+.k-picker-wrap.k-state-active,
+.k-imagebrowser .k-image {
+ -webkit-box-shadow: #bbbbbb 0 2px 6px 0;
+ -moz-box-shadow: #bbbbbb 0 2px 6px 0;
+ box-shadow: #bbbbbb 0 2px 6px 0;
+}
+
+/* line 340, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-window {
+ border-color: #c4c4c4;
+ -webkit-box-shadow: #c4c4c4 1px 1px 7px 1px;
+ -moz-box-shadow: #c4c4c4 1px 1px 7px 1px;
+ box-shadow: #c4c4c4 1px 1px 7px 1px;
+}
+
+/* line 346, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-autocomplete .k-input,
+.k-combobox .k-input,
+.k-picker-wrap .k-input {
+ -webkit-box-shadow: #c4c4c4 0 0 1px 1px inset;
+ -moz-box-shadow: #c4c4c4 0 0 1px 1px inset;
+ box-shadow: #c4c4c4 0 0 1px 1px inset;
+}
+
+/* line 376, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-button,
+.k-textbox,
+.k-drag-clue,
+.k-touch-scrollbar,
+.k-window,
+.k-window-titleless .k-window-content,
+.k-window-action,
+.k-pager .k-state-active,
+.k-pager .k-state-hover,
+.k-grid .k-filter-options,
+.k-grouping-header .k-group-indicator,
+.k-autocomplete,
+.k-dropdown-wrap,
+.k-picker-wrap,
+.k-numeric-wrap,
+.k-list-container,
+.k-calendar-container,
+.k-calendar td,
+.k-calendar .k-link,
+.k-treeview .k-state-hover,
+.k-treeview .k-state-selected,
+.k-editor-button .k-state-hover,
+.k-editor-button .k-state-active,
+.k-tooltip,
+.k-tile,
+.k-slider-track,
+.k-slider-selection {
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+}
+
+/* line 386, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-calendar-container.k-state-border-up,
+.k-list-container.k-state-border-up,
+.k-autocomplete.k-state-border-up,
+.k-dropdown-wrap.k-state-border-up,
+.k-picker-wrap.k-state-border-up,
+.k-numeric-wrap.k-state-border-up,
+.k-window-content,
+.k-filter-menu {
+ -webkit-border-radius: 0 0 5px 5px;
+ -moz-border-radius: 0 0 5px 5px;
+ -ms-border-radius: 0 0 5px 5px;
+ -o-border-radius: 0 0 5px 5px;
+ border-radius: 0 0 5px 5px;
+}
+
+/* line 398, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-window-titlebar,
+.k-tabstrip-items .k-item,
+.k-panelbar .k-tabstrip-items .k-item,
+.k-tabstrip-items .k-link,
+.k-calendar-container.k-state-border-down,
+.k-list-container.k-state-border-down,
+.k-autocomplete.k-state-border-down,
+.k-dropdown-wrap.k-state-border-down,
+.k-picker-wrap.k-state-border-down,
+.k-numeric-wrap.k-state-border-down {
+ -webkit-border-radius: 5px 5px 0 0;
+ -moz-border-radius: 5px 5px 0 0;
+ -ms-border-radius: 5px 5px 0 0;
+ -o-border-radius: 5px 5px 0 0;
+ border-radius: 5px 5px 0 0;
+}
+
+/* line 406, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-dropdown-wrap .k-select,
+.k-picker-wrap .k-select,
+.k-numeric-wrap .k-select,
+.k-datetimepicker .k-select + .k-select,
+.k-animation-container .k-calendar-container,
+.k-list-container.k-state-border-right {
+ -webkit-border-radius: 0 5px 5px 0;
+ -moz-border-radius: 0 5px 5px 0;
+ -ms-border-radius: 0 5px 5px 0;
+ -o-border-radius: 0 5px 5px 0;
+ border-radius: 0 5px 5px 0;
+}
+
+/* line 416, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-autocomplete .k-input,
+.k-dropdown-wrap .k-input,
+.k-picker-wrap .k-input,
+.k-numeric-wrap .k-input,
+.k-numeric-wrap .k-link,
+.k-colorpicker .k-selected-color,
+.k-progress,
+.k-progress-status {
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+ background-color: white;
+}
+
+/* line 424, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-list .k-state-hover,
+.k-list .k-state-focused,
+.k-list .k-state-selected,
+.k-dropzone,
+.k-upload-files {
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+}
+
+/* line 428, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-slider .k-button,
+.k-grid .k-slider .k-button {
+ -webkit-border-radius: 13px;
+ -moz-border-radius: 13px;
+ -ms-border-radius: 13px;
+ -o-border-radius: 13px;
+ border-radius: 13px;
+}
+
+/* line 431, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-draghandle {
+ -webkit-border-radius: 7px;
+ -moz-border-radius: 7px;
+ -ms-border-radius: 7px;
+ -o-border-radius: 7px;
+ border-radius: 7px;
+}
+
+/* line 436, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-list > li:first-child i {
+ display: none;
+}
+
+/* line 439, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-autocomplete, .k-combobox, .k-datepicker, .k-timepicker, .k-datetimepicker, .k-numerictextbox, .k-dropdown, .k-selectbox {
+ width: 220px;
+ display: inline-block !important;
+ outline: 0 !important;
+}
+
+/* line 441, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.UsersDispatch .k-autocomplete, .UsersDispatch .k-combobox, .UsersDispatch .k-datepicker, .UsersDispatch .k-timepicker, .UsersDispatch .k-datetimepicker, .UsersDispatch .k-numerictextbox, .UsersDispatch .k-selectbox {
+ display: inline-block !important;
+ outline: 0 !important;
+}
+
+/* line 444, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.UsersDispatch .k-dropdown, .UsersDispatch .k-dropdown-wrap {
+ width: 157px !important;
+ display: inline-block !important;
+ outline: 0 !important;
+}
+
+/* line 446, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-autocomplete:hover, .k-combobox:hover, .k-datepicker:hover, .k-timepicker:hover, .k-datetimepicker:hover, .k-numerictextbox:hover, .k-dropdown:hover, .k-selectbox:hover, .k-select:hover, .k-datepicker:hover, .k-datepicker input:hover {
+ outline: 0 !important;
+}
+
+/* line 447, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-dropdown-wrap {
+ cursor: pointer !important;
+}
+
+/* line 448, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-state-selected.k-state-focused {
+ background-color: #3f71a3 !important;
+}
+
+/* line 450, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-calendar-container.k-state-border-up,
+.k-calendar-container.k-state-border-down {
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+}
+
+/* line 451, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-calendar {
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+}
+/* line 452, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-calendar thead {
+ color: #555;
+}
+/* line 453, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-calendar .k-weekend {
+ background-color: #f8f8f8;
+ -webkit-border-radius: 0;
+ -moz-border-radius: 0;
+ -ms-border-radius: 0;
+ -o-border-radius: 0;
+ border-radius: 0;
+}
+/* line 454, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-calendar .k-weekend:hover {
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+}
+/* line 457, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-calendar tr:last-child td:first-child {
+ -webkit-border-radius: 0 0 5px 5px;
+ -moz-border-radius: 0 0 5px 5px;
+ -ms-border-radius: 0 0 5px 5px;
+ -o-border-radius: 0 0 5px 5px;
+ border-radius: 0 0 5px 5px;
+}
+/* line 458, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-calendar tr:last-child td:last-child {
+ -webkit-border-radius: 0 0 5px 5px;
+ -moz-border-radius: 0 0 5px 5px;
+ -ms-border-radius: 0 0 5px 5px;
+ -o-border-radius: 0 0 5px 5px;
+ border-radius: 0 0 5px 5px;
+}
+/* line 460, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-calendar th {
+ border-bottom: none !important;
+}
+/* line 461, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-calendar td:hover {
+ -webkit-box-shadow: rgba(0, 0, 0, 0) 0 0 0 inset;
+ -moz-box-shadow: rgba(0, 0, 0, 0) 0 0 0 inset;
+ box-shadow: rgba(0, 0, 0, 0) 0 0 0 inset;
+ -webkit-box-shadow: rgba(0, 0, 0, 0) 0 0 0;
+ -moz-box-shadow: rgba(0, 0, 0, 0) 0 0 0;
+ box-shadow: rgba(0, 0, 0, 0) 0 0 0;
+ color: #555;
+ background-color: #e1e1e1;
+ border-color: #e1e1e1;
+}
+
+/* line 463, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-icon-calendar {
+ position: relative;
+ top: -1px;
+}
+
+/* line 466, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.input-prepend .k-button, .input-prepend .k-textbox, .input-prepend .k-drag-clue, .input-prepend .k-touch-scrollbar, .input-prepend .k-window, .input-prepend .k-window-titleless .k-window-content, .input-prepend .k-window-action, .input-prepend .k-pager .k-state-active, .input-prepend .k-pager .k-state-hover, .input-prepend .k-grid .k-filter-options, .input-prepend .k-grouping-header .k-group-indicator, .input-prepend .k-autocomplete, .input-prepend .k-dropdown-wrap, .input-prepend .k-picker-wrap, .input-prepend .k-numeric-wrap, .input-prepend .k-list-container, .input-prepend .k-calendar-container, .input-prepend .k-calendar td, .input-prepend .k-calendar .k-link, .input-prepend .k-treeview .k-state-hover, .input-prepend .k-treeview .k-state-selected, .input-prepend .k-editor-button .k-state-hover, .input-prepend .k-editor-button .k-state-active, .input-prepend .k-tooltip, .input-prepend .k-tile, .input-prepend .k-slider-track, .input-prepend .k-slider-selection {
+ -webkit-border-radius: 0 0 5px 5px;
+ -moz-border-radius: 0 0 5px 5px;
+ -ms-border-radius: 0 0 5px 5px;
+ -o-border-radius: 0 0 5px 5px;
+ border-radius: 0 0 5px 5px;
+ border-left: none;
+}
+
+/* line 468, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-list > .k-state-selected.k-state-focused > span {
+ color: white !important;
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.35);
+}
+
+/* line 469, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-autocomplete {
+ -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0 2px 3px inset;
+ -moz-box-shadow: rgba(0, 0, 0, 0.1) 0 2px 3px inset;
+ box-shadow: rgba(0, 0, 0, 0.1) 0 2px 3px inset;
+}
+/* line 470, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-autocomplete .k-input {
+ -webkit-box-shadow: rgba(0, 0, 0, 0) 0 0 0 inset;
+ -moz-box-shadow: rgba(0, 0, 0, 0) 0 0 0 inset;
+ box-shadow: rgba(0, 0, 0, 0) 0 0 0 inset;
+ -webkit-box-shadow: rgba(0, 0, 0, 0) 0 0 0;
+ -moz-box-shadow: rgba(0, 0, 0, 0) 0 0 0;
+ box-shadow: rgba(0, 0, 0, 0) 0 0 0;
+}
+
+/* line 472, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-picker-wrap {
+ -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0 2px 3px inset;
+ -moz-box-shadow: rgba(0, 0, 0, 0.1) 0 2px 3px inset;
+ box-shadow: rgba(0, 0, 0, 0.1) 0 2px 3px inset;
+}
+/* line 473, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+.k-picker-wrap .k-input {
+ -webkit-box-shadow: rgba(0, 0, 0, 0) 0 0 0 inset;
+ -moz-box-shadow: rgba(0, 0, 0, 0) 0 0 0 inset;
+ box-shadow: rgba(0, 0, 0, 0) 0 0 0 inset;
+ -webkit-box-shadow: rgba(0, 0, 0, 0) 0 0 0;
+ -moz-box-shadow: rgba(0, 0, 0, 0) 0 0 0;
+ box-shadow: rgba(0, 0, 0, 0) 0 0 0;
+}
+
+/* line 475, ../../app/assets/stylesheets/kendo/kendo.css.scss */
+a.k-link {
+ font-weight: normal !important;
+}
+
+/* line 2, ../../app/assets/stylesheets/apps/header.css.scss */
+#header {
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+ background-color: #4f7aa5;
+ background-image: -moz-linear-gradient(top, #4e7ca9, #52799f);
+ background-image: -ms-linear-gradient(top, #4e7ca9, #52799f);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#4e7ca9), to(#52799f));
+ background-image: -webkit-linear-gradient(top, #4e7ca9, #52799f);
+ background-image: -o-linear-gradient(top, #4e7ca9, #52799f);
+ background-image: linear-gradient(top, #4e7ca9, #52799f);
+ background-repeat: repeat-x;
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4e7ca9', endColorstr='#52799f', GradientType=0);
+ background-color: #4f7ba6;
+ background-image: -moz-linear-gradient(top, #4e7ca9, #4e7ca9 25%, #52799f 50%, #52799f 75%);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#4e7ca9), color-stop(25%, #4e7ca9), color-stop(50%, #52799f), to(75%, #52799f));
+ background-image: -webkit-linear-gradient(top, #4e7ca9, #4e7ca9 25%, #52799f 50%, #52799f 75%);
+ background-image: -o-linear-gradient(top, #4e7ca9, #4e7ca9 25%, #52799f 50%, #52799f 75%);
+ background-image: linear-gradient(to bottom, #4e7ca9, #4e7ca9 25%, #52799f 50%, #52799f 75%);
+ background-repeat: no-repeat;
+ border-color: #4e7ca9;
+ border-color: #4e7ca9 #4e7ca9 #365675;
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) fadein(rgba(0, 0, 0, 0.1), 15%);
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4e7ca9', endColorstr='#52799f', GradientType=0);
+ -webkit-border-radius: 0;
+ -moz-border-radius: 0;
+ -ms-border-radius: 0;
+ -o-border-radius: 0;
+ border-radius: 0;
+ border-bottom: 1px solid #447bb3;
+ float: left;
+ width: 100%;
+}
+/* line 4, ../../app/assets/stylesheets/apps/header.css.scss */
+#header #links-region .nav,
+#header #search-region .nav {
+ overflow: visible;
+ margin-bottom: 0;
+ margin-left: 20px;
+}
+/* line 5, ../../app/assets/stylesheets/apps/header.css.scss */
+#header #links-region .nav > li,
+#header #search-region .nav > li {
+ float: left;
+ margin: 6px 5px 6px 0;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+ -webkit-box-shadow: #496886 0 1px 0;
+ -moz-box-shadow: #496886 0 1px 0;
+ box-shadow: #496886 0 1px 0;
+}
+/* line 6, ../../app/assets/stylesheets/apps/header.css.scss */
+#header #links-region .nav > li > a,
+#header #search-region .nav > li > a {
+ color: white;
+ font-weight: 500;
+ padding: 3px 10px;
+ background: url(/assets/rgbapng/ffffff4d.png);
+ background: rgba(255, 255, 255, 0.3);
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+ border: 1px solid #3f78af;
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.35);
+ -webkit-box-shadow: #9bbbdc 0 1px 0 inset;
+ -moz-box-shadow: #9bbbdc 0 1px 0 inset;
+ box-shadow: #9bbbdc 0 1px 0 inset;
+}
+/* line 7, ../../app/assets/stylesheets/apps/header.css.scss */
+#header #links-region .nav > li > a:hover,
+#header #search-region .nav > li > a:hover {
+ color: white;
+ background: url(/assets/rgbapng/ffffff33.png);
+ background: rgba(255, 255, 255, 0.2);
+}
+/* line 9, ../../app/assets/stylesheets/apps/header.css.scss */
+#header #links-region .nav > li.active,
+#header #search-region .nav > li.active {
+ background-color: #3b6893;
+ -webkit-box-shadow: #7092b4 0 1px 0;
+ -moz-box-shadow: #7092b4 0 1px 0;
+ box-shadow: #7092b4 0 1px 0;
+ outline: 0 !important;
+}
+/* line 10, ../../app/assets/stylesheets/apps/header.css.scss */
+#header #links-region .nav > li.active > a,
+#header #search-region .nav > li.active > a {
+ background-color: #3b6893;
+ border: 1px solid #41688e;
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.5);
+ -webkit-box-shadow: #2f5070 0 1px 0 inset;
+ -moz-box-shadow: #2f5070 0 1px 0 inset;
+ box-shadow: #2f5070 0 1px 0 inset;
+}
+/* line 11, ../../app/assets/stylesheets/apps/header.css.scss */
+#header #links-region .nav > li.active > a:hover,
+#header #search-region .nav > li.active > a:hover {
+ background-color: #3b6893;
+}
+/* line 16, ../../app/assets/stylesheets/apps/header.css.scss */
+#header #links-region .nav > li.btn-group > a:first-child,
+#header #search-region .nav > li.btn-group > a:first-child {
+ -webkit-border-radius: 5px 0 0 5px;
+ -moz-border-radius: 5px 0 0 5px;
+ -ms-border-radius: 5px 0 0 5px;
+ -o-border-radius: 5px 0 0 5px;
+ border-radius: 5px 0 0 5px;
+}
+/* line 17, ../../app/assets/stylesheets/apps/header.css.scss */
+#header #links-region .nav > li.btn-group > a.dropdown-toggle,
+#header #search-region .nav > li.btn-group > a.dropdown-toggle {
+ -webkit-border-radius: 0 5px 5px 0;
+ -moz-border-radius: 0 5px 5px 0;
+ -ms-border-radius: 0 5px 5px 0;
+ -o-border-radius: 0 5px 5px 0;
+ border-radius: 0 5px 5px 0;
+ padding: 3px 5px;
+}
+/* line 18, ../../app/assets/stylesheets/apps/header.css.scss */
+#header #links-region .nav > li.btn-group > a.dropdown-toggle .caret,
+#header #search-region .nav > li.btn-group > a.dropdown-toggle .caret {
+ opacity: 1;
+ border-bottom-color: white !important;
+ border-top-color: white !important;
+ position: relative;
+ left: -2px;
+}
+/* line 21, ../../app/assets/stylesheets/apps/header.css.scss */
+#header #links-region .nav > li.btn-group.open .dropdown-menu,
+#header #search-region .nav > li.btn-group.open .dropdown-menu {
+ top: 24px;
+ left: auto;
+ padding: 0;
+}
+/* line 24, ../../app/assets/stylesheets/apps/header.css.scss */
+#header #links-region .nav .divider-vertical,
+#header #search-region .nav .divider-vertical {
+ background-color: #f4f4f5;
+ border-right: 1px solid #d7d7d8;
+ margin: 0;
+ height: 35px;
+}
+/* line 25, ../../app/assets/stylesheets/apps/header.css.scss */
+#header #links-region .nav .divider-vertical span,
+#header #search-region .nav .divider-vertical span {
+ font-size: 0;
+ display: none;
+}
+
+/* line 29, ../../app/assets/stylesheets/apps/header.css.scss */
+#results-exceeded-maximum-container {
+ display: none;
+}
+/* line 30, ../../app/assets/stylesheets/apps/header.css.scss */
+#results-exceeded-maximum-container .alert {
+ margin: 5px;
+ padding: 2px 5px;
+ display: inline-block;
+}
+
+/* line 32, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown {
+ margin: 9px 0 0 10px;
+ position: relative;
+}
+/* line 33, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown > a {
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+ -webkit-box-shadow: #496886 0 1px 0;
+ -moz-box-shadow: #496886 0 1px 0;
+ box-shadow: #496886 0 1px 0;
+ color: white;
+ font-weight: 500;
+ padding: 4px 10px;
+ background: url(/assets/rgbapng/ffffff4d.png);
+ background: rgba(255, 255, 255, 0.3);
+ border: 1px solid #3f78af;
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.35);
+ -webkit-box-shadow: #9bbbdc 0 1px 0 inset;
+ -moz-box-shadow: #9bbbdc 0 1px 0 inset;
+ box-shadow: #9bbbdc 0 1px 0 inset;
+}
+/* line 34, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown > a:hover {
+ color: white !important;
+ background: url(/assets/rgbapng/ffffff33.png);
+ background: rgba(255, 255, 255, 0.2);
+ text-decoration: none !important;
+}
+/* line 35, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown > a.active {
+ background-color: #3b6893;
+ -webkit-box-shadow: #7092b4 0 1px 0;
+ -moz-box-shadow: #7092b4 0 1px 0;
+ box-shadow: #7092b4 0 1px 0;
+ outline: 0 !important;
+}
+/* line 36, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown > a.active > a {
+ background-color: #3b6893;
+ border: 1px solid #41688e;
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.5);
+ -webkit-box-shadow: #2f5070 0 1px 0 inset;
+ -moz-box-shadow: #2f5070 0 1px 0 inset;
+ box-shadow: #2f5070 0 1px 0 inset;
+}
+/* line 37, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown > a.active > a:hover {
+ background-color: #3b6893;
+}
+/* line 40, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown > a .icons-search-tiny-white {
+ vertical-align: baseline;
+ margin-right: 1px;
+}
+/* line 41, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown > a .caret {
+ vertical-align: middle;
+ border-bottom-color: white !important;
+ border-top-color: white !important;
+}
+/* line 44, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown.open > a {
+ background-color: #f3f6f7;
+ color: #3e4852;
+ -webkit-border-radius: 5px 5px 0 0;
+ -moz-border-radius: 5px 5px 0 0;
+ -ms-border-radius: 5px 5px 0 0;
+ -o-border-radius: 5px 5px 0 0;
+ border-radius: 5px 5px 0 0;
+ border-bottom: none;
+ text-shadow: 0px 1px 0px white;
+}
+/* line 45, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown.open > a:hover {
+ background-color: #f3f6f7;
+ color: #3e4852 !important;
+}
+/* line 46, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown.open > a:hover .caret {
+ border-bottom-color: #3e4852 !important;
+ border-top-color: #3e4852 !important;
+ opacity: 1 !important;
+}
+/* line 49, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown.open .icons-search-tiny-white {
+ background-position: 0 -1854px;
+ height: 12px;
+ width: 11px;
+}
+/* line 50, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown.open .caret {
+ border-bottom-color: #3e4852 !important;
+ border-top-color: #3e4852 !important;
+}
+/* line 52, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown > .dropdown-menu {
+ background-color: #f3f6f7;
+ border-top: none;
+ -webkit-border-radius: 5px 0 5px 5px;
+ -moz-border-radius: 5px 0 5px 5px;
+ -ms-border-radius: 5px 0 5px 5px;
+ -o-border-radius: 5px 0 5px 5px;
+ border-radius: 5px 0 5px 5px;
+ -webkit-box-shadow: rgba(0, 0, 0, 0.15) 0 10px 13px;
+ -moz-box-shadow: rgba(0, 0, 0, 0.15) 0 10px 13px;
+ box-shadow: rgba(0, 0, 0, 0.15) 0 10px 13px;
+}
+/* line 53, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown > .dropdown-menu form {
+ margin-bottom: 0;
+}
+/* line 54, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown > .dropdown-menu .control-label {
+ font-size: 12px !important;
+ margin-bottom: 1px !important;
+ font-weight: 400 !important;
+ color: #888;
+}
+/* line 55, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown > .dropdown-menu .line-container {
+ text-align: center;
+ font-variant: small-caps;
+ position: relative;
+ top: -5px;
+ margin-bottom: 5px;
+}
+/* line 56, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown > .dropdown-menu .line-container .line {
+ width: 100%;
+ display: inline-block;
+ background-color: #CCC;
+ height: 1px;
+ border-bottom: 1px solid white;
+}
+/* line 57, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown > .dropdown-menu .line-container .line-or {
+ position: absolute;
+ background-color: #f3f6f7;
+ width: 25px;
+ left: 50%;
+ top: 0;
+ font-weight: 500 !important;
+ color: #737373;
+ text-shadow: 0px 1px 0px white;
+ margin-left: -12px;
+ margin-top: 2px;
+}
+/* line 59, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown > .dropdown-menu .controls {
+ line-height: 21px;
+}
+/* line 61, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown > .dropdown-menu .controls input, #search-dropdown > .dropdown-menu .controls textarea,
+#search-dropdown > .dropdown-menu .controls select, #search-dropdown > .dropdown-menu .controls .uneditable-input {
+ -webkit-border-radius: 3px;
+ -moz-border-radius: 3px;
+ -ms-border-radius: 3px;
+ -o-border-radius: 3px;
+ border-radius: 3px;
+ line-height: 14px !important;
+ height: 14px !important;
+}
+/* line 62, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown > .dropdown-menu .controls .error-wrap {
+ margin-left: 0 !important;
+}
+/* line 64, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown > .dropdown-menu .controls input[type=checkbox],
+#search-dropdown > .dropdown-menu .controls .checkbox-label {
+ display: inline-block;
+}
+/* line 65, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown > .dropdown-menu .controls .checkbox-label {
+ margin-left: 5px;
+ margin-right: 10px;
+ vertical-align: text-top;
+ font-size: 13px;
+ color: #888;
+}
+/* line 66, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown > .dropdown-menu .controls .btn.custom-dropdown-toggle {
+ background-color: #f8f8f8;
+ background-image: -moz-linear-gradient(top, white, #eeeeee);
+ background-image: -ms-linear-gradient(top, white, #eeeeee);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(white), to(#eeeeee));
+ background-image: -webkit-linear-gradient(top, white, #eeeeee);
+ background-image: -o-linear-gradient(top, white, #eeeeee);
+ background-image: linear-gradient(top, #ffffff, #eeeeee);
+ background-repeat: repeat-x;
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='white', endColorstr='#eeeeee', GradientType=0);
+ width: 220px;
+ text-align: left;
+ -webkit-border-radius: 3px;
+ -moz-border-radius: 3px;
+ -ms-border-radius: 3px;
+ -o-border-radius: 3px;
+ border-radius: 3px;
+ text-shadow: 0px 1px 0px white;
+}
+/* line 67, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown > .dropdown-menu .controls .btn.custom-dropdown-toggle .caret {
+ float: right;
+ border-bottom-color: #666666 !important;
+ border-top-color: #666666 !important;
+ opacity: 1 !important;
+}
+/* line 68, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown > .dropdown-menu .controls .btn.custom-dropdown-toggle:hover {
+ color: #666666 !important;
+}
+/* line 71, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown > .dropdown-menu .form-actions {
+ padding: 10px;
+ -webkit-border-radius: 0 0 5px 5px;
+ -moz-border-radius: 0 0 5px 5px;
+ -ms-border-radius: 0 0 5px 5px;
+ -o-border-radius: 0 0 5px 5px;
+ border-radius: 0 0 5px 5px;
+}
+/* line 72, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown > .dropdown-menu .form-actions .btn-no-bg {
+ position: relative;
+ top: 4px;
+ color: #737373 !important;
+ text-shadow: 0px 1px 0px white;
+}
+/* line 75, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown .content-wrapper {
+ padding: 0 0 10px 0;
+}
+/* line 76, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown .content-wrapper ul {
+ overflow: auto;
+}
+/* line 77, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown .content-wrapper ul > .control-group {
+ padding: 0 15px;
+}
+/* line 78, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown .content-wrapper ul > .control-group.bolded-label > .control-label {
+ font-weight: 500 !important;
+ text-transform: uppercase;
+}
+/* line 79, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown .content-wrapper ul > .control-group.created-between-input {
+ float: left;
+}
+/* line 80, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown .content-wrapper ul > .control-group.created-between-input .controls {
+ float: left;
+}
+/* line 81, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown .content-wrapper ul > .control-group.created-between-input .controls .k-datepicker {
+ width: 105px !important;
+}
+/* line 83, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown .content-wrapper ul > .control-group.created-between-input.created-between-input-start {
+ padding-right: 0;
+}
+/* line 84, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown .content-wrapper ul > .control-group.created-between-input.created-between-input-end {
+ margin-top: 19px;
+}
+/* line 86, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown .content-wrapper ul > .control-group .folder-types-select-dropdown {
+ padding: 0;
+ z-index: 2000;
+}
+/* line 87, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown .content-wrapper ul > .control-group .folder-types-select-dropdown > li {
+ padding: 0px 5px;
+}
+/* line 88, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown .content-wrapper ul > .control-group .folder-types-select-dropdown > li:first-child {
+ padding-bottom: 1px;
+ margin-bottom: 2px;
+ background-color: #f4f4f4;
+ border-bottom: 1px solid #eeeeee;
+ -webkit-border-radius: 5px 5px 0 0;
+ -moz-border-radius: 5px 5px 0 0;
+ -ms-border-radius: 5px 5px 0 0;
+ -o-border-radius: 5px 5px 0 0;
+ border-radius: 5px 5px 0 0;
+ color: #4d80b4;
+ text-shadow: 0px 1px 0px white;
+}
+/* line 89, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown .content-wrapper ul > .control-group .folder-types-select-dropdown > li:last-child {
+ padding-bottom: 5px;
+ margin-bottom: 0;
+}
+/* line 91, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown .content-wrapper ul > .control-group .folder-types-select-dropdown label {
+ font-weight: normal;
+ font-size: 13px;
+ cursor: pointer;
+}
+/* line 92, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown .content-wrapper ul > .control-group .folder-types-select-dropdown input[type=checkbox] {
+ position: relative;
+ top: -2px;
+}
+/* line 93, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown .content-wrapper ul > .control-group .folder-types-select-dropdown .icons-cancel {
+ float: right;
+ cursor: pointer;
+ position: relative;
+ top: 2px;
+}
+/* line 97, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown .content-wrapper.search-in-container {
+ padding: 0;
+}
+/* line 98, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown .content-wrapper.search-in-container li {
+ padding: 8px 15px 15px !important;
+ border-bottom: 1px solid #cccccc;
+ -webkit-box-shadow: white 0 1px 0;
+ -moz-box-shadow: white 0 1px 0;
+ box-shadow: white 0 1px 0;
+ -webkit-border-radius: 5px 5px 0 0;
+ -moz-border-radius: 5px 5px 0 0;
+ -ms-border-radius: 5px 5px 0 0;
+ -o-border-radius: 5px 5px 0 0;
+ border-radius: 5px 5px 0 0;
+}
+/* line 99, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown .content-wrapper.search-in-container .k-dropdown > .k-dropdown-wrap {
+ background-color: #f8f8f8;
+ background-image: -moz-linear-gradient(top, white, #eeeeee);
+ background-image: -ms-linear-gradient(top, white, #eeeeee);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(white), to(#eeeeee));
+ background-image: -webkit-linear-gradient(top, white, #eeeeee);
+ background-image: -o-linear-gradient(top, white, #eeeeee);
+ background-image: linear-gradient(top, #ffffff, #eeeeee);
+ background-repeat: repeat-x;
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='white', endColorstr='#eeeeee', GradientType=0);
+}
+/* line 100, ../../app/assets/stylesheets/apps/header.css.scss */
+#search-dropdown .content-wrapper.search-in-container .k-dropdown > .k-dropdown-wrap > .k-input {
+ background-color: #f8f8f8;
+ background-image: -moz-linear-gradient(top, white, #eeeeee);
+ background-image: -ms-linear-gradient(top, white, #eeeeee);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(white), to(#eeeeee));
+ background-image: -webkit-linear-gradient(top, white, #eeeeee);
+ background-image: -o-linear-gradient(top, white, #eeeeee);
+ background-image: linear-gradient(top, #ffffff, #eeeeee);
+ background-repeat: repeat-x;
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='white', endColorstr='#eeeeee', GradientType=0);
+ -webkit-border-radius: 0;
+ -moz-border-radius: 0;
+ -ms-border-radius: 0;
+ -o-border-radius: 0;
+ border-radius: 0;
+ text-shadow: 0px 1px 0px white;
+}
+
+/* line 105, ../../app/assets/stylesheets/apps/header.css.scss */
+#company_name_or_id-list {
+ width: 210px !important;
+}
+/* line 106, ../../app/assets/stylesheets/apps/header.css.scss */
+#company_name_or_id-list li {
+ border: none;
+ border-bottom: 1px solid #cccccc;
+ line-height: 14px !important;
+ padding: 3px;
+}
+/* line 107, ../../app/assets/stylesheets/apps/header.css.scss */
+#company_name_or_id-list li:hover {
+ -webkit-border-radius: 0;
+ -moz-border-radius: 0;
+ -ms-border-radius: 0;
+ -o-border-radius: 0;
+ border-radius: 0;
+ border: none;
+ border-bottom: 1px solid #cccccc;
+ padding: 3px;
+ cursor: pointer;
+}
+/* line 108, ../../app/assets/stylesheets/apps/header.css.scss */
+#company_name_or_id-list li:last-child {
+ border-bottom: none;
+}
+/* line 109, ../../app/assets/stylesheets/apps/header.css.scss */
+#company_name_or_id-list li > .autocomplete-company-item {
+ padding: 2px 0;
+}
+/* line 110, ../../app/assets/stylesheets/apps/header.css.scss */
+#company_name_or_id-list li > .autocomplete-company-item > div {
+ overflow: auto;
+ text-shadow: 0px 1px 0px white;
+}
+/* line 111, ../../app/assets/stylesheets/apps/header.css.scss */
+#company_name_or_id-list li > .autocomplete-company-item > div > span {
+ overflow: visible;
+ text-overflow: clip;
+ white-space: normal;
+ word-wrap: break-word;
+ overflow: hidden;
+}
+/* line 113, ../../app/assets/stylesheets/apps/header.css.scss */
+#company_name_or_id-list li > .autocomplete-company-item > div .customer-name,
+#company_name_or_id-list li > .autocomplete-company-item > div .customer-number {
+ font-weight: 500;
+ font-size: 13px;
+}
+/* line 114, ../../app/assets/stylesheets/apps/header.css.scss */
+#company_name_or_id-list li > .autocomplete-company-item > div .customer-name {
+ float: left;
+ width: 60%;
+}
+/* line 115, ../../app/assets/stylesheets/apps/header.css.scss */
+#company_name_or_id-list li > .autocomplete-company-item > div .customer-number {
+ float: right;
+ text-align: right;
+ width: 39%;
+ padding-left: 1%;
+}
+/* line 117, ../../app/assets/stylesheets/apps/header.css.scss */
+#company_name_or_id-list li > .autocomplete-company-item > div .customer-address,
+#company_name_or_id-list li > .autocomplete-company-item > div .customer-city-state {
+ color: #999;
+ font-size: 11px;
+}
+/* line 118, ../../app/assets/stylesheets/apps/header.css.scss */
+#company_name_or_id-list li > .autocomplete-company-item > div .customer-address {
+ float: left;
+ width: 40%;
+}
+/* line 119, ../../app/assets/stylesheets/apps/header.css.scss */
+#company_name_or_id-list li > .autocomplete-company-item > div .customer-city-state {
+ float: right;
+ text-align: right;
+ width: 59%;
+ padding-left: 1%;
+}
+/* line 122, ../../app/assets/stylesheets/apps/header.css.scss */
+#company_name_or_id-list li.k-state-focused {
+ -webkit-border-radius: 0;
+ -moz-border-radius: 0;
+ -ms-border-radius: 0;
+ -o-border-radius: 0;
+ border-radius: 0;
+}
+/* line 123, ../../app/assets/stylesheets/apps/header.css.scss */
+#company_name_or_id-list li.k-state-focused > div > div > span {
+ color: white !important;
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.35);
+}
+/* line 125, ../../app/assets/stylesheets/apps/header.css.scss */
+#company_name_or_id-list li.k-state-focused:hover > div > div > span {
+ text-shadow: 0px 1px 0px white;
+}
+/* line 126, ../../app/assets/stylesheets/apps/header.css.scss */
+#company_name_or_id-list li.k-state-focused:hover .customer-name, #company_name_or_id-list li.k-state-focused:hover .customer-number {
+ color: #4b5566 !important;
+}
+/* line 128, ../../app/assets/stylesheets/apps/header.css.scss */
+#company_name_or_id-list li.k-state-focused:hover .customer-address,
+#company_name_or_id-list li.k-state-focused:hover .customer-city-state {
+ color: #999999 !important;
+}
+
+/* line 133, ../../app/assets/stylesheets/apps/header.css.scss */
+.folder-types-select-dropdown {
+ left: 0 !important;
+ right: auto !important;
+ margin: 5px 0 0 15px;
+}
+
+/* line 134, ../../app/assets/stylesheets/apps/header.css.scss */
+.custom-dropdown-toggle {
+ font-weight: normal;
+}
+
+/* line 137, ../../app/assets/stylesheets/apps/header.css.scss */
+.created-between-input-start .controls,
+.created-between-input-end .controls {
+ width: 100px;
+}
+/* line 138, ../../app/assets/stylesheets/apps/header.css.scss */
+.created-between-input-start .k-datepicker,
+.created-between-input-end .k-datepicker {
+ width: auto;
+}
+
+/* line 140, ../../app/assets/stylesheets/apps/header.css.scss */
+#settings-nav {
+ margin-bottom: 0;
+}
+/* line 141, ../../app/assets/stylesheets/apps/header.css.scss */
+#settings-nav > li {
+ float: left;
+ margin-left: 5px;
+ margin-top: 6px;
+ -webkit-box-shadow: rgba(0, 0, 0, 0) 0 0 0 inset;
+ -moz-box-shadow: rgba(0, 0, 0, 0) 0 0 0 inset;
+ box-shadow: rgba(0, 0, 0, 0) 0 0 0 inset;
+ -webkit-box-shadow: rgba(0, 0, 0, 0) 0 0 0;
+ -moz-box-shadow: rgba(0, 0, 0, 0) 0 0 0;
+ box-shadow: rgba(0, 0, 0, 0) 0 0 0;
+}
+/* line 142, ../../app/assets/stylesheets/apps/header.css.scss */
+#settings-nav > li > a {
+ font-size: 12px;
+ background-color: none;
+ background-image: none;
+ background: url(/assets/rgbapng/ffffff00.png);
+ background: rgba(255, 255, 255, 0);
+ border: none;
+ -webkit-box-shadow: rgba(0, 0, 0, 0) 0 0 0 inset;
+ -moz-box-shadow: rgba(0, 0, 0, 0) 0 0 0 inset;
+ box-shadow: rgba(0, 0, 0, 0) 0 0 0 inset;
+ -webkit-box-shadow: rgba(0, 0, 0, 0) 0 0 0;
+ -moz-box-shadow: rgba(0, 0, 0, 0) 0 0 0;
+ box-shadow: rgba(0, 0, 0, 0) 0 0 0;
+ color: white;
+ font-weight: 500;
+ padding: 3px 10px;
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.35);
+}
+/* line 143, ../../app/assets/stylesheets/apps/header.css.scss */
+#settings-nav > li > a:hover {
+ color: white;
+ background: url(/assets/rgbapng/ffffff4d.png);
+ background: rgba(255, 255, 255, 0.3);
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+ -webkit-box-shadow: #9bbbdc 0 1px 0 inset;
+ -moz-box-shadow: #9bbbdc 0 1px 0 inset;
+ box-shadow: #9bbbdc 0 1px 0 inset;
+}
+/* line 144, ../../app/assets/stylesheets/apps/header.css.scss */
+#settings-nav > li > a .caret {
+ border-bottom-color: white !important;
+ border-top-color: white !important;
+ opacity: 1 !important;
+}
+/* line 146, ../../app/assets/stylesheets/apps/header.css.scss */
+#settings-nav > li.active {
+ background-color: #4d80b4;
+ -webkit-box-shadow: #7092b4 0 1px 0;
+ -moz-box-shadow: #7092b4 0 1px 0;
+ box-shadow: #7092b4 0 1px 0;
+ outline: 0 !important;
+ background: url(/assets/rgbapng/ffffff33.png);
+ background: rgba(255, 255, 255, 0.2);
+}
+/* line 147, ../../app/assets/stylesheets/apps/header.css.scss */
+#settings-nav > li.active > a {
+ background-color: #3e78b0;
+ border: 1px solid #41688e;
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.5);
+ -webkit-box-shadow: #3a70a5 0 1px 0 inset;
+ -moz-box-shadow: #3a70a5 0 1px 0 inset;
+ box-shadow: #3a70a5 0 1px 0 inset;
+}
+/* line 148, ../../app/assets/stylesheets/apps/header.css.scss */
+#settings-nav > li.active > a:hover {
+ background-color: #3e78b0;
+}
+/* line 151, ../../app/assets/stylesheets/apps/header.css.scss */
+#settings-nav > li:last-child a:hover {
+ text-decoration: none;
+}
+
+/* line 154, ../../app/assets/stylesheets/apps/header.css.scss */
+#settings-dropdown ul.dropdown-menu {
+ z-index: 2000 !important;
+}
+
+/* line 155, ../../app/assets/stylesheets/apps/header.css.scss */
+.logout-link a {
+ padding: 5px 5px 5px 22px !important;
+ border-top: 1px solid #d7dadf;
+ background: url(/assets/icons/logout-arrow.png) no-repeat 5% 55%;
+}
+/* line 156, ../../app/assets/stylesheets/apps/header.css.scss */
+.logout-link a i.icons-logout-arrow {
+ margin-right: 2px;
+}
+/* line 157, ../../app/assets/stylesheets/apps/header.css.scss */
+.logout-link a:hover {
+ background: url(/assets/icons/logout-arrow-white.png) #eeeeee no-repeat 5% 55%;
+}
+
+/* line 2, ../../app/assets/stylesheets/apps/login.css.scss */
+#SignIn {
+ padding-bottom: 150px;
+}
+/* line 3, ../../app/assets/stylesheets/apps/login.css.scss */
+#SignIn h1 {
+ font-size: 26px;
+ text-shadow: 0px 1px 0px white;
+}
+/* line 4, ../../app/assets/stylesheets/apps/login.css.scss */
+#SignIn #PageTitle {
+ padding-top: 15px;
+ padding-left: 20px;
+}
+/* line 5, ../../app/assets/stylesheets/apps/login.css.scss */
+#SignIn .LoginHeader {
+ margin-top: 10px;
+ margin-bottom: 100px;
+}
+/* line 6, ../../app/assets/stylesheets/apps/login.css.scss */
+#SignIn .well {
+ overflow: auto;
+ background-color: #f4f6f7;
+ margin: 0 250px;
+ padding: 0;
+ -webkit-border-radius: 10px 10px;
+ -moz-border-radius: 10px / 10px;
+ border-radius: 10px / 10px;
+}
+/* line 7, ../../app/assets/stylesheets/apps/login.css.scss */
+#SignIn form {
+ margin-bottom: 0;
+}
+/* line 8, ../../app/assets/stylesheets/apps/login.css.scss */
+#SignIn label {
+ text-shadow: 0px 1px 0px white;
+}
+/* line 9, ../../app/assets/stylesheets/apps/login.css.scss */
+#SignIn fieldset {
+ padding: 10px 20px 20px;
+ border: 0;
+ -webkit-box-shadow: none;
+ -moz-box-shadow: none;
+ box-shadow: none;
+}
+/* line 10, ../../app/assets/stylesheets/apps/login.css.scss */
+#SignIn .btn {
+ margin-bottom: 0;
+}
+/* line 11, ../../app/assets/stylesheets/apps/login.css.scss */
+#SignIn .password {
+ margin-bottom: 0;
+}
+/* line 12, ../../app/assets/stylesheets/apps/login.css.scss */
+#SignIn .password .controls {
+ margin-bottom: 5px;
+}
+/* line 14, ../../app/assets/stylesheets/apps/login.css.scss */
+#SignIn .login-help-links {
+ margin: 0;
+ font-size: 12px;
+ overflow: auto;
+}
+/* line 15, ../../app/assets/stylesheets/apps/login.css.scss */
+#SignIn .login-help-links .controls {
+ overflow: auto;
+}
+/* line 16, ../../app/assets/stylesheets/apps/login.css.scss */
+#SignIn .login-help-links .controls label, #SignIn .login-help-links .controls span {
+ text-shadow: 0px 1px 0px white;
+ float: left;
+}
+/* line 17, ../../app/assets/stylesheets/apps/login.css.scss */
+#SignIn .login-help-links .controls label {
+ padding-top: 0;
+ font-size: 13px;
+}
+/* line 18, ../../app/assets/stylesheets/apps/login.css.scss */
+#SignIn .login-help-links .controls span {
+ display: inline-block;
+}
+/* line 22, ../../app/assets/stylesheets/apps/login.css.scss */
+#SignIn .forgot-pw-field > div:first-child
++ div {
+ margin-bottom: 0;
+}
+/* line 23, ../../app/assets/stylesheets/apps/login.css.scss */
+#SignIn .forgot-pw-field > div:first-child
++ div .controls {
+ margin-bottom: 0;
+}
+/* line 25, ../../app/assets/stylesheets/apps/login.css.scss */
+#SignIn .forgot-user-field {
+ font-size: 12px;
+ overflow: auto;
+}
+/* line 26, ../../app/assets/stylesheets/apps/login.css.scss */
+#SignIn .forgot-user-field .controls {
+ overflow: auto;
+}
+/* line 27, ../../app/assets/stylesheets/apps/login.css.scss */
+#SignIn .forgot-user-field .controls span {
+ display: inline-block;
+}
+/* line 30, ../../app/assets/stylesheets/apps/login.css.scss */
+#SignIn .form-actions {
+ -webkit-border-radius: 0 0 10px 10px;
+ -moz-border-radius: 0 0 10px 10px;
+ -ms-border-radius: 0 0 10px 10px;
+ -o-border-radius: 0 0 10px 10px;
+ border-radius: 0 0 10px 10px;
+}
+/* line 31, ../../app/assets/stylesheets/apps/login.css.scss */
+#SignIn .form-horizontal .controls {
+ overflow: visible !important;
+}
+
+/* line 1, ../../app/assets/stylesheets/apps/admin.css.scss */
+#accounts-list-layout #accounts-list tr {
+ text-shadow: 0px 1px 0px white;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#accounts-list-layout #accounts-list tr th:first-child {
+ width: 7%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#accounts-list-layout #accounts-list tr th:first-child + th {
+ width: 25%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#accounts-list-layout #accounts-list tr th:first-child + th + th {
+ width: 10%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#accounts-list-layout #accounts-list tr th:first-child + th + th + th {
+ width: 27%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#accounts-list-layout #accounts-list tr th:first-child + th + th + th + th {
+ width: 8%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#accounts-list-layout #accounts-list tr th:first-child + th + th + th + th + th {
+ width: 8%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#accounts-list-layout #accounts-list tr th:first-child + th + th + th + th + th + th {
+ width: 15%;
+}
+
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#admin-user-list tr th:first-child {
+ width: 29%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#admin-user-list tr th:first-child + th {
+ width: 25%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#admin-user-list tr th:first-child + th + th {
+ width: 25%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#admin-user-list tr th:first-child + th + th + th {
+ width: 10%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#admin-user-list tr th:first-child + th + th + th + th {
+ width: 11%;
+}
+/* line 4, ../../app/assets/stylesheets/apps/admin.css.scss */
+#admin-user-list tr .user-role-column > div:first-child {
+ width: 10%;
+}
+/* line 5, ../../app/assets/stylesheets/apps/admin.css.scss */
+#admin-user-list tr .user-role-column > div:last-child {
+ width: 90%;
+}
+
+/* line 1, ../../app/assets/stylesheets/apps/analytics/dashboard.scss */
+#customers-recent-activity {
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+ width: 65%;
+ min-width: 65%;
+ max-width: 65%;
+ padding: 20px;
+ border: 1px solid #eef0f1;
+ float: left;
+ border-left: none;
+}
+
+/* line 2, ../../app/assets/stylesheets/apps/analytics/dashboard.scss */
+#folders-recent-created {
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+ width: 35%;
+ min-width: 35%;
+ max-width: 35%;
+ padding: 20px;
+ border: 1px solid #eef0f1;
+ float: left;
+ border-left: none;
+ border-right: none;
+}
+
+/* line 3, ../../app/assets/stylesheets/apps/analytics/planning.css.scss */
+#form-type-overdue-list .analytics-header-list {
+ margin-top: 10px;
+}
+/* line 7, ../../app/assets/stylesheets/apps/analytics/planning.css.scss */
+#form-type-overdue-list .analytics-list > li > div:first-child,
+#form-type-overdue-list .analytics-header-list > li > div:first-child {
+ width: 49%;
+}
+/* line 8, ../../app/assets/stylesheets/apps/analytics/planning.css.scss */
+#form-type-overdue-list .analytics-list > li > div:first-child + div,
+#form-type-overdue-list .analytics-header-list > li > div:first-child + div {
+ width: 26%;
+}
+/* line 9, ../../app/assets/stylesheets/apps/analytics/planning.css.scss */
+#form-type-overdue-list .analytics-list > li > div:first-child + div + div,
+#form-type-overdue-list .analytics-header-list > li > div:first-child + div + div {
+ width: 25%;
+}
+/* line 14, ../../app/assets/stylesheets/apps/analytics/planning.css.scss */
+#form-type-overdue-list .analytics-list {
+ border: 1px solid #eceeee;
+}
+/* line 15, ../../app/assets/stylesheets/apps/analytics/planning.css.scss */
+#form-type-overdue-list .analytics-list > li {
+ text-shadow: 0px 1px 0px white;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+ background-color: #fbfcfc;
+ background-image: -moz-linear-gradient(top, #fcfefe, #fafbfb);
+ background-image: -ms-linear-gradient(top, #fcfefe, #fafbfb);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fcfefe), to(#fafbfb));
+ background-image: -webkit-linear-gradient(top, #fcfefe, #fafbfb);
+ background-image: -o-linear-gradient(top, #fcfefe, #fafbfb);
+ background-image: linear-gradient(top, #fcfefe, #fafbfb);
+ background-repeat: repeat-x;
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fcfefe', endColorstr='#fafbfb', GradientType=0);
+ background-color: #fbfdfd;
+ background-image: -moz-linear-gradient(top, #fcfefe, #fcfefe 25%, #fafbfb 50%, #fafbfb 75%);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fcfefe), color-stop(25%, #fcfefe), color-stop(50%, #fafbfb), to(75%, #fafbfb));
+ background-image: -webkit-linear-gradient(top, #fcfefe, #fcfefe 25%, #fafbfb 50%, #fafbfb 75%);
+ background-image: -o-linear-gradient(top, #fcfefe, #fcfefe 25%, #fafbfb 50%, #fafbfb 75%);
+ background-image: linear-gradient(to bottom, #fcfefe, #fcfefe 25%, #fafbfb 50%, #fafbfb 75%);
+ background-repeat: no-repeat;
+ border-color: #fcfefe;
+ border-color: #fcfefe #fcfefe #c3ebeb;
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) fadein(rgba(0, 0, 0, 0.1), 15%);
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fcfefe', endColorstr='#fafbfb', GradientType=0);
+ -webkit-border-radius: 0;
+ -moz-border-radius: 0;
+ -ms-border-radius: 0;
+ -o-border-radius: 0;
+ border-radius: 0;
+ display: hidden;
+ border-bottom: 1px solid #efeff3;
+ font-weight: bold;
+ color: #999;
+ font-size: 11px;
+}
+/* line 16, ../../app/assets/stylesheets/apps/analytics/planning.css.scss */
+#form-type-overdue-list .analytics-list > li .analytics-list-form-type-text {
+ line-height: 16px;
+ padding-top: 3px;
+ width: 84%;
+}
+/* line 17, ../../app/assets/stylesheets/apps/analytics/planning.css.scss */
+#form-type-overdue-list .analytics-list > li .analytics-list-form-type-name {
+ color: #576165;
+ font-size: 14px;
+}
+/* line 18, ../../app/assets/stylesheets/apps/analytics/planning.css.scss */
+#form-type-overdue-list .analytics-list > li .analytics-list-companies span {
+ padding: 0 5px;
+ display: inline-block;
+}
+/* line 19, ../../app/assets/stylesheets/apps/analytics/planning.css.scss */
+#form-type-overdue-list .analytics-list > li .analytics-list-companies-name {
+ font-size: 17px;
+ line-height: 24px;
+ border-bottom: 1px solid #eeeeee;
+}
+/* line 20, ../../app/assets/stylesheets/apps/analytics/planning.css.scss */
+#form-type-overdue-list .analytics-list > li .analytics-list-companies-out-of {
+ border-top: 1px solid white;
+}
+/* line 21, ../../app/assets/stylesheets/apps/analytics/planning.css.scss */
+#form-type-overdue-list .analytics-list > li .analytics-list-form-type > div {
+ padding-top: 7px;
+ overflow: auto;
+}
+/* line 22, ../../app/assets/stylesheets/apps/analytics/planning.css.scss */
+#form-type-overdue-list .analytics-list > li .analytics-list-form-type > div > div {
+ float: left;
+}
+/* line 23, ../../app/assets/stylesheets/apps/analytics/planning.css.scss */
+#form-type-overdue-list .analytics-list > li .analytics-list-form-type > div .image-wrapper {
+ margin-right: 10px;
+ position: relative;
+ top: 5px;
+}
+/* line 25, ../../app/assets/stylesheets/apps/analytics/planning.css.scss */
+#form-type-overdue-list .analytics-list > li .analytics-list-performed-time {
+ font-weight: normal;
+}
+/* line 26, ../../app/assets/stylesheets/apps/analytics/planning.css.scss */
+#form-type-overdue-list .analytics-list > li .analytics-list-performed-time strong {
+ font-weight: bold;
+}
+/* line 29, ../../app/assets/stylesheets/apps/analytics/planning.css.scss */
+#form-type-overdue-list .analytics-list.selectable > li:hover {
+ background-image: none;
+ cursor: pointer;
+ background-color: #fdfde0;
+}
+
+/* line 32, ../../app/assets/stylesheets/apps/analytics/planning.css.scss */
+.analytics-performance-time-chart {
+ height: 20px;
+ width: 150px;
+}
+
+/* line 34, ../../app/assets/stylesheets/apps/analytics/planning.css.scss */
+#last-form-by-account-list tr:first-child td {
+ width: 60%;
+}
+/* line 35, ../../app/assets/stylesheets/apps/analytics/planning.css.scss */
+#last-form-by-account-list tr:first-child td + td {
+ width: 3%;
+}
+/* line 36, ../../app/assets/stylesheets/apps/analytics/planning.css.scss */
+#last-form-by-account-list tr:first-child td + td + td {
+ width: 25%;
+}
+/* line 37, ../../app/assets/stylesheets/apps/analytics/planning.css.scss */
+#last-form-by-account-list tr:first-child td + td + td + td {
+ width: 12%;
+}
+
+/* line 2, ../../app/assets/stylesheets/apps/analytics/productivity.css.scss */
+#productivity-stats {
+ overflow: auto;
+}
+/* line 3, ../../app/assets/stylesheets/apps/analytics/productivity.css.scss */
+#productivity-stats .sub-title {
+ padding-bottom: 3px;
+}
+/* line 4, ../../app/assets/stylesheets/apps/analytics/productivity.css.scss */
+#productivity-stats #form-types-pie-by-user {
+ overflow: auto;
+ float: left;
+ width: 47%;
+}
+/* line 5, ../../app/assets/stylesheets/apps/analytics/productivity.css.scss */
+#productivity-stats #productivity-links {
+ overflow: auto;
+ float: right;
+ width: 47%;
+}
+/* line 6, ../../app/assets/stylesheets/apps/analytics/productivity.css.scss */
+#productivity-stats #forms-completed-by-user {
+ clear: both;
+ padding-top: 15px;
+}
+/* line 8, ../../app/assets/stylesheets/apps/analytics/productivity.css.scss */
+#productivity-stats #productivity-list-by-user,
+#productivity-stats #productivity-list-of-me {
+ margin-top: 10px;
+ clear: both;
+ overflow: auto;
+}
+/* line 10, ../../app/assets/stylesheets/apps/analytics/productivity.css.scss */
+#productivity-stats #productivity-list-by-user .user-productivity-row,
+#productivity-stats #productivity-list-by-user .module-list-header > li,
+#productivity-stats #productivity-list-of-me .user-productivity-row,
+#productivity-stats #productivity-list-of-me .module-list-header > li {
+ clear: both;
+ width: 100%;
+ overflow: auto;
+}
+/* line 11, ../../app/assets/stylesheets/apps/analytics/productivity.css.scss */
+#productivity-stats #productivity-list-by-user .user-productivity-row > div,
+#productivity-stats #productivity-list-by-user .module-list-header > li > div,
+#productivity-stats #productivity-list-of-me .user-productivity-row > div,
+#productivity-stats #productivity-list-of-me .module-list-header > li > div {
+ float: left;
+}
+/* line 12, ../../app/assets/stylesheets/apps/analytics/productivity.css.scss */
+#productivity-stats #productivity-list-by-user .user-productivity-row > div:first-child,
+#productivity-stats #productivity-list-by-user .module-list-header > li > div:first-child,
+#productivity-stats #productivity-list-of-me .user-productivity-row > div:first-child,
+#productivity-stats #productivity-list-of-me .module-list-header > li > div:first-child {
+ width: 20%;
+}
+/* line 13, ../../app/assets/stylesheets/apps/analytics/productivity.css.scss */
+#productivity-stats #productivity-list-by-user .user-productivity-row > div:first-child + div,
+#productivity-stats #productivity-list-by-user .module-list-header > li > div:first-child + div,
+#productivity-stats #productivity-list-of-me .user-productivity-row > div:first-child + div,
+#productivity-stats #productivity-list-of-me .module-list-header > li > div:first-child + div {
+ width: 15%;
+}
+/* line 14, ../../app/assets/stylesheets/apps/analytics/productivity.css.scss */
+#productivity-stats #productivity-list-by-user .user-productivity-row > div:first-child + div + div,
+#productivity-stats #productivity-list-by-user .module-list-header > li > div:first-child + div + div,
+#productivity-stats #productivity-list-of-me .user-productivity-row > div:first-child + div + div,
+#productivity-stats #productivity-list-of-me .module-list-header > li > div:first-child + div + div {
+ width: 15%;
+}
+/* line 15, ../../app/assets/stylesheets/apps/analytics/productivity.css.scss */
+#productivity-stats #productivity-list-by-user .user-productivity-row > div:first-child + div + div + div,
+#productivity-stats #productivity-list-by-user .module-list-header > li > div:first-child + div + div + div,
+#productivity-stats #productivity-list-of-me .user-productivity-row > div:first-child + div + div + div,
+#productivity-stats #productivity-list-of-me .module-list-header > li > div:first-child + div + div + div {
+ width: 50%;
+}
+/* line 16, ../../app/assets/stylesheets/apps/analytics/productivity.css.scss */
+#productivity-stats #productivity-list-by-user .user-productivity-row > div:first-child + div + div + div > div,
+#productivity-stats #productivity-list-by-user .module-list-header > li > div:first-child + div + div + div > div,
+#productivity-stats #productivity-list-of-me .user-productivity-row > div:first-child + div + div + div > div,
+#productivity-stats #productivity-list-of-me .module-list-header > li > div:first-child + div + div + div > div {
+ padding: 0 10px !important;
+}
+/* line 17, ../../app/assets/stylesheets/apps/analytics/productivity.css.scss */
+#productivity-stats #productivity-list-by-user .user-productivity-row > div:first-child + div + div + div > div .BoldLine,
+#productivity-stats #productivity-list-by-user .module-list-header > li > div:first-child + div + div + div > div .BoldLine,
+#productivity-stats #productivity-list-of-me .user-productivity-row > div:first-child + div + div + div > div .BoldLine,
+#productivity-stats #productivity-list-of-me .module-list-header > li > div:first-child + div + div + div > div .BoldLine {
+ padding: 15px 0;
+}
+/* line 23, ../../app/assets/stylesheets/apps/analytics/productivity.css.scss */
+#productivity-stats #productivity-list-by-user .user-productivity-row > div > div,
+#productivity-stats #productivity-list-by-user .module-list-header > li > div > div,
+#productivity-stats #productivity-list-of-me .user-productivity-row > div > div,
+#productivity-stats #productivity-list-of-me .module-list-header > li > div > div {
+ overflow: auto;
+ padding: 3px 10px;
+}
+/* line 28, ../../app/assets/stylesheets/apps/analytics/productivity.css.scss */
+#productivity-stats #productivity-list-by-user .module-list-header.sortable > li.user-productivity-row > div:hover > div,
+#productivity-stats #productivity-list-of-me .module-list-header.sortable > li.user-productivity-row > div:hover > div {
+ background-image: none;
+ cursor: pointer;
+ -webkit-box-shadow: #dfe3e3 0 2px 8px inset;
+ -moz-box-shadow: #dfe3e3 0 2px 8px inset;
+ box-shadow: #dfe3e3 0 2px 8px inset;
+ background: url(/assets/icons/arrow-down.png) no-repeat 95% 55%;
+ -webkit-border-radius: 5px 5px 0 0;
+ -moz-border-radius: 5px 5px 0 0;
+ -ms-border-radius: 5px 5px 0 0;
+ -o-border-radius: 5px 5px 0 0;
+ border-radius: 5px 5px 0 0;
+}
+/* line 29, ../../app/assets/stylesheets/apps/analytics/productivity.css.scss */
+#productivity-stats #productivity-list-by-user .module-list-header.sortable > li.user-productivity-row > div.active,
+#productivity-stats #productivity-list-of-me .module-list-header.sortable > li.user-productivity-row > div.active {
+ outline: 0 !important;
+}
+/* line 30, ../../app/assets/stylesheets/apps/analytics/productivity.css.scss */
+#productivity-stats #productivity-list-by-user .module-list-header.sortable > li.user-productivity-row > div.active > div,
+#productivity-stats #productivity-list-of-me .module-list-header.sortable > li.user-productivity-row > div.active > div {
+ background-image: none;
+ outline: 0 !important;
+}
+/* line 31, ../../app/assets/stylesheets/apps/analytics/productivity.css.scss */
+#productivity-stats #productivity-list-by-user .module-list-header.sortable > li.user-productivity-row > div.active.sort-asc,
+#productivity-stats #productivity-list-of-me .module-list-header.sortable > li.user-productivity-row > div.active.sort-asc {
+ outline: 0 !important;
+}
+/* line 32, ../../app/assets/stylesheets/apps/analytics/productivity.css.scss */
+#productivity-stats #productivity-list-by-user .module-list-header.sortable > li.user-productivity-row > div.active.sort-asc > div,
+#productivity-stats #productivity-list-of-me .module-list-header.sortable > li.user-productivity-row > div.active.sort-asc > div {
+ background: url(/assets/icons/arrow-down.png) #dddfe2 no-repeat 90% 55%;
+}
+/* line 34, ../../app/assets/stylesheets/apps/analytics/productivity.css.scss */
+#productivity-stats #productivity-list-by-user .module-list-header.sortable > li.user-productivity-row > div.active.sort-desc,
+#productivity-stats #productivity-list-of-me .module-list-header.sortable > li.user-productivity-row > div.active.sort-desc {
+ outline: 0 !important;
+}
+/* line 35, ../../app/assets/stylesheets/apps/analytics/productivity.css.scss */
+#productivity-stats #productivity-list-by-user .module-list-header.sortable > li.user-productivity-row > div.active.sort-desc > div,
+#productivity-stats #productivity-list-of-me .module-list-header.sortable > li.user-productivity-row > div.active.sort-desc > div {
+ background: url(/assets/icons/arrow-up.png) #dddfe2 no-repeat 90% 55%;
+}
+/* line 38, ../../app/assets/stylesheets/apps/analytics/productivity.css.scss */
+#productivity-stats #productivity-list-by-user .module-list-header.sortable > li.user-productivity-row > div.noSort:hover > div,
+#productivity-stats #productivity-list-of-me .module-list-header.sortable > li.user-productivity-row > div.noSort:hover > div {
+ -webkit-box-shadow: rgba(0, 0, 0, 0) 0 0 0 inset;
+ -moz-box-shadow: rgba(0, 0, 0, 0) 0 0 0 inset;
+ box-shadow: rgba(0, 0, 0, 0) 0 0 0 inset;
+ -webkit-box-shadow: rgba(0, 0, 0, 0) 0 0 0;
+ -moz-box-shadow: rgba(0, 0, 0, 0) 0 0 0;
+ box-shadow: rgba(0, 0, 0, 0) 0 0 0;
+ background-image: none;
+ cursor: default;
+}
+/* line 40, ../../app/assets/stylesheets/apps/analytics/productivity.css.scss */
+#productivity-stats #productivity-list-by-user .module-list-header > li,
+#productivity-stats #productivity-list-of-me .module-list-header > li {
+ font-weight: bold;
+ color: #46535c;
+}
+/* line 42, ../../app/assets/stylesheets/apps/analytics/productivity.css.scss */
+#productivity-stats #productivity-list-by-user .user-productivity-row,
+#productivity-stats #productivity-list-of-me .user-productivity-row {
+ position: relative;
+ -webkit-border-radius: 0;
+ -moz-border-radius: 0;
+ -ms-border-radius: 0;
+ -o-border-radius: 0;
+ border-radius: 0;
+ overflow: hidden;
+ border-bottom: 1px dotted #efeff3;
+ font-weight: bold;
+ color: #999;
+ font-size: 11px;
+}
+/* line 43, ../../app/assets/stylesheets/apps/analytics/productivity.css.scss */
+#productivity-stats #productivity-list-by-user .user-productivity-row:hover,
+#productivity-stats #productivity-list-of-me .user-productivity-row:hover {
+ background-color: #fdfde0;
+ cursor: pointer;
+}
+/* line 44, ../../app/assets/stylesheets/apps/analytics/productivity.css.scss */
+#productivity-stats #productivity-list-by-user .user-productivity-row > div > div,
+#productivity-stats #productivity-list-of-me .user-productivity-row > div > div {
+ padding: 15px 10px;
+ text-shadow: 0px 1px 0px white;
+ overflow: visible;
+ text-overflow: clip;
+ white-space: normal;
+ word-wrap: break-word;
+}
+/* line 48, ../../app/assets/stylesheets/apps/analytics/productivity.css.scss */
+#productivity-stats #productivity-list-of-me {
+ overflow: auto;
+ border: 1px solid #ebf3f6;
+ margin: 15px 0;
+}
+/* line 49, ../../app/assets/stylesheets/apps/analytics/productivity.css.scss */
+#productivity-stats .user-productivity-row {
+ position: relative;
+ text-shadow: 0px 1px 0px white;
+ list-style: none !important;
+}
+/* line 50, ../../app/assets/stylesheets/apps/analytics/productivity.css.scss */
+#productivity-stats .user-productivity-row > div > div {
+ padding: 13px 10px;
+}
+/* line 52, ../../app/assets/stylesheets/apps/analytics/productivity.css.scss */
+#productivity-stats #productivity-list-of-me .user-productivity-row {
+ background-color: #f3fcff;
+}
+/* line 53, ../../app/assets/stylesheets/apps/analytics/productivity.css.scss */
+#productivity-stats .forms-completed-circle {
+ float: left;
+ min-width: 16px;
+ min-height: 16px;
+ position: relative;
+ left: -3px;
+ margin-top: 13px;
+ text-align: center;
+ display: inline-block;
+ background-color: #f5f5f5;
+ border: 1px solid #ced4ce;
+ -webkit-border-radius: 1000px;
+ -moz-border-radius: 1000px;
+ -ms-border-radius: 1000px;
+ -o-border-radius: 1000px;
+ border-radius: 1000px;
+ color: #475155;
+ padding: 3px 6px;
+ font-size: 15px;
+ font-weight: bold;
+ text-shadow: 0px 1px 0px white;
+}
+/* line 54, ../../app/assets/stylesheets/apps/analytics/productivity.css.scss */
+#productivity-stats .forms-completed-thermometer {
+ float: left;
+ width: 85%;
+ min-height: 45px;
+ height: 45px;
+ margin-top: 2px;
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
+ opacity: 0.8;
+}
+/* line 55, ../../app/assets/stylesheets/apps/analytics/productivity.css.scss */
+#productivity-stats .icons-user {
+ position: relative;
+ top: 1px;
+ margin-right: 3px;
+}
+
+/* line 57, ../../app/assets/stylesheets/apps/analytics/productivity.css.scss */
+#form-types-pie-chart {
+ min-height: 200px;
+ height: 200px;
+}
+
+/* line 58, ../../app/assets/stylesheets/apps/analytics/productivity.css.scss */
+#form-daily-line-chart {
+ min-height: 225px;
+ height: 225px;
+}
+
+/* line 1, ../../app/assets/stylesheets/apps/analytics/risk.css.scss */
+#analytics-dashboard {
+ overflow: auto;
+}
+/* line 3, ../../app/assets/stylesheets/apps/analytics/risk.css.scss */
+#analytics-dashboard #overview-links-container {
+ width: 49%;
+ float: left;
+}
+/* line 4, ../../app/assets/stylesheets/apps/analytics/risk.css.scss */
+#analytics-dashboard #overview-companies-with-priorities {
+ clear: both;
+}
+/* line 5, ../../app/assets/stylesheets/apps/analytics/risk.css.scss */
+#analytics-dashboard .chart-title {
+ font-weight: bold;
+ text-align: center;
+ color: #5b646a;
+ font-size: 15px;
+ margin-top: 10px;
+}
+/* line 6, ../../app/assets/stylesheets/apps/analytics/risk.css.scss */
+#analytics-dashboard li > .chart-title {
+ font-weight: bold;
+ color: #5b646a;
+ font-size: 15px;
+}
+/* line 7, ../../app/assets/stylesheets/apps/analytics/risk.css.scss */
+#analytics-dashboard #company-priorities-bar-chart {
+ min-height: 275px;
+ height: 275px;
+ width: 100%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#analytics-dashboard #company-priority-list tr th:first-child {
+ width: 40%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#analytics-dashboard #company-priority-list tr th:first-child + th {
+ width: 15%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#analytics-dashboard #company-priority-list tr th:first-child + th + th {
+ width: 16%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#analytics-dashboard #company-priority-list tr th:first-child + th + th + th {
+ width: 9%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#analytics-dashboard #company-priority-list tr th:first-child + th + th + th + th {
+ width: 12%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#analytics-dashboard #company-priority-list tr th:first-child + th + th + th + th + th {
+ width: 8%;
+}
+/* line 9, ../../app/assets/stylesheets/apps/analytics/risk.css.scss */
+#analytics-dashboard #company-priority-list tr td:first-child > div > span.BoldLine {
+ color: #4d80b4;
+ display: inline-block;
+ line-height: 15px;
+}
+/* line 11, ../../app/assets/stylesheets/apps/analytics/risk.css.scss */
+#analytics-dashboard .btn-export i {
+ margin-right: 2px;
+}
+/* line 12, ../../app/assets/stylesheets/apps/analytics/risk.css.scss */
+#analytics-dashboard #panel-region {
+ clear: both;
+}
+
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#reports-list table tr th:first-child {
+ width: 42%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#reports-list table tr th:first-child + th {
+ width: 40%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#reports-list table tr th:first-child + th + th {
+ width: 18%;
+}
+/* line 3, ../../app/assets/stylesheets/apps/analytics/reports.css.scss */
+#reports-list table tr td {
+ cursor: default !important;
+}
+/* line 4, ../../app/assets/stylesheets/apps/analytics/reports.css.scss */
+#reports-list table tr .report-type {
+ color: #999;
+ font-weight: 500;
+ font-size: 12px;
+ padding-bottom: 0;
+ line-height: 8px;
+ padding-top: 4px;
+}
+/* line 5, ../../app/assets/stylesheets/apps/analytics/reports.css.scss */
+#reports-list table tr i {
+ vertical-align: bottom;
+}
+
+/* line 8, ../../app/assets/stylesheets/apps/analytics/reports.css.scss */
+#show-report {
+ overflow: auto;
+ background-color: white;
+}
+/* line 9, ../../app/assets/stylesheets/apps/analytics/reports.css.scss */
+#show-report #ReportsListContainer {
+ margin-top: 20px;
+}
+/* line 10, ../../app/assets/stylesheets/apps/analytics/reports.css.scss */
+#show-report .nav-list {
+ margin-top: 20px;
+}
+/* line 11, ../../app/assets/stylesheets/apps/analytics/reports.css.scss */
+#show-report .ReportsList > li {
+ overflow: auto;
+ margin-bottom: 20px;
+ background-color: white;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+ border: 1px solid #d4d4d4;
+ position: relative;
+}
+/* line 12, ../../app/assets/stylesheets/apps/analytics/reports.css.scss */
+#show-report .ReportsList > li > div {
+ float: left;
+}
+/* line 13, ../../app/assets/stylesheets/apps/analytics/reports.css.scss */
+#show-report .ReportsList > li form {
+ overflow: auto;
+ margin-bottom: 0;
+}
+/* line 15, ../../app/assets/stylesheets/apps/analytics/reports.css.scss */
+#show-report .reports-content {
+ width: 64%;
+ float: left;
+}
+/* line 16, ../../app/assets/stylesheets/apps/analytics/reports.css.scss */
+#show-report .reports-content h3 {
+ text-shadow: 0px 1px 0px white;
+}
+/* line 17, ../../app/assets/stylesheets/apps/analytics/reports.css.scss */
+#show-report .reports-content h5 {
+ display: block;
+ padding: 10px 20px 0;
+ color: #505050;
+}
+/* line 18, ../../app/assets/stylesheets/apps/analytics/reports.css.scss */
+#show-report .reports-content h6 {
+ float: left;
+ padding: 5px 20px 10px;
+}
+/* line 19, ../../app/assets/stylesheets/apps/analytics/reports.css.scss */
+#show-report .reports-content img {
+ float: left;
+ padding: 0 15px 15px 0;
+ padding-bottom: 15px;
+}
+/* line 20, ../../app/assets/stylesheets/apps/analytics/reports.css.scss */
+#show-report .reports-content p {
+ float: left;
+ margin: 5px 20px 15px 20px;
+ font-size: 14px;
+ line-height: 22px;
+}
+/* line 21, ../../app/assets/stylesheets/apps/analytics/reports.css.scss */
+#show-report .reports-content .BoldLine {
+ margin-bottom: 0;
+ display: inline-block;
+ font-weight: bold;
+ font-size: 15px;
+ color: #777;
+}
+/* line 23, ../../app/assets/stylesheets/apps/analytics/reports.css.scss */
+#show-report .parameter-box {
+ float: left;
+ width: 36%;
+ overflow: hidden;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+ background-color: whitesmoke;
+ background-image: -moz-linear-gradient(top, #f9f9f9, #f1f1f1);
+ background-image: -ms-linear-gradient(top, #f9f9f9, #f1f1f1);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f9f9f9), to(#f1f1f1));
+ background-image: -webkit-linear-gradient(top, #f9f9f9, #f1f1f1);
+ background-image: -o-linear-gradient(top, #f9f9f9, #f1f1f1);
+ background-image: linear-gradient(top, #f9f9f9, #f1f1f1);
+ background-repeat: repeat-x;
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9f9f9', endColorstr='#f1f1f1', GradientType=0);
+ background-color: #f7f7f7;
+ background-image: -moz-linear-gradient(top, #f9f9f9, #f4f4f4 25%, #f2f2f2 50%, #f1f1f1 75%);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f9f9f9), color-stop(25%, #f4f4f4), color-stop(50%, #f2f2f2), to(75%, #f1f1f1));
+ background-image: -webkit-linear-gradient(top, #f9f9f9, #f4f4f4 25%, #f2f2f2 50%, #f1f1f1 75%);
+ background-image: -o-linear-gradient(top, #f9f9f9, #f4f4f4 25%, #f2f2f2 50%, #f1f1f1 75%);
+ background-image: linear-gradient(to bottom, #f9f9f9, #f4f4f4 25%, #f2f2f2 50%, #f1f1f1 75%);
+ background-repeat: no-repeat;
+ border-color: #f4f4f4;
+ border-color: #f4f4f4 #f4f4f4 #cecece;
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) fadein(rgba(0, 0, 0, 0.1), 15%);
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9f9f9', endColorstr='#f1f1f1', GradientType=0);
+ -webkit-border-radius: 0;
+ -moz-border-radius: 0;
+ -ms-border-radius: 0;
+ -o-border-radius: 0;
+ border-radius: 0;
+}
+/* line 24, ../../app/assets/stylesheets/apps/analytics/reports.css.scss */
+#show-report .parameter-box li {
+ margin-bottom: 5px;
+}
+/* line 25, ../../app/assets/stylesheets/apps/analytics/reports.css.scss */
+#show-report .parameter-box > div {
+ border-left: 1px solid #d4d4d4;
+ overflow: hidden;
+ padding: 10px 15px 15px;
+}
+/* line 26, ../../app/assets/stylesheets/apps/analytics/reports.css.scss */
+#show-report .parameter-box > div form {
+ overflow: hidden;
+}
+/* line 27, ../../app/assets/stylesheets/apps/analytics/reports.css.scss */
+#show-report .parameter-box > div .btn[type='submit'] {
+ width: 220px !important;
+ margin-top: 10px;
+ margin-bottom: 0;
+}
+/* line 28, ../../app/assets/stylesheets/apps/analytics/reports.css.scss */
+#show-report .parameter-box > div .btn[type='submit'] i {
+ margin-right: 5px;
+ vertical-align: sub;
+}
+/* line 32, ../../app/assets/stylesheets/apps/analytics/reports.css.scss */
+#show-report .parameter-box > div .k-picker-wrap,
+#show-report .parameter-box > div .k-numeric-wrap,
+#show-report .parameter-box > div .k-dropdown-wrap {
+ -webkit-box-shadow: rgba(0, 0, 0, 0) 0 0 0 inset;
+ -moz-box-shadow: rgba(0, 0, 0, 0) 0 0 0 inset;
+ box-shadow: rgba(0, 0, 0, 0) 0 0 0 inset;
+ -webkit-box-shadow: rgba(0, 0, 0, 0) 0 0 0;
+ -moz-box-shadow: rgba(0, 0, 0, 0) 0 0 0;
+ box-shadow: rgba(0, 0, 0, 0) 0 0 0;
+ width: 194px !important;
+}
+/* line 33, ../../app/assets/stylesheets/apps/analytics/reports.css.scss */
+#show-report .parameter-box > div label {
+ font-size: 13px;
+ margin-bottom: 1px;
+ text-shadow: 0px 1px 0px white;
+}
+
+/* line 38, ../../app/assets/stylesheets/apps/analytics/reports.css.scss */
+.class-tree-list {
+ text-shadow: 0px 1px 0px white;
+ border: 1px solid #dddddd;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+ overflow: hidden;
+}
+/* line 39, ../../app/assets/stylesheets/apps/analytics/reports.css.scss */
+.class-tree-list > li {
+ overflow: auto;
+ background-color: white;
+}
+/* line 40, ../../app/assets/stylesheets/apps/analytics/reports.css.scss */
+.class-tree-list > li .class-tree-content {
+ overflow: auto;
+ line-height: 20px;
+ font-weight: bold;
+ padding-left: 8px;
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ user-select: none;
+}
+/* line 41, ../../app/assets/stylesheets/apps/analytics/reports.css.scss */
+.class-tree-list > li .class-tree-content:hover {
+ background-image: none;
+ cursor: pointer;
+ background-color: #fdfde0;
+}
+/* line 43, ../../app/assets/stylesheets/apps/analytics/reports.css.scss */
+.class-tree-list > li .class-tree-content .expand-collapse-toggle i {
+ padding: 2px;
+}
+/* line 45, ../../app/assets/stylesheets/apps/analytics/reports.css.scss */
+.class-tree-list > li .class-tree-content input[type="checkbox"] {
+ margin-left: 3px;
+}
+/* line 46, ../../app/assets/stylesheets/apps/analytics/reports.css.scss */
+.class-tree-list > li .class-tree-content .image-wrapper {
+ margin: 2px 3px 0 2px;
+}
+/* line 47, ../../app/assets/stylesheets/apps/analytics/reports.css.scss */
+.class-tree-list > li .class-tree-content .number-of-forms {
+ font-weight: normal;
+ font-size: 11px;
+}
+/* line 50, ../../app/assets/stylesheets/apps/analytics/reports.css.scss */
+.class-tree-list > li:first-child {
+ padding-top: 2px;
+}
+/* line 51, ../../app/assets/stylesheets/apps/analytics/reports.css.scss */
+.class-tree-list > li:last-child {
+ padding-bottom: 2px;
+}
+
+/* line 53, ../../app/assets/stylesheets/apps/analytics/reports.css.scss */
+.form-tree-list {
+ background-color: #fdfdfd;
+}
+/* line 54, ../../app/assets/stylesheets/apps/analytics/reports.css.scss */
+.form-tree-list li {
+ padding: 0 0 3px 34px;
+ line-height: 23px;
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ user-select: none;
+}
+/* line 55, ../../app/assets/stylesheets/apps/analytics/reports.css.scss */
+.form-tree-list li input[type="checkbox"] {
+ margin: 5px 5px 0 0;
+}
+
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#asset-search-list tr th:first-child {
+ width: 4%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#asset-search-list tr th:first-child + th {
+ width: 20%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#asset-search-list tr th:first-child + th + th {
+ width: 19%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#asset-search-list tr th:first-child + th + th + th {
+ width: 19%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#asset-search-list tr th:first-child + th + th + th + th {
+ width: 19%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#asset-search-list tr th:first-child + th + th + th + th + th {
+ width: 19%;
+}
+/* line 2, ../../app/assets/stylesheets/apps/assets.css.scss */
+#asset-search-list tr td {
+ line-height: 15px;
+}
+/* line 3, ../../app/assets/stylesheets/apps/assets.css.scss */
+#asset-search-list tr .asset-description {
+ font-size: 11.5px;
+ line-height: 11.5px;
+}
+/* line 4, ../../app/assets/stylesheets/apps/assets.css.scss */
+#asset-search-list tr .asset-data-bolded {
+ font-weight: bold;
+ font-size: 11.5px;
+ color: #777;
+}
+/* line 5, ../../app/assets/stylesheets/apps/assets.css.scss */
+#asset-search-list tr .icons-location-small {
+ vertical-align: top;
+}
+
+/* line 7, ../../app/assets/stylesheets/apps/assets.css.scss */
+#asset-show {
+ margin-bottom: 35px;
+}
+
+/* line 8, ../../app/assets/stylesheets/apps/assets.css.scss */
+#asset-show-details {
+ overflow: auto;
+}
+/* line 9, ../../app/assets/stylesheets/apps/assets.css.scss */
+#asset-show-details .asset-details {
+ float: left;
+ width: 50%;
+ text-shadow: 0px 1px 0px white;
+}
+/* line 10, ../../app/assets/stylesheets/apps/assets.css.scss */
+#asset-show-details .asset-details .asset-detail {
+ clear: both;
+ padding: 0 10px 10px;
+}
+/* line 11, ../../app/assets/stylesheets/apps/assets.css.scss */
+#asset-show-details .asset-details .asset-detail h4 {
+ margin-bottom: 2px;
+ font-size: 13.5px;
+ line-height: 14px;
+}
+/* line 12, ../../app/assets/stylesheets/apps/assets.css.scss */
+#asset-show-details .asset-details .asset-detail i {
+ vertical-align: middle;
+}
+/* line 15, ../../app/assets/stylesheets/apps/assets.css.scss */
+#asset-show-details .asset-main-detail {
+ float: left;
+ width: 40%;
+}
+/* line 16, ../../app/assets/stylesheets/apps/assets.css.scss */
+#asset-show-details .asset-main-detail > div {
+ padding: 10px;
+ overflow: auto;
+ border: 1px solid #d7dadf;
+ background-color: #f3f6f7;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+}
+
+/* line 19, ../../app/assets/stylesheets/apps/assets.css.scss */
+#asset-attribute-wrapper {
+ width: 59%;
+ margin-top: 0;
+}
+
+/* line 20, ../../app/assets/stylesheets/apps/assets.css.scss */
+#asset-attribute-list {
+ overflow: auto;
+}
+/* line 21, ../../app/assets/stylesheets/apps/assets.css.scss */
+#asset-attribute-list .half {
+ float: left;
+ width: 48%;
+}
+/* line 22, ../../app/assets/stylesheets/apps/assets.css.scss */
+#asset-attribute-list .half.pull-right {
+ float: right;
+ margin-right: 0;
+}
+/* line 24, ../../app/assets/stylesheets/apps/assets.css.scss */
+#asset-attribute-list .module-list-content > li {
+ overflow: auto;
+ line-height: 16px;
+ margin: 2px 0;
+}
+/* line 25, ../../app/assets/stylesheets/apps/assets.css.scss */
+#asset-attribute-list .module-list-content > li > div {
+ float: left;
+ overflow: visible;
+ text-overflow: clip;
+ white-space: normal;
+ word-wrap: break-word;
+ line-height: 16px;
+}
+/* line 26, ../../app/assets/stylesheets/apps/assets.css.scss */
+#asset-attribute-list .module-list-content > li > div:first-child {
+ float: left;
+ width: 40%;
+ overflow: visible;
+ text-overflow: clip;
+ white-space: normal;
+ word-wrap: break-word;
+}
+/* line 27, ../../app/assets/stylesheets/apps/assets.css.scss */
+#asset-attribute-list .module-list-content > li > div:first-child + div {
+ float: left;
+ width: 60%;
+ overflow: visible;
+ text-overflow: clip;
+ white-space: normal;
+ word-wrap: break-word;
+}
+
+/* line 32, ../../app/assets/stylesheets/apps/assets.css.scss */
+.asset-description-title {
+ font-size: 15px !important;
+ font-weight: normal !important;
+ overflow: visible;
+ text-overflow: clip;
+ white-space: normal;
+ word-wrap: break-word;
+}
+
+/* line 33, ../../app/assets/stylesheets/apps/assets.css.scss */
+#asset-details-region {
+ margin-bottom: 15px;
+}
+
+/* line 3, ../../app/assets/stylesheets/apps/categories.css.scss */
+#categories-list-layout #categories-list-region > ul > li {
+ margin-bottom: 15px;
+}
+/* line 4, ../../app/assets/stylesheets/apps/categories.css.scss */
+#categories-list-layout #categories-list-region .module {
+ clear: both;
+ margin-top: 0;
+}
+/* line 5, ../../app/assets/stylesheets/apps/categories.css.scss */
+#categories-list-layout #categories-list-region .module .module-title {
+ position: relative;
+}
+/* line 6, ../../app/assets/stylesheets/apps/categories.css.scss */
+#categories-list-layout #categories-list-region .module .icons-collapse, #categories-list-layout #categories-list-region .module .icons-expand {
+ margin-right: 5px;
+ position: absolute;
+ top: 6px;
+ cursor: pointer;
+}
+/* line 7, ../../app/assets/stylesheets/apps/categories.css.scss */
+#categories-list-layout #categories-list-region .module .category-name {
+ margin-left: 18px;
+}
+/* line 9, ../../app/assets/stylesheets/apps/categories.css.scss */
+#categories-list-layout #categories-list-region .class-list > li {
+ clear: both;
+ overflow: auto;
+ max-height: 30px;
+}
+/* line 10, ../../app/assets/stylesheets/apps/categories.css.scss */
+#categories-list-layout #categories-list-region .class-list > li:first-child {
+ -moz-border-radius-topleft: 0;
+ -webkit-border-top-left-radius: 0;
+ border-top-left-radius: 0;
+ -moz-border-radius-topright: 0;
+ -webkit-border-top-right-radius: 0;
+ border-top-right-radius: 0;
+}
+/* line 11, ../../app/assets/stylesheets/apps/categories.css.scss */
+#categories-list-layout #categories-list-region .class-list > li > div {
+ float: left;
+ padding: 0;
+ font-size: 13px !important;
+}
+/* line 12, ../../app/assets/stylesheets/apps/categories.css.scss */
+#categories-list-layout #categories-list-region .class-list > li > div > div {
+ padding: 2px 10px;
+ overflow: visible;
+ text-overflow: clip;
+ white-space: normal;
+ word-wrap: break-word;
+ overflow: auto;
+ line-height: 19px;
+}
+/* line 13, ../../app/assets/stylesheets/apps/categories.css.scss */
+#categories-list-layout #categories-list-region .class-list > li > div:first-child {
+ width: 5%;
+}
+/* line 14, ../../app/assets/stylesheets/apps/categories.css.scss */
+#categories-list-layout #categories-list-region .class-list > li > div:first-child > div {
+ line-height: 0;
+ padding-right: 0;
+}
+/* line 15, ../../app/assets/stylesheets/apps/categories.css.scss */
+#categories-list-layout #categories-list-region .class-list > li > div:first-child + div {
+ width: 76%;
+}
+/* line 16, ../../app/assets/stylesheets/apps/categories.css.scss */
+#categories-list-layout #categories-list-region .class-list > li > div:first-child + div + div {
+ width: 13%;
+}
+/* line 17, ../../app/assets/stylesheets/apps/categories.css.scss */
+#categories-list-layout #categories-list-region .class-list > li > div:first-child + div + div + div {
+ width: 6%;
+}
+/* line 18, ../../app/assets/stylesheets/apps/categories.css.scss */
+#categories-list-layout #categories-list-region .class-list > li > div:first-child + div + div + div i {
+ vertical-align: middle;
+}
+
+/* line 3, ../../app/assets/stylesheets/apps/classes.css.scss */
+#class-show #details-region {
+ overflow: auto;
+}
+/* line 4, ../../app/assets/stylesheets/apps/classes.css.scss */
+#class-show #details-region > div {
+ overflow: auto;
+}
+/* line 6, ../../app/assets/stylesheets/apps/classes.css.scss */
+#class-show .SectionTitle {
+ margin-top: 35px;
+}
+/* line 7, ../../app/assets/stylesheets/apps/classes.css.scss */
+#class-show .class-title-container {
+ width: 65%;
+}
+/* line 8, ../../app/assets/stylesheets/apps/classes.css.scss */
+#class-show .class-title-container #upload-class-icon {
+ margin: 6px 10px 0 0;
+}
+/* line 9, ../../app/assets/stylesheets/apps/classes.css.scss */
+#class-show .class-title-container .rowStatus, #class-show .class-title-container .rowStatus > span {
+ font-weight: 500;
+ color: #a7acb1;
+}
+/* line 11, ../../app/assets/stylesheets/apps/classes.css.scss */
+#class-show .breadcrumbWrapper {
+ width: 35%;
+}
+/* line 12, ../../app/assets/stylesheets/apps/classes.css.scss */
+#class-show .class-title-wrapper {
+ width: 84%;
+ overflow: auto;
+}
+/* line 13, ../../app/assets/stylesheets/apps/classes.css.scss */
+#class-show .class-title-wrapper h4, #class-show .class-title-wrapper p {
+ display: block;
+ overflow: visible;
+ text-overflow: clip;
+ white-space: normal;
+ word-wrap: break-word;
+}
+/* line 15, ../../app/assets/stylesheets/apps/classes.css.scss */
+#class-show .class-title {
+ overflow: hidden;
+ float: left;
+ width: 100%;
+}
+/* line 16, ../../app/assets/stylesheets/apps/classes.css.scss */
+#class-show .class-title h3 {
+ overflow: visible;
+ text-overflow: clip;
+ white-space: normal;
+ word-wrap: break-word;
+}
+/* line 17, ../../app/assets/stylesheets/apps/classes.css.scss */
+#class-show .class-title h3 span {
+ max-width: 70%;
+ display: inline-block;
+}
+/* line 18, ../../app/assets/stylesheets/apps/classes.css.scss */
+#class-show .class-title h3 button {
+ margin-top: 15px;
+ vertical-align: top;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#class-show #eventtypes-list-table tr th:first-child {
+ width: 45%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#class-show #eventtypes-list-table tr th:first-child + th {
+ width: 27%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#class-show #eventtypes-list-table tr th:first-child + th + th {
+ width: 18%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#class-show #eventtypes-list-table tr th:first-child + th + th + th {
+ width: 10%;
+}
+/* line 22, ../../app/assets/stylesheets/apps/classes.css.scss */
+#class-show #eventtypes-list-table tr i.icons-asset-small:hover {
+ background-position: 0 -3101px;
+ height: 11px;
+ width: 12px;
+}
+/* line 23, ../../app/assets/stylesheets/apps/classes.css.scss */
+#class-show #eventtypes-list-table tr i.icons-form-small:hover {
+ background-position: 0 -3361px;
+ height: 11px;
+ width: 12px;
+}
+/* line 24, ../../app/assets/stylesheets/apps/classes.css.scss */
+#class-show #eventtypes-list-table tr .icons-publish-grey {
+ position: relative;
+ top: -2px;
+}
+
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#list-class-attributes th:first-child {
+ width: 42%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#list-class-attributes th:first-child + th {
+ width: 15%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#list-class-attributes th:first-child + th + th {
+ width: 15%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#list-class-attributes th:first-child + th + th + th {
+ width: 10%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#list-class-attributes th:first-child + th + th + th + th {
+ width: 10%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#list-class-attributes th:first-child + th + th + th + th + th {
+ width: 4%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#list-class-attributes th:first-child + th + th + th + th + th + th {
+ width: 4%;
+}
+
+/* line 28, ../../app/assets/stylesheets/apps/classes.css.scss */
+#asset-settings {
+ width: 100%;
+ overflow: auto;
+ margin-top: 15px;
+}
+/* line 29, ../../app/assets/stylesheets/apps/classes.css.scss */
+#asset-settings > div {
+ margin-left: 20px;
+}
+/* line 30, ../../app/assets/stylesheets/apps/classes.css.scss */
+#asset-settings .module {
+ margin-top: 0;
+}
+/* line 31, ../../app/assets/stylesheets/apps/classes.css.scss */
+#asset-settings .ListWell {
+ margin-bottom: 0;
+}
+/* line 32, ../../app/assets/stylesheets/apps/classes.css.scss */
+#asset-settings .ListWell > li > div > div {
+ float: left;
+}
+/* line 33, ../../app/assets/stylesheets/apps/classes.css.scss */
+#asset-settings .ListWell > li > div > div:last-child {
+ margin-left: 5px;
+}
+
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#attribute-options-list th:first-child,
+#attribute-uoms-list th:first-child {
+ width: 80%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#attribute-options-list th:first-child + th,
+#attribute-uoms-list th:first-child + th {
+ width: 10%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#attribute-options-list th:first-child + th + th,
+#attribute-uoms-list th:first-child + th + th {
+ width: 10%;
+}
+
+/* line 1, ../../app/assets/stylesheets/apps/companysettings.css.scss */
+#CompanySettings .ListWell {
+ margin-bottom: 30px;
+}
+/* line 2, ../../app/assets/stylesheets/apps/companysettings.css.scss */
+#CompanySettings .ListWell > li > div {
+ padding: 10px 10px 10px 30px;
+}
+/* line 3, ../../app/assets/stylesheets/apps/companysettings.css.scss */
+#CompanySettings .ListWell > li > div > div {
+ float: left;
+}
+/* line 4, ../../app/assets/stylesheets/apps/companysettings.css.scss */
+#CompanySettings .ListWell > li > div > div:first-child {
+ width: 62%;
+}
+/* line 5, ../../app/assets/stylesheets/apps/companysettings.css.scss */
+#CompanySettings .ListWell > li > div > div:first-child + div {
+ width: 15%;
+}
+/* line 6, ../../app/assets/stylesheets/apps/companysettings.css.scss */
+#CompanySettings .ListWell > li > div > div:first-child + div + div {
+ width: 23%;
+}
+
+/* line 2, ../../app/assets/stylesheets/apps/company_show.css.scss */
+#company-show #two-column-content-wrapper {
+ padding-top: 0;
+}
+/* line 3, ../../app/assets/stylesheets/apps/company_show.css.scss */
+#company-show #article-region {
+ border-left: 0;
+}
+/* line 5, ../../app/assets/stylesheets/apps/company_show.css.scss */
+#company-show #company-details-container {
+ float: left;
+ width: 49%;
+ margin: 10px 1% 0 0;
+ position: relative;
+}
+/* line 6, ../../app/assets/stylesheets/apps/company_show.css.scss */
+#company-show #company-details-container #company-details {
+ background-color: #f8f9fa;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+ border: 1px solid #eaebe9;
+ padding: 20px;
+ font-size: 14px;
+ color: #616c73;
+ text-shadow: 0px 1px 0px white;
+ overflow: visible;
+ text-overflow: clip;
+ white-space: normal;
+ word-wrap: break-word;
+}
+/* line 7, ../../app/assets/stylesheets/apps/company_show.css.scss */
+#company-show #company-details-container #company-details i {
+ vertical-align: middle;
+}
+/* line 8, ../../app/assets/stylesheets/apps/company_show.css.scss */
+#company-show #company-details-container #company-details .company-details-edit {
+ position: absolute;
+ top: 5px;
+ right: 5px;
+}
+/* line 9, ../../app/assets/stylesheets/apps/company_show.css.scss */
+#company-show #company-details-container #company-details .company-details-name {
+ font-weight: bold;
+ color: #495259;
+ font-size: 21px;
+}
+/* line 10, ../../app/assets/stylesheets/apps/company_show.css.scss */
+#company-show #company-details-container #company-details .company-details-num {
+ font-weight: bold;
+ color: #616c73;
+ font-size: 16px;
+ margin-bottom: 5px;
+}
+/* line 11, ../../app/assets/stylesheets/apps/company_show.css.scss */
+#company-show #company-details-container #company-details .dl-horizontal {
+ margin-top: 15px;
+ text-shadow: 0px 1px 0px white;
+}
+/* line 12, ../../app/assets/stylesheets/apps/company_show.css.scss */
+#company-show #company-details-container #company-details .dl-horizontal dt, #company-show #company-details-container #company-details .dl-horizontal dd {
+ margin-bottom: 3px;
+}
+/* line 13, ../../app/assets/stylesheets/apps/company_show.css.scss */
+#company-show #company-details-container #company-details .dl-horizontal dt {
+ margin-left: 0;
+}
+/* line 17, ../../app/assets/stylesheets/apps/company_show.css.scss */
+#company-show #company-links-container {
+ float: right;
+ width: 49%;
+ margin-top: 10px;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#company-show #company-forms-priority-list tr th:first-child {
+ width: 6%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#company-show #company-forms-priority-list tr th:first-child + th {
+ width: 25%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#company-show #company-forms-priority-list tr th:first-child + th + th {
+ width: 18%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#company-show #company-forms-priority-list tr th:first-child + th + th + th {
+ width: 8%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#company-show #company-forms-priority-list tr th:first-child + th + th + th + th {
+ width: 8%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#company-show #company-forms-priority-list tr th:first-child + th + th + th + th + th {
+ width: 11%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#company-show #company-forms-priority-list tr th:first-child + th + th + th + th + th + th {
+ width: 8%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#company-show #company-forms-priority-list tr th:first-child + th + th + th + th + th + th + th {
+ width: 16%;
+}
+/* line 20, ../../app/assets/stylesheets/apps/company_show.css.scss */
+#company-show #company-forms-priority-list tr .image-wrapper {
+ margin-left: 5px;
+}
+/* line 21, ../../app/assets/stylesheets/apps/company_show.css.scss */
+#company-show #company-forms-priority-list tr .btn-mini {
+ line-height: 12px;
+ width: 100%;
+}
+/* line 23, ../../app/assets/stylesheets/apps/company_show.css.scss */
+#company-show #grid-region {
+ clear: both;
+}
+/* line 25, ../../app/assets/stylesheets/apps/company_show.css.scss */
+#company-show #current-priorities-pie-chart,
+#company-show #current-priorities-column-chart {
+ height: 150px;
+ width: 100%;
+}
+/* line 27, ../../app/assets/stylesheets/apps/company_show.css.scss */
+#company-show #activity-links {
+ float: right;
+ width: 49%;
+ margin-top: 10px;
+}
+/* line 28, ../../app/assets/stylesheets/apps/company_show.css.scss */
+#company-show #forms-completed-line-chart {
+ width: 100%;
+ float: left;
+ overflow: hidden;
+ *zoom: 1;
+ margin: 0;
+}
+/* line 29, ../../app/assets/stylesheets/apps/company_show.css.scss */
+#company-show #activity-picker-region {
+ margin-bottom: 5px;
+}
+/* line 30, ../../app/assets/stylesheets/apps/company_show.css.scss */
+#company-show #locations-with-activity-list {
+ overflow: auto;
+ clear: both;
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+ width: 68%;
+ min-width: 68%;
+ max-width: 68%;
+ padding: 0;
+ border: 0 solid #d7dadf;
+ float: left;
+}
+/* line 31, ../../app/assets/stylesheets/apps/company_show.css.scss */
+#company-show #locations-with-activity-list #geo-chart-container {
+ min-height: 260px;
+ height: 260px;
+ float: left;
+}
+/* line 32, ../../app/assets/stylesheets/apps/company_show.css.scss */
+#company-show #locations-with-activity-list .module ul {
+ float: left;
+ min-width: 250px !important;
+}
+/* line 33, ../../app/assets/stylesheets/apps/company_show.css.scss */
+#company-show #locations-with-activity-list .module ul > li {
+ margin: 5px 0;
+ padding-bottom: 5px;
+ line-height: 12px;
+}
+/* line 34, ../../app/assets/stylesheets/apps/company_show.css.scss */
+#company-show #locations-with-activity-list .module ul > li > a {
+ font-weight: bold;
+ color: #3e4852;
+}
+/* line 35, ../../app/assets/stylesheets/apps/company_show.css.scss */
+#company-show #locations-with-activity-list .module ul > li > a:hover {
+ text-decoration: none;
+ cursor: default;
+}
+/* line 36, ../../app/assets/stylesheets/apps/company_show.css.scss */
+#company-show #locations-with-activity-list .module ul > li > a i {
+ position: relative;
+ top: -2px;
+}
+/* line 38, ../../app/assets/stylesheets/apps/company_show.css.scss */
+#company-show #locations-with-activity-list .module ul > li > div {
+ padding-left: 17px;
+}
+/* line 42, ../../app/assets/stylesheets/apps/company_show.css.scss */
+#company-show #users-with-activity-list {
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+ width: 30%;
+ min-width: 30%;
+ max-width: 30%;
+ padding: 0;
+ border: 0 solid #d7dadf;
+ float: left;
+ float: right;
+}
+/* line 43, ../../app/assets/stylesheets/apps/company_show.css.scss */
+#company-show #users-with-activity-list .module-list-content > li {
+ line-height: 20px;
+}
+/* line 44, ../../app/assets/stylesheets/apps/company_show.css.scss */
+#company-show #users-with-activity-list i {
+ vertical-align: middle;
+}
+/* line 46, ../../app/assets/stylesheets/apps/company_show.css.scss */
+#company-show #pie-chart-container {
+ min-height: 150px;
+ height: 150px;
+ margin: 15px 0;
+}
+/* line 47, ../../app/assets/stylesheets/apps/company_show.css.scss */
+#company-show #line-chart-container {
+ min-height: 210px;
+ height: 210px;
+}
+
+/* line 2, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#pinned-toolbar {
+ text-shadow: 0px 1px 0px white;
+ background-color: #eaeaea;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+ background-color: #f3f3f3;
+ background-image: -moz-linear-gradient(top, #f9f9f9, #eaeaea);
+ background-image: -ms-linear-gradient(top, #f9f9f9, #eaeaea);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f9f9f9), to(#eaeaea));
+ background-image: -webkit-linear-gradient(top, #f9f9f9, #eaeaea);
+ background-image: -o-linear-gradient(top, #f9f9f9, #eaeaea);
+ background-image: linear-gradient(top, #f9f9f9, #eaeaea);
+ background-repeat: repeat-x;
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9f9f9', endColorstr='#eaeaea', GradientType=0);
+ background-color: whitesmoke;
+ background-image: -moz-linear-gradient(top, #f9f9f9, #f4f4f4 25%, #efefef 50%, #eaeaea 75%);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f9f9f9), color-stop(25%, #f4f4f4), color-stop(50%, #efefef), to(75%, #eaeaea));
+ background-image: -webkit-linear-gradient(top, #f9f9f9, #f4f4f4 25%, #efefef 50%, #eaeaea 75%);
+ background-image: -o-linear-gradient(top, #f9f9f9, #f4f4f4 25%, #efefef 50%, #eaeaea 75%);
+ background-image: linear-gradient(to bottom, #f9f9f9, #f4f4f4 25%, #efefef 50%, #eaeaea 75%);
+ background-repeat: no-repeat;
+ border-color: #f4f4f4;
+ border-color: #f4f4f4 #f4f4f4 #cecece;
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) fadein(rgba(0, 0, 0, 0.1), 15%);
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9f9f9', endColorstr='#eaeaea', GradientType=0);
+ -webkit-border-radius: 0;
+ -moz-border-radius: 0;
+ -ms-border-radius: 0;
+ -o-border-radius: 0;
+ border-radius: 0;
+ color: #4b5566;
+ border-bottom-color: #bcbcbc;
+ -webkit-box-shadow: rgba(0, 0, 0, 0.5) 0 1px 6px;
+ -moz-box-shadow: rgba(0, 0, 0, 0.5) 0 1px 6px;
+ box-shadow: rgba(0, 0, 0, 0.5) 0 1px 6px;
+ width: 100%;
+ left: 0;
+ right: 0;
+ top: 0;
+ position: absolute;
+ z-index: 99;
+ padding-top: 0;
+}
+/* line 3, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#pinned-toolbar h3 {
+ width: 50%;
+ font-size: 18px !important;
+ letter-spacing: 0 !important;
+}
+/* line 4, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#pinned-toolbar h3 button {
+ padding-left: 0;
+}
+/* line 6, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#pinned-toolbar .breadcrumbWrapper {
+ width: 50%;
+ float: left;
+}
+/* line 7, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#pinned-toolbar .divider {
+ margin: 0;
+}
+/* line 8, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#pinned-toolbar .controls-wrapper {
+ margin-bottom: 6px !important;
+}
+/* line 9, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#pinned-toolbar .icons-logout-arrow-blue {
+ vertical-align: top;
+ margin-right: 3px;
+}
+/* line 11, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#pinned-toolbar #eventtype-published-unpublished-wrapper .btn {
+ height: 23px;
+ padding-top: 2px;
+}
+/* line 12, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#pinned-toolbar #eventtype-published-unpublished-wrapper .dropdown-menu {
+ top: auto;
+ right: auto !important;
+}
+/* line 13, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#pinned-toolbar #eventtype-published-unpublished-wrapper i {
+ vertical-align: baseline;
+}
+
+/* line 17, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+.new-points-list, .reorder-points-list {
+ z-index: 101 !important;
+}
+/* line 18, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+.new-points-list:after, .reorder-points-list:after {
+ border-bottom: 6px solid white;
+ border-left: 6px solid transparent;
+ border-right: 6px solid transparent;
+ content: "";
+ display: inline-block;
+ right: 10px;
+ position: absolute;
+ top: -6px;
+}
+/* line 19, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+.new-points-list:before, .reorder-points-list:before {
+ border-bottom: 7px solid rgba(0, 0, 0, 0.2);
+ border-left: 7px solid transparent;
+ border-right: 7px solid transparent;
+ content: "";
+ display: inline-block;
+ right: 9px;
+ position: absolute;
+ top: -8px;
+}
+/* line 21, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+.new-points-list.dropup-menu:after, .reorder-points-list.dropup-menu:after {
+ border-bottom: 0;
+ border-top: 6px solid white;
+ right: 22px;
+ top: 100%;
+}
+/* line 22, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+.new-points-list.dropup-menu:before, .reorder-points-list.dropup-menu:before {
+ border-bottom: 0;
+ border-top: 7px solid rgba(0, 0, 0, 0.2);
+ right: 21px;
+ top: 100%;
+}
+/* line 24, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+.new-points-list > li > a, .reorder-points-list > li > a {
+ overflow: auto;
+ line-height: 15px;
+}
+/* line 25, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+.new-points-list > li > a div.pointIcon, .reorder-points-list > li > a div.pointIcon {
+ width: 17% !important;
+ float: left !important;
+}
+/* line 26, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+.new-points-list > li > a div.pointDes, .reorder-points-list > li > a div.pointDes {
+ width: 83% !important;
+ float: left !important;
+}
+/* line 28, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+.new-points-list .divider, .reorder-points-list .divider {
+ margin: 0;
+}
+
+/* line 30, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+.new-points-list {
+ width: 240px;
+}
+/* line 31, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+.new-points-list:after {
+ right: 20px;
+}
+/* line 32, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+.new-points-list:before {
+ right: 19px;
+}
+/* line 33, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+.new-points-list i {
+ margin-right: 3px;
+ vertical-align: baseline !important;
+}
+/* line 34, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+.new-points-list .pointSingleSelect:hover i {
+ background-position: 0 -2123px;
+ height: 16px;
+ width: 22px;
+}
+/* line 35, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+.new-points-list .pointMultiSelect:hover i {
+ background-position: 0 -3456px;
+ height: 16px;
+ width: 22px;
+}
+/* line 36, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+.new-points-list .pointSingleText:hover i {
+ background-position: 0 -2791px;
+ height: 10px;
+ width: 20px;
+}
+/* line 37, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+.new-points-list .pointParagraph:hover i {
+ background-position: 0 -3772px;
+ height: 10px;
+ width: 17px;
+}
+/* line 38, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+.new-points-list .pointNumber:hover i {
+ background-position: 0 -1355px;
+ height: 10px;
+ width: 23px;
+}
+/* line 39, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+.new-points-list .pointDate:hover i {
+ background-position: 0 -2420px;
+ height: 16px;
+ width: 22px;
+}
+/* line 40, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+.new-points-list .pointBarcode:hover i {
+ background-position: 0 -3976px;
+ height: 10px;
+ width: 17px;
+}
+/* line 41, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+.new-points-list .pointSketch:hover i {
+ background-position: 0 -1638px;
+ height: 16px;
+ width: 15px;
+}
+/* line 42, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+.new-points-list .pointSignature:hover i {
+ background-position: 0 -1385px;
+ height: 16px;
+ width: 20px;
+}
+
+/* line 45, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder {
+ margin-top: 100px;
+}
+/* line 46, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .row.form-builder-content {
+ padding-bottom: 50px;
+}
+/* line 47, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .wrapper {
+ float: left;
+ width: 938px;
+}
+/* line 48, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .point-category-item {
+ float: left;
+ border: 1px solid #d7dadf;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+ margin-bottom: 30px;
+}
+/* line 49, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .point-category-item h3 {
+ color: #3E4852;
+}
+/* line 50, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .point-category-item .empty_container {
+ clear: both;
+}
+/* line 51, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .point-category-item .empty_container .well {
+ margin-bottom: 0;
+ border: 0;
+}
+/* line 54, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .ListWell {
+ float: left;
+ overflow: visible;
+ background-color: #e8edf0 !important;
+ width: 100%;
+ border: 0;
+ margin: 0;
+}
+/* line 55, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .ListWell > li {
+ background-color: #e8edf0;
+ float: left;
+ width: 100%;
+ border-bottom: 1px solid #d7dadf;
+}
+/* line 56, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .ListWell > li:last-child {
+ border-bottom: 0;
+}
+/* line 57, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .ListWell > li > div {
+ padding: 0;
+}
+/* line 59, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .ListWell .point-content {
+ background-color: #fdfdfd;
+ float: left;
+ width: 94%;
+ overflow: visible;
+}
+/* line 60, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .ListWell:empty {
+ width: auto !important;
+ margin: 0;
+ border: none;
+}
+/* line 64, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .header-controls li.dropdown,
+#form-builder .footer-controls li.dropdown {
+ margin-left: 3px !important;
+}
+/* line 65, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .header-controls li.dropdown > .btn,
+#form-builder .footer-controls li.dropdown > .btn {
+ padding-left: 0 !important;
+}
+/* line 66, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .header-controls li.dropdown .new-point,
+#form-builder .footer-controls li.dropdown .new-point {
+ margin-right: 11px !important;
+}
+/* line 68, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .header-controls {
+ background-color: #e8edf0;
+ overflow: visible;
+ float: left;
+ width: 938px;
+ padding: 0;
+ border: 0;
+}
+/* line 69, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .header-controls > div {
+ overflow: visible;
+ margin-bottom: 0;
+ padding: 3px 0 2px;
+ float: left;
+ width: 100%;
+ border-bottom: 1px solid #d7dadf;
+ line-height: 24px;
+}
+/* line 70, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .header-controls > div h5 {
+ margin-left: 8px;
+ overflow: visible;
+ text-overflow: clip;
+ white-space: normal;
+ word-wrap: break-word;
+ line-height: 24px;
+}
+/* line 72, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .header-controls > div > ul.pull-left {
+ width: 87%;
+}
+/* line 73, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .header-controls > div > ul.pull-left > li {
+ line-height: 24px;
+}
+/* line 74, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .header-controls > div > ul.pull-left > li:first-child {
+ width: 4%;
+}
+/* line 75, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .header-controls > div > ul.pull-left > li:first-child > .btn {
+ margin-left: 5px;
+}
+/* line 77, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .header-controls > div > ul.pull-left > li:last-child {
+ width: 94%;
+}
+/* line 80, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .header-controls > div > ul.pull-right {
+ width: 13%;
+}
+/* line 81, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .header-controls > div > ul.pull-right > li {
+ line-height: 24px;
+ float: right;
+}
+/* line 85, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .header-controls .btn {
+ margin: 0;
+}
+/* line 87, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .expand-collapse-toggle {
+ margin-left: 13px;
+}
+/* line 89, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .footer-controls {
+ -webkit-border-radius: 0;
+ -moz-border-radius: 0;
+ -ms-border-radius: 0;
+ -o-border-radius: 0;
+ border-radius: 0;
+}
+/* line 90, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .footer-controls .controlsBar {
+ border-top: 1px solid #d7dadf !important;
+}
+/* line 93, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .point-number {
+ width: 6%;
+ background-color: #e8edf0;
+}
+/* line 94, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .point-number > div {
+ padding: 15px 10px;
+ text-align: center;
+}
+/* line 95, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .point-number h3 {
+ font-size: 20px !important;
+ line-height: 15px !important;
+}
+/* line 96, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .point-number i {
+ vertical-align: middle;
+}
+/* line 99, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .default-value {
+ position: relative;
+ margin-left: 5px;
+ top: 3px;
+ overflow: visible;
+ text-overflow: clip;
+ white-space: normal;
+ word-wrap: break-word;
+}
+/* line 101, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .movePoint {
+ display: inline-block !important;
+ padding: 0 6px !important;
+}
+/* line 102, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .point-controls > div {
+ padding: 15px 15px 0px;
+ overflow: auto;
+}
+/* line 103, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .point-controls {
+ width: 32%;
+}
+/* line 104, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .point-controls .icons-edit-small-grey {
+ cursor: default !important;
+ cursor: not-allowed !important;
+}
+/* line 106, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .point-question {
+ width: 68%;
+}
+/* line 107, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .point-question h5 {
+ line-height: 19px;
+ font-size: 16px;
+ font-weight: 500;
+ margin-bottom: 3px;
+}
+/* line 108, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .point-question h5 i {
+ position: relative;
+ top: -1px;
+}
+/* line 110, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .point-question .content-wrapper {
+ padding: 0;
+ float: left;
+ overflow: visible !important;
+}
+/* line 111, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .point-question .content-wrapper > h4 {
+ margin-left: 50px;
+}
+/* line 113, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .point-question > div {
+ padding: 15px 20px 0 20px;
+ float: left;
+ border-left: 1px solid #d7dadf;
+}
+/* line 114, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .point-question p {
+ width: 500px;
+}
+/* line 115, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .point-question a:hover {
+ text-decoration: underline;
+}
+/* line 116, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .point-question .icons-barcode {
+ vertical-align: baseline;
+}
+/* line 118, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .SketchPlaceholder {
+ width: 280px;
+ height: 80px;
+}
+/* line 120, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .PriorityGrade i {
+ vertical-align: middle;
+ position: relative;
+ top: -1px;
+}
+/* line 122, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .iPhoneRows {
+ width: 500px !important;
+ background-color: white;
+ padding: 5px 10px;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+ border: 1px solid #d7dadf;
+}
+/* line 123, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .iPhoneRows label {
+ margin-bottom: 3px;
+}
+/* line 124, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .iPhoneRows .ConditionText {
+ width: 78%;
+ margin-bottom: 3px;
+ font-size: 13.5px;
+ font-weight: normal !important;
+}
+/* line 125, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .iPhoneRows .ConditionText .LabelText {
+ overflow: visible;
+ text-overflow: clip;
+ white-space: normal;
+ word-wrap: break-word;
+}
+/* line 127, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .iPhoneRows .ConditionScore {
+ width: 5%;
+ text-align: right;
+ color: #999;
+ font-style: italic;
+ font-size: 13.5px;
+}
+/* line 128, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .iPhoneRows .PriorityGrade {
+ display: inline-block;
+ width: 17%;
+ text-align: right;
+ font-size: 13.5px;
+}
+/* line 133, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .ListWell li.active, #form-builder .ListWell li.active .point-number {
+ background-color: #efefc3 !important;
+}
+/* line 136, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .ListWell li.active .point-content,
+#form-builder .ListWell li.active .point-question,
+#form-builder .ListWell li.active .form-options, #form-builder .ListWell li.active .point-number .point-content,
+#form-builder .ListWell li.active .point-number .point-question,
+#form-builder .ListWell li.active .point-number .form-options {
+ background-color: #fcfcdf;
+}
+/* line 139, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .form-vertical {
+ margin-bottom: 0;
+}
+/* line 140, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .form-vertical .point-question > div {
+ padding-top: 10px;
+}
+/* line 141, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .form-vertical #Definition {
+ width: 250px;
+}
+/* line 142, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .form-vertical .control-group {
+ float: left;
+ clear: both;
+ margin-bottom: 5px;
+}
+/* line 143, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .form-vertical .control-label {
+ margin-bottom: 1px;
+ font-size: 13px;
+ text-shadow: 0px 1px 0px white;
+}
+/* line 144, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .form-vertical .control-label > i {
+ right: 0;
+ margin-right: 3px;
+}
+/* line 147, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .controls {
+ overflow: visible !important;
+ display: block;
+ width: 100%;
+ float: left;
+}
+/* line 149, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .controls input[disabled='disabled'],
+#form-builder .controls textarea[disabled='disabled'] {
+ cursor: default !important;
+}
+/* line 150, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .controls input[type=text] {
+ width: 250px;
+}
+/* line 151, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .controls textarea {
+ width: 500px;
+ resize: vertical;
+ max-height: 300px;
+}
+/* line 152, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .controls .btn-group, #form-builder .controls .btn {
+ margin-left: 5px;
+}
+/* line 153, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .controls .btn.btn-mini {
+ line-height: 18px !important;
+}
+/* line 155, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .PointTypesContainer {
+ float: left;
+}
+/* line 156, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .resource-buttons {
+ float: left;
+ padding: 0px 0px 10px 20px;
+ float: left;
+ border-left: 1px solid #d7dadf;
+}
+/* line 157, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .resource-buttons .btn {
+ color: #4d80b4;
+ text-shadow: 0px 1px 0px white;
+ padding-left: 0;
+ padding-bottom: 2px;
+}
+/* line 158, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .resource-buttons .btn:hover {
+ color: #4d80b4;
+ text-shadow: 0px 1px 0px white;
+}
+/* line 161, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .form-options {
+ width: 32%;
+}
+/* line 162, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .form-options .btn-primary {
+ margin-left: 5px;
+}
+/* line 164, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .form-options > div:first-child {
+ padding: 15px 15px 10px;
+ overflow: auto;
+}
+/* line 165, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .form-options > div > div {
+ overflow: auto;
+}
+/* line 167, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .form-options small {
+ margin-top: 5px;
+ display: inline-block;
+}
+/* line 170, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .inputLabeled label {
+ margin-right: 5px;
+ position: relative;
+ top: 4px;
+}
+/* line 171, ../../app/assets/stylesheets/apps/eventtypes.css.scss */
+#form-builder .inputLabeled .SketchPlaceholder {
+ margin-top: 10px;
+ float: left;
+}
+
+/* line 2, ../../app/assets/stylesheets/apps/eventtypes_edit.css.scss */
+.editPointContentRegion .controls {
+ float: left;
+ overflow: visible !important;
+}
+
+/* line 3, ../../app/assets/stylesheets/apps/eventtypes_edit.css.scss */
+.list-condition-template-options {
+ vertical-align: middle;
+}
+
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#list-condition-templates tr th:first-child {
+ width: 46%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#list-condition-templates tr th:first-child + th {
+ width: 30%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#list-condition-templates tr th:first-child + th + th {
+ width: 16%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#list-condition-templates tr th:first-child + th + th + th {
+ width: 4%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#list-condition-templates tr th:first-child + th + th + th + th {
+ width: 4%;
+}
+
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#new-edit-condition-template tr th:first-child {
+ width: 7%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#new-edit-condition-template tr th:first-child + th {
+ width: 30%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#new-edit-condition-template tr th:first-child + th + th {
+ width: 16%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#new-edit-condition-template tr th:first-child + th + th + th {
+ width: 16%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#new-edit-condition-template tr th:first-child + th + th + th + th {
+ width: 11%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#new-edit-condition-template tr th:first-child + th + th + th + th + th {
+ width: 12%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#new-edit-condition-template tr th:first-child + th + th + th + th + th + th {
+ width: 4%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#new-edit-condition-template tr th:first-child + th + th + th + th + th + th + th {
+ width: 4%;
+}
+/* line 7, ../../app/assets/stylesheets/apps/eventtypes_edit.css.scss */
+#new-edit-condition-template tr .ColorColumn > div {
+ overflow: auto;
+}
+/* line 8, ../../app/assets/stylesheets/apps/eventtypes_edit.css.scss */
+#new-edit-condition-template tr .ColorColumn i {
+ float: left;
+ position: relative;
+ top: 11px;
+ margin-right: 3px;
+}
+/* line 9, ../../app/assets/stylesheets/apps/eventtypes_edit.css.scss */
+#new-edit-condition-template tr .ColorColumn .square-small {
+ float: left;
+ top: 7px;
+}
+/* line 10, ../../app/assets/stylesheets/apps/eventtypes_edit.css.scss */
+#new-edit-condition-template tr .ColorColumn .control-group {
+ width: 80% !important;
+ margin: 0;
+ line-height: 30px;
+}
+/* line 12, ../../app/assets/stylesheets/apps/eventtypes_edit.css.scss */
+#new-edit-condition-template tr td:first-child input {
+ width: 80% !important;
+}
+/* line 13, ../../app/assets/stylesheets/apps/eventtypes_edit.css.scss */
+#new-edit-condition-template tr .conditionDefaultRadio {
+ width: auto !important;
+ position: relative;
+ left: 28%;
+ vertical-align: middle;
+}
+/* line 15, ../../app/assets/stylesheets/apps/eventtypes_edit.css.scss */
+#new-edit-condition-template tr .content-wrapper > h4 {
+ margin-left: 25px;
+ margin-top: 10px;
+}
+/* line 16, ../../app/assets/stylesheets/apps/eventtypes_edit.css.scss */
+#new-edit-condition-template tr .content-wrapper > ul {
+ padding: 5px 20px 0 !important;
+}
+/* line 17, ../../app/assets/stylesheets/apps/eventtypes_edit.css.scss */
+#new-edit-condition-template tr .content-wrapper > ul label {
+ width: 110px !important;
+}
+/* line 18, ../../app/assets/stylesheets/apps/eventtypes_edit.css.scss */
+#new-edit-condition-template tr .content-wrapper > ul .controls {
+ margin-left: 120px !important;
+}
+/* line 19, ../../app/assets/stylesheets/apps/eventtypes_edit.css.scss */
+#new-edit-condition-template tr .content-wrapper > ul li {
+ line-height: 27px;
+}
+/* line 22, ../../app/assets/stylesheets/apps/eventtypes_edit.css.scss */
+#new-edit-condition-template tr .control-group.divider {
+ padding-bottom: 0 !important;
+ margin-bottom: 10px !important;
+}
+
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#edit-point-canned-comments tr th:first-child,
+#edit-point-procedures tr th:first-child {
+ width: 45%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#edit-point-canned-comments tr th:first-child + th,
+#edit-point-procedures tr th:first-child + th {
+ width: 47%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#edit-point-canned-comments tr th:first-child + th + th,
+#edit-point-procedures tr th:first-child + th + th {
+ width: 4%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#edit-point-canned-comments tr th:first-child + th + th + th,
+#edit-point-procedures tr th:first-child + th + th + th {
+ width: 4%;
+}
+
+/* line 26, ../../app/assets/stylesheets/apps/eventtypes_edit.css.scss */
+.dialog-edit-class-default-fields {
+ min-width: 700px;
+ max-width: 700px;
+}
+
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#list-point-files tr th:first-child {
+ width: 34%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#list-point-files tr th:first-child + th {
+ width: 11%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#list-point-files tr th:first-child + th + th {
+ width: 47%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#list-point-files tr th:first-child + th + th + th {
+ width: 4%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#list-point-files tr th:first-child + th + th + th + th {
+ width: 4%;
+}
+/* line 28, ../../app/assets/stylesheets/apps/eventtypes_edit.css.scss */
+#list-point-files tr .icons-file {
+ vertical-align: top;
+}
+
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#edit-point-uoms tr th:first-child {
+ width: 80%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#edit-point-uoms tr th:first-child + th {
+ width: 10%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#edit-point-uoms tr th:first-child + th + th {
+ width: 10%;
+}
+
+/* line 31, ../../app/assets/stylesheets/apps/eventtypes_edit.css.scss */
+.listConditionTemplateOptions {
+ margin-left: 10px;
+}
+
+/* line 32, ../../app/assets/stylesheets/apps/eventtypes_edit.css.scss */
+.conditionTemplatesDialog {
+ max-width: 500px;
+}
+
+/* line 33, ../../app/assets/stylesheets/apps/eventtypes_edit.css.scss */
+#ConditionTemplateWrapper {
+ display: none;
+}
+/* line 34, ../../app/assets/stylesheets/apps/eventtypes_edit.css.scss */
+#ConditionTemplateWrapper a.help-block {
+ margin-top: 0;
+}
+
+/* line 36, ../../app/assets/stylesheets/apps/eventtypes_edit.css.scss */
+#data-type-wrapper {
+ display: none;
+}
+
+/* line 38, ../../app/assets/stylesheets/apps/eventtypes_edit.css.scss */
+[id^="Color-list"],
+[id*="Color-list"] {
+ width: 100px !important;
+}
+
+/* line 40, ../../app/assets/stylesheets/apps/eventtypes_edit.css.scss */
+.category-options-dropdown .dropdown-menu {
+ z-index: 6000 !important;
+}
+/* line 41, ../../app/assets/stylesheets/apps/eventtypes_edit.css.scss */
+.category-options-dropdown .divider {
+ margin: 0;
+}
+
+/* line 2, ../../app/assets/stylesheets/apps/folders.css.scss */
+#folders #article-title {
+ margin-top: 15px;
+}
+/* line 3, ../../app/assets/stylesheets/apps/folders.css.scss */
+#folders #article-title h3 {
+ line-height: 44px;
+}
+/* line 5, ../../app/assets/stylesheets/apps/folders.css.scss */
+#folders #line_chart_container.loading {
+ background: url(/assets/ajax.gif) transparent no-repeat 50% 50%;
+ min-height: 200px;
+}
+/* line 6, ../../app/assets/stylesheets/apps/folders.css.scss */
+#folders #line_chart_controls {
+ height: 50px;
+}
+/* line 7, ../../app/assets/stylesheets/apps/folders.css.scss */
+#folders #folder_types_pie_chart {
+ float: left;
+}
+/* line 8, ../../app/assets/stylesheets/apps/folders.css.scss */
+#folders #folder_types_pie_chart.loading {
+ background: url(/assets/ajax.gif) transparent no-repeat 50% 50%;
+}
+/* line 10, ../../app/assets/stylesheets/apps/folders.css.scss */
+#folders #folder_types_list {
+ float: right;
+}
+/* line 11, ../../app/assets/stylesheets/apps/folders.css.scss */
+#folders #FoldersList {
+ clear: both;
+ margin-top: 10px;
+}
+/* line 12, ../../app/assets/stylesheets/apps/folders.css.scss */
+#folders #show_wrap {
+ display: none;
+}
+/* line 13, ../../app/assets/stylesheets/apps/folders.css.scss */
+#folders fieldset {
+ margin: 40px 30px 30px;
+}
+/* line 14, ../../app/assets/stylesheets/apps/folders.css.scss */
+#folders .dropdown {
+ margin-left: 3px;
+}
+/* line 16, ../../app/assets/stylesheets/apps/folders.css.scss */
+#folders .dropdown-toggle:hover .caret {
+ border-bottom-color: #3d70a5;
+ border-top-color: #3d70a5;
+}
+/* line 17, ../../app/assets/stylesheets/apps/folders.css.scss */
+#folders .dropdown-toggle .caret {
+ position: relative;
+ top: 2px;
+ border-bottom-color: #3d70a5;
+ border-top-color: #3d70a5;
+}
+/* line 20, ../../app/assets/stylesheets/apps/folders.css.scss */
+#folders .dropdown-toggle.active .icons-folder,
+#folders .dropdown-toggle:active .icons-folder {
+ background-position: 0 -2965px;
+ height: 16px;
+ width: 15px;
+}
+/* line 21, ../../app/assets/stylesheets/apps/folders.css.scss */
+#folders .dropdown-toggle:focus .icons-folder {
+ background-position: 0 -2821px;
+ height: 16px;
+ width: 15px;
+}
+/* line 43, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss */
+#folders .dropdown-toggle:focus .icons-folder:active, #folders .dropdown-toggle:focus .icons-folder.folder_active, #folders .dropdown-toggle:focus .icons-folder.folder-active {
+ background-position: 0 -2965px;
+}
+/* line 22, ../../app/assets/stylesheets/apps/folders.css.scss */
+#folders > .form-horizontal {
+ margin-bottom: 100px;
+}
+
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+.JobsWrapper .table-fixed tr th:first-child {
+ width: 1.5%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+.JobsWrapper .table-fixed tr th:first-child + th {
+ width: 25%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+.JobsWrapper .table-fixed tr th:first-child + th + th {
+ width: 19%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+.JobsWrapper .table-fixed tr th:first-child + th + th + th {
+ width: 20%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+.JobsWrapper .table-fixed tr th:first-child + th + th + th + th {
+ width: 15%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+.JobsWrapper .table-fixed tr th:first-child + th + th + th + th + th {
+ width: 19.5%;
+}
+
+/* line 26, ../../app/assets/stylesheets/apps/folders.css.scss */
+.IndentButton {
+ margin-left: 27px;
+}
+
+/* line 27, ../../app/assets/stylesheets/apps/folders.css.scss */
+.control-group + .AutoGenerate {
+ margin-top: -10px;
+ margin-bottom: 15px;
+}
+
+/* line 28, ../../app/assets/stylesheets/apps/folders.css.scss */
+.AutoGenerate {
+ overflow: auto;
+}
+/* line 29, ../../app/assets/stylesheets/apps/folders.css.scss */
+.AutoGenerate > span {
+ float: right;
+ margin-right: 43px;
+}
+/* line 30, ../../app/assets/stylesheets/apps/folders.css.scss */
+.AutoGenerate > span > label {
+ color: #4d80b4;
+ font-weight: normal !important;
+ float: none !important;
+ display: inline-block;
+ width: auto !important;
+}
+/* line 31, ../../app/assets/stylesheets/apps/folders.css.scss */
+.AutoGenerate > span > input {
+ position: relative;
+ top: -3px;
+}
+
+/* line 35, ../../app/assets/stylesheets/apps/folders.css.scss */
+#ChooseFormsTable {
+ margin-bottom: 5px;
+}
+/* line 36, ../../app/assets/stylesheets/apps/folders.css.scss */
+#ChooseFormsTable + button {
+ margin-bottom: 30px;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#ChooseFormsTable tr th:first-child {
+ width: 24%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#ChooseFormsTable tr th:first-child + th {
+ width: 24%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#ChooseFormsTable tr th:first-child + th + th {
+ width: 24%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#ChooseFormsTable tr th:first-child + th + th + th {
+ width: 25%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#ChooseFormsTable tr th:first-child + th + th + th + th {
+ width: 3%;
+}
+/* line 38, ../../app/assets/stylesheets/apps/folders.css.scss */
+#ChooseFormsTable tr .control-group {
+ margin-bottom: 0;
+ margin-top: 0;
+ z-index: 1000;
+}
+/* line 39, ../../app/assets/stylesheets/apps/folders.css.scss */
+#ChooseFormsTable tr .control-group .controls {
+ margin-left: 0;
+}
+/* line 41, ../../app/assets/stylesheets/apps/folders.css.scss */
+#ChooseFormsTable tr td:first-child + td + td + td > div {
+ float: right;
+ margin-top: 4px;
+}
+/* line 43, ../../app/assets/stylesheets/apps/folders.css.scss */
+#ChooseFormsTable i {
+ margin-top: 6px;
+}
+/* line 44, ../../app/assets/stylesheets/apps/folders.css.scss */
+#ChooseFormsTable span.form_type_task.show {
+ line-height: 12px;
+}
+
+/* line 46, ../../app/assets/stylesheets/apps/folders.css.scss */
+#select_company {
+ margin-left: 0;
+}
+
+/* line 48, ../../app/assets/stylesheets/apps/folders.css.scss */
+[id^="class_select-list"],
+[id*="class_select-list"] {
+ width: 350px !important;
+}
+/* line 49, ../../app/assets/stylesheets/apps/folders.css.scss */
+[id^="class_select-list"] .k-item,
+[id*="class_select-list"] .k-item {
+ overflow: auto !important;
+}
+/* line 50, ../../app/assets/stylesheets/apps/folders.css.scss */
+[id^="class_select-list"] .k-item > div,
+[id*="class_select-list"] .k-item > div {
+ vertical-align: middle;
+}
+/* line 51, ../../app/assets/stylesheets/apps/folders.css.scss */
+[id^="class_select-list"] .k-item > div:last-child,
+[id*="class_select-list"] .k-item > div:last-child {
+ float: left;
+ margin: 0 !important;
+ padding: 0 !important;
+}
+
+/* line 55, ../../app/assets/stylesheets/apps/folders.css.scss */
+.AutoGenerate label {
+ cursor: pointer;
+ vertical-align: middle;
+}
+
+/* line 57, ../../app/assets/stylesheets/apps/folders.css.scss */
+[id^="category_select-list"],
+[id*="category_select-list"] {
+ width: 350px !important;
+}
+
+/* line 58, ../../app/assets/stylesheets/apps/folders.css.scss */
+.assign_assignments_dialog {
+ width: 600px !important;
+}
+
+/* line 59, ../../app/assets/stylesheets/apps/folders.css.scss */
+#assets_count {
+ margin-top: 5px;
+}
+
+/* line 60, ../../app/assets/stylesheets/apps/folders.css.scss */
+.UsersDispatch {
+ margin-bottom: 30px;
+ margin-top: 20px;
+}
+/* line 61, ../../app/assets/stylesheets/apps/folders.css.scss */
+.UsersDispatch .table {
+ margin-bottom: 5px;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+.UsersDispatch .table tr th:first-child {
+ width: 22%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+.UsersDispatch .table tr th:first-child + th {
+ width: 25.5%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+.UsersDispatch .table tr th:first-child + th + th {
+ width: 25.5%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+.UsersDispatch .table tr th:first-child + th + th + th {
+ width: 24%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+.UsersDispatch .table tr th:first-child + th + th + th + th {
+ width: 3%;
+}
+/* line 63, ../../app/assets/stylesheets/apps/folders.css.scss */
+.UsersDispatch .table tr .user_select {
+ width: 180px;
+}
+/* line 64, ../../app/assets/stylesheets/apps/folders.css.scss */
+.UsersDispatch .table tr textarea {
+ height: 50px;
+ width: 180px;
+}
+/* line 66, ../../app/assets/stylesheets/apps/folders.css.scss */
+.UsersDispatch .table i {
+ margin-top: 6px;
+}
+
+/* line 70, ../../app/assets/stylesheets/apps/folders.css.scss */
+#folder-show {
+ overflow: hidden;
+ margin-top: 15px;
+ margin-bottom: 30px;
+}
+
+/* line 71, ../../app/assets/stylesheets/apps/folders.css.scss */
+#folder-details-tab {
+ overflow: auto;
+ max-width: 25%;
+ margin-bottom: -1px;
+ font-weight: bold;
+ text-shadow: 0px 1px 0px white;
+ font-size: 15px;
+ line-height: 18px;
+}
+/* line 72, ../../app/assets/stylesheets/apps/folders.css.scss */
+#folder-details-tab > div {
+ display: inline-block;
+ background-color: #f3f6f7;
+ padding: 5px 15px;
+ border: 1px solid #dddddd;
+ border-bottom: none;
+ -webkit-border-radius: 5px 5px 0 0;
+ -moz-border-radius: 5px 5px 0 0;
+ -ms-border-radius: 5px 5px 0 0;
+ -o-border-radius: 5px 5px 0 0;
+ border-radius: 5px 5px 0 0;
+}
+/* line 73, ../../app/assets/stylesheets/apps/folders.css.scss */
+#folder-details-tab > button {
+ padding-bottom: 0;
+}
+
+/* line 75, ../../app/assets/stylesheets/apps/folders.css.scss */
+#folder-details {
+ width: 25%;
+ float: left;
+ background-color: #f3f6f7;
+}
+/* line 76, ../../app/assets/stylesheets/apps/folders.css.scss */
+#folder-details > div {
+ padding: 5px 15px;
+ border: 1px solid #dddddd;
+ -webkit-border-radius: 0 5px 5px 5px;
+ -moz-border-radius: 0 5px 5px 5px;
+ -ms-border-radius: 0 5px 5px 5px;
+ -o-border-radius: 0 5px 5px 5px;
+ border-radius: 0 5px 5px 5px;
+}
+
+/* line 78, ../../app/assets/stylesheets/apps/folders.css.scss */
+.folder-detail {
+ margin: 5px 0;
+ overflow: hidden;
+ clear: both;
+}
+/* line 79, ../../app/assets/stylesheets/apps/folders.css.scss */
+.folder-detail > h4 {
+ margin-bottom: 0;
+ margin-right: 1%;
+ font-size: 13.5px;
+ line-height: 16px;
+ overflow: visible;
+ text-overflow: clip;
+ white-space: normal;
+ word-wrap: break-word;
+}
+/* line 80, ../../app/assets/stylesheets/apps/folders.css.scss */
+.folder-detail > div {
+ line-height: 16px;
+ overflow: visible;
+ text-overflow: clip;
+ white-space: normal;
+ word-wrap: break-word;
+}
+
+/* line 82, ../../app/assets/stylesheets/apps/folders.css.scss */
+#forms-in-folder-list {
+ width: 75%;
+ float: right;
+}
+/* line 83, ../../app/assets/stylesheets/apps/folders.css.scss */
+#forms-in-folder-list > div {
+ padding-left: 15px;
+}
+
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#forms-in-folder-table tr th:first-child {
+ width: 7%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#forms-in-folder-table tr th:first-child + th {
+ width: 36%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#forms-in-folder-table tr th:first-child + th + th {
+ width: 8%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#forms-in-folder-table tr th:first-child + th + th + th {
+ width: 8%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#forms-in-folder-table tr th:first-child + th + th + th + th {
+ width: 8%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#forms-in-folder-table tr th:first-child + th + th + th + th + th {
+ width: 8%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#forms-in-folder-table tr th:first-child + th + th + th + th + th + th {
+ width: 7%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#forms-in-folder-table tr th:first-child + th + th + th + th + th + th + th {
+ width: 18%;
+}
+
+/* line 2, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#points-list-region {
+ overflow: auto;
+}
+
+/* line 3, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#folder-region {
+ overflow: auto;
+ padding: 4px 0;
+ text-shadow: 0px 1px 0px white;
+}
+/* line 4, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#folder-region > div > .pull-left {
+ line-height: 18px;
+}
+/* line 5, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#folder-region > div > .pull-left > div {
+ float: left;
+}
+/* line 6, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#folder-region > div > .pull-left .form-titles-container {
+ width: 94%;
+ margin-left: 1%;
+ margin-top: 5px;
+ text-shadow: 0px 1px 0px white;
+}
+/* line 7, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#folder-region > div > .pull-left .form-titles-container > span {
+ font-weight: bold;
+ overflow: visible;
+ text-overflow: clip;
+ white-space: normal;
+ word-wrap: break-word;
+ font-size: 18px;
+ float: left;
+}
+/* line 8, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#folder-region > div > .pull-left .form-titles-container .form-class-title {
+ color: #999;
+}
+/* line 9, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#folder-region > div > .pull-left .form-titles-container .form-title {
+ color: #4f595f;
+ margin-left: 5px;
+}
+/* line 10, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#folder-region > div > .pull-left .form-titles-container i {
+ cursor: pointer;
+ position: relative;
+ top: 3px;
+ margin-left: 3px;
+}
+/* line 13, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#folder-region .pull-right {
+ font-size: 11px;
+ color: #777;
+}
+/* line 14, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#folder-region .pull-right i {
+ vertical-align: middle;
+ position: relative;
+ top: -1px;
+}
+
+/* line 17, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#filter-region {
+ padding-right: 10px;
+}
+
+/* line 18, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.aside-filters {
+ padding-right: 10px;
+}
+/* line 19, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.aside-filters #condition-filters-region {
+ border-top: 1px solid white;
+}
+/* line 20, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.aside-filters .nav-header {
+ border-bottom: 1px solid #dcdedf;
+ margin-left: 0;
+ margin-bottom: 0px;
+ line-height: 19px;
+ margin-top: 10px;
+ font-size: 14px;
+ color: #4e565a;
+ text-shadow: 0px 1px 0px white;
+}
+/* line 21, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.aside-filters .filter-label {
+ color: #6d7b80;
+ font-size: 13px;
+ font-weight: bold;
+ text-shadow: 0px 1px 0px white;
+ margin-bottom: 0;
+ padding-top: 15px;
+ padding-bottom: 1px;
+}
+/* line 22, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.aside-filters .filter-label.current-label {
+ padding-top: 3px;
+}
+/* line 24, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.aside-filters .btn-group {
+ width: 100%;
+ overflow: auto;
+}
+/* line 25, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.aside-filters .btn-group > .btn {
+ width: 71px;
+}
+/* line 26, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.aside-filters .btn-group > .btn:first-child + .btn {
+ width: 80px;
+}
+/* line 27, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.aside-filters .btn-group > .btn:hover {
+ background-color: #f0f0f0;
+}
+/* line 28, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.aside-filters .btn-group > .btn.active {
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
+ background-color: #ddd;
+ -webkit-box-shadow: rgba(0, 0, 0, 0.15) 0 2px 1px inset;
+ -moz-box-shadow: rgba(0, 0, 0, 0.15) 0 2px 1px inset;
+ box-shadow: rgba(0, 0, 0, 0.15) 0 2px 1px inset;
+}
+/* line 29, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.aside-filters .btn-group > .btn.active:hover {
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
+ background-color: #d8d8d8;
+ cursor: pointer;
+}
+/* line 31, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.aside-filters .btn-group > .btn i {
+ vertical-align: middle;
+}
+/* line 35, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.aside-filters #completed-buttons > .btn,
+.aside-filters #resolved-buttons > .btn {
+ width: 110px;
+}
+/* line 36, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.aside-filters #other-filters {
+ overflow: auto;
+}
+/* line 37, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.aside-filters #other-filters > li {
+ margin: 5px 0;
+}
+/* line 38, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.aside-filters #other-filters > li:first-child {
+ margin-top: 0;
+}
+/* line 39, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.aside-filters #other-filters > li:last-child {
+ margin-bottom: 0;
+}
+/* line 40, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.aside-filters #other-filters > li label {
+ font-size: 13px;
+ color: #6d7b80;
+ clear: both;
+ vertical-align: middle;
+}
+/* line 41, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.aside-filters #other-filters > li label > input {
+ float: left;
+ margin-bottom: 7px;
+}
+/* line 42, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.aside-filters #other-filters > li label > span {
+ cursor: pointer;
+ float: left;
+ margin-left: 5px;
+ position: relative;
+ top: 1px;
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ user-select: none;
+}
+/* line 45, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.aside-filters #other-filters .label-resolved, .aside-filters #other-filters .label-unresolved {
+ padding: 0px 3px;
+}
+/* line 47, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.aside-filters .css-bar-chart {
+ overflow: auto;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+}
+/* line 48, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.aside-filters .css-bar-chart .color-container {
+ float: left;
+}
+/* line 49, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.aside-filters .css-bar-chart .color-container .color-wrapper {
+ margin-left: 1px;
+ text-align: center;
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.35);
+ font-size: 11px;
+ font-weight: 400;
+ color: white;
+ font-weight: bold;
+ line-height: 20px;
+ overflow: hidden;
+ padding-bottom: 3px;
+}
+/* line 50, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.aside-filters .css-bar-chart .color-container .color-wrapper .color-bar {
+ height: 20px;
+ cursor: default;
+}
+/* line 52, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.aside-filters .css-bar-chart .color-container:first-child > .color-wrapper > .color-bar {
+ -webkit-border-radius: 5px 0 0 5px;
+ -moz-border-radius: 5px 0 0 5px;
+ -ms-border-radius: 5px 0 0 5px;
+ -o-border-radius: 5px 0 0 5px;
+ border-radius: 5px 0 0 5px;
+}
+/* line 53, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.aside-filters .css-bar-chart .color-container:last-child > .color-wrapper > .color-bar {
+ -webkit-border-radius: 0 5px 5px 0;
+ -moz-border-radius: 0 5px 5px 0;
+ -ms-border-radius: 0 5px 5px 0;
+ -o-border-radius: 0 5px 5px 0;
+ border-radius: 0 5px 5px 0;
+}
+
+/* line 57, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#details-region {
+ overflow: auto;
+}
+
+/* line 58, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#form-review-stats {
+ overflow: auto;
+ padding: 10px 20px 10px;
+}
+/* line 59, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#form-review-stats > ul {
+ width: 48%;
+ float: left;
+}
+/* line 60, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#form-review-stats > ul li {
+ margin: 8px 0;
+}
+/* line 61, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#form-review-stats > ul li .links-list-text {
+ font-weight: bold;
+}
+/* line 62, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#form-review-stats > ul li .links-list-num {
+ line-height: 16px;
+}
+/* line 63, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#form-review-stats > ul li .links-list-num i {
+ vertical-align: middle;
+}
+
+/* line 68, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.form-asset-details {
+ clear: both;
+ margin: 10px 5px 20px 15px;
+ border: 1px solid #dddddd;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+}
+/* line 69, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.form-asset-details .form-asset-details-title {
+ background-color: #eee;
+ padding: 5px 10px;
+}
+/* line 70, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.form-asset-details .form-asset-details-content {
+ padding: 0 10px 10px;
+ overflow: auto;
+}
+/* line 71, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.form-asset-details .form-asset-details-content .asset-class-name {
+ display: block;
+ line-height: 22px;
+}
+/* line 72, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.form-asset-details .form-asset-details-content #asset-attribute-list {
+ width: 74%;
+ padding: 0 10px;
+}
+/* line 73, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.form-asset-details .form-asset-details-content .image-wrapper {
+ float: left;
+}
+
+/* line 76, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#form-review-wrapper {
+ padding: 0 0 40px 20px;
+}
+
+/* line 77, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.controls-wrapper.form-review-controls {
+ margin-bottom: 0;
+ background-color: #f0f2f3;
+ background-image: -moz-linear-gradient(top, #f5f7f8, #e9ebec);
+ background-image: -ms-linear-gradient(top, #f5f7f8, #e9ebec);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f5f7f8), to(#e9ebec));
+ background-image: -webkit-linear-gradient(top, #f5f7f8, #e9ebec);
+ background-image: -o-linear-gradient(top, #f5f7f8, #e9ebec);
+ background-image: linear-gradient(top, #f5f7f8, #e9ebec);
+ background-repeat: repeat-x;
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f5f7f8', endColorstr='#e9ebec', GradientType=0);
+ border: 1px solid #c9d2d7;
+ clear: both;
+ -webkit-border-radius: 5px 5px 0 0;
+ -moz-border-radius: 5px 5px 0 0;
+ -ms-border-radius: 5px 5px 0 0;
+ -o-border-radius: 5px 5px 0 0;
+ border-radius: 5px 5px 0 0;
+}
+/* line 78, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.controls-wrapper.form-review-controls .btn.btn-no-bg {
+ -webkit-border-radius: 0;
+ -moz-border-radius: 0;
+ -ms-border-radius: 0;
+ -o-border-radius: 0;
+ border-radius: 0;
+ font-weight: 500;
+ font-size: 14px;
+}
+/* line 79, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.controls-wrapper.form-review-controls .btn.btn-no-bg:hover {
+ text-decoration: none;
+ background-image: none;
+ background-color: white !important;
+}
+
+/* line 82, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.accordian-list {
+ overflow: auto;
+ border: 1px solid #ebedee;
+ border-top: none;
+ -webkit-border-radius: 0 0 5px 5px;
+ -moz-border-radius: 0 0 5px 5px;
+ -ms-border-radius: 0 0 5px 5px;
+ -o-border-radius: 0 0 5px 5px;
+ border-radius: 0 0 5px 5px;
+}
+/* line 83, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.accordian-list i {
+ cursor: pointer;
+}
+/* line 84, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.accordian-list .point-heading-row {
+ overflow: auto;
+ border-top: 1px solid #ebedee;
+ border-bottom: 1px solid #ebedee;
+ background-color: #f0f2f3;
+ background-image: -moz-linear-gradient(top, #f5f7f8, #e9ebec);
+ background-image: -ms-linear-gradient(top, #f5f7f8, #e9ebec);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f5f7f8), to(#e9ebec));
+ background-image: -webkit-linear-gradient(top, #f5f7f8, #e9ebec);
+ background-image: -o-linear-gradient(top, #f5f7f8, #e9ebec);
+ background-image: linear-gradient(top, #f5f7f8, #e9ebec);
+ background-repeat: repeat-x;
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f5f7f8', endColorstr='#e9ebec', GradientType=0);
+}
+/* line 85, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.accordian-list .point-heading-row > div {
+ float: left;
+ font-weight: bold;
+ line-height: 27px;
+}
+/* line 86, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.accordian-list .point-heading-row > div.accordian-icon {
+ width: 3%;
+ position: relative;
+}
+/* line 87, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.accordian-list .point-heading-row > div.accordian-icon > div {
+ width: 13px;
+ height: 13px;
+}
+/* line 88, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.accordian-list .point-heading-row > div.accordian-icon > div i {
+ position: absolute;
+ top: 6px;
+ right: 5px;
+}
+/* line 92, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.accordian-list .point-heading-row .point-heading-title {
+ text-transform: uppercase;
+ text-shadow: 0px 1px 0px white;
+ font-size: 15px;
+ color: #464748;
+ width: 87%;
+}
+/* line 93, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.accordian-list .point-heading-row .point-heading-title > div {
+ line-height: 18px;
+ overflow: visible;
+ text-overflow: clip;
+ white-space: normal;
+ word-wrap: break-word;
+ padding: 4px 5px 5px 2px;
+}
+/* line 95, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.accordian-list .point-heading-row .point-heading-count {
+ color: #696c6e;
+ font-size: 12px;
+ width: 10%;
+ overflow: visible;
+ text-overflow: clip;
+ white-space: normal;
+ word-wrap: break-word;
+ text-align: right;
+}
+/* line 96, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.accordian-list .point-heading-row .point-heading-count > div {
+ padding-right: 10px;
+}
+/* line 99, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.accordian-list .list-points {
+ overflow: auto;
+}
+/* line 100, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.accordian-list .list-points > li {
+ width: 100%;
+ overflow: auto;
+ line-height: 28px;
+ text-shadow: 0px 1px 0px white;
+}
+/* line 101, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.accordian-list .list-points > li > div {
+ float: left;
+ min-height: 1px;
+}
+/* line 102, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.accordian-list .list-points > li > div:first-child {
+ width: 3%;
+}
+/* line 103, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.accordian-list .list-points > li > div:first-child + div {
+ width: 45%;
+ font-weight: 500;
+ color: #4d80b4 !important;
+}
+/* line 105, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.accordian-list .list-points > li > div:first-child + div.points-list-title
+.point-number-and-title {
+ display: inline-block;
+ padding: 5px;
+ line-height: 14px;
+ overflow: visible;
+ text-overflow: clip;
+ white-space: normal;
+ word-wrap: break-word;
+ text-align: left;
+ color: #4d80b4;
+}
+/* line 106, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.accordian-list .list-points > li > div:first-child + div + div {
+ width: 23%;
+ margin-left: 3%;
+ min-height: 1px;
+ line-height: 14px;
+}
+/* line 107, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.accordian-list .list-points > li > div:first-child + div + div > div {
+ padding: 5px;
+}
+/* line 108, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.accordian-list .list-points > li > div:first-child + div + div + div {
+ width: 3%;
+ min-height: 1px;
+}
+/* line 109, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.accordian-list .list-points > li > div:first-child + div + div + div + div {
+ width: 3%;
+ min-height: 1px;
+}
+/* line 110, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.accordian-list .list-points > li > div:first-child + div + div + div + div + div {
+ width: 20%;
+ text-align: right;
+}
+/* line 120, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.accordian-list .list-points.list-striped > li:nth-child(odd) {
+ background-color: white;
+}
+/* line 121, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.accordian-list .list-points.list-striped > li:nth-child(even) {
+ background-color: #f6f6f7;
+}
+/* line 123, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.accordian-list .list-points.list-selectable > li:hover {
+ background-color: #fdfde0;
+ cursor: pointer;
+}
+/* line 124, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.accordian-list .list-points .icon-priority-container > i {
+ position: relative;
+ left: 54%;
+ top: 3px;
+}
+
+/* line 127, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.label-resolved, .label-unresolved {
+ text-shadow: 0px 1px 0px white;
+ display: inline;
+ margin-right: 7px;
+ text-transform: uppercase;
+ font-size: 11px !important;
+ font-weight: bold;
+ padding: 1px 3px 1px 5px;
+ font-style: italic;
+ border-width: 2px;
+ border-style: solid;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+}
+
+/* line 128, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.label-resolved {
+ color: #6d9563 !important;
+ border-color: #729969;
+ background-color: #f0f9ee;
+}
+/* line 129, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.label-resolved .ca-date {
+ font-weight: normal;
+ text-transform: none;
+}
+/* line 130, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.label-resolved i {
+ vertical-align: middle;
+}
+
+/* line 132, ../../app/assets/stylesheets/apps/form_review.css.scss */
+.label-unresolved {
+ color: #999999 !important;
+ border-color: #aaa;
+ background-color: #fafafa;
+}
+
+/* line 134, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#resolved-buttons .btn.label-resolved,
+#resolved-buttons .btn.label-unresolved {
+ padding: 2px 3px !important;
+ margin-right: 0;
+ font-weight: bold !important;
+}
+
+/* line 136, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#resolve-priorities-modal {
+ overflow: auto;
+ padding: 20px;
+}
+/* line 137, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#resolve-priorities-modal .resolve-disclaimer {
+ font-size: 14px;
+ line-height: 24px;
+ text-shadow: 0px 1px 0px white;
+ margin-right: 10px;
+}
+/* line 138, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#resolve-priorities-modal .resolve-actions {
+ overflow: auto;
+ margin-top: 15px;
+}
+
+/* line 140, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#resolve-priorities-table {
+ margin-top: 10px;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#resolve-priorities-table tr th:first-child {
+ width: 3%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#resolve-priorities-table tr th:first-child + th {
+ width: 31%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#resolve-priorities-table tr th:first-child + th + th {
+ width: 26%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#resolve-priorities-table tr th:first-child + th + th + th {
+ width: 10%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#resolve-priorities-table tr th:first-child + th + th + th + th {
+ width: 30%;
+}
+/* line 142, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#resolve-priorities-table tr td {
+ line-height: 14px;
+}
+/* line 144, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#resolve-priorities-table .btn-no-bg {
+ padding: 0;
+}
+/* line 145, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#resolve-priorities-table .BoldLine {
+ font-weight: bold;
+}
+/* line 146, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#resolve-priorities-table textarea {
+ height: 18px;
+ background-color: #fafbfb;
+}
+/* line 147, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#resolve-priorities-table input[type=checkbox] {
+ position: relative;
+ top: -2px;
+}
+/* line 148, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#resolve-priorities-table .icons-point-single {
+ position: relative;
+ top: -2px;
+}
+
+/* line 152, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#share-form-modal .control-label {
+ width: auto;
+ display: block;
+}
+/* line 153, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#share-form-modal .controls {
+ margin-left: 0;
+}
+/* line 154, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#share-form-modal .controls input[type="text"], #share-form-modal .controls textarea {
+ width: 500px;
+}
+/* line 156, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#share-form-modal ul > li:last-of-type {
+ margin-bottom: 0;
+}
+/* line 157, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#share-form-modal .help-block {
+ margin-top: 0;
+ font-weight: bold;
+ color: #999;
+}
+
+/* line 161, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#point-preview-modal #title-region {
+ position: static;
+ width: auto;
+ height: auto;
+}
+/* line 162, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#point-preview-modal #title-region > div {
+ overflow: auto;
+}
+/* line 164, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#point-preview-modal .point-preview-titlebar {
+ overflow: auto;
+ background-color: #e5eaec;
+ padding: 5px 5px 5px 10px;
+ text-shadow: 0px 1px 0px white;
+ border-bottom: 1px solid #c4cdd1;
+}
+/* line 165, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#point-preview-modal .point-preview-titlebar .point-preview-number {
+ width: 6%;
+ float: left;
+ text-align: right;
+ color: #4f565e;
+ font-size: 16px;
+ line-height: 24px;
+ font-weight: bold;
+ overflow: visible;
+ text-overflow: clip;
+ white-space: normal;
+ word-wrap: break-word;
+ text-shadow: 0px 1px 0px white;
+}
+/* line 166, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#point-preview-modal .point-preview-titlebar .point-preview-title-container {
+ width: 94%;
+ float: left;
+}
+/* line 167, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#point-preview-modal .point-preview-titlebar .point-preview-title {
+ margin-left: 3px;
+ padding-top: 3px;
+ float: left;
+ color: #4f565e;
+ font-size: 16px;
+ line-height: 19px;
+ font-weight: bold;
+ overflow: visible;
+ text-overflow: clip;
+ white-space: normal;
+ word-wrap: break-word;
+ text-shadow: 0px 1px 0px white;
+ width: 67%;
+}
+/* line 168, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#point-preview-modal .point-preview-titlebar .point-preview-title > div {
+ color: #6b717a;
+ font-size: 14px;
+ font-weight: normal;
+ margin-top: 10px;
+}
+/* line 170, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#point-preview-modal .point-preview-titlebar .point-preview-pagination {
+ float: left;
+ color: #909ba7;
+ font-size: 13px;
+ overflow: auto;
+ line-height: 24px;
+ text-shadow: 0px 1px 0px white;
+ width: 32%;
+}
+/* line 171, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#point-preview-modal .point-preview-titlebar .point-preview-pagination .btn {
+ padding-right: 10px;
+ padding-left: 10px;
+}
+/* line 172, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#point-preview-modal .point-preview-titlebar .point-preview-pagination span {
+ display: inline-block;
+ padding-right: 5px;
+ padding-left: 5px;
+}
+/* line 174, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#point-preview-modal .point-preview-titlebar .point-preview-definition {
+ margin-left: 3px;
+ clear: both;
+ width: 86%;
+ overflow: visible;
+ text-overflow: clip;
+ white-space: normal;
+ word-wrap: break-word;
+}
+/* line 176, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#point-preview-modal .point-preview-content {
+ padding: 10px 15px;
+ border-top: 1px solid white;
+}
+/* line 177, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#point-preview-modal .point-preview-content .module {
+ background-color: white;
+}
+/* line 178, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#point-preview-modal .point-preview-content dl {
+ margin-bottom: 0;
+}
+/* line 179, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#point-preview-modal .point-preview-content dt {
+ text-align: right;
+ width: 20%;
+}
+/* line 180, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#point-preview-modal .point-preview-content dd {
+ width: 78%;
+}
+/* line 181, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#point-preview-modal .point-preview-content dd > ul {
+ overflow: auto;
+ padding: 0;
+}
+/* line 182, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#point-preview-modal .point-preview-content dd > ul > li {
+ float: left;
+}
+/* line 185, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#point-preview-modal .point-preview-content #condition-priorities-region dt {
+ padding-top: 4px;
+}
+/* line 186, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#point-preview-modal .point-preview-content .icons-quotation-left {
+ margin-right: 2px;
+}
+/* line 187, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#point-preview-modal .point-preview-content .icons-quotation-right {
+ margin-left: 2px;
+}
+/* line 188, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#point-preview-modal .point-preview-content .point-preview-priority-list > ul > li {
+ padding: 2px 0px;
+ margin-right: 2px;
+ display: inline-block;
+}
+/* line 189, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#point-preview-modal .point-preview-content .point-preview-priority-list > ul > li i {
+ vertical-align: middle;
+}
+/* line 191, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#point-preview-modal .point-preview-content .selected-priority {
+ font-weight: bold;
+ -webkit-border-radius: 50px;
+ -moz-border-radius: 50px;
+ -ms-border-radius: 50px;
+ -o-border-radius: 50px;
+ border-radius: 50px;
+ border: 1px solid #999999;
+ text-shadow: 0px 1px 0px white;
+ -webkit-box-shadow: rgba(0, 0, 0, 0.5) 1px 1px 2px inset;
+ -moz-box-shadow: rgba(0, 0, 0, 0.5) 1px 1px 2px inset;
+ box-shadow: rgba(0, 0, 0, 0.5) 1px 1px 2px inset;
+}
+/* line 192, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#point-preview-modal .point-preview-content #grade-region .image-wrapper {
+ max-width: 200px;
+ max-height: 200px;
+}
+/* line 193, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#point-preview-modal .point-preview-content .point-preview-photo-list {
+ clear: both;
+ padding: 0;
+}
+/* line 194, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#point-preview-modal .point-preview-content .point-preview-photo-list li {
+ float: left;
+ margin: 0 10px 10px 0;
+}
+/* line 195, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#point-preview-modal .point-preview-content .point-preview-photo-list .image-wrapper {
+ max-width: 150px;
+ max-height: 150px;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+ position: relative;
+}
+/* line 196, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#point-preview-modal .point-preview-content .point-preview-photo-list .photo-caption {
+ display: block;
+ position: absolute;
+ bottom: 0px;
+ left: 0;
+ background-color: #000;
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
+ opacity: 0.7;
+ color: white;
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.35);
+ width: 100%;
+}
+/* line 197, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#point-preview-modal .point-preview-content .point-preview-photo-list .photo-caption .photo-caption-text {
+ padding: 5px;
+ display: block;
+ font-size: 13px;
+ height: 17px;
+ overflow: hidden !important;
+ overflow: visible;
+ text-overflow: clip;
+ white-space: normal;
+ word-wrap: break-word;
+ line-height: 17px;
+}
+/* line 201, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#point-preview-modal .point-preview-content #resolve-status-module > div .control-group {
+ float: left !important;
+ margin: 0;
+ width: 350px;
+}
+/* line 202, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#point-preview-modal .point-preview-content #resolve-status-module > div .control-group label {
+ display: block;
+ width: auto;
+ padding-top: 0;
+}
+/* line 203, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#point-preview-modal .point-preview-content #resolve-status-module > div .control-group .controls {
+ margin-left: 0;
+ overflow: auto;
+}
+/* line 204, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#point-preview-modal .point-preview-content #resolve-status-module > div .control-group textarea {
+ background-color: #fafbfb;
+ width: 340px;
+}
+/* line 206, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#point-preview-modal .point-preview-content #resolve-status-module > div .btn {
+ font-size: 14px;
+ font-weight: bold;
+ color: #4d80b4;
+ float: right;
+ margin-top: 22px;
+ line-height: 21px;
+}
+/* line 207, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#point-preview-modal .point-preview-content #resolve-status-module > div div.label-resolved {
+ display: block;
+ line-height: 18px;
+ width: 70%;
+ font-size: 14px !important;
+ float: left;
+ min-height: 19px;
+ position: relative;
+}
+/* line 208, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#point-preview-modal .point-preview-content #resolve-status-module > div div.label-resolved > div p {
+ font-style: normal;
+ font-weight: normal;
+ text-transform: none;
+ width: 100%;
+ overflow: visible;
+ text-overflow: clip;
+ white-space: normal;
+ word-wrap: break-word;
+}
+/* line 209, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#point-preview-modal .point-preview-content #resolve-status-module > div div.label-resolved .edit-resolve-note {
+ color: #4d80b4;
+ position: absolute;
+ right: 5px;
+ font-size: 12px;
+ top: 2px;
+ text-transform: capitalize;
+ font-weight: normal;
+}
+/* line 210, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#point-preview-modal .point-preview-content #resolve-status-module > div div.label-resolved .edit-resolve-note:hover {
+ text-decoration: underline;
+ cursor: pointer;
+}
+/* line 212, ../../app/assets/stylesheets/apps/form_review.css.scss */
+#point-preview-modal .point-preview-content #resolve-status-module > div div.label-resolved + .btn {
+ margin-top: 0 !important;
+}
+
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#asset-item-events-list table th:first-child {
+ width: 5%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#asset-item-events-list table th:first-child + th {
+ width: 30%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#asset-item-events-list table th:first-child + th + th {
+ width: 20%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#asset-item-events-list table th:first-child + th + th + th {
+ width: 10%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#asset-item-events-list table th:first-child + th + th + th + th {
+ width: 12%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#asset-item-events-list table th:first-child + th + th + th + th + th {
+ width: 10%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#asset-item-events-list table th:first-child + th + th + th + th + th + th {
+ width: 13%;
+}
+
+/* line 1, ../../app/assets/stylesheets/apps/profile.css.scss */
+#my-profile .profile-badge {
+ background-color: #f4f4f5;
+ overflow: auto;
+ padding: 10px;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+ text-shadow: 0px 1px 0px white;
+}
+/* line 2, ../../app/assets/stylesheets/apps/profile.css.scss */
+#my-profile .profile-badge .user-wrapper, #my-profile .profile-badge .profile-badge-text {
+ float: left;
+}
+/* line 3, ../../app/assets/stylesheets/apps/profile.css.scss */
+#my-profile .profile-badge .user-wrapper {
+ width: 15%;
+}
+/* line 4, ../../app/assets/stylesheets/apps/profile.css.scss */
+#my-profile .profile-badge .user-wrapper .icons-user-large {
+ position: relative;
+ top: 5px;
+ left: 10%;
+}
+/* line 6, ../../app/assets/stylesheets/apps/profile.css.scss */
+#my-profile .profile-badge .profile-badge-text {
+ width: 85%;
+}
+/* line 7, ../../app/assets/stylesheets/apps/profile.css.scss */
+#my-profile .profile-badge .profile-badge-text .my-profile-name {
+ font-weight: 500;
+ font-size: 22px;
+}
+/* line 9, ../../app/assets/stylesheets/apps/profile.css.scss */
+#my-profile .profile-badge .profile-badge-links .btn-no-bg {
+ padding: 0;
+ margin-right: 10px;
+}
+
+/* line 2, ../../app/assets/stylesheets/apps/search_results.css.scss */
+#search-results h3 {
+ line-height: 40px;
+}
+/* line 3, ../../app/assets/stylesheets/apps/search_results.css.scss */
+#search-results .search-param-filters {
+ float: right;
+ margin-left: 10px;
+ position: relative;
+ top: 12px;
+}
+/* line 4, ../../app/assets/stylesheets/apps/search_results.css.scss */
+#search-results .search-param-filters > div {
+ float: left;
+ background-color: #eee;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ -ms-border-radius: 5px;
+ -o-border-radius: 5px;
+ border-radius: 5px;
+ margin-left: 10px;
+ padding: 3px 3px 0px 6px;
+ line-height: 14px;
+ text-shadow: 0px 1px 0px white;
+}
+/* line 5, ../../app/assets/stylesheets/apps/search_results.css.scss */
+#search-results .search-param-filters > div > span {
+ font-weight: 500;
+}
+/* line 6, ../../app/assets/stylesheets/apps/search_results.css.scss */
+#search-results .search-param-filters > div .btn-no-bg {
+ position: relative;
+ top: -4px;
+ padding: 0 2px;
+}
+
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#FolderList th:first-child {
+ width: 1%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#FolderList th:first-child + th {
+ width: 20%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#FolderList th:first-child + th + th {
+ width: 13%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#FolderList th:first-child + th + th + th {
+ width: 19%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#FolderList th:first-child + th + th + th + th {
+ width: 7%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#FolderList th:first-child + th + th + th + th + th {
+ width: 8%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#FolderList th:first-child + th + th + th + th + th + th {
+ width: 14%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#FolderList th:first-child + th + th + th + th + th + th + th {
+ width: 10%;
+}
+/* line 11, ../../app/assets/stylesheets/apps/search_results.css.scss */
+#FolderList .icons-checkbox {
+ margin-left: 10px;
+}
+/* line 12, ../../app/assets/stylesheets/apps/search_results.css.scss */
+#FolderList .close-folder-btn {
+ height: 18px;
+ line-height: 9px;
+ font-size: 11px !important;
+ width: 100%;
+}
+/* line 13, ../../app/assets/stylesheets/apps/search_results.css.scss */
+#FolderList .label-success {
+ width: 95%;
+ display: inline-block;
+ text-align: center;
+}
+/* line 14, ../../app/assets/stylesheets/apps/search_results.css.scss */
+#FolderList .label-success + div {
+ text-align: center;
+}
+/* line 16, ../../app/assets/stylesheets/apps/search_results.css.scss */
+#FolderList .icons-download {
+ padding: 0;
+}
+
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#company-list th:first-child {
+ width: 28%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#company-list th:first-child + th {
+ width: 14%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#company-list th:first-child + th + th {
+ width: 26%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#company-list th:first-child + th + th + th {
+ width: 14%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#company-list th:first-child + th + th + th + th {
+ width: 9%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#company-list th:first-child + th + th + th + th + th {
+ width: 10%;
+}
+
+/* line 2, ../../app/assets/stylesheets/apps/settings.css.scss */
+.logo-container {
+ padding: 15px;
+}
+/* line 3, ../../app/assets/stylesheets/apps/settings.css.scss */
+.logo-container img {
+ max-height: 150px;
+ max-width: 350px;
+}
+
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#item-statuses-list-region th:first-child {
+ width: 88%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#item-statuses-list-region th:first-child + th {
+ width: 12%;
+}
+/* line 7, ../../app/assets/stylesheets/apps/settings.css.scss */
+#item-statuses-list-region i {
+ margin: 0 3px;
+}
+
+/* line 11, ../../app/assets/stylesheets/apps/settings.css.scss */
+#folder-categories-list.ListWell > li {
+ overflow: auto;
+}
+/* line 12, ../../app/assets/stylesheets/apps/settings.css.scss */
+#folder-categories-list.ListWell > li > div {
+ float: left;
+ padding: 0;
+}
+/* line 13, ../../app/assets/stylesheets/apps/settings.css.scss */
+#folder-categories-list.ListWell > li > div:first-child {
+ width: 65.5%;
+}
+/* line 14, ../../app/assets/stylesheets/apps/settings.css.scss */
+#folder-categories-list.ListWell > li > div:first-child > div {
+ padding-left: 20px;
+}
+/* line 15, ../../app/assets/stylesheets/apps/settings.css.scss */
+#folder-categories-list.ListWell > li > div:first-child + div {
+ width: 30%;
+}
+/* line 16, ../../app/assets/stylesheets/apps/settings.css.scss */
+#folder-categories-list.ListWell > li > div:first-child + div + div {
+ width: 4.5%;
+}
+/* line 19, ../../app/assets/stylesheets/apps/settings.css.scss */
+#folder-categories-list.ListWell > li > div > div {
+ padding: 4px 5px;
+}
+/* line 21, ../../app/assets/stylesheets/apps/settings.css.scss */
+#folder-categories-list.ListWell > li .icons-team-tiny {
+ position: relative;
+ top: 2px;
+}
+
+/* line 24, ../../app/assets/stylesheets/apps/settings.css.scss */
+#folder-type-categories-list-region > div > .module {
+ clear: both;
+}
+
+/* line 25, ../../app/assets/stylesheets/apps/settings.css.scss */
+#default-forms-list {
+ border-top: 1px solid #d7dadf;
+}
+/* line 26, ../../app/assets/stylesheets/apps/settings.css.scss */
+#default-forms-list > li {
+ overflow: auto;
+}
+/* line 27, ../../app/assets/stylesheets/apps/settings.css.scss */
+#default-forms-list > li > div {
+ float: left;
+}
+/* line 28, ../../app/assets/stylesheets/apps/settings.css.scss */
+#default-forms-list > li > div:first-child {
+ width: 95%;
+}
+/* line 29, ../../app/assets/stylesheets/apps/settings.css.scss */
+#default-forms-list > li > div:first-child + div {
+ width: 5%;
+}
+/* line 31, ../../app/assets/stylesheets/apps/settings.css.scss */
+#default-forms-list > li > div > div {
+ padding: 4px 5px;
+}
+
+/* line 2, ../../app/assets/stylesheets/apps/teams.css.scss */
+#teams-list-layout .table tr {
+ font-size: 14px;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#teams-list-layout .table tr th:first-child {
+ width: 80%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#teams-list-layout .table tr th:first-child + th {
+ width: 20%;
+}
+/* line 3, ../../app/assets/stylesheets/apps/teams.css.scss */
+#teams-list-layout .icons-team {
+ margin: 0 5px;
+}
+
+/* line 6, ../../app/assets/stylesheets/apps/teams.css.scss */
+#team-show .ListWell > li > div > div {
+ float: left;
+}
+/* line 7, ../../app/assets/stylesheets/apps/teams.css.scss */
+#team-show .ListWell > li > div > div input[type="checkbox"] {
+ margin: 0 4px 4px 0;
+}
+/* line 9, ../../app/assets/stylesheets/apps/teams.css.scss */
+#team-show #list-region i {
+ vertical-align: middle;
+}
+/* line 10, ../../app/assets/stylesheets/apps/teams.css.scss */
+#team-show #team-companies-list > li > div > div:first-child {
+ width: 50%;
+}
+/* line 11, ../../app/assets/stylesheets/apps/teams.css.scss */
+#team-show #team-companies-list > li > div > div:first-child + div {
+ width: 50%;
+}
+/* line 13, ../../app/assets/stylesheets/apps/teams.css.scss */
+#team-show .module > .ListWell > li > div {
+ padding-left: 20px;
+}
+/* line 14, ../../app/assets/stylesheets/apps/teams.css.scss */
+#team-show #team-forms-list .image-wrapper-mini {
+ position: relative;
+ top: 3px;
+ margin: 0 5px;
+}
+/* line 15, ../../app/assets/stylesheets/apps/teams.css.scss */
+#team-show #team-tabs-region {
+ position: relative;
+}
+/* line 16, ../../app/assets/stylesheets/apps/teams.css.scss */
+#team-show #team-tabs-region #delete-team-wrapper {
+ position: absolute;
+ right: 0;
+ top: 0;
+}
+
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#team-customers-list th:first-child {
+ width: 5%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#team-customers-list th:first-child + th {
+ width: 15%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#team-customers-list th:first-child + th + th {
+ width: 80%;
+}
+
+/* line 1, ../../app/assets/stylesheets/apps/uploads.css.scss */
+.fileinput-button {
+ position: relative;
+ overflow: hidden;
+}
+/* line 2, ../../app/assets/stylesheets/apps/uploads.css.scss */
+.fileinput-button input {
+ position: absolute;
+ top: 0;
+ right: 0;
+ margin: 0;
+ border: solid transparent;
+ border-width: 0 0 100px 200px;
+ opacity: 0;
+ filter: alpha(opacity=0);
+ -moz-transform: translate(-300px, 0) scale(4);
+ direction: ltr;
+ cursor: pointer;
+}
+
+/* line 4, ../../app/assets/stylesheets/apps/uploads.css.scss */
+.fileinput-link {
+ color: #3D70A5;
+}
+/* line 5, ../../app/assets/stylesheets/apps/uploads.css.scss */
+.fileinput-link:hover {
+ text-decoration: underline;
+}
+
+/* line 7, ../../app/assets/stylesheets/apps/uploads.css.scss */
+#FilesContainer {
+ padding: 0 10px;
+}
+/* line 8, ../../app/assets/stylesheets/apps/uploads.css.scss */
+#FilesContainer li {
+ border-bottom: 1px dotted #cccccc;
+ padding: 10px 0 10px 40px;
+ background: url(/assets/ajax.gif) no-repeat 5px 15px;
+ overflow: hidden;
+}
+/* line 9, ../../app/assets/stylesheets/apps/uploads.css.scss */
+#FilesContainer li > div {
+ float: left;
+ width: 80%;
+}
+/* line 10, ../../app/assets/stylesheets/apps/uploads.css.scss */
+#FilesContainer li > div .size {
+ float: right;
+}
+/* line 12, ../../app/assets/stylesheets/apps/uploads.css.scss */
+#FilesContainer li > a {
+ float: left;
+ position: relative;
+ top: 14px;
+ margin-left: 15px;
+}
+/* line 13, ../../app/assets/stylesheets/apps/uploads.css.scss */
+#FilesContainer li .alert {
+ margin-bottom: 0;
+ margin-top: 5px;
+}
+/* line 15, ../../app/assets/stylesheets/apps/uploads.css.scss */
+#FilesContainer li.success {
+ background-image: url(/assets/icons/alert-success.png);
+}
+/* line 16, ../../app/assets/stylesheets/apps/uploads.css.scss */
+#FilesContainer li.error {
+ background-image: url(/assets/icons/alert-error.png);
+}
+
+/* line 18, ../../app/assets/stylesheets/apps/uploads.css.scss */
+#ErrorConfirmation {
+ padding: 10px 50px;
+ overflow: hidden;
+}
+/* line 19, ../../app/assets/stylesheets/apps/uploads.css.scss */
+#ErrorConfirmation button {
+ float: right;
+}
+
+/* line 21, ../../app/assets/stylesheets/apps/uploads.css.scss */
+#upload-wrapper {
+ padding: 25px;
+}
+/* line 22, ../../app/assets/stylesheets/apps/uploads.css.scss */
+#upload-wrapper button {
+ margin-right: 10px;
+}
+/* line 23, ../../app/assets/stylesheets/apps/uploads.css.scss */
+#upload-wrapper #loading-area {
+ margin-bottom: 20px;
+ font-weight: bold;
+ display: none;
+ text-align: center;
+}
+
+/* line 2, ../../app/assets/stylesheets/apps/users.css.scss */
+.profile-details {
+ width: 40%;
+ float: left;
+}
+/* line 3, ../../app/assets/stylesheets/apps/users.css.scss */
+.profile-details .links-list {
+ margin-top: 20px;
+}
+/* line 4, ../../app/assets/stylesheets/apps/users.css.scss */
+.profile-details .links-list .links-list-text {
+ width: 40%;
+}
+/* line 5, ../../app/assets/stylesheets/apps/users.css.scss */
+.profile-details .links-list .links-list-num {
+ width: 56%;
+ font-weight: normal;
+}
+/* line 6, ../../app/assets/stylesheets/apps/users.css.scss */
+.profile-details .links-list .links-list-num .icons-team-tiny {
+ vertical-align: middle;
+}
+/* line 8, ../../app/assets/stylesheets/apps/users.css.scss */
+.profile-details .links-list .role-links-list {
+ color: #4d80b4;
+ font-weight: normal;
+}
+/* line 9, ../../app/assets/stylesheets/apps/users.css.scss */
+.profile-details .links-list .italic {
+ font-weight: normal;
+ color: #777;
+}
+
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#users-list-layout table th:first-child {
+ width: 38%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#users-list-layout table th:first-child + th {
+ width: 28%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#users-list-layout table th:first-child + th + th {
+ width: 20%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#users-list-layout table th:first-child + th + th + th {
+ width: 14%;
+}
+/* line 15, ../../app/assets/stylesheets/apps/users.css.scss */
+#users-list-layout .user-role-column {
+ overflow: auto;
+ line-height: 12px;
+}
+/* line 16, ../../app/assets/stylesheets/apps/users.css.scss */
+#users-list-layout .user-role-column > div {
+ float: left;
+}
+/* line 17, ../../app/assets/stylesheets/apps/users.css.scss */
+#users-list-layout .user-role-column > div:first-child {
+ width: 15%;
+}
+/* line 18, ../../app/assets/stylesheets/apps/users.css.scss */
+#users-list-layout .user-role-column > div:last-child {
+ width: 85%;
+}
+/* line 20, ../../app/assets/stylesheets/apps/users.css.scss */
+#users-list-layout .user-role-column .BoldLine {
+ font-size: 14px;
+}
+/* line 22, ../../app/assets/stylesheets/apps/users.css.scss */
+#users-list-layout .role-links {
+ color: #4d80b4;
+ font-size: 11px;
+ line-height: 15px;
+}
+/* line 23, ../../app/assets/stylesheets/apps/users.css.scss */
+#users-list-layout .italic {
+ color: #828383;
+}
+/* line 24, ../../app/assets/stylesheets/apps/users.css.scss */
+#users-list-layout .icons-team-tiny {
+ vertical-align: middle;
+ position: relative;
+ top: -1px;
+}
+
+/* line 27, ../../app/assets/stylesheets/apps/users.css.scss */
+.resend-login-modal {
+ padding: 20px;
+ font-size: 16px;
+}
+/* line 28, ../../app/assets/stylesheets/apps/users.css.scss */
+.resend-login-modal .resend-login-preview {
+ text-align: center;
+ margin-top: 10px;
+}
+/* line 29, ../../app/assets/stylesheets/apps/users.css.scss */
+.resend-login-modal .resend-login-preview .image-wrapper {
+ text-align: center;
+}
+
+/* line 35, ../../app/assets/stylesheets/apps/users.css.scss */
+#user-profile h3 > div {
+ line-height: 15px;
+ margin-top: 10px;
+}
+/* line 36, ../../app/assets/stylesheets/apps/users.css.scss */
+#user-profile h3 i {
+ position: relative;
+ top: 10px;
+ margin-right: 10px;
+}
+/* line 37, ../../app/assets/stylesheets/apps/users.css.scss */
+#user-profile h3 span {
+ font-size: 13px;
+}
+/* line 39, ../../app/assets/stylesheets/apps/users.css.scss */
+#user-profile .icons-mail {
+ position: relative;
+ top: -2px;
+ margin-right: 2px;
+}
+/* line 40, ../../app/assets/stylesheets/apps/users.css.scss */
+#user-profile .icons-edit-tiny-white {
+ vertical-align: baseline;
+}
+
+/* line 43, ../../app/assets/stylesheets/apps/users.css.scss */
+#number-selected-users {
+ margin-bottom: 2px;
+}
+
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#users-selectable-list th:first-child {
+ width: 4%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#users-selectable-list th:first-child + th {
+ width: 30%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#users-selectable-list th:first-child + th + th {
+ width: 40%;
+}
+/* line 71, ../../app/assets/stylesheets/base.css.scss */
+#users-selectable-list th:first-child + th + th + th {
+ width: 26%;
+}
+/* line 45, ../../app/assets/stylesheets/apps/users.css.scss */
+#users-selectable-list input[type=checkbox] {
+ margin-top: 0;
+ position: relative;
+ top: -2px;
+}
+
+/* line 48, ../../app/assets/stylesheets/apps/users.css.scss */
+#users-new-layout .controls > input[type=checkbox],
+#users-new-layout .controls > input[type=radio] {
+ margin-left: 20px;
+}
+
+/* line 49, ../../app/assets/stylesheets/apps/users.css.scss */
+#password_options_toggle {
+ margin-left: 5px !important;
+}
+
+@media only screen and (-webkit-min-device-pixel-ratio: 0) and (device-width: 768px), only screen and (-webkit-min-device-pixel-ratio: 0) and (device-width: 1280px), only screen and (-webkit-min-device-pixel-ratio: 0) and (device-width: 800px) {
+ /* line 4, ../../app/assets/stylesheets/tablet.css.scss */
+ .icons-move, .icons-move-small,
+ .reorder-categories {
+ display: none !important;
+ }
+
+ /* line 6, ../../app/assets/stylesheets/tablet.css.scss */
+ .search-wrapper input {
+ border: 1px solid #bebebe !important;
+ }
+ /* line 7, ../../app/assets/stylesheets/tablet.css.scss */
+ .search-wrapper .btn.btn-no-bg {
+ float: left;
+ margin-left: 2px;
+ background-color: white !important;
+ -webkit-border-radius: 10px;
+ -moz-border-radius: 10px;
+ -ms-border-radius: 10px;
+ -o-border-radius: 10px;
+ border-radius: 10px;
+ border: 1px solid #bebebe !important;
+ -webkit-box-shadow: rgba(0, 0, 0, 0.05) -3px 2px 3px inset;
+ -moz-box-shadow: rgba(0, 0, 0, 0.05) -3px 2px 3px inset;
+ box-shadow: rgba(0, 0, 0, 0.05) -3px 2px 3px inset;
+ }
+}