From 1d7e9cd22158347c6975d63b54044d846847d371 Mon Sep 17 00:00:00 2001 From: Lee Lawlor Date: Fri, 12 Sep 2014 14:20:18 -0400 Subject: [PATCH] updates from Production --- Gemfile | 1 + Gemfile.lock | 4 ++ app/models/user.rb | 6 +++ app/views/apps/index.html.erb | 14 +++---- config/locales/en.yml | 21 +++++++++- config/routes.rb | 5 ++- db/schema.rb | 38 ++++++++++++++++-- ...in-4181fc567971368e6063e9b90fd937e9.css.gz | Bin 8652 -> 8652 bytes public/assets/active_admin.css | 2 +- public/assets/active_admin.css.gz | Bin 8687 -> 8652 bytes ...fest-27c2ec8d97bd8487cae01bba17cdddb9.json | 2 +- 11 files changed, 78 insertions(+), 15 deletions(-) diff --git a/Gemfile b/Gemfile index 69780bc..8302d14 100644 --- a/Gemfile +++ b/Gemfile @@ -37,6 +37,7 @@ gem 'tzinfo' gem 'tzinfo-data' gem 'turbolinks' gem 'geokit-rails' +gem 'clockwork' # to use debugger # gem 'ruby-debug' diff --git a/Gemfile.lock b/Gemfile.lock index dfca201..253f6ee 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -90,6 +90,9 @@ GEM net-ssh (>= 2.0.14) net-ssh-gateway (>= 1.1.0) chronic (0.10.2) + clockwork (0.7.7) + activesupport + tzinfo coffee-rails (4.0.1) coffee-script (>= 2.2.0) railties (>= 4.0.0, < 5.0) @@ -356,6 +359,7 @@ DEPENDENCIES autotest-rails capistrano (~> 2.15.4) chronic + clockwork coffee-rails (~> 4.0) daemons dalli diff --git a/app/models/user.rb b/app/models/user.rb index 986a037..13f191b 100644 --- a/app/models/user.rb +++ b/app/models/user.rb @@ -40,6 +40,7 @@ class User < ActiveRecord::Base has_many :reacts, :dependent => :destroy has_many :scheduled_thinghttps, :dependent => :destroy has_many :talkbacks, :dependent => :destroy + has_many :timecontrols, :dependent => :destroy has_many :plugins, :dependent => :destroy has_many :devices, :dependent => :destroy has_many :api_keys, :dependent => :destroy @@ -56,6 +57,11 @@ class User < ActiveRecord::Base cattr_reader :per_page @@per_page = 50 + # true if the user has used the maximum number of available timecontrols + def max_timecontrols? + self.timecontrols.roots.count >= Timecontrol::MAX_PER_USER + end + # allow login by login name also def self.find_first_by_auth_conditions(warden_conditions) conditions = warden_conditions.dup diff --git a/app/views/apps/index.html.erb b/app/views/apps/index.html.erb index 27d0bdb..ae18c1b 100644 --- a/app/views/apps/index.html.erb +++ b/app/views/apps/index.html.erb @@ -46,13 +46,13 @@ <% if current_admin_user.present? %> -
- <%= link_to scheduled_thinghttps_path do %> - <%= image_tag 'scheduled_thinghttp.png', :size => '104x104' %> -
- <%= t(:scheduled_thinghttp) %> - <% end %> -
+
+ <%= link_to timecontrols_path do %> + <%= image_tag 'scheduled_thinghttp.png', :size => '104x104' %> +
+ <%= t(:timecontrol) %> + <% end %> +
<% end %> diff --git a/config/locales/en.yml b/config/locales/en.yml index d83f65e..4f779c0 100644 --- a/config/locales/en.yml +++ b/config/locales/en.yml @@ -97,6 +97,7 @@ en: confirm_react_delete: "Are you sure you want to delete this React?" confirm_talkback_delete: "Are you sure you want to delete this TalkBack?" confirm_thinghttp_delete: "Are you sure you want to delete this ThingHTTP?" + confirm_timecontrol_delete: "Are you sure you want to delete this TimeControl?" confirm_tweetcontrol_delete: "Are you sure you want to delete this TweetControl?" confirm_twitter_delete: "Are you sure you want to unlink this Twitter account?" contact_us: "Contact Us" @@ -146,11 +147,13 @@ en: forgot: "Forgot your password?" forum: "Forum" for_more_information: "More Information" + frequency: 'frequency' generate_thingtweet_arduino_code: "Generate ThingTweet Arduino Code" get_started: "Get Started Now" height: "Height" home_motto: "Billions and Billions." home_tagline: "The open data platform for the Internet of Things." + hour: 'hour' import: "Import" latitude: "Latitude" longitude: "Longitude" @@ -159,10 +162,13 @@ en: message: 'message' message_field: "Message Field" metadata: 'metadata' + minute: 'minute' myaccount: "My Account" + name: 'name' new: "New" note: "Note" note_save: "Save Note" + one_time: 'one time' password: "Password" password_change: "Change Password" password_confirmation: "Password Confirmation" @@ -263,6 +269,7 @@ en: react_option_run_every_time: "Run action each time condition is met" react_create_button: "Create React" react_save_button: "Create React" + recurring: 'recurring' remember_me: "Remember my User ID" results: "Results" save: "Save" @@ -357,8 +364,19 @@ en: thingtweet: "ThingTweet" thingtweet_arduino_select_message: "Select Twitter account to use for this code" thingtweet_back: "Back to ThingTweet" - time_zone: "Time Zone" + timecontrol: "TimeControl" + timecontrols: "TimeControls" + timecontrol_date: 'date' + timecontrol_days: 'days' + timecontrol_delete: "Delete TimeControl" + timecontrol_delete_message: "Want to delete this TimeControl?" + timecontrol_error: "There were some problems creating your TimeControl:" + timecontrol_max_message: "You have reached the maximum number of TimeControls available per user. Please delete an existing TimeControl before adding a new one." + timecontrol_new: "New TimeControl" + timecontrol_run_at: 'run at' + timecontrol_time: 'time' timescale: "Timescale" + time_zone: "Time Zone" title: "Title" tos: "Terms of Service" tos_agree: "By signing up, you agree to the" @@ -450,6 +468,7 @@ en: help_thinghttp_example: "This will send your HTTP GET request to Google Finance and parse the response for an element having an ID of ref_626307_c, which corresponds to the S&P 500 current price change for the day." help_thinghttp_show: "You can now send your ThingHTTP request and view the response using the following URL:" help_thingtweet: "ThingTweet acts as a proxy to Twitter so that your devices can update Twitter statuses without having to implement Open Authentication (OAuth)." + help_timecontrol_index: "Create a TimeControl to automatically execute ThingHTTP requests at predetermined times." help_tweetcontrol: "Use TweetControl to listen to specific trigger words from Twitter, and then process a ThingHTTP request." help_tweetcontrol_edit: "Select Anonymous TweetControl to allow anyone to trigger your TweetControl or fill in a specfic Twitter Account (don't include the '@' sign)." help_tweetcontrol_hashtag: "To trigger a TweetControl, you need to send a Twitter Status Update with at least the hashtag #thingspeak and the trigger word, for example:" diff --git a/config/routes.rb b/config/routes.rb index 767ab95..a339da7 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -17,9 +17,9 @@ Thingspeak::Application.routes.draw do # for api: login and get token match 'users/api_login', :to => 'users#api_login', :via => [:get, :post] - # devise for authentication + # devise for authentication (but don't use devise if $skip_devise == true, necessary for clockworkd to run) # override devise controllers and use custom sessions_controller and registrations_controller - devise_for :users, :controllers => {:sessions => 'sessions', :registrations => 'registrations'} + devise_for :users, :controllers => {:sessions => 'sessions', :registrations => 'registrations'} if $skip_devise != true resource :pages do collection do @@ -172,6 +172,7 @@ Thingspeak::Application.routes.draw do end resources :tweetcontrol resources :reacts + resources :timecontrols resources :scheduled_thinghttps end diff --git a/db/schema.rb b/db/schema.rb index 8ccfef6..80efc77 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -11,13 +11,13 @@ # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema.define(version: 20140804223739) do +ActiveRecord::Schema.define(version: 20140903095213) do create_table "active_admin_comments", force: true do |t| t.string "namespace" t.text "body" - t.string "resource_id", limit: 50, null: false - t.string "resource_type", limit: 50, null: false + t.string "resource_id", null: false + t.string "resource_type", null: false t.integer "author_id" t.string "author_type" t.datetime "created_at" @@ -166,6 +166,15 @@ ActiveRecord::Schema.define(version: 20140804223739) do add_index "devices", ["mac_address"], name: "index_devices_on_mac_address", using: :btree add_index "devices", ["user_id"], name: "index_devices_on_user_id", using: :btree + create_table "events", force: true do |t| + t.integer "timecontrol_id" + t.datetime "run_at" + t.datetime "created_at" + t.datetime "updated_at" + end + + add_index "events", ["run_at"], name: "index_events_on_run_at", using: :btree + create_table "failedlogins", force: true do |t| t.string "login" t.string "password" @@ -329,6 +338,29 @@ ActiveRecord::Schema.define(version: 20140804223739) do add_index "thinghttps", ["api_key"], name: "index_thinghttps_on_api_key", using: :btree add_index "thinghttps", ["user_id"], name: "index_thinghttps_on_user_id", using: :btree + create_table "timecontrols", force: true do |t| + t.integer "user_id" + t.integer "schedulable_id" + t.string "schedulable_type", limit: 50 + t.string "frequency", limit: 20 + t.integer "day", limit: 1 + t.integer "hour", limit: 1 + t.integer "minute", limit: 1 + t.integer "parent_id" + t.datetime "last_event_at" + t.text "last_response" + t.datetime "created_at" + t.datetime "updated_at" + t.string "name" + t.datetime "run_at" + end + + add_index "timecontrols", ["frequency", "minute", "hour", "day"], name: "index_timecontrols_on_frequency_and_minute_and_hour_and_day", using: :btree + add_index "timecontrols", ["parent_id"], name: "index_timecontrols_on_parent_id", using: :btree + add_index "timecontrols", ["run_at"], name: "index_timecontrols_on_run_at", using: :btree + add_index "timecontrols", ["schedulable_id", "schedulable_type"], name: "index_timecontrols_on_schedulable_id_and_schedulable_type", using: :btree + add_index "timecontrols", ["user_id"], name: "index_timecontrols_on_user_id", using: :btree + create_table "tweetcontrols", force: true do |t| t.string "screen_name" t.string "trigger" diff --git a/public/assets/active_admin-4181fc567971368e6063e9b90fd937e9.css.gz b/public/assets/active_admin-4181fc567971368e6063e9b90fd937e9.css.gz index 184d05a1d90292f0d63d7f069983810ae066e5c8..d2eec8fae5c9f8bd78def56e45b4c9ec78041543 100644 GIT binary patch delta 16 XcmX@(e8!nwzMF&Lz5AJs>_-&=H(myK delta 16 YcmX@(e8!nwzMF$#*UdE>*^ep$064b>wEzGB diff --git a/public/assets/active_admin.css b/public/assets/active_admin.css index f184a91..8bf203b 100644 --- a/public/assets/active_admin.css +++ b/public/assets/active_admin.css @@ -1 +1 @@ -span.icon{vertical-align:middle;display:inline-block}span.icon svg{vertical-align:baseline}span.icon{width:0.8em;height:0.8em}html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,font,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td{margin:0;padding:0;border:0;outline:0;font-weight:inherit;font-style:inherit;font-size:100%;font-family:inherit;vertical-align:baseline}body{line-height:1;color:black;background:white}ol,ul{list-style:none}table{border-collapse:separate;border-spacing:0;vertical-align:middle}caption,th,td{text-align:left;font-weight:normal;vertical-align:middle}q,blockquote{quotes:"" ""}q:before,q:after,blockquote:before,blockquote:after{content:""}a img{border:none}html{font-size:100.01%}body{font-size:75%;font-family:"Helvetica Neue", Arial, Helvetica, sans-serif}h1,h2,h3,h4,h5,h6{font-weight:normal;color:#5e6469}h1 img,h2 img,h3 img,h4 img,h5 img,h6 img{margin:0}h1{font-size:3em;line-height:1;margin-bottom:0.5em}h2{font-size:2em;margin-bottom:0.75em}h3{font-size:1.5em;line-height:1;margin-bottom:1em}h4{font-size:1.2em;line-height:1.25;margin-bottom:1.25em}h5{font-size:1em;font-weight:bold;margin-bottom:1.5em}h6{font-size:1em;font-weight:bold}p{margin:0 0 1.5em}p .left{margin:1.5em 1.5em 1.5em 0;padding:0}p .right{margin:1.5em 0 1.5em 1.5em;padding:0}.left{float:left !important}.right{float:right !important}blockquote{margin:1.5em;color:#666;font-style:italic}strong,dfn{font-weight:bold}em,dfn{font-style:italic}sup,sub{line-height:0}abbr,acronym{border-bottom:1px dotted #666}address{margin:0 0 1.5em;font-style:italic}del{color:#666}pre{margin:1.5em 0;white-space:pre}pre,code,tt{font:1em 'andale mono', 'lucida console', monospace;line-height:1.5}li ul,li ol{margin:0}ul,ol{margin:0 1.5em 1.5em 0;padding-left:1.5em}ul{list-style-type:disc}ol{list-style-type:decimal}dl{margin:0 0 1.5em 0}dl dt{font-weight:bold}dd{margin-left:1.5em}table{margin-bottom:1.4em;width:100%}th{font-weight:bold}thead th{background:#c3d9ff}th,td,caption{padding:4px 10px 4px 5px}.small{font-size:.8em;margin-bottom:1.875em;line-height:1.875em}.large{font-size:1.2em;line-height:2.5em;margin-bottom:1.25em}.hide{display:none}.quiet{color:#666}.loud{color:#000}.highlight{background:#ff0}.added{background:#060;color:#fff}.removed{background:#900;color:#fff}.first{margin-left:0;padding-left:0}.last{margin-right:0;padding-right:0}.top{margin-top:0;padding-top:0}.bottom{margin-bottom:0;padding-bottom:0}#header{background:#6a7176;background:-webkit-linear-gradient(-90deg, #6a7176, #4d5256);background:-moz-linear-gradient(-90deg, #6a7176, #4d5256);background:linear, -90deg, #6a7176, #4d5256;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF6A7176', endColorstr='#FF4D5256');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF6A7176', endColorstr='#FF4D5256');border-bottom:1px solid #44484b;box-shadow:0 1px 2px rgba(0,0,0,0.37);-moz-box-shadow:0 1px 2px rgba(0,0,0,0.37);-webkit-box-shadow:0 1px 2px rgba(0,0,0,0.37);text-shadow:black 0 1px 0;display:table;height:20px;width:100%;overflow:visible;position:inherit;padding:5px 0;z-index:900}#header h1{display:table-cell;vertical-align:middle;white-space:nowrap;color:#cdcdcd;margin-right:20px;margin-bottom:0px;padding:3px 30px 0 30px;font-size:1.3em;font-weight:normal;line-height:1.2}#header h1 a{text-decoration:none}#header h1 a:hover{color:#fff}#header h1 img{position:relative;top:-2px}#header a,#header a:link{color:#cdcdcd}#header .header-item{top:2px;position:relative;height:20px}#header ul.tabs{display:table-cell;vertical-align:middle;height:100%;margin:0;padding:0}#header ul.tabs>li{display:inline-block;margin-right:4px;margin-top:5px;margin-bottom:5px;font-size:1.0em;position:relative}#header ul.tabs>li a{text-decoration:none;padding:6px 10px 4px 10px;position:relative;-webkit-border-radius:10px;-moz-border-radius:10px;border-radius:10px}#header ul.tabs>li.current>a{background:#7b8389;color:#fff}#header ul.tabs>li.has_nested>a{background:url(/assets/active_admin/nested_menu_arrow-94d9c4f73e81d377f80ae8dbcc71128b.gif) no-repeat calc(100% - 7px) 50%;padding-right:20px}#header ul.tabs>li.has_nested.current>a{background:#7b8389 url(/assets/active_admin/nested_menu_arrow_dark-b40a488b4f4b7d25cce531a15db4037b.gif) no-repeat calc(100% - 7px) 50%;padding-right:20px}#header ul.tabs>li:hover>a{background:#7b8389;color:#fff}#header ul.tabs>li.has_nested:hover>a{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;border-top-right-radius:10px;border-top-left-radius:10px;-moz-border-radius-topright:10px;-moz-border-radius-topleft:10px;-webkit-border-top-right-radius:10px;-webkit-border-top-left-radius:10px;border-bottom:5px solid #7b8389;background:#7b8389 url(/assets/active_admin/nested_menu_arrow_dark-b40a488b4f4b7d25cce531a15db4037b.gif) no-repeat calc(100% - 7px) 50%;z-index:1020}#header ul.tabs>li:hover ul{display:block}#header ul.tabs>li ul{background:#7b8389;border-top-right-radius:10px;-moz-border-radius-topright:10px;-webkit-border-top-right-radius:10px;border-top-left-radius:0;-moz-border-radius-topleft:0;-webkit-border-top-left-radius:0;border-bottom-right-radius:10px;-moz-border-radius-bottomright:10px;-webkit-border-bottom-right-radius:10px;border-bottom-left-radius:10px;-moz-border-radius-bottomleft:10px;-webkit-border-bottom-left-radius:10px;box-shadow:0 1px 3px #444444;-moz-box-shadow:0 1px 3px #444444;-webkit-box-shadow:0 1px 3px #444444;position:absolute;width:120%;min-width:175px;max-width:calc(100% + 20px);margin-top:5px;float:left;display:none;padding:3px 0px 5px 0;list-style:none;z-index:1010}#header ul.tabs>li ul li{margin:0px}#header ul.tabs>li ul li a{background:none;display:block}#header ul.tabs>li ul li a:hover{color:#fff;background:none}#header ul.tabs>li ul li.current a{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}#header #tabs{width:100%}#header #utility_nav{color:#aaa;display:table-cell;white-space:nowrap;margin:0;padding:0;padding-right:26px;text-align:right}#header #utility_nav a{text-decoration:none}#header #utility_nav a:hover{color:#fff}#header #utility_nav li{display:inline}form ul,form ol,form li,form fieldset,form legend,form input,form textarea,form select,form p{margin:0;padding:0}form ol,form ul{list-style:none}form fieldset{border:0;padding:10px 0;margin-bottom:20px}form fieldset.inputs{background:#f4f4f4;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;box-shadow:inset 0 1px 4px #dddddd;-moz-box-shadow:inset 0 1px 4px #dddddd;-webkit-box-shadow:inset 0 1px 4px #dddddd}form fieldset legend{width:100%}form fieldset legend span{display:block;background:#efefef;background:-webkit-linear-gradient(-90deg, #efefef, #dfe1e2);background:-moz-linear-gradient(-90deg, #efefef, #dfe1e2);background:linear, -90deg, #efefef, #dfe1e2;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEFEFEF', endColorstr='#FFDFE1E2');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEFEFEF', endColorstr='#FFDFE1E2');text-shadow:white 0 1px 0;border:solid 1px #cdcdcd;border-color:#d4d4d4;border-top-color:#e6e6e6;border-right-color:#d4d4d4;border-bottom-color:#cdcdcd;border-left-color:#d4d4d4;box-shadow:0 1px 3px rgba(0,0,0,0.12),0 0 1px #fff inset;font-size:1.0em;font-weight:bold;line-height:18px;margin-bottom:0.5em;color:#5e6469;padding:5px 10px 3px 10px}form fieldset legend span span.icon svg path,form fieldset legend span span.icon svg polygon,form fieldset legend span span.icon svg rect,form fieldset legend span span.icon svg circle{fill:#5e6469 !important}form fieldset legend span span.icon{width:1em;height:1em}form fieldset ol>li{padding:10px}form fieldset ol>li label{display:block;width:20%;float:left;font-size:1.0em;font-weight:bold;color:#5e6469}form fieldset ol>li label abbr{border:none;color:#aaaaaa}form fieldset ol>li.has_many_container{padding:20px 10px}form fieldset ol>li.has_many_container h3{font-size:12px;font-weight:bold}form fieldset ol>li.has_many_container .has_many_fields{margin:10px 0}form fieldset ol>li>li label{line-height:100%;padding-top:0}form fieldset ol>li>li label input{line-height:100%;vertical-align:middle;margin-top:-0.1em}form .has_many_fields{position:relative}form .has_many_container .handle{position:absolute;top:calc(50% - 3em / 2);right:2px;padding:0;cursor:move}form .has_many_container .handle span.icon{width:3em;height:3em}form .has_many_container.ui-sortable .has_many_container{margin-right:2em}form .ui-sortable input[type=text],form .ui-sortable input[type=password],form .ui-sortable input[type=email],form .ui-sortable input[type=number],form .ui-sortable input[type=url],form .ui-sortable input[type=tel],form .ui-sortable textarea{width:calc(80% - 22px - 2em - 1px)}form fieldset>ol>li fieldset{position:relative;padding:0;margin-bottom:0}form fieldset>ol>li fieldset legend{position:absolute;width:95%;padding-top:0.1em;left:0px;font-size:100%;font-weight:normal}form fieldset>ol>li fieldset legend span{position:absolute}form fieldset>ol>li fieldset legend.label label{position:absolute}form fieldset>ol>li fieldset:not(.has_many_fields) ol{float:left;width:74%;margin:0;padding:0 0 0 20%}form fieldset>ol>li fieldset:not(.has_many_fields) ol li{padding:0;border:0}form fieldset>ol>li fieldset.has_many_fields ol{float:left;width:100%;margin:0;padding:0}form input[type=text],form input[type=password],form input[type=email],form input[type=number],form input[type=url],form input[type=tel],form textarea{width:calc(80% - 22px);border:1px solid #c9d0d6;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;font-size:0.95em;font-family:Helvetica, Arial, sans-serif;outline:none;padding:8px 10px 7px}form input[type=text]:focus,form input[type=password]:focus,form input[type=email]:focus,form input[type=number]:focus,form input[type=url]:focus,form input[type=tel]:focus,form textarea:focus{border:1px solid #99a2aa;box-shadow:0 0 4px #99a2aa;-moz-box-shadow:0 0 4px #99a2aa;-webkit-box-shadow:0 0 4px #99a2aa}form fieldset>ol>li p.inline-hints{font-size:0.95em;font-style:italic;color:#666;margin:0.5em 0 0 20%}form fieldset>ol>li.date fieldset ol li,form fieldset>ol>li.time fieldset ol li,form fieldset>ol>li.datetime fieldset ol li,form fieldset>ol>li.date_select fieldset ol li{float:left;width:auto;margin:0 0.5em 0 0}form fieldset>ol>li.date fieldset ol li label,form fieldset>ol>li.time fieldset ol li label,form fieldset>ol>li.datetime fieldset ol li label,form fieldset>ol>li.date_select fieldset ol li label{display:none}form fieldset>ol>li.date fieldset ol li input,form fieldset>ol>li.time fieldset ol li input,form fieldset>ol>li.datetime fieldset ol li input,form fieldset>ol>li.date_select fieldset ol li input{display:inline;margin:0;padding:0}form fieldset>ol>li.check_boxes fieldset ol,form fieldset>ol>li.radio fieldset ol{margin-bottom:-0.6em}form fieldset>ol>li.check_boxes fieldset ol li,form fieldset>ol>li.radio fieldset ol li{margin:0.1em 0 0.5em 0}form fieldset>ol>li.check_boxes fieldset ol li label,form fieldset>ol>li.radio fieldset ol li label{float:none;width:100%}form fieldset>ol>li.check_boxes fieldset ol li label input,form fieldset>ol>li.radio fieldset ol li label input{margin-right:0.2em}form fieldset>ol>li.boolean{height:1.1em}form fieldset>ol>li.boolean label{width:80%;padding-left:20%;padding-right:10px;text-transform:none !important;font-weight:normal}form fieldset>ol>li.boolean label input{margin:0 0.5em 0 0.2em}form fieldset>ol>li.hidden{padding:0}form fieldset>ol>li p.inline-errors{color:#932419;font-weight:bold;margin:0.3em 0 0 20%}form fieldset>ol>li ul.errors{color:#932419;margin:0.5em 0 0 20%;list-style:square}form fieldset>ol>li ul.errors li{padding:0;border:none;display:list-item}form fieldset>ol>li.error input[type=text],form fieldset>ol>li.error input[type=password],form fieldset>ol>li.error input[type=email],form fieldset>ol>li.error input[type=number],form fieldset>ol>li.error input[type=url],form fieldset>ol>li.error input[type=tel],form fieldset>ol>li.error textarea{border:1px solid #932419}form ul.errors{background:#fae6e4;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;color:#932419;font-weight:bold;margin-bottom:10px;padding:10px;list-style:square}form ul.errors li{margin-left:15px;padding:0;border:none;display:list-item}form input[type=submit]{-webkit-border-radius:200px;-moz-border-radius:200px;border-radius:200px;display:inline-block;font-weight:bold;font-size:1.0em;font-family:Helvetica, Arial, sans-serif;line-height:12px;margin-right:3px;padding:7px 16px 6px;text-decoration:none;-webkit-font-smoothing:antialiased;background:#838a90;background:-webkit-linear-gradient(-90deg, #838a90, #414549);background:-moz-linear-gradient(-90deg, #838a90, #414549);background:linear, -90deg, #838a90, #414549;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF838A90', endColorstr='#FF414549');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF838A90', endColorstr='#FF414549');text-shadow:black 0 1px 0;box-shadow:0 1px 1px rgba(0,0,0,0.1),0 1px 0 0px rgba(255,255,255,0.2) inset;border:solid 1px #484e53;border-color:#484e53;border-top-color:#616a71;border-right-color:#484e53;border-bottom-color:#363b3f;border-left-color:#484e53;color:#efefef;cursor:pointer}form input[type=submit].disabled{opacity:0.5;cursor:default}form input[type=submit]:not(.disabled):hover{background:#8b9297;background:-webkit-linear-gradient(-90deg, #8b9297, #484d51);background:-moz-linear-gradient(-90deg, #8b9297, #484d51);background:linear, -90deg, #8b9297, #484d51;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF8B9297', endColorstr='#FF484D51');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF8B9297', endColorstr='#FF484D51')}form input[type=submit]:not(.disabled):active{box-shadow:0 1px 3px rgba(0,0,0,0.4) inset,0 1px 0 0px #fff;background:#71797f;background:-webkit-linear-gradient(-90deg, #71797f, #35383b);background:-moz-linear-gradient(-90deg, #71797f, #35383b);background:linear, -90deg, #71797f, #35383b;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF71797F', endColorstr='#FF35383B');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF71797F', endColorstr='#FF35383B')}form .buttons,form .actions{margin-top:15px}form .buttons input[type=submit],form .actions input[type=submit]{margin-right:10px}form fieldset.buttons li,form fieldset.actions li{float:left;padding:0}form fieldset.buttons li.cancel a,form fieldset.actions li.cancel a{-webkit-border-radius:200px;-moz-border-radius:200px;border-radius:200px;display:inline-block;font-weight:bold;font-size:1.0em;font-family:Helvetica, Arial, sans-serif;line-height:12px;margin-right:3px;padding:7px 16px 6px;text-decoration:none;-webkit-font-smoothing:antialiased;background:white;background:-webkit-linear-gradient(-90deg, #fff, #e7e7e7);background:-moz-linear-gradient(-90deg, #fff, #e7e7e7);background:linear, -90deg, white, #e7e7e7;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFE7E7E7');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFE7E7E7');box-shadow:0 1px 1px rgba(0,0,0,0.1),0 1px 0 0 rgba(255,255,255,0.8) inset;border:solid 1px #c7c7c7;border-color:#c7c7c7;border-top-color:lightgrey;border-right-color:#c7c7c7;border-bottom-color:#c2c2c2;border-left-color:#c7c7c7;text-shadow:white 0 1px 0;color:#5e6469}form fieldset.buttons li.cancel a.disabled,form fieldset.actions li.cancel a.disabled{opacity:0.5;cursor:default}form fieldset.buttons li.cancel a:not(.disabled):hover,form fieldset.actions li.cancel a:not(.disabled):hover{background:white;background:-webkit-linear-gradient(-90deg, #fff, #f1f1f1);background:-moz-linear-gradient(-90deg, #fff, #f1f1f1);background:linear, -90deg, white, #f1f1f1;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFF1F1F1');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFF1F1F1')}form fieldset.buttons li.cancel a:not(.disabled):active,form fieldset.actions li.cancel a:not(.disabled):active{box-shadow:0 1px 2px rgba(0,0,0,0.22) inset,0 1px 0 0px #eee;border-color:#b9b9b9;border-top-color:#c2c2c2;border-right-color:#b9b9b9;border-bottom-color:#b7b7b7;border-left-color:#b9b9b9;background:#f3f3f3;background:-webkit-linear-gradient(-90deg, #f3f3f3, #d8d8d8);background:-moz-linear-gradient(-90deg, #f3f3f3, #d8d8d8);background:linear, -90deg, #f3f3f3, #d8d8d8;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFF3F3F3', endColorstr='#FFD8D8D8');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFF3F3F3', endColorstr='#FFD8D8D8')}form fieldset.buttons li.cancel a span.icon svg path,form fieldset.buttons li.cancel a span.icon svg polygon,form fieldset.buttons li.cancel a span.icon svg rect,form fieldset.buttons li.cancel a span.icon svg circle,form fieldset.actions li.cancel a span.icon svg path,form fieldset.actions li.cancel a span.icon svg polygon,form fieldset.actions li.cancel a span.icon svg rect,form fieldset.actions li.cancel a span.icon svg circle{fill:#777777 !important}form fieldset.buttons li.cancel a span.icon,form fieldset.actions li.cancel a span.icon{width:9px;height:9px}.sidebar_section label{display:block;text-transform:uppercase;color:#5e6469;font-size:0.9em;font-weight:bold}.sidebar_section select{width:240px}.sidebar_section input[type=text],.sidebar_section input[type=password],.sidebar_section input[type=email],.sidebar_section input[type=url],.sidebar_section input[type=tel],.sidebar_section textarea{width:220px}form.filter_form .filter_form_field{margin-bottom:10px;clear:both}form.filter_form .filter_form_field.select_and_search input[type=text]{margin-left:16px;width:88px}form.filter_form .filter_form_field.select_and_search select{width:108px}form.filter_form .filter_form_field.filter_check_boxes label{margin-bottom:3px}form.filter_form .filter_form_field.filter_check_boxes fieldset{margin-bottom:0px;padding-bottom:0px}form.filter_form .filter_form_field.filter_check_boxes .check_boxes_wrapper label{font-weight:normal;margin-bottom:3px;text-transform:none;font-size:1.0em}form.filter_form .filter_form_field.filter_check_boxes .check_boxes_wrapper label input{vertical-align:baseline}form.filter_form .filter_form_field.filter_date_range .seperator{display:inline-block;text-align:center;width:12px}form.filter_form .filter_form_field.filter_date_range input[type=text]{background:#fff url(/assets/active_admin/datepicker/datepicker-input-icon-20df875ab8a44d588cbfd3d8018a52b9.png) no-repeat 100% 7px;padding-right:27px;width:71px}form.filter_form a.clear_filters_btn{-webkit-border-radius:200px;-moz-border-radius:200px;border-radius:200px;display:inline-block;font-weight:bold;font-size:1.0em;font-family:Helvetica, Arial, sans-serif;line-height:12px;margin-right:3px;padding:7px 16px 6px;text-decoration:none;-webkit-font-smoothing:antialiased;background:white;background:-webkit-linear-gradient(-90deg, #fff, #e7e7e7);background:-moz-linear-gradient(-90deg, #fff, #e7e7e7);background:linear, -90deg, white, #e7e7e7;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFE7E7E7');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFE7E7E7');box-shadow:0 1px 1px rgba(0,0,0,0.1),0 1px 0 0 rgba(255,255,255,0.8) inset;border:solid 1px #c7c7c7;border-color:#c7c7c7;border-top-color:lightgrey;border-right-color:#c7c7c7;border-bottom-color:#c2c2c2;border-left-color:#c7c7c7;text-shadow:white 0 1px 0;color:#5e6469}form.filter_form a.clear_filters_btn.disabled{opacity:0.5;cursor:default}form.filter_form a.clear_filters_btn:not(.disabled):hover{background:white;background:-webkit-linear-gradient(-90deg, #fff, #f1f1f1);background:-moz-linear-gradient(-90deg, #fff, #f1f1f1);background:linear, -90deg, white, #f1f1f1;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFF1F1F1');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFF1F1F1')}form.filter_form a.clear_filters_btn:not(.disabled):active{box-shadow:0 1px 2px rgba(0,0,0,0.22) inset,0 1px 0 0px #eee;border-color:#b9b9b9;border-top-color:#c2c2c2;border-right-color:#b9b9b9;border-bottom-color:#b7b7b7;border-left-color:#b9b9b9;background:#f3f3f3;background:-webkit-linear-gradient(-90deg, #f3f3f3, #d8d8d8);background:-moz-linear-gradient(-90deg, #f3f3f3, #d8d8d8);background:linear, -90deg, #f3f3f3, #d8d8d8;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFF3F3F3', endColorstr='#FFD8D8D8');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFF3F3F3', endColorstr='#FFD8D8D8')}.comments .active_admin_comment{clear:both;margin-top:10px;margin-bottom:40px;max-width:700px}.comments .active_admin_comment .active_admin_comment_meta{width:130px;float:left;overflow:hidden;font-size:0.9em;color:#767e84}.comments .active_admin_comment .active_admin_comment_meta .active_admin_comment_author{font-size:1.2em;font-weight:bold;margin:0;color:#5e6469}.comments .active_admin_comment .active_admin_comment_body{margin-left:150px}.comments form.active_admin_comment{margin:0;padding:0;margin-left:150px}.comments form.active_admin_comment fieldset.inputs{margin:0;padding:0;background:none;box-shadow:none;-moz-box-shadow:none;-webkit-box-shadow:none}.comments form.active_admin_comment li{padding:0}.comments form.active_admin_comment fieldset.buttons{padding:0;margin-top:5px}body.logged_in .flashes .flash{background:#f7f1d3;background:-webkit-linear-gradient(-90deg, #f7f1d3, #f5edc5);background:-moz-linear-gradient(-90deg, #f7f1d3, #f5edc5);background:linear, -90deg, #f7f1d3, #f5edc5;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFF7F1D3', endColorstr='#FFF5EDC5');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFF7F1D3', endColorstr='#FFF5EDC5');text-shadow:#fafafa 0 1px 0;border-bottom:1px solid #eee098;color:#cb9810;font-weight:bold;font-size:1.1em;line-height:1.0em;padding:13px 30px 11px;position:relative}body.logged_in .flashes .flash.flash_notice{background:#dce9dd;background:-webkit-linear-gradient(-90deg, #dce9dd, #ccdfcd);background:-moz-linear-gradient(-90deg, #dce9dd, #ccdfcd);background:linear, -90deg, #dce9dd, #ccdfcd;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFDCE9DD', endColorstr='#FFCCDFCD');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFDCE9DD', endColorstr='#FFCCDFCD');border-bottom:1px solid #adcbaf;color:#416347}body.logged_in .flashes .flash.flash_error{background:#f5e4e4;background:-webkit-linear-gradient(-90deg, #f5e4e4, #f1dcdc);background:-moz-linear-gradient(-90deg, #f5e4e4, #f1dcdc);background:linear, -90deg, #f5e4e4, #f1dcdc;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFF5E4E4', endColorstr='#FFF1DCDC');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFF5E4E4', endColorstr='#FFF1DCDC');border-bottom:1px solid #e0c2c0;color:#b33c33}body.logged_out .flash{box-shadow:none;-moz-box-shadow:none;-webkit-box-shadow:none;text-shadow:white 0 1px 0;background:none;color:#666;font-weight:bold;line-height:1.0em;padding:0;margin-bottom:8px}.ui-datepicker{background:#fff;-webkit-background-clip:padding-box;-moz-background-clip:padding-box;background-clip:padding-box;color:#fff;display:none;margin-top:2px;padding:0;text-align:center;width:160px;background:url(/assets/active_admin/datepicker/datepicker-nipple-c6e265f4a33a97853a69662e6350cb31.png) no-repeat 0 -40px}.ui-datepicker a{text-decoration:none}.ui-datepicker a:hover{cursor:pointer}.ui-datepicker .ui-datepicker-header{background:url(/assets/active_admin/datepicker/datepicker-header-bg-bcad4373bcdc56124322dea658739849.png) no-repeat 0px 0px;height:12px;padding:16px 7px 8px;position:relative;z-index:2000}.ui-datepicker .ui-datepicker-header .ui-datepicker-title{text-shadow:black 0 1px 0;color:#fff;display:block;font-size:1.1em;font-weight:bold;line-height:0.8em;text-align:center}.ui-datepicker .ui-datepicker-header a{color:#fff;display:block;height:19px;margin-top:-4px;width:20px}.ui-datepicker .ui-datepicker-header a.ui-datepicker-prev{float:left;background:url(/assets/active_admin/datepicker/datepicker-prev-link-icon-ce5f918e536f436ca2095a9e7442c6df.png) no-repeat 2px 5px}.ui-datepicker .ui-datepicker-header a.ui-datepicker-next{float:right;background:url(/assets/active_admin/datepicker/datepicker-next-link-icon-f9ef6d04c65df1cb5bda725ebba623a1.png) no-repeat 12px 5px}.ui-datepicker .ui-datepicker-header a:active{margin-top:-3px;height:18px}.ui-datepicker .ui-datepicker-header a span{display:none}.ui-datepicker table.ui-datepicker-calendar{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px;-moz-border-radius-bottomright:3px;-moz-border-radius-bottomleft:3px;-webkit-border-bottom-right-radius:3px;-webkit-border-bottom-left-radius:3px;box-shadow:0 1px 6px rgba(0,0,0,0.26);-moz-box-shadow:0 1px 6px rgba(0,0,0,0.26);-webkit-box-shadow:0 1px 6px rgba(0,0,0,0.26);background-color:#f4f4f4;border:solid 1px #63686e;left:2px;margin-bottom:0px;position:relative;top:-2px;width:156px}.ui-datepicker table.ui-datepicker-calendar td,.ui-datepicker table.ui-datepicker-calendar th{padding:0px;text-align:center}.ui-datepicker table.ui-datepicker-calendar thead th{background-color:#dbdddf;color:#333333;font-weight:normal;font-size:0.8em;padding-top:1px}.ui-datepicker table.ui-datepicker-calendar tbody{color:#666666}.ui-datepicker table.ui-datepicker-calendar tbody td{border:none;height:24px;width:22px}.ui-datepicker table.ui-datepicker-calendar tbody td a{-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;color:#666666;font-weight:bold;font-size:0.85em;padding:4px}.ui-datepicker table.ui-datepicker-calendar tbody td a.ui-state-active{background-color:#5a5f64;color:#fff}.ui-datepicker table.ui-datepicker-calendar tbody td a.ui-state-active.ui-state-hover{background-color:#5a5f64;color:#fff}.ui-datepicker table.ui-datepicker-calendar tbody td a.ui-state-hover{background-color:#eceef0}.ui-datepicker table.ui-datepicker-calendar tbody td a.ui-state-highlight{background-color:#dbdddf}.popover{display:inline-block;position:absolute;background-color:white;padding:2px;box-shadow:rgba(0,0,0,0.4) 0 1px 3px,#838a90 0px 1px 0px 0px inset;background-color:#5e6469;background:#686e74;background:-webkit-linear-gradient(-90deg, #686e74, #52575c);background:-moz-linear-gradient(-90deg, #686e74, #52575c);background:linear, -90deg, #686e74, #52575c;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF686E74', endColorstr='#FF52575C');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF686E74', endColorstr='#FF52575C');border:solid 1px #464a4e;border-top-color:#545a5e;border-bottom-color:#35383b;border-radius:4px}.popover .popover_nipple{content:"";position:absolute;top:-6px;display:block;width:0;height:0;border-width:0 6px 6px;border-style:solid;border-color:#545a5e transparent;z-index:100}.popover .popover_nipple:before{content:' ';position:absolute;width:0;height:0;border-width:0 5px 5px;border-style:solid;border-color:#838a90 transparent;left:-5px;top:1px}.popover .popover_nipple:after{content:' ';position:absolute;width:0;height:0;border-width:0 5px 5px;border-style:solid;border-color:#686e74 transparent;left:-5px;top:2px}.popover .popover_contents{display:block;background-color:#FFF;border:solid 1px #464a4e;box-shadow:#6a7176 0px 1px 0px 0px;border-radius:3px;margin:0;overflow:hidden;padding:8px}.popover ul.popover_contents{list-style-type:none;padding:0}.popover ul.popover_contents li{display:block;border-bottom:solid 1px #ebebeb;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.popover ul.popover_contents li a{display:block;-webkit-box-sizing:padding-box;-moz-box-sizing:padding-box;box-sizing:padding-box;font-size:0.95em;font-weight:bold;padding:7px 16px 5px;text-decoration:none;text-align:center;-webkit-font-smoothing:antialiased}.popover ul.popover_contents li a:hover{background:#75a1c2;background:-webkit-linear-gradient(-90deg, #75a1c2, #608cb4);background:-moz-linear-gradient(-90deg, #75a1c2, #608cb4);background:linear, -90deg, #75a1c2, #608cb4;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF75A1C2', endColorstr='#FF608CB4');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF75A1C2', endColorstr='#FF608CB4');text-shadow:#5a83aa 0 1px 0;color:#FFF}.popover ul.popover_contents li a:active{background:#608cb4;background:-webkit-linear-gradient(-90deg, #608cb4, #75a1c2);background:-moz-linear-gradient(-90deg, #608cb4, #75a1c2);background:linear, -90deg, #608cb4, #75a1c2;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF608CB4', endColorstr='#FF75A1C2');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF608CB4', endColorstr='#FF75A1C2');color:#FFF}.popover ul.popover_contents li:first-child a{border-top-left-radius:2px;border-top-right-radius:2px}.popover ul.popover_contents li:last-child{border:none}.popover ul.popover_contents li:last-child a{border-bottom-left-radius:2px;border-bottom-right-radius:2px}table tr td{vertical-align:top}table.index_table{width:100%;margin-bottom:10px;border:0;border-spacing:0}table.index_table th{background:#efefef;background:-webkit-linear-gradient(-90deg, #efefef, #dfe1e2);background:-moz-linear-gradient(-90deg, #efefef, #dfe1e2);background:linear, -90deg, #efefef, #dfe1e2;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEFEFEF', endColorstr='#FFDFE1E2');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEFEFEF', endColorstr='#FFDFE1E2');text-shadow:white 0 1px 0;border:solid 1px #cdcdcd;border-color:#d4d4d4;border-top-color:#e6e6e6;border-right-color:#d4d4d4;border-bottom-color:#cdcdcd;border-left-color:#d4d4d4;box-shadow:0 1px 3px rgba(0,0,0,0.12),0 0 1px #fff inset;font-size:1.0em;font-weight:bold;line-height:18px;margin-bottom:0.5em;color:#5e6469;padding:5px 10px 3px 10px;border-right:none;text-align:left;padding-left:12px;padding-right:12px}table.index_table th span.icon svg path,table.index_table th span.icon svg polygon,table.index_table th span.icon svg rect,table.index_table th span.icon svg circle{fill:#5e6469 !important}table.index_table th span.icon{width:1em;height:1em}table.index_table th a,table.index_table th a:link,table.index_table th a:visited{color:#5e6469;text-decoration:none;display:block;white-space:nowrap;-webkit-font-smoothing:antialiased}table.index_table th.sortable a{background:url(/assets/active_admin/orderable-61b5d7f5855b4fbc6b718755d542b71b.png) no-repeat 0 4px;padding-left:13px}table.index_table th.sorted-asc a{background-position:0 -27px}table.index_table th.sorted-desc a{background-position:0 -56px}table.index_table th.sorted-asc,table.index_table th.sorted-desc{background:#e2e2e2;background:-webkit-linear-gradient(-90deg, #e2e2e2, #d2d4d6);background:-moz-linear-gradient(-90deg, #e2e2e2, #d2d4d6);background:linear, -90deg, #e2e2e2, #d2d4d6;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFE2E2E2', endColorstr='#FFD2D4D6');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFE2E2E2', endColorstr='#FFD2D4D6')}table.index_table th:last-child{border-right:solid 1px #d4d4d4}table.index_table tr.even td{background:#f4f5f5}table.index_table tr.selected td{background:#d9e4ec}table.index_table td{padding:10px 12px 8px 12px;border-bottom:1px solid #e8e8e8;vertical-align:top}.panel_contents table{margin-top:5px}.panel_contents table th{padding-top:10px;background:none;color:#5e6469;box-shadow:none;-moz-box-shadow:none;-webkit-box-shadow:none;text-shadow:white 0 1px 0;text-transform:uppercase;border-bottom:1px solid #ccc}.panel_contents table tr.odd td{background:#ecedee}.panel_contents table tr.even td{background:#f4f5f5}.attributes_table{overflow:hidden}.attributes_table table col.even{background:#f4f5f5}.attributes_table table col.odd{background:#ecedee}.attributes_table table th,.attributes_table table td{padding:8px 12px 6px 12px;vertical-align:top;border-bottom:1px solid #e8e8e8}.attributes_table table th{box-shadow:none;-moz-box-shadow:none;-webkit-box-shadow:none;background:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);-ms-filter:"progid:DXImageTransform.Microsoft.gradient(enabled=false)";width:150px;font-size:0.9em;padding-left:0;text-transform:uppercase;color:#5e6469;text-shadow:white 0 1px 0}.attributes_table table td .empty{color:#bbb;font-size:0.8em;text-transform:uppercase;letter-spacing:0.2em}.sidebar_section .attributes_table th{width:50px}#collection_selection_toggle_panel{*zoom:1}#collection_selection_toggle_panel:before,#collection_selection_toggle_panel:after{content:" ";display:table}#collection_selection_toggle_panel:after{clear:both}#collection_selection_toggle_panel>.resource_selection_toggle_cell{float:left}#collection_selection_toggle_panel #collection_selection_toggle_explaination{float:left;margin-left:5px;font-style:italic}.ui-widget-overlay{position:fixed;background:rgba(0,0,0,0.2);top:0;left:0;right:0;bottom:0;z-index:1001}.ui-dialog{position:fixed;z-index:1002;background:#f4f4f4;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;box-shadow:inset 0 1px 4px #dddddd;-moz-box-shadow:inset 0 1px 4px #dddddd;-webkit-box-shadow:inset 0 1px 4px #dddddd;box-shadow:rgba(0,0,0,0.5) 0 0 10px}.ui-dialog .ui-dialog-titlebar{background:#efefef;background:-webkit-linear-gradient(-90deg, #efefef, #dfe1e2);background:-moz-linear-gradient(-90deg, #efefef, #dfe1e2);background:linear, -90deg, #efefef, #dfe1e2;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEFEFEF', endColorstr='#FFDFE1E2');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEFEFEF', endColorstr='#FFDFE1E2');text-shadow:white 0 1px 0;border:solid 1px #cdcdcd;border-color:#d4d4d4;border-top-color:#e6e6e6;border-right-color:#d4d4d4;border-bottom-color:#cdcdcd;border-left-color:#d4d4d4;box-shadow:0 1px 3px rgba(0,0,0,0.12),0 0 1px #fff inset;font-size:1.0em;font-weight:bold;line-height:18px;margin-bottom:0.5em;color:#5e6469;padding:5px 10px 3px 10px}.ui-dialog .ui-dialog-titlebar span.icon svg path,.ui-dialog .ui-dialog-titlebar span.icon svg polygon,.ui-dialog .ui-dialog-titlebar span.icon svg rect,.ui-dialog .ui-dialog-titlebar span.icon svg circle{fill:#5e6469 !important}.ui-dialog .ui-dialog-titlebar span.icon{width:1em;height:1em}.ui-dialog .ui-dialog-titlebar span{font-size:1.1em}.ui-dialog .ui-dialog-titlebar-close{display:none}.ui-dialog ul{list-style-type:none}.ui-dialog li{margin:10px 0}.ui-dialog label{margin-right:10px}.ui-dialog .ui-dialog-buttonpane,.ui-dialog form{padding:7px 15px 13px}.ui-dialog .ui-dialog-buttonpane button:first-child{-webkit-border-radius:200px;-moz-border-radius:200px;border-radius:200px;display:inline-block;font-weight:bold;font-size:1.0em;font-family:Helvetica, Arial, sans-serif;line-height:12px;margin-right:3px;padding:7px 16px 6px;text-decoration:none;-webkit-font-smoothing:antialiased;background:#838a90;background:-webkit-linear-gradient(-90deg, #838a90, #414549);background:-moz-linear-gradient(-90deg, #838a90, #414549);background:linear, -90deg, #838a90, #414549;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF838A90', endColorstr='#FF414549');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF838A90', endColorstr='#FF414549');text-shadow:black 0 1px 0;box-shadow:0 1px 1px rgba(0,0,0,0.1),0 1px 0 0px rgba(255,255,255,0.2) inset;border:solid 1px #484e53;border-color:#484e53;border-top-color:#616a71;border-right-color:#484e53;border-bottom-color:#363b3f;border-left-color:#484e53;color:#efefef}.ui-dialog .ui-dialog-buttonpane button:first-child.disabled{opacity:0.5;cursor:default}.ui-dialog .ui-dialog-buttonpane button:first-child:not(.disabled):hover{background:#8b9297;background:-webkit-linear-gradient(-90deg, #8b9297, #484d51);background:-moz-linear-gradient(-90deg, #8b9297, #484d51);background:linear, -90deg, #8b9297, #484d51;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF8B9297', endColorstr='#FF484D51');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF8B9297', endColorstr='#FF484D51')}.ui-dialog .ui-dialog-buttonpane button:first-child:not(.disabled):active{box-shadow:0 1px 3px rgba(0,0,0,0.4) inset,0 1px 0 0px #fff;background:#71797f;background:-webkit-linear-gradient(-90deg, #71797f, #35383b);background:-moz-linear-gradient(-90deg, #71797f, #35383b);background:linear, -90deg, #71797f, #35383b;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF71797F', endColorstr='#FF35383B');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF71797F', endColorstr='#FF35383B')}.ui-dialog .ui-dialog-buttonpane button:last-child{-webkit-border-radius:200px;-moz-border-radius:200px;border-radius:200px;display:inline-block;font-weight:bold;font-size:1.0em;font-family:Helvetica, Arial, sans-serif;line-height:12px;margin-right:3px;padding:7px 16px 6px;text-decoration:none;-webkit-font-smoothing:antialiased;background:white;background:-webkit-linear-gradient(-90deg, #fff, #e7e7e7);background:-moz-linear-gradient(-90deg, #fff, #e7e7e7);background:linear, -90deg, white, #e7e7e7;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFE7E7E7');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFE7E7E7');box-shadow:0 1px 1px rgba(0,0,0,0.1),0 1px 0 0 rgba(255,255,255,0.8) inset;border:solid 1px #c7c7c7;border-color:#c7c7c7;border-top-color:lightgrey;border-right-color:#c7c7c7;border-bottom-color:#c2c2c2;border-left-color:#c7c7c7;text-shadow:white 0 1px 0;color:#5e6469}.ui-dialog .ui-dialog-buttonpane button:last-child.disabled{opacity:0.5;cursor:default}.ui-dialog .ui-dialog-buttonpane button:last-child:not(.disabled):hover{background:white;background:-webkit-linear-gradient(-90deg, #fff, #f1f1f1);background:-moz-linear-gradient(-90deg, #fff, #f1f1f1);background:linear, -90deg, white, #f1f1f1;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFF1F1F1');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFF1F1F1')}.ui-dialog .ui-dialog-buttonpane button:last-child:not(.disabled):active{box-shadow:0 1px 2px rgba(0,0,0,0.22) inset,0 1px 0 0px #eee;border-color:#b9b9b9;border-top-color:#c2c2c2;border-right-color:#b9b9b9;border-bottom-color:#b7b7b7;border-left-color:#b9b9b9;background:#f3f3f3;background:-webkit-linear-gradient(-90deg, #f3f3f3, #d8d8d8);background:-moz-linear-gradient(-90deg, #f3f3f3, #d8d8d8);background:linear, -90deg, #f3f3f3, #d8d8d8;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFF3F3F3', endColorstr='#FFD8D8D8');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFF3F3F3', endColorstr='#FFD8D8D8')}.blank_slate_container{clear:both;text-align:center}.blank_slate_container .blank_slate{-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;-webkit-font-smoothing:antialiased;border:1px dashed #dadada;color:#aaaaaa;display:inline-block;font-size:1.2em;font-weight:bold;padding:14px 25px;text-align:center}.blank_slate_container .blank_slate small{display:block;font-size:0.9em;font-weight:normal}.admin_dashboard .blank_slate_container .blank_slate{margin-top:40px;margin-bottom:40px}.with_sidebar .blank_slate_container .blank_slate{margin-top:80px}.breadcrumb{display:block;font-size:0.9em;font-weight:normal;line-height:1.0em;margin-bottom:12px;text-transform:uppercase}.breadcrumb a,.breadcrumb a:link,.breadcrumb a:visited,.breadcrumb a:active{color:#8a949e;text-decoration:none}.breadcrumb a:hover{text-decoration:underline}.breadcrumb .breadcrumb_sep{margin:0 2px;color:#aab2ba}.dropdown_menu{display:inline}.dropdown_menu .dropdown_menu_button{-webkit-border-radius:200px;-moz-border-radius:200px;border-radius:200px;display:inline-block;font-weight:bold;font-size:1.0em;font-family:Helvetica, Arial, sans-serif;line-height:12px;margin-right:3px;padding:7px 16px 6px;text-decoration:none;-webkit-font-smoothing:antialiased;background:white;background:-webkit-linear-gradient(-90deg, #fff, #e7e7e7);background:-moz-linear-gradient(-90deg, #fff, #e7e7e7);background:linear, -90deg, white, #e7e7e7;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFE7E7E7');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFE7E7E7');box-shadow:0 1px 1px rgba(0,0,0,0.1),0 1px 0 0 rgba(255,255,255,0.8) inset;border:solid 1px #c7c7c7;border-color:#c7c7c7;border-top-color:lightgrey;border-right-color:#c7c7c7;border-bottom-color:#c2c2c2;border-left-color:#c7c7c7;text-shadow:white 0 1px 0;color:#5e6469;position:relative;padding-right:22px !important;cursor:pointer}.dropdown_menu .dropdown_menu_button.disabled{opacity:0.5;cursor:default}.dropdown_menu .dropdown_menu_button:not(.disabled):hover{background:white;background:-webkit-linear-gradient(-90deg, #fff, #f1f1f1);background:-moz-linear-gradient(-90deg, #fff, #f1f1f1);background:linear, -90deg, white, #f1f1f1;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFF1F1F1');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFF1F1F1')}.dropdown_menu .dropdown_menu_button:not(.disabled):active{box-shadow:0 1px 2px rgba(0,0,0,0.22) inset,0 1px 0 0px #eee;border-color:#b9b9b9;border-top-color:#c2c2c2;border-right-color:#b9b9b9;border-bottom-color:#b7b7b7;border-left-color:#b9b9b9;background:#f3f3f3;background:-webkit-linear-gradient(-90deg, #f3f3f3, #d8d8d8);background:-moz-linear-gradient(-90deg, #f3f3f3, #d8d8d8);background:linear, -90deg, #f3f3f3, #d8d8d8;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFF3F3F3', endColorstr='#FFD8D8D8');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFF3F3F3', endColorstr='#FFD8D8D8')}.dropdown_menu .dropdown_menu_button:before{content:' ';position:absolute;width:0;height:0;border-width:3px 3px 0;border-style:solid;border-color:#FFF transparent;right:12px;top:45%}.dropdown_menu .dropdown_menu_button:after{content:' ';position:absolute;width:0;height:0;border-width:3px 3px 0;border-style:solid;border-color:#777 transparent;right:12px;top:45%}.dropdown_menu .dropdown_menu_nipple{content:"";position:absolute;top:-6px;display:block;width:0;height:0;border-width:0 6px 6px;border-style:solid;border-color:#545a5e transparent;z-index:100}.dropdown_menu .dropdown_menu_nipple:before{content:' ';position:absolute;width:0;height:0;border-width:0 5px 5px;border-style:solid;border-color:#838a90 transparent;left:-5px;top:1px}.dropdown_menu .dropdown_menu_nipple:after{content:' ';position:absolute;width:0;height:0;border-width:0 5px 5px;border-style:solid;border-color:#686e74 transparent;left:-5px;top:2px}.dropdown_menu .dropdown_menu_list_wrapper{display:inline-block;position:absolute;background-color:white;padding:2px;box-shadow:rgba(0,0,0,0.4) 0 1px 3px,#838a90 0px 1px 0px 0px inset;background-color:#5e6469;background:#686e74;background:-webkit-linear-gradient(-90deg, #686e74, #52575c);background:-moz-linear-gradient(-90deg, #686e74, #52575c);background:linear, -90deg, #686e74, #52575c;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF686E74', endColorstr='#FF52575C');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF686E74', endColorstr='#FF52575C');border:solid 1px #464a4e;border-top-color:#545a5e;border-bottom-color:#35383b;border-radius:4px}.dropdown_menu .dropdown_menu_list_wrapper .dropdown_menu_list{display:block;background-color:#FFF;border:solid 1px #464a4e;box-shadow:#6a7176 0px 1px 0px 0px;border-radius:3px;margin:0;overflow:hidden;padding:8px;list-style-type:none;padding:0}.dropdown_menu .dropdown_menu_list_wrapper .dropdown_menu_list li{display:block;border-bottom:solid 1px #ebebeb;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.dropdown_menu .dropdown_menu_list_wrapper .dropdown_menu_list li a{display:block;-webkit-box-sizing:padding-box;-moz-box-sizing:padding-box;box-sizing:padding-box;font-size:0.95em;font-weight:bold;padding:7px 16px 5px;text-decoration:none;text-align:center;-webkit-font-smoothing:antialiased}.dropdown_menu .dropdown_menu_list_wrapper .dropdown_menu_list li a:hover{background:#75a1c2;background:-webkit-linear-gradient(-90deg, #75a1c2, #608cb4);background:-moz-linear-gradient(-90deg, #75a1c2, #608cb4);background:linear, -90deg, #75a1c2, #608cb4;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF75A1C2', endColorstr='#FF608CB4');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF75A1C2', endColorstr='#FF608CB4');text-shadow:#5a83aa 0 1px 0;color:#FFF}.dropdown_menu .dropdown_menu_list_wrapper .dropdown_menu_list li a:active{background:#608cb4;background:-webkit-linear-gradient(-90deg, #608cb4, #75a1c2);background:-moz-linear-gradient(-90deg, #608cb4, #75a1c2);background:linear, -90deg, #608cb4, #75a1c2;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF608CB4', endColorstr='#FF75A1C2');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF608CB4', endColorstr='#FF75A1C2');color:#FFF}.dropdown_menu .dropdown_menu_list_wrapper .dropdown_menu_list li:first-child a{border-top-left-radius:2px;border-top-right-radius:2px}.dropdown_menu .dropdown_menu_list_wrapper .dropdown_menu_list li:last-child{border:none}.dropdown_menu .dropdown_menu_list_wrapper .dropdown_menu_list li:last-child a{border-bottom-left-radius:2px;border-bottom-right-radius:2px}td span.icon svg path,td span.icon svg polygon,td span.icon svg rect,td span.icon svg circle,p span.icon svg path,p span.icon svg polygon,p span.icon svg rect,p span.icon svg circle{fill:#b3bcc1 !important}td span.icon,p span.icon{width:0.8em;height:0.8em}td span.icon,p span.icon{margin:0 3px}a.member_link{margin-right:7px;white-space:nowrap}a.button,a:link.button,a:visited.button,input[type=submit]{-webkit-border-radius:200px;-moz-border-radius:200px;border-radius:200px;display:inline-block;font-weight:bold;font-size:1.0em;font-family:Helvetica, Arial, sans-serif;line-height:12px;margin-right:3px;padding:7px 16px 6px;text-decoration:none;-webkit-font-smoothing:antialiased;background:#838a90;background:-webkit-linear-gradient(-90deg, #838a90, #414549);background:-moz-linear-gradient(-90deg, #838a90, #414549);background:linear, -90deg, #838a90, #414549;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF838A90', endColorstr='#FF414549');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF838A90', endColorstr='#FF414549');text-shadow:black 0 1px 0;box-shadow:0 1px 1px rgba(0,0,0,0.1),0 1px 0 0px rgba(255,255,255,0.2) inset;border:solid 1px #484e53;border-color:#484e53;border-top-color:#616a71;border-right-color:#484e53;border-bottom-color:#363b3f;border-left-color:#484e53;color:#efefef}a.button.disabled,a:link.button.disabled,a:visited.button.disabled,input[type=submit].disabled{opacity:0.5;cursor:default}a.button:not(.disabled):hover,a:link.button:not(.disabled):hover,a:visited.button:not(.disabled):hover,input[type=submit]:not(.disabled):hover{background:#8b9297;background:-webkit-linear-gradient(-90deg, #8b9297, #484d51);background:-moz-linear-gradient(-90deg, #8b9297, #484d51);background:linear, -90deg, #8b9297, #484d51;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF8B9297', endColorstr='#FF484D51');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF8B9297', endColorstr='#FF484D51')}a.button:not(.disabled):active,a:link.button:not(.disabled):active,a:visited.button:not(.disabled):active,input[type=submit]:not(.disabled):active{box-shadow:0 1px 3px rgba(0,0,0,0.4) inset,0 1px 0 0px #fff;background:#71797f;background:-webkit-linear-gradient(-90deg, #71797f, #35383b);background:-moz-linear-gradient(-90deg, #71797f, #35383b);background:linear, -90deg, #71797f, #35383b;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF71797F', endColorstr='#FF35383B');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF71797F', endColorstr='#FF35383B')}table.index_grid td{border:none;background:none;padding:0 20px 20px 0;margin:0}.columns{clear:both;padding:0}.columns .column{float:left}a,a:link,a:visited{color:#38678b;text-decoration:underline}a:hover{text-decoration:none}.paginated_collection_contents{clear:both}.pagination{float:right;font-size:0.9em;margin-left:10px}.pagination a{-webkit-border-radius:200px;-moz-border-radius:200px;border-radius:200px;display:inline-block;font-weight:bold;font-size:1.0em;font-family:Helvetica, Arial, sans-serif;line-height:12px;margin-right:3px;padding:7px 16px 6px;text-decoration:none;-webkit-font-smoothing:antialiased;background:white;background:-webkit-linear-gradient(-90deg, #fff, #e7e7e7);background:-moz-linear-gradient(-90deg, #fff, #e7e7e7);background:linear, -90deg, white, #e7e7e7;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFE7E7E7');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFE7E7E7');box-shadow:0 1px 1px rgba(0,0,0,0.1),0 1px 0 0 rgba(255,255,255,0.8) inset;border:solid 1px #c7c7c7;border-color:#c7c7c7;border-top-color:lightgrey;border-right-color:#c7c7c7;border-bottom-color:#c2c2c2;border-left-color:#c7c7c7;text-shadow:white 0 1px 0;color:#5e6469}.pagination a.disabled{opacity:0.5;cursor:default}.pagination a:not(.disabled):hover{background:white;background:-webkit-linear-gradient(-90deg, #fff, #f1f1f1);background:-moz-linear-gradient(-90deg, #fff, #f1f1f1);background:linear, -90deg, white, #f1f1f1;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFF1F1F1');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFF1F1F1')}.pagination a:not(.disabled):active{box-shadow:0 1px 2px rgba(0,0,0,0.22) inset,0 1px 0 0px #eee;border-color:#b9b9b9;border-top-color:#c2c2c2;border-right-color:#b9b9b9;border-bottom-color:#b7b7b7;border-left-color:#b9b9b9;background:#f3f3f3;background:-webkit-linear-gradient(-90deg, #f3f3f3, #d8d8d8);background:-moz-linear-gradient(-90deg, #f3f3f3, #d8d8d8);background:linear, -90deg, #f3f3f3, #d8d8d8;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFF3F3F3', endColorstr='#FFD8D8D8');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFF3F3F3', endColorstr='#FFD8D8D8')}.pagination span.page.current{-webkit-border-radius:200px;-moz-border-radius:200px;border-radius:200px;display:inline-block;font-weight:bold;font-size:1.0em;font-family:Helvetica, Arial, sans-serif;line-height:12px;margin-right:3px;padding:7px 16px 6px;text-decoration:none;-webkit-font-smoothing:antialiased;background:#838a90;background:-webkit-linear-gradient(-90deg, #838a90, #414549);background:-moz-linear-gradient(-90deg, #838a90, #414549);background:linear, -90deg, #838a90, #414549;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF838A90', endColorstr='#FF414549');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF838A90', endColorstr='#FF414549');text-shadow:black 0 1px 0;box-shadow:0 1px 1px rgba(0,0,0,0.1),0 1px 0 0px rgba(255,255,255,0.2) inset;border:solid 1px #484e53;border-color:#484e53;border-top-color:#616a71;border-right-color:#484e53;border-bottom-color:#363b3f;border-left-color:#484e53;color:#efefef}.pagination span.page.current.disabled{opacity:0.5;cursor:default}.pagination span.page.current:not(.disabled):hover{background:#8b9297;background:-webkit-linear-gradient(-90deg, #8b9297, #484d51);background:-moz-linear-gradient(-90deg, #8b9297, #484d51);background:linear, -90deg, #8b9297, #484d51;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF8B9297', endColorstr='#FF484D51');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF8B9297', endColorstr='#FF484D51')}.pagination span.page.current:not(.disabled):active{box-shadow:0 1px 3px rgba(0,0,0,0.4) inset,0 1px 0 0px #fff;background:#71797f;background:-webkit-linear-gradient(-90deg, #71797f, #35383b);background:-moz-linear-gradient(-90deg, #71797f, #35383b);background:linear, -90deg, #71797f, #35383b;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF71797F', endColorstr='#FF35383B');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF71797F', endColorstr='#FF35383B')}.pagination a,.pagination span.page.current{-webkit-border-radius:0px;-moz-border-radius:0px;border-radius:0px;margin-right:4px;padding:2px 5px}.pagination_information{float:right;margin-bottom:5px;color:#b3bcc1}.pagination_information b{color:#5c6469}.download_links{float:left}.section,.panel{background:#f4f4f4;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;box-shadow:inset 0 1px 4px #dddddd;-moz-box-shadow:inset 0 1px 4px #dddddd;-webkit-box-shadow:inset 0 1px 4px #dddddd;margin-bottom:20px}.section>h3,.panel>h3{background:#efefef;background:-webkit-linear-gradient(-90deg, #efefef, #dfe1e2);background:-moz-linear-gradient(-90deg, #efefef, #dfe1e2);background:linear, -90deg, #efefef, #dfe1e2;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEFEFEF', endColorstr='#FFDFE1E2');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEFEFEF', endColorstr='#FFDFE1E2');text-shadow:white 0 1px 0;border:solid 1px #cdcdcd;border-color:#d4d4d4;border-top-color:#e6e6e6;border-right-color:#d4d4d4;border-bottom-color:#cdcdcd;border-left-color:#d4d4d4;box-shadow:0 1px 3px rgba(0,0,0,0.12),0 0 1px #fff inset;font-size:1.0em;font-weight:bold;line-height:18px;margin-bottom:0.5em;color:#5e6469;padding:5px 10px 3px 10px}.section>h3 span.icon svg path,.section>h3 span.icon svg polygon,.section>h3 span.icon svg rect,.section>h3 span.icon svg circle,.panel>h3 span.icon svg path,.panel>h3 span.icon svg polygon,.panel>h3 span.icon svg rect,.panel>h3 span.icon svg circle{fill:#5e6469 !important}.section>h3 span.icon,.panel>h3 span.icon{width:1em;height:1em}.section>div,.panel>div{padding:3px 15px 15px 15px}.section hr,.panel hr{border:none;border-bottom:1px solid #E8E8E8}.sidebar_section{background:#f4f4f4;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;box-shadow:inset 0 1px 4px #dddddd;-moz-box-shadow:inset 0 1px 4px #dddddd;-webkit-box-shadow:inset 0 1px 4px #dddddd;margin-bottom:20px}.sidebar_section>h3{background:#efefef;background:-webkit-linear-gradient(-90deg, #efefef, #dfe1e2);background:-moz-linear-gradient(-90deg, #efefef, #dfe1e2);background:linear, -90deg, #efefef, #dfe1e2;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEFEFEF', endColorstr='#FFDFE1E2');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEFEFEF', endColorstr='#FFDFE1E2');text-shadow:white 0 1px 0;border:solid 1px #cdcdcd;border-color:#d4d4d4;border-top-color:#e6e6e6;border-right-color:#d4d4d4;border-bottom-color:#cdcdcd;border-left-color:#d4d4d4;box-shadow:0 1px 3px rgba(0,0,0,0.12),0 0 1px #fff inset;font-size:1.0em;font-weight:bold;line-height:18px;margin-bottom:0.5em;color:#5e6469;padding:5px 10px 3px 10px}.sidebar_section>h3 span.icon svg path,.sidebar_section>h3 span.icon svg polygon,.sidebar_section>h3 span.icon svg rect,.sidebar_section>h3 span.icon svg circle{fill:#5e6469 !important}.sidebar_section>h3 span.icon{width:1em;height:1em}.sidebar_section>div{padding:3px 15px 15px 15px}.sidebar_section hr{border:none;border-bottom:1px solid #E8E8E8}.columns{margin-bottom:10px}.scopes li .count{color:#8e979e;font-weight:normal;font-size:0.9em;line-height:10px}.status_tag{background:#cacaca;color:#fff;text-transform:uppercase;letter-spacing:0.15em;padding:3px 5px 2px 5px;font-size:0.8em}.status_tag.ok,.status_tag.published,.status_tag.complete,.status_tag.completed,.status_tag.green{background:#8daa92}.status_tag.warn,.status_tag.warning,.status_tag.orange{background:#e29b20}.status_tag.error,.status_tag.errored,.status_tag.red{background:#d45f53}.status_tag.yes{background:#6090db}.status_tag.no{background:grey}.table_tools{*zoom:1;margin-bottom:16px}.table_tools:before,.table_tools:after{content:" ";display:table}.table_tools:after{clear:both}.table_tools .dropdown_menu{float:left}a.table_tools_button,.table_tools .dropdown_menu_button{-webkit-border-radius:200px;-moz-border-radius:200px;border-radius:200px;display:inline-block;font-weight:bold;font-size:1.0em;font-family:Helvetica, Arial, sans-serif;line-height:12px;margin-right:3px;padding:7px 16px 6px;text-decoration:none;-webkit-font-smoothing:antialiased;background:white;background:-webkit-linear-gradient(-90deg, #fff, #e7e7e7);background:-moz-linear-gradient(-90deg, #fff, #e7e7e7);background:linear, -90deg, white, #e7e7e7;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFE7E7E7');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFE7E7E7');box-shadow:0 1px 1px rgba(0,0,0,0.1),0 1px 0 0 rgba(255,255,255,0.8) inset;border:solid 1px #c7c7c7;border-color:#c7c7c7;border-top-color:lightgrey;border-right-color:#c7c7c7;border-bottom-color:#c2c2c2;border-left-color:#c7c7c7;text-shadow:white 0 1px 0;color:#5e6469;background:white;background:-webkit-linear-gradient(-90deg, #fff, #f0f0f0);background:-moz-linear-gradient(-90deg, #fff, #f0f0f0);background:linear, -90deg, white, #f0f0f0;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFF0F0F0');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFF0F0F0');border-color:#d0d0d0;border-top-color:#d9d9d9;border-right-color:#d0d0d0;border-bottom-color:#c5c5c5;border-left-color:#d0d0d0;font-size:0.9em;padding:4px 14px 4px;margin:0}a.table_tools_button.disabled,.table_tools .dropdown_menu_button.disabled{opacity:0.5;cursor:default}a.table_tools_button:not(.disabled):hover,.table_tools .dropdown_menu_button:not(.disabled):hover{background:white;background:-webkit-linear-gradient(-90deg, #fff, #f1f1f1);background:-moz-linear-gradient(-90deg, #fff, #f1f1f1);background:linear, -90deg, white, #f1f1f1;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFF1F1F1');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFF1F1F1')}a.table_tools_button:not(.disabled):active,.table_tools .dropdown_menu_button:not(.disabled):active{box-shadow:0 1px 2px rgba(0,0,0,0.22) inset,0 1px 0 0px #eee;border-color:#b9b9b9;border-top-color:#c2c2c2;border-right-color:#b9b9b9;border-bottom-color:#b7b7b7;border-left-color:#b9b9b9;background:#f3f3f3;background:-webkit-linear-gradient(-90deg, #f3f3f3, #d8d8d8);background:-moz-linear-gradient(-90deg, #f3f3f3, #d8d8d8);background:linear, -90deg, #f3f3f3, #d8d8d8;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFF3F3F3', endColorstr='#FFD8D8D8');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFF3F3F3', endColorstr='#FFD8D8D8')}a.table_tools_button:not(.disabled):hover,.table_tools .dropdown_menu_button:not(.disabled):hover{background:white;background:-webkit-linear-gradient(-90deg, #fff, #f6f6f6);background:-moz-linear-gradient(-90deg, #fff, #f6f6f6);background:linear, -90deg, white, #f6f6f6;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFF6F6F6');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFF6F6F6')}a.table_tools_button:not(.disabled):active,.table_tools .dropdown_menu_button:not(.disabled):active{border-color:#c8c8c8;border-top-color:#d7d7d7;border-right-color:#c8c8c8;border-bottom-color:#c3c3c3;border-left-color:#c8c8c8;box-shadow:0 1px 1px 0 rgba(0,0,0,0.17) inset;background:white;background:-webkit-linear-gradient(-90deg, #fff, #e8e8e8);background:-moz-linear-gradient(-90deg, #fff, #e8e8e8);background:linear, -90deg, white, #e8e8e8;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFE8E8E8');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFE8E8E8')}.table_tools_segmented_control{list-style-type:none;padding:0;margin:0}.table_tools_segmented_control li{float:left}.table_tools_segmented_control li a{border-width:1px .5px 1px .5px;border-radius:0}.table_tools_segmented_control li:first-child a{border-left-width:1px;border-radius:12px 0 0 12px}.table_tools_segmented_control li:last-child a{border-right-width:1px;border-radius:0 12px 12px 0}.table_tools_segmented_control li.selected a{background:#f0f0f0;background:-webkit-linear-gradient(-90deg, #f0f0f0, #fdfdfd);background:-moz-linear-gradient(-90deg, #f0f0f0, #fdfdfd);background:linear, -90deg, #f0f0f0, #fdfdfd;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFF0F0F0', endColorstr='#FFFDFDFD');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFF0F0F0', endColorstr='#FFFDFDFD');box-shadow:0 1px 1px 0 rgba(0,0,0,0.1) inset;cursor:default}.table_tools_segmented_control li.selected a:hover{background:#f0f0f0;background:-webkit-linear-gradient(-90deg, #f0f0f0, #fdfdfd);background:-moz-linear-gradient(-90deg, #f0f0f0, #fdfdfd);background:linear, -90deg, #f0f0f0, #fdfdfd;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFF0F0F0', endColorstr='#FFFDFDFD');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFF0F0F0', endColorstr='#FFFDFDFD')}.indexes{float:right}.indexes li .count{color:#8e979e;font-weight:normal;font-size:0.9em;line-height:10px}body.logged_out{background:#e8e9ea}body.logged_out #content_wrapper{width:500px;margin:70px auto}body.logged_out #content_wrapper #active_admin_content{box-shadow:0 1px 2px rgba(0,0,0,0.37);-moz-box-shadow:0 1px 2px rgba(0,0,0,0.37);-webkit-box-shadow:0 1px 2px rgba(0,0,0,0.37);background:#fff;padding:13px 30px}body.logged_out h2{background:#efefef;background:-webkit-linear-gradient(-90deg, #efefef, #dfe1e2);background:-moz-linear-gradient(-90deg, #efefef, #dfe1e2);background:linear, -90deg, #efefef, #dfe1e2;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEFEFEF', endColorstr='#FFDFE1E2');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEFEFEF', endColorstr='#FFDFE1E2');text-shadow:white 0 1px 0;border:solid 1px #cdcdcd;border-color:#d4d4d4;border-top-color:#e6e6e6;border-right-color:#d4d4d4;border-bottom-color:#cdcdcd;border-left-color:#d4d4d4;box-shadow:0 1px 3px rgba(0,0,0,0.12),0 0 1px #fff inset;font-size:1.0em;font-weight:bold;line-height:18px;margin-bottom:0.5em;color:#5e6469;padding:5px 10px 3px 10px;background:#6a7176;background:-webkit-linear-gradient(-90deg, #6a7176, #4d5256);background:-moz-linear-gradient(-90deg, #6a7176, #4d5256);background:linear, -90deg, #6a7176, #4d5256;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF6A7176', endColorstr='#FF4D5256');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF6A7176', endColorstr='#FF4D5256');border-bottom:1px solid #44484b;text-shadow:black 0 1px 0;box-shadow:0 1px 3px rgba(0,0,0,0.3);border:none;color:#fff;margin:-13px -30px 20px -30px}body.logged_out h2 span.icon svg path,body.logged_out h2 span.icon svg polygon,body.logged_out h2 span.icon svg rect,body.logged_out h2 span.icon svg circle{fill:#5e6469 !important}body.logged_out h2 span.icon{width:1em;height:1em}body.logged_out #login form fieldset{box-shadow:none;-moz-box-shadow:none;-webkit-box-shadow:none;background:none;padding:0;margin-bottom:0}body.logged_out #login form fieldset li{padding:10px 0}body.logged_out #login form fieldset input[type=text],body.logged_out #login form fieldset input[type=email],body.logged_out #login form fieldset input[type=password]{width:70%}body.logged_out #login form fieldset.buttons{margin-left:20%}body.logged_out #login a{float:right;margin-top:-32px}#footer{padding:30px 30px;font-size:0.8em;clear:both}#footer p{padding-top:10px}#index_footer{padding-top:5px;text-align:right;font-size:0.85em}.index_content{clear:both}#wrapper{width:100%}.index #wrapper{display:table}#active_admin_content{margin:0;padding:30px}#active_admin_content #main_content_wrapper{float:left;width:100%}#active_admin_content #main_content_wrapper #main_content{margin-right:300px}#active_admin_content.without_sidebar #main_content_wrapper #main_content{margin-right:0}#active_admin_content #sidebar{float:left;width:270px;margin-left:-270px}#title_bar{background:#efefef;background:-webkit-linear-gradient(-90deg, #efefef, #dfe1e2);background:-moz-linear-gradient(-90deg, #efefef, #dfe1e2);background:linear, -90deg, #efefef, #dfe1e2;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEFEFEF', endColorstr='#FFDFE1E2');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEFEFEF', endColorstr='#FFDFE1E2');text-shadow:white 0 1px 0;border:solid 1px #cdcdcd;border-color:#d4d4d4;border-top-color:#e6e6e6;border-right-color:#d4d4d4;border-bottom-color:#cdcdcd;border-left-color:#d4d4d4;box-shadow:0 1px 3px rgba(0,0,0,0.12),0 0 1px #fff inset;font-size:1.0em;font-weight:bold;line-height:18px;margin-bottom:0.5em;color:#5e6469;padding:5px 10px 3px 10px;*zoom:1;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;box-shadow:0 1px 2px rgba(0,0,0,0.37);display:table;border-bottom-color:#EEE;width:100%;position:relative;margin:0;padding:10px 30px;z-index:800}#title_bar span.icon svg path,#title_bar span.icon svg polygon,#title_bar span.icon svg rect,#title_bar span.icon svg circle{fill:#5e6469 !important}#title_bar span.icon{width:1em;height:1em}#title_bar:before,#title_bar:after{content:" ";display:table}#title_bar:after{clear:both}#title_bar #titlebar_left,#title_bar #titlebar_right{height:50px;vertical-align:middle;display:table-cell}#title_bar #titlebar_right{text-align:right}#title_bar h2{margin:0;padding:0;font-size:2.6em;line-height:100%;font-weight:bold}#title_bar .action_items span.action_item>a,#title_bar .action_items span.action_item>.dropdown_menu>a{-webkit-border-radius:200px;-moz-border-radius:200px;border-radius:200px;display:inline-block;font-weight:bold;font-size:1.0em;font-family:Helvetica, Arial, sans-serif;line-height:12px;margin-right:3px;padding:7px 16px 6px;text-decoration:none;-webkit-font-smoothing:antialiased;background:white;background:-webkit-linear-gradient(-90deg, #fff, #e7e7e7);background:-moz-linear-gradient(-90deg, #fff, #e7e7e7);background:linear, -90deg, white, #e7e7e7;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFE7E7E7');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFE7E7E7');box-shadow:0 1px 1px rgba(0,0,0,0.1),0 1px 0 0 rgba(255,255,255,0.8) inset;border:solid 1px #c7c7c7;border-color:#c7c7c7;border-top-color:lightgrey;border-right-color:#c7c7c7;border-bottom-color:#c2c2c2;border-left-color:#c7c7c7;text-shadow:white 0 1px 0;color:#5e6469;padding:12px 17px 10px;margin:0px}#title_bar .action_items span.action_item>a.disabled,#title_bar .action_items span.action_item>.dropdown_menu>a.disabled{opacity:0.5;cursor:default}#title_bar .action_items span.action_item>a:not(.disabled):hover,#title_bar .action_items span.action_item>.dropdown_menu>a:not(.disabled):hover{background:white;background:-webkit-linear-gradient(-90deg, #fff, #f1f1f1);background:-moz-linear-gradient(-90deg, #fff, #f1f1f1);background:linear, -90deg, white, #f1f1f1;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFF1F1F1');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFF1F1F1')}#title_bar .action_items span.action_item>a:not(.disabled):active,#title_bar .action_items span.action_item>.dropdown_menu>a:not(.disabled):active{box-shadow:0 1px 2px rgba(0,0,0,0.22) inset,0 1px 0 0px #eee;border-color:#b9b9b9;border-top-color:#c2c2c2;border-right-color:#b9b9b9;border-bottom-color:#b7b7b7;border-left-color:#b9b9b9;background:#f3f3f3;background:-webkit-linear-gradient(-90deg, #f3f3f3, #d8d8d8);background:-moz-linear-gradient(-90deg, #f3f3f3, #d8d8d8);background:linear, -90deg, #f3f3f3, #d8d8d8;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFF3F3F3', endColorstr='#FFD8D8D8');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFF3F3F3', endColorstr='#FFD8D8D8')}#title_bar .action_items span.action_item>a span.icon,#title_bar .action_items span.action_item>.dropdown_menu>a span.icon{vertical-align:bottom;margin-right:4px}#title_bar .action_items span.action_item>a:hover span.icon svg path,#title_bar .action_items span.action_item>a:hover span.icon svg polygon,#title_bar .action_items span.action_item>a:hover span.icon svg rect,#title_bar .action_items span.action_item>a:hover span.icon svg circle,#title_bar .action_items span.action_item>.dropdown_menu>a:hover span.icon svg path,#title_bar .action_items span.action_item>.dropdown_menu>a:hover span.icon svg polygon,#title_bar .action_items span.action_item>.dropdown_menu>a:hover span.icon svg rect,#title_bar .action_items span.action_item>.dropdown_menu>a:hover span.icon svg circle{fill:black !important}body{font-family:Helvetica, Arial, sans-serif;line-height:150%;font-size:72%;background:white;margin:0;padding:0;color:#323537} +span.icon{vertical-align:middle;display:inline-block}span.icon svg{vertical-align:baseline}span.icon{width:0.8em;height:0.8em}html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,font,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td{margin:0;padding:0;border:0;outline:0;font-weight:inherit;font-style:inherit;font-size:100%;font-family:inherit;vertical-align:baseline}body{line-height:1;color:black;background:white}ol,ul{list-style:none}table{border-collapse:separate;border-spacing:0;vertical-align:middle}caption,th,td{text-align:left;font-weight:normal;vertical-align:middle}q,blockquote{quotes:"" ""}q:before,q:after,blockquote:before,blockquote:after{content:""}a img{border:none}html{font-size:100.01%}body{font-size:75%;font-family:"Helvetica Neue", Arial, Helvetica, sans-serif}h1,h2,h3,h4,h5,h6{font-weight:normal;color:#5e6469}h1 img,h2 img,h3 img,h4 img,h5 img,h6 img{margin:0}h1{font-size:3em;line-height:1;margin-bottom:0.5em}h2{font-size:2em;margin-bottom:0.75em}h3{font-size:1.5em;line-height:1;margin-bottom:1em}h4{font-size:1.2em;line-height:1.25;margin-bottom:1.25em}h5{font-size:1em;font-weight:bold;margin-bottom:1.5em}h6{font-size:1em;font-weight:bold}p{margin:0 0 1.5em}p .left{margin:1.5em 1.5em 1.5em 0;padding:0}p .right{margin:1.5em 0 1.5em 1.5em;padding:0}.left{float:left !important}.right{float:right !important}blockquote{margin:1.5em;color:#666;font-style:italic}strong,dfn{font-weight:bold}em,dfn{font-style:italic}sup,sub{line-height:0}abbr,acronym{border-bottom:1px dotted #666}address{margin:0 0 1.5em;font-style:italic}del{color:#666}pre{margin:1.5em 0;white-space:pre}pre,code,tt{font:1em 'andale mono', 'lucida console', monospace;line-height:1.5}li ul,li ol{margin:0}ul,ol{margin:0 1.5em 1.5em 0;padding-left:1.5em}ul{list-style-type:disc}ol{list-style-type:decimal}dl{margin:0 0 1.5em 0}dl dt{font-weight:bold}dd{margin-left:1.5em}table{margin-bottom:1.4em;width:100%}th{font-weight:bold}thead th{background:#c3d9ff}th,td,caption{padding:4px 10px 4px 5px}.small{font-size:.8em;margin-bottom:1.875em;line-height:1.875em}.large{font-size:1.2em;line-height:2.5em;margin-bottom:1.25em}.hide{display:none}.quiet{color:#666}.loud{color:#000}.highlight{background:#ff0}.added{background:#060;color:#fff}.removed{background:#900;color:#fff}.first{margin-left:0;padding-left:0}.last{margin-right:0;padding-right:0}.top{margin-top:0;padding-top:0}.bottom{margin-bottom:0;padding-bottom:0}#header{background:#6a7176;background:-webkit-linear-gradient(-90deg, #6a7176, #4d5256);background:-moz-linear-gradient(-90deg, #6a7176, #4d5256);background:linear, -90deg, #6a7176, #4d5256;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF6A7176', endColorstr='#FF4D5256');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF6A7176', endColorstr='#FF4D5256');border-bottom:1px solid #44484b;box-shadow:0 1px 2px rgba(0,0,0,0.37);-moz-box-shadow:0 1px 2px rgba(0,0,0,0.37);-webkit-box-shadow:0 1px 2px rgba(0,0,0,0.37);text-shadow:black 0 1px 0;display:table;height:20px;width:100%;overflow:visible;position:inherit;padding:5px 0;z-index:900}#header h1{display:table-cell;vertical-align:middle;white-space:nowrap;color:#cdcdcd;margin-right:20px;margin-bottom:0px;padding:3px 30px 0 30px;font-size:1.3em;font-weight:normal;line-height:1.2}#header h1 a{text-decoration:none}#header h1 a:hover{color:#fff}#header h1 img{position:relative;top:-2px}#header a,#header a:link{color:#cdcdcd}#header .header-item{top:2px;position:relative;height:20px}#header ul.tabs{display:table-cell;vertical-align:middle;height:100%;margin:0;padding:0}#header ul.tabs>li{display:inline-block;margin-right:4px;margin-top:5px;margin-bottom:5px;font-size:1.0em;position:relative}#header ul.tabs>li a{text-decoration:none;padding:6px 10px 4px 10px;position:relative;-webkit-border-radius:10px;-moz-border-radius:10px;border-radius:10px}#header ul.tabs>li.current>a{background:#7b8389;color:#fff}#header ul.tabs>li.has_nested>a{background:url(/assets/active_admin/nested_menu_arrow-94d9c4f73e81d377f80ae8dbcc71128b.gif) no-repeat calc(100% - 7px) 50%;padding-right:20px}#header ul.tabs>li.has_nested.current>a{background:#7b8389 url(/assets/active_admin/nested_menu_arrow_dark-b40a488b4f4b7d25cce531a15db4037b.gif) no-repeat calc(100% - 7px) 50%;padding-right:20px}#header ul.tabs>li:hover>a{background:#7b8389;color:#fff}#header ul.tabs>li.has_nested:hover>a{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;border-top-right-radius:10px;border-top-left-radius:10px;-moz-border-radius-topright:10px;-moz-border-radius-topleft:10px;-webkit-border-top-right-radius:10px;-webkit-border-top-left-radius:10px;border-bottom:5px solid #7b8389;background:#7b8389 url(/assets/active_admin/nested_menu_arrow_dark-b40a488b4f4b7d25cce531a15db4037b.gif) no-repeat calc(100% - 7px) 50%;z-index:1020}#header ul.tabs>li:hover ul{display:block}#header ul.tabs>li ul{background:#7b8389;border-top-right-radius:10px;-moz-border-radius-topright:10px;-webkit-border-top-right-radius:10px;border-top-left-radius:0;-moz-border-radius-topleft:0;-webkit-border-top-left-radius:0;border-bottom-right-radius:10px;-moz-border-radius-bottomright:10px;-webkit-border-bottom-right-radius:10px;border-bottom-left-radius:10px;-moz-border-radius-bottomleft:10px;-webkit-border-bottom-left-radius:10px;box-shadow:0 1px 3px #444444;-moz-box-shadow:0 1px 3px #444444;-webkit-box-shadow:0 1px 3px #444444;position:absolute;width:120%;min-width:175px;max-width:calc(100% + 20px);margin-top:5px;float:left;display:none;padding:3px 0px 5px 0;list-style:none;z-index:1010}#header ul.tabs>li ul li{margin:0px}#header ul.tabs>li ul li a{background:none;display:block}#header ul.tabs>li ul li a:hover{color:#fff;background:none}#header ul.tabs>li ul li.current a{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}#header #tabs{width:100%}#header #utility_nav{color:#aaa;display:table-cell;white-space:nowrap;margin:0;padding:0;padding-right:26px;text-align:right}#header #utility_nav a{text-decoration:none}#header #utility_nav a:hover{color:#fff}#header #utility_nav li{display:inline}form ul,form ol,form li,form fieldset,form legend,form input,form textarea,form select,form p{margin:0;padding:0}form ol,form ul{list-style:none}form fieldset{border:0;padding:10px 0;margin-bottom:20px}form fieldset.inputs{background:#f4f4f4;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;box-shadow:inset 0 1px 4px #dddddd;-moz-box-shadow:inset 0 1px 4px #dddddd;-webkit-box-shadow:inset 0 1px 4px #dddddd}form fieldset legend{width:100%}form fieldset legend span{display:block;background:#efefef;background:-webkit-linear-gradient(-90deg, #efefef, #dfe1e2);background:-moz-linear-gradient(-90deg, #efefef, #dfe1e2);background:linear, -90deg, #efefef, #dfe1e2;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEFEFEF', endColorstr='#FFDFE1E2');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEFEFEF', endColorstr='#FFDFE1E2');text-shadow:white 0 1px 0;border:solid 1px #cdcdcd;border-color:#d4d4d4;border-top-color:#e6e6e6;border-right-color:#d4d4d4;border-bottom-color:#cdcdcd;border-left-color:#d4d4d4;box-shadow:0 1px 3px rgba(0,0,0,0.12),0 0 1px #fff inset;font-size:1.0em;font-weight:bold;line-height:18px;margin-bottom:0.5em;color:#5e6469;padding:5px 10px 3px 10px}form fieldset legend span span.icon svg path,form fieldset legend span span.icon svg polygon,form fieldset legend span span.icon svg rect,form fieldset legend span span.icon svg circle{fill:#5e6469 !important}form fieldset legend span span.icon{width:1em;height:1em}form fieldset ol>li{padding:10px}form fieldset ol>li label{display:block;width:20%;float:left;font-size:1.0em;font-weight:bold;color:#5e6469}form fieldset ol>li label abbr{border:none;color:#aaaaaa}form fieldset ol>li.has_many_container{padding:20px 10px}form fieldset ol>li.has_many_container h3{font-size:12px;font-weight:bold}form fieldset ol>li.has_many_container .has_many_fields{margin:10px 0}form fieldset ol>li>li label{line-height:100%;padding-top:0}form fieldset ol>li>li label input{line-height:100%;vertical-align:middle;margin-top:-0.1em}form .has_many_fields{position:relative}form .has_many_container .handle{position:absolute;top:calc(50% - 3em / 2);right:2px;padding:0;cursor:move}form .has_many_container .handle span.icon{width:3em;height:3em}form .has_many_container.ui-sortable .has_many_container{margin-right:2em}form .ui-sortable input[type=text],form .ui-sortable input[type=password],form .ui-sortable input[type=email],form .ui-sortable input[type=number],form .ui-sortable input[type=url],form .ui-sortable input[type=tel],form .ui-sortable textarea{width:calc(80% - 22px - 2em - 1px)}form fieldset>ol>li fieldset{position:relative;padding:0;margin-bottom:0}form fieldset>ol>li fieldset legend{position:absolute;width:95%;padding-top:0.1em;left:0px;font-size:100%;font-weight:normal}form fieldset>ol>li fieldset legend span{position:absolute}form fieldset>ol>li fieldset legend.label label{position:absolute}form fieldset>ol>li fieldset:not(.has_many_fields) ol{float:left;width:74%;margin:0;padding:0 0 0 20%}form fieldset>ol>li fieldset:not(.has_many_fields) ol li{padding:0;border:0}form fieldset>ol>li fieldset.has_many_fields ol{float:left;width:100%;margin:0;padding:0}form input[type=text],form input[type=password],form input[type=email],form input[type=number],form input[type=url],form input[type=tel],form textarea{width:calc(80% - 22px);border:1px solid #c9d0d6;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;font-size:0.95em;font-family:Helvetica, Arial, sans-serif;outline:none;padding:8px 10px 7px}form input[type=text]:focus,form input[type=password]:focus,form input[type=email]:focus,form input[type=number]:focus,form input[type=url]:focus,form input[type=tel]:focus,form textarea:focus{border:1px solid #99a2aa;box-shadow:0 0 4px #99a2aa;-moz-box-shadow:0 0 4px #99a2aa;-webkit-box-shadow:0 0 4px #99a2aa}form fieldset>ol>li p.inline-hints{font-size:0.95em;font-style:italic;color:#666;margin:0.5em 0 0 20%}form fieldset>ol>li.date fieldset ol li,form fieldset>ol>li.time fieldset ol li,form fieldset>ol>li.datetime fieldset ol li,form fieldset>ol>li.date_select fieldset ol li{float:left;width:auto;margin:0 0.5em 0 0}form fieldset>ol>li.date fieldset ol li label,form fieldset>ol>li.time fieldset ol li label,form fieldset>ol>li.datetime fieldset ol li label,form fieldset>ol>li.date_select fieldset ol li label{display:none}form fieldset>ol>li.date fieldset ol li input,form fieldset>ol>li.time fieldset ol li input,form fieldset>ol>li.datetime fieldset ol li input,form fieldset>ol>li.date_select fieldset ol li input{display:inline;margin:0;padding:0}form fieldset>ol>li.check_boxes fieldset ol,form fieldset>ol>li.radio fieldset ol{margin-bottom:-0.6em}form fieldset>ol>li.check_boxes fieldset ol li,form fieldset>ol>li.radio fieldset ol li{margin:0.1em 0 0.5em 0}form fieldset>ol>li.check_boxes fieldset ol li label,form fieldset>ol>li.radio fieldset ol li label{float:none;width:100%}form fieldset>ol>li.check_boxes fieldset ol li label input,form fieldset>ol>li.radio fieldset ol li label input{margin-right:0.2em}form fieldset>ol>li.boolean{height:1.1em}form fieldset>ol>li.boolean label{width:80%;padding-left:20%;padding-right:10px;text-transform:none !important;font-weight:normal}form fieldset>ol>li.boolean label input{margin:0 0.5em 0 0.2em}form fieldset>ol>li.hidden{padding:0}form fieldset>ol>li p.inline-errors{color:#932419;font-weight:bold;margin:0.3em 0 0 20%}form fieldset>ol>li ul.errors{color:#932419;margin:0.5em 0 0 20%;list-style:square}form fieldset>ol>li ul.errors li{padding:0;border:none;display:list-item}form fieldset>ol>li.error input[type=text],form fieldset>ol>li.error input[type=password],form fieldset>ol>li.error input[type=email],form fieldset>ol>li.error input[type=number],form fieldset>ol>li.error input[type=url],form fieldset>ol>li.error input[type=tel],form fieldset>ol>li.error textarea{border:1px solid #932419}form ul.errors{background:#fae6e4;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;color:#932419;font-weight:bold;margin-bottom:10px;padding:10px;list-style:square}form ul.errors li{margin-left:15px;padding:0;border:none;display:list-item}form input[type=submit]{-webkit-border-radius:200px;-moz-border-radius:200px;border-radius:200px;display:inline-block;font-weight:bold;font-size:1.0em;font-family:Helvetica, Arial, sans-serif;line-height:12px;margin-right:3px;padding:7px 16px 6px;text-decoration:none;-webkit-font-smoothing:antialiased;background:#838a90;background:-webkit-linear-gradient(-90deg, #838a90, #414549);background:-moz-linear-gradient(-90deg, #838a90, #414549);background:linear, -90deg, #838a90, #414549;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF838A90', endColorstr='#FF414549');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF838A90', endColorstr='#FF414549');text-shadow:black 0 1px 0;box-shadow:0 1px 1px rgba(0,0,0,0.1),0 1px 0 0px rgba(255,255,255,0.2) inset;border:solid 1px #484e53;border-color:#484e53;border-top-color:#616a71;border-right-color:#484e53;border-bottom-color:#363b3f;border-left-color:#484e53;color:#efefef;cursor:pointer}form input[type=submit].disabled{opacity:0.5;cursor:default}form input[type=submit]:not(.disabled):hover{background:#8b9297;background:-webkit-linear-gradient(-90deg, #8b9297, #484d51);background:-moz-linear-gradient(-90deg, #8b9297, #484d51);background:linear, -90deg, #8b9297, #484d51;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF8B9297', endColorstr='#FF484D51');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF8B9297', endColorstr='#FF484D51')}form input[type=submit]:not(.disabled):active{box-shadow:0 1px 3px rgba(0,0,0,0.4) inset,0 1px 0 0px #fff;background:#71797f;background:-webkit-linear-gradient(-90deg, #71797f, #35383b);background:-moz-linear-gradient(-90deg, #71797f, #35383b);background:linear, -90deg, #71797f, #35383b;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF71797F', endColorstr='#FF35383B');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF71797F', endColorstr='#FF35383B')}form .buttons,form .actions{margin-top:15px}form .buttons input[type=submit],form .actions input[type=submit]{margin-right:10px}form fieldset.buttons li,form fieldset.actions li{float:left;padding:0}form fieldset.buttons li.cancel a,form fieldset.actions li.cancel a{-webkit-border-radius:200px;-moz-border-radius:200px;border-radius:200px;display:inline-block;font-weight:bold;font-size:1.0em;font-family:Helvetica, Arial, sans-serif;line-height:12px;margin-right:3px;padding:7px 16px 6px;text-decoration:none;-webkit-font-smoothing:antialiased;background:white;background:-webkit-linear-gradient(-90deg, #fff, #e7e7e7);background:-moz-linear-gradient(-90deg, #fff, #e7e7e7);background:linear, -90deg, white, #e7e7e7;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFE7E7E7');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFE7E7E7');box-shadow:0 1px 1px rgba(0,0,0,0.1),0 1px 0 0 rgba(255,255,255,0.8) inset;border:solid 1px #c7c7c7;border-color:#c7c7c7;border-top-color:lightgrey;border-right-color:#c7c7c7;border-bottom-color:#c2c2c2;border-left-color:#c7c7c7;text-shadow:white 0 1px 0;color:#5e6469}form fieldset.buttons li.cancel a.disabled,form fieldset.actions li.cancel a.disabled{opacity:0.5;cursor:default}form fieldset.buttons li.cancel a:not(.disabled):hover,form fieldset.actions li.cancel a:not(.disabled):hover{background:white;background:-webkit-linear-gradient(-90deg, #fff, #f1f1f1);background:-moz-linear-gradient(-90deg, #fff, #f1f1f1);background:linear, -90deg, white, #f1f1f1;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFF1F1F1');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFF1F1F1')}form fieldset.buttons li.cancel a:not(.disabled):active,form fieldset.actions li.cancel a:not(.disabled):active{box-shadow:0 1px 2px rgba(0,0,0,0.22) inset,0 1px 0 0px #eee;border-color:#b9b9b9;border-top-color:#c2c2c2;border-right-color:#b9b9b9;border-bottom-color:#b7b7b7;border-left-color:#b9b9b9;background:#f3f3f3;background:-webkit-linear-gradient(-90deg, #f3f3f3, #d8d8d8);background:-moz-linear-gradient(-90deg, #f3f3f3, #d8d8d8);background:linear, -90deg, #f3f3f3, #d8d8d8;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFF3F3F3', endColorstr='#FFD8D8D8');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFF3F3F3', endColorstr='#FFD8D8D8')}form fieldset.buttons li.cancel a span.icon svg path,form fieldset.buttons li.cancel a span.icon svg polygon,form fieldset.buttons li.cancel a span.icon svg rect,form fieldset.buttons li.cancel a span.icon svg circle,form fieldset.actions li.cancel a span.icon svg path,form fieldset.actions li.cancel a span.icon svg polygon,form fieldset.actions li.cancel a span.icon svg rect,form fieldset.actions li.cancel a span.icon svg circle{fill:#777777 !important}form fieldset.buttons li.cancel a span.icon,form fieldset.actions li.cancel a span.icon{width:9px;height:9px}.sidebar_section label{display:block;text-transform:uppercase;color:#5e6469;font-size:0.9em;font-weight:bold}.sidebar_section select{width:240px}.sidebar_section input[type=text],.sidebar_section input[type=password],.sidebar_section input[type=email],.sidebar_section input[type=url],.sidebar_section input[type=tel],.sidebar_section textarea{width:220px}form.filter_form .filter_form_field{margin-bottom:10px;clear:both}form.filter_form .filter_form_field.select_and_search input[type=text]{margin-left:16px;width:88px}form.filter_form .filter_form_field.select_and_search select{width:108px}form.filter_form .filter_form_field.filter_check_boxes label{margin-bottom:3px}form.filter_form .filter_form_field.filter_check_boxes fieldset{margin-bottom:0px;padding-bottom:0px}form.filter_form .filter_form_field.filter_check_boxes .check_boxes_wrapper label{font-weight:normal;margin-bottom:3px;text-transform:none;font-size:1.0em}form.filter_form .filter_form_field.filter_check_boxes .check_boxes_wrapper label input{vertical-align:baseline}form.filter_form .filter_form_field.filter_date_range .seperator{display:inline-block;text-align:center;width:12px}form.filter_form .filter_form_field.filter_date_range input[type=text]{background:#fff url(/assets/active_admin/datepicker/datepicker-input-icon-20df875ab8a44d588cbfd3d8018a52b9.png) no-repeat 100% 7px;padding-right:27px;width:71px}form.filter_form a.clear_filters_btn{-webkit-border-radius:200px;-moz-border-radius:200px;border-radius:200px;display:inline-block;font-weight:bold;font-size:1.0em;font-family:Helvetica, Arial, sans-serif;line-height:12px;margin-right:3px;padding:7px 16px 6px;text-decoration:none;-webkit-font-smoothing:antialiased;background:white;background:-webkit-linear-gradient(-90deg, #fff, #e7e7e7);background:-moz-linear-gradient(-90deg, #fff, #e7e7e7);background:linear, -90deg, white, #e7e7e7;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFE7E7E7');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFE7E7E7');box-shadow:0 1px 1px rgba(0,0,0,0.1),0 1px 0 0 rgba(255,255,255,0.8) inset;border:solid 1px #c7c7c7;border-color:#c7c7c7;border-top-color:lightgrey;border-right-color:#c7c7c7;border-bottom-color:#c2c2c2;border-left-color:#c7c7c7;text-shadow:white 0 1px 0;color:#5e6469}form.filter_form a.clear_filters_btn.disabled{opacity:0.5;cursor:default}form.filter_form a.clear_filters_btn:not(.disabled):hover{background:white;background:-webkit-linear-gradient(-90deg, #fff, #f1f1f1);background:-moz-linear-gradient(-90deg, #fff, #f1f1f1);background:linear, -90deg, white, #f1f1f1;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFF1F1F1');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFF1F1F1')}form.filter_form a.clear_filters_btn:not(.disabled):active{box-shadow:0 1px 2px rgba(0,0,0,0.22) inset,0 1px 0 0px #eee;border-color:#b9b9b9;border-top-color:#c2c2c2;border-right-color:#b9b9b9;border-bottom-color:#b7b7b7;border-left-color:#b9b9b9;background:#f3f3f3;background:-webkit-linear-gradient(-90deg, #f3f3f3, #d8d8d8);background:-moz-linear-gradient(-90deg, #f3f3f3, #d8d8d8);background:linear, -90deg, #f3f3f3, #d8d8d8;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFF3F3F3', endColorstr='#FFD8D8D8');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFF3F3F3', endColorstr='#FFD8D8D8')}.comments .active_admin_comment{clear:both;margin-top:10px;margin-bottom:40px;max-width:700px}.comments .active_admin_comment .active_admin_comment_meta{width:130px;float:left;overflow:hidden;font-size:0.9em;color:#767e84}.comments .active_admin_comment .active_admin_comment_meta .active_admin_comment_author{font-size:1.2em;font-weight:bold;margin:0;color:#5e6469}.comments .active_admin_comment .active_admin_comment_body{margin-left:150px}.comments form.active_admin_comment{margin:0;padding:0;margin-left:150px}.comments form.active_admin_comment fieldset.inputs{margin:0;padding:0;background:none;box-shadow:none;-moz-box-shadow:none;-webkit-box-shadow:none}.comments form.active_admin_comment li{padding:0}.comments form.active_admin_comment fieldset.buttons{padding:0;margin-top:5px}body.logged_in .flashes .flash{background:#f7f1d3;background:-webkit-linear-gradient(-90deg, #f7f1d3, #f5edc5);background:-moz-linear-gradient(-90deg, #f7f1d3, #f5edc5);background:linear, -90deg, #f7f1d3, #f5edc5;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFF7F1D3', endColorstr='#FFF5EDC5');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFF7F1D3', endColorstr='#FFF5EDC5');text-shadow:#fafafa 0 1px 0;border-bottom:1px solid #eee098;color:#cb9810;font-weight:bold;font-size:1.1em;line-height:1.0em;padding:13px 30px 11px;position:relative}body.logged_in .flashes .flash.flash_notice{background:#dce9dd;background:-webkit-linear-gradient(-90deg, #dce9dd, #ccdfcd);background:-moz-linear-gradient(-90deg, #dce9dd, #ccdfcd);background:linear, -90deg, #dce9dd, #ccdfcd;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFDCE9DD', endColorstr='#FFCCDFCD');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFDCE9DD', endColorstr='#FFCCDFCD');border-bottom:1px solid #adcbaf;color:#416347}body.logged_in .flashes .flash.flash_error{background:#f5e4e4;background:-webkit-linear-gradient(-90deg, #f5e4e4, #f1dcdc);background:-moz-linear-gradient(-90deg, #f5e4e4, #f1dcdc);background:linear, -90deg, #f5e4e4, #f1dcdc;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFF5E4E4', endColorstr='#FFF1DCDC');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFF5E4E4', endColorstr='#FFF1DCDC');border-bottom:1px solid #e0c2c0;color:#b33c33}body.logged_out .flash{box-shadow:none;-moz-box-shadow:none;-webkit-box-shadow:none;text-shadow:white 0 1px 0;background:none;color:#666;font-weight:bold;line-height:1.0em;padding:0;margin-bottom:8px}.ui-datepicker{background:#fff;-webkit-background-clip:padding-box;-moz-background-clip:padding-box;background-clip:padding-box;color:#fff;display:none;margin-top:2px;padding:0;text-align:center;width:160px;background:url(/assets/active_admin/datepicker/datepicker-nipple-c6e265f4a33a97853a69662e6350cb31.png) no-repeat 0 -40px}.ui-datepicker a{text-decoration:none}.ui-datepicker a:hover{cursor:pointer}.ui-datepicker .ui-datepicker-header{background:url(/assets/active_admin/datepicker/datepicker-header-bg-bcad4373bcdc56124322dea658739849.png) no-repeat 0px 0px;height:12px;padding:16px 7px 8px;position:relative;z-index:2000}.ui-datepicker .ui-datepicker-header .ui-datepicker-title{text-shadow:black 0 1px 0;color:#fff;display:block;font-size:1.1em;font-weight:bold;line-height:0.8em;text-align:center}.ui-datepicker .ui-datepicker-header a{color:#fff;display:block;height:19px;margin-top:-4px;width:20px}.ui-datepicker .ui-datepicker-header a.ui-datepicker-prev{float:left;background:url(/assets/active_admin/datepicker/datepicker-prev-link-icon-ce5f918e536f436ca2095a9e7442c6df.png) no-repeat 2px 5px}.ui-datepicker .ui-datepicker-header a.ui-datepicker-next{float:right;background:url(/assets/active_admin/datepicker/datepicker-next-link-icon-f9ef6d04c65df1cb5bda725ebba623a1.png) no-repeat 12px 5px}.ui-datepicker .ui-datepicker-header a:active{margin-top:-3px;height:18px}.ui-datepicker .ui-datepicker-header a span{display:none}.ui-datepicker table.ui-datepicker-calendar{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px;-moz-border-radius-bottomright:3px;-moz-border-radius-bottomleft:3px;-webkit-border-bottom-right-radius:3px;-webkit-border-bottom-left-radius:3px;box-shadow:0 1px 6px rgba(0,0,0,0.26);-moz-box-shadow:0 1px 6px rgba(0,0,0,0.26);-webkit-box-shadow:0 1px 6px rgba(0,0,0,0.26);background-color:#f4f4f4;border:solid 1px #63686e;left:2px;margin-bottom:0px;position:relative;top:-2px;width:156px}.ui-datepicker table.ui-datepicker-calendar td,.ui-datepicker table.ui-datepicker-calendar th{padding:0px;text-align:center}.ui-datepicker table.ui-datepicker-calendar thead th{background-color:#dbdddf;color:#333333;font-weight:normal;font-size:0.8em;padding-top:1px}.ui-datepicker table.ui-datepicker-calendar tbody{color:#666666}.ui-datepicker table.ui-datepicker-calendar tbody td{border:none;height:24px;width:22px}.ui-datepicker table.ui-datepicker-calendar tbody td a{-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;color:#666666;font-weight:bold;font-size:0.85em;padding:4px}.ui-datepicker table.ui-datepicker-calendar tbody td a.ui-state-active{background-color:#5a5f64;color:#fff}.ui-datepicker table.ui-datepicker-calendar tbody td a.ui-state-active.ui-state-hover{background-color:#5a5f64;color:#fff}.ui-datepicker table.ui-datepicker-calendar tbody td a.ui-state-hover{background-color:#eceef0}.ui-datepicker table.ui-datepicker-calendar tbody td a.ui-state-highlight{background-color:#dbdddf}.popover{display:inline-block;position:absolute;background-color:white;padding:2px;box-shadow:rgba(0,0,0,0.4) 0 1px 3px,#838a90 0px 1px 0px 0px inset;background-color:#5e6469;background:#686e74;background:-webkit-linear-gradient(-90deg, #686e74, #52575c);background:-moz-linear-gradient(-90deg, #686e74, #52575c);background:linear, -90deg, #686e74, #52575c;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF686E74', endColorstr='#FF52575C');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF686E74', endColorstr='#FF52575C');border:solid 1px #464a4e;border-top-color:#545a5e;border-bottom-color:#35383b;border-radius:4px}.popover .popover_nipple{content:"";position:absolute;top:-6px;display:block;width:0;height:0;border-width:0 6px 6px;border-style:solid;border-color:#545a5e transparent;z-index:100}.popover .popover_nipple:before{content:' ';position:absolute;width:0;height:0;border-width:0 5px 5px;border-style:solid;border-color:#838a90 transparent;left:-5px;top:1px}.popover .popover_nipple:after{content:' ';position:absolute;width:0;height:0;border-width:0 5px 5px;border-style:solid;border-color:#686e74 transparent;left:-5px;top:2px}.popover .popover_contents{display:block;background-color:#FFF;border:solid 1px #464a4e;box-shadow:#6a7176 0px 1px 0px 0px;border-radius:3px;margin:0;overflow:hidden;padding:8px}.popover ul.popover_contents{list-style-type:none;padding:0}.popover ul.popover_contents li{display:block;border-bottom:solid 1px #ebebeb;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.popover ul.popover_contents li a{display:block;-webkit-box-sizing:padding-box;-moz-box-sizing:padding-box;box-sizing:padding-box;font-size:0.95em;font-weight:bold;padding:7px 16px 5px;text-decoration:none;text-align:center;-webkit-font-smoothing:antialiased}.popover ul.popover_contents li a:hover{background:#75a1c2;background:-webkit-linear-gradient(-90deg, #75a1c2, #608cb4);background:-moz-linear-gradient(-90deg, #75a1c2, #608cb4);background:linear, -90deg, #75a1c2, #608cb4;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF75A1C2', endColorstr='#FF608CB4');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF75A1C2', endColorstr='#FF608CB4');text-shadow:#5a83aa 0 1px 0;color:#FFF}.popover ul.popover_contents li a:active{background:#608cb4;background:-webkit-linear-gradient(-90deg, #608cb4, #75a1c2);background:-moz-linear-gradient(-90deg, #608cb4, #75a1c2);background:linear, -90deg, #608cb4, #75a1c2;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF608CB4', endColorstr='#FF75A1C2');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF608CB4', endColorstr='#FF75A1C2');color:#FFF}.popover ul.popover_contents li:first-child a{border-top-left-radius:2px;border-top-right-radius:2px}.popover ul.popover_contents li:last-child{border:none}.popover ul.popover_contents li:last-child a{border-bottom-left-radius:2px;border-bottom-right-radius:2px}table tr td{vertical-align:top}table.index_table{width:100%;margin-bottom:10px;border:0;border-spacing:0}table.index_table th{background:#efefef;background:-webkit-linear-gradient(-90deg, #efefef, #dfe1e2);background:-moz-linear-gradient(-90deg, #efefef, #dfe1e2);background:linear, -90deg, #efefef, #dfe1e2;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEFEFEF', endColorstr='#FFDFE1E2');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEFEFEF', endColorstr='#FFDFE1E2');text-shadow:white 0 1px 0;border:solid 1px #cdcdcd;border-color:#d4d4d4;border-top-color:#e6e6e6;border-right-color:#d4d4d4;border-bottom-color:#cdcdcd;border-left-color:#d4d4d4;box-shadow:0 1px 3px rgba(0,0,0,0.12),0 0 1px #fff inset;font-size:1.0em;font-weight:bold;line-height:18px;margin-bottom:0.5em;color:#5e6469;padding:5px 10px 3px 10px;border-right:none;text-align:left;padding-left:12px;padding-right:12px}table.index_table th span.icon svg path,table.index_table th span.icon svg polygon,table.index_table th span.icon svg rect,table.index_table th span.icon svg circle{fill:#5e6469 !important}table.index_table th span.icon{width:1em;height:1em}table.index_table th a,table.index_table th a:link,table.index_table th a:visited{color:#5e6469;text-decoration:none;display:block;white-space:nowrap;-webkit-font-smoothing:antialiased}table.index_table th.sortable a{background:url(/assets/active_admin/orderable-61b5d7f5855b4fbc6b718755d542b71b.png) no-repeat 0 4px;padding-left:13px}table.index_table th.sorted-asc a{background-position:0 -27px}table.index_table th.sorted-desc a{background-position:0 -56px}table.index_table th.sorted-asc,table.index_table th.sorted-desc{background:#e2e2e2;background:-webkit-linear-gradient(-90deg, #e2e2e2, #d2d4d6);background:-moz-linear-gradient(-90deg, #e2e2e2, #d2d4d6);background:linear, -90deg, #e2e2e2, #d2d4d6;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFE2E2E2', endColorstr='#FFD2D4D6');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFE2E2E2', endColorstr='#FFD2D4D6')}table.index_table th:last-child{border-right:solid 1px #d4d4d4}table.index_table tr.even td{background:#f4f5f5}table.index_table tr.selected td{background:#d9e4ec}table.index_table td{padding:10px 12px 8px 12px;border-bottom:1px solid #e8e8e8;vertical-align:top}.panel_contents table{margin-top:5px}.panel_contents table th{padding-top:10px;background:none;color:#5e6469;box-shadow:none;-moz-box-shadow:none;-webkit-box-shadow:none;text-shadow:white 0 1px 0;text-transform:uppercase;border-bottom:1px solid #ccc}.panel_contents table tr.odd td{background:#ecedee}.panel_contents table tr.even td{background:#f4f5f5}.attributes_table{overflow:hidden}.attributes_table table col.even{background:#f4f5f5}.attributes_table table col.odd{background:#ecedee}.attributes_table table th,.attributes_table table td{padding:8px 12px 6px 12px;vertical-align:top;border-bottom:1px solid #e8e8e8}.attributes_table table th{box-shadow:none;-moz-box-shadow:none;-webkit-box-shadow:none;background:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);-ms-filter:"progid:DXImageTransform.Microsoft.gradient(enabled=false)";width:150px;font-size:0.9em;padding-left:0;text-transform:uppercase;color:#5e6469;text-shadow:white 0 1px 0}.attributes_table table td .empty{color:#bbb;font-size:0.8em;text-transform:uppercase;letter-spacing:0.2em}.sidebar_section .attributes_table th{width:50px}#collection_selection_toggle_panel:after{content:"";display:table;clear:both}#collection_selection_toggle_panel>.resource_selection_toggle_cell{float:left}#collection_selection_toggle_panel #collection_selection_toggle_explaination{float:left;margin-left:5px;font-style:italic}.ui-widget-overlay{position:fixed;background:rgba(0,0,0,0.2);top:0;left:0;right:0;bottom:0;z-index:1001}.ui-dialog{position:fixed;z-index:1002;background:#f4f4f4;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;box-shadow:inset 0 1px 4px #dddddd;-moz-box-shadow:inset 0 1px 4px #dddddd;-webkit-box-shadow:inset 0 1px 4px #dddddd;box-shadow:rgba(0,0,0,0.5) 0 0 10px}.ui-dialog .ui-dialog-titlebar{background:#efefef;background:-webkit-linear-gradient(-90deg, #efefef, #dfe1e2);background:-moz-linear-gradient(-90deg, #efefef, #dfe1e2);background:linear, -90deg, #efefef, #dfe1e2;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEFEFEF', endColorstr='#FFDFE1E2');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEFEFEF', endColorstr='#FFDFE1E2');text-shadow:white 0 1px 0;border:solid 1px #cdcdcd;border-color:#d4d4d4;border-top-color:#e6e6e6;border-right-color:#d4d4d4;border-bottom-color:#cdcdcd;border-left-color:#d4d4d4;box-shadow:0 1px 3px rgba(0,0,0,0.12),0 0 1px #fff inset;font-size:1.0em;font-weight:bold;line-height:18px;margin-bottom:0.5em;color:#5e6469;padding:5px 10px 3px 10px}.ui-dialog .ui-dialog-titlebar span.icon svg path,.ui-dialog .ui-dialog-titlebar span.icon svg polygon,.ui-dialog .ui-dialog-titlebar span.icon svg rect,.ui-dialog .ui-dialog-titlebar span.icon svg circle{fill:#5e6469 !important}.ui-dialog .ui-dialog-titlebar span.icon{width:1em;height:1em}.ui-dialog .ui-dialog-titlebar span{font-size:1.1em}.ui-dialog .ui-dialog-titlebar-close{display:none}.ui-dialog ul{list-style-type:none}.ui-dialog li{margin:10px 0}.ui-dialog label{margin-right:10px}.ui-dialog .ui-dialog-buttonpane,.ui-dialog form{padding:7px 15px 13px}.ui-dialog .ui-dialog-buttonpane button:first-child{-webkit-border-radius:200px;-moz-border-radius:200px;border-radius:200px;display:inline-block;font-weight:bold;font-size:1.0em;font-family:Helvetica, Arial, sans-serif;line-height:12px;margin-right:3px;padding:7px 16px 6px;text-decoration:none;-webkit-font-smoothing:antialiased;background:#838a90;background:-webkit-linear-gradient(-90deg, #838a90, #414549);background:-moz-linear-gradient(-90deg, #838a90, #414549);background:linear, -90deg, #838a90, #414549;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF838A90', endColorstr='#FF414549');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF838A90', endColorstr='#FF414549');text-shadow:black 0 1px 0;box-shadow:0 1px 1px rgba(0,0,0,0.1),0 1px 0 0px rgba(255,255,255,0.2) inset;border:solid 1px #484e53;border-color:#484e53;border-top-color:#616a71;border-right-color:#484e53;border-bottom-color:#363b3f;border-left-color:#484e53;color:#efefef}.ui-dialog .ui-dialog-buttonpane button:first-child.disabled{opacity:0.5;cursor:default}.ui-dialog .ui-dialog-buttonpane button:first-child:not(.disabled):hover{background:#8b9297;background:-webkit-linear-gradient(-90deg, #8b9297, #484d51);background:-moz-linear-gradient(-90deg, #8b9297, #484d51);background:linear, -90deg, #8b9297, #484d51;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF8B9297', endColorstr='#FF484D51');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF8B9297', endColorstr='#FF484D51')}.ui-dialog .ui-dialog-buttonpane button:first-child:not(.disabled):active{box-shadow:0 1px 3px rgba(0,0,0,0.4) inset,0 1px 0 0px #fff;background:#71797f;background:-webkit-linear-gradient(-90deg, #71797f, #35383b);background:-moz-linear-gradient(-90deg, #71797f, #35383b);background:linear, -90deg, #71797f, #35383b;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF71797F', endColorstr='#FF35383B');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF71797F', endColorstr='#FF35383B')}.ui-dialog .ui-dialog-buttonpane button:last-child{-webkit-border-radius:200px;-moz-border-radius:200px;border-radius:200px;display:inline-block;font-weight:bold;font-size:1.0em;font-family:Helvetica, Arial, sans-serif;line-height:12px;margin-right:3px;padding:7px 16px 6px;text-decoration:none;-webkit-font-smoothing:antialiased;background:white;background:-webkit-linear-gradient(-90deg, #fff, #e7e7e7);background:-moz-linear-gradient(-90deg, #fff, #e7e7e7);background:linear, -90deg, white, #e7e7e7;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFE7E7E7');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFE7E7E7');box-shadow:0 1px 1px rgba(0,0,0,0.1),0 1px 0 0 rgba(255,255,255,0.8) inset;border:solid 1px #c7c7c7;border-color:#c7c7c7;border-top-color:lightgrey;border-right-color:#c7c7c7;border-bottom-color:#c2c2c2;border-left-color:#c7c7c7;text-shadow:white 0 1px 0;color:#5e6469}.ui-dialog .ui-dialog-buttonpane button:last-child.disabled{opacity:0.5;cursor:default}.ui-dialog .ui-dialog-buttonpane button:last-child:not(.disabled):hover{background:white;background:-webkit-linear-gradient(-90deg, #fff, #f1f1f1);background:-moz-linear-gradient(-90deg, #fff, #f1f1f1);background:linear, -90deg, white, #f1f1f1;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFF1F1F1');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFF1F1F1')}.ui-dialog .ui-dialog-buttonpane button:last-child:not(.disabled):active{box-shadow:0 1px 2px rgba(0,0,0,0.22) inset,0 1px 0 0px #eee;border-color:#b9b9b9;border-top-color:#c2c2c2;border-right-color:#b9b9b9;border-bottom-color:#b7b7b7;border-left-color:#b9b9b9;background:#f3f3f3;background:-webkit-linear-gradient(-90deg, #f3f3f3, #d8d8d8);background:-moz-linear-gradient(-90deg, #f3f3f3, #d8d8d8);background:linear, -90deg, #f3f3f3, #d8d8d8;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFF3F3F3', endColorstr='#FFD8D8D8');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFF3F3F3', endColorstr='#FFD8D8D8')}.blank_slate_container{clear:both;text-align:center}.blank_slate_container .blank_slate{-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;-webkit-font-smoothing:antialiased;border:1px dashed #dadada;color:#aaaaaa;display:inline-block;font-size:1.2em;font-weight:bold;padding:14px 25px;text-align:center}.blank_slate_container .blank_slate small{display:block;font-size:0.9em;font-weight:normal}.admin_dashboard .blank_slate_container .blank_slate{margin-top:40px;margin-bottom:40px}.with_sidebar .blank_slate_container .blank_slate{margin-top:80px}.breadcrumb{display:block;font-size:0.9em;font-weight:normal;line-height:1.0em;margin-bottom:12px;text-transform:uppercase}.breadcrumb a,.breadcrumb a:link,.breadcrumb a:visited,.breadcrumb a:active{color:#8a949e;text-decoration:none}.breadcrumb a:hover{text-decoration:underline}.breadcrumb .breadcrumb_sep{margin:0 2px;color:#aab2ba}.dropdown_menu{display:inline}.dropdown_menu .dropdown_menu_button{-webkit-border-radius:200px;-moz-border-radius:200px;border-radius:200px;display:inline-block;font-weight:bold;font-size:1.0em;font-family:Helvetica, Arial, sans-serif;line-height:12px;margin-right:3px;padding:7px 16px 6px;text-decoration:none;-webkit-font-smoothing:antialiased;background:white;background:-webkit-linear-gradient(-90deg, #fff, #e7e7e7);background:-moz-linear-gradient(-90deg, #fff, #e7e7e7);background:linear, -90deg, white, #e7e7e7;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFE7E7E7');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFE7E7E7');box-shadow:0 1px 1px rgba(0,0,0,0.1),0 1px 0 0 rgba(255,255,255,0.8) inset;border:solid 1px #c7c7c7;border-color:#c7c7c7;border-top-color:lightgrey;border-right-color:#c7c7c7;border-bottom-color:#c2c2c2;border-left-color:#c7c7c7;text-shadow:white 0 1px 0;color:#5e6469;position:relative;padding-right:22px !important;cursor:pointer}.dropdown_menu .dropdown_menu_button.disabled{opacity:0.5;cursor:default}.dropdown_menu .dropdown_menu_button:not(.disabled):hover{background:white;background:-webkit-linear-gradient(-90deg, #fff, #f1f1f1);background:-moz-linear-gradient(-90deg, #fff, #f1f1f1);background:linear, -90deg, white, #f1f1f1;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFF1F1F1');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFF1F1F1')}.dropdown_menu .dropdown_menu_button:not(.disabled):active{box-shadow:0 1px 2px rgba(0,0,0,0.22) inset,0 1px 0 0px #eee;border-color:#b9b9b9;border-top-color:#c2c2c2;border-right-color:#b9b9b9;border-bottom-color:#b7b7b7;border-left-color:#b9b9b9;background:#f3f3f3;background:-webkit-linear-gradient(-90deg, #f3f3f3, #d8d8d8);background:-moz-linear-gradient(-90deg, #f3f3f3, #d8d8d8);background:linear, -90deg, #f3f3f3, #d8d8d8;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFF3F3F3', endColorstr='#FFD8D8D8');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFF3F3F3', endColorstr='#FFD8D8D8')}.dropdown_menu .dropdown_menu_button:before{content:' ';position:absolute;width:0;height:0;border-width:3px 3px 0;border-style:solid;border-color:#FFF transparent;right:12px;top:45%}.dropdown_menu .dropdown_menu_button:after{content:' ';position:absolute;width:0;height:0;border-width:3px 3px 0;border-style:solid;border-color:#777 transparent;right:12px;top:45%}.dropdown_menu .dropdown_menu_nipple{content:"";position:absolute;top:-6px;display:block;width:0;height:0;border-width:0 6px 6px;border-style:solid;border-color:#545a5e transparent;z-index:100}.dropdown_menu .dropdown_menu_nipple:before{content:' ';position:absolute;width:0;height:0;border-width:0 5px 5px;border-style:solid;border-color:#838a90 transparent;left:-5px;top:1px}.dropdown_menu .dropdown_menu_nipple:after{content:' ';position:absolute;width:0;height:0;border-width:0 5px 5px;border-style:solid;border-color:#686e74 transparent;left:-5px;top:2px}.dropdown_menu .dropdown_menu_list_wrapper{display:inline-block;position:absolute;background-color:white;padding:2px;box-shadow:rgba(0,0,0,0.4) 0 1px 3px,#838a90 0px 1px 0px 0px inset;background-color:#5e6469;background:#686e74;background:-webkit-linear-gradient(-90deg, #686e74, #52575c);background:-moz-linear-gradient(-90deg, #686e74, #52575c);background:linear, -90deg, #686e74, #52575c;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF686E74', endColorstr='#FF52575C');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF686E74', endColorstr='#FF52575C');border:solid 1px #464a4e;border-top-color:#545a5e;border-bottom-color:#35383b;border-radius:4px;z-index:2000;display:none}.dropdown_menu .dropdown_menu_list_wrapper .dropdown_menu_list{display:block;background-color:#FFF;border:solid 1px #464a4e;box-shadow:#6a7176 0px 1px 0px 0px;border-radius:3px;margin:0;overflow:hidden;padding:8px;list-style-type:none;padding:0}.dropdown_menu .dropdown_menu_list_wrapper .dropdown_menu_list li{display:block;border-bottom:solid 1px #ebebeb;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.dropdown_menu .dropdown_menu_list_wrapper .dropdown_menu_list li a{display:block;-webkit-box-sizing:padding-box;-moz-box-sizing:padding-box;box-sizing:padding-box;font-size:0.95em;font-weight:bold;padding:7px 16px 5px;text-decoration:none;text-align:center;-webkit-font-smoothing:antialiased;white-space:nowrap}.dropdown_menu .dropdown_menu_list_wrapper .dropdown_menu_list li a:hover{background:#75a1c2;background:-webkit-linear-gradient(-90deg, #75a1c2, #608cb4);background:-moz-linear-gradient(-90deg, #75a1c2, #608cb4);background:linear, -90deg, #75a1c2, #608cb4;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF75A1C2', endColorstr='#FF608CB4');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF75A1C2', endColorstr='#FF608CB4');text-shadow:#5a83aa 0 1px 0;color:#FFF}.dropdown_menu .dropdown_menu_list_wrapper .dropdown_menu_list li a:active{background:#608cb4;background:-webkit-linear-gradient(-90deg, #608cb4, #75a1c2);background:-moz-linear-gradient(-90deg, #608cb4, #75a1c2);background:linear, -90deg, #608cb4, #75a1c2;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF608CB4', endColorstr='#FF75A1C2');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF608CB4', endColorstr='#FF75A1C2');color:#FFF}.dropdown_menu .dropdown_menu_list_wrapper .dropdown_menu_list li:first-child a{border-top-left-radius:2px;border-top-right-radius:2px}.dropdown_menu .dropdown_menu_list_wrapper .dropdown_menu_list li:last-child{border:none}.dropdown_menu .dropdown_menu_list_wrapper .dropdown_menu_list li:last-child a{border-bottom-left-radius:2px;border-bottom-right-radius:2px}td span.icon svg path,td span.icon svg polygon,td span.icon svg rect,td span.icon svg circle,p span.icon svg path,p span.icon svg polygon,p span.icon svg rect,p span.icon svg circle{fill:#b3bcc1 !important}td span.icon,p span.icon{width:0.8em;height:0.8em}td span.icon,p span.icon{margin:0 3px}a.member_link{margin-right:7px;white-space:nowrap}a.button,a:link.button,a:visited.button,input[type=submit]{-webkit-border-radius:200px;-moz-border-radius:200px;border-radius:200px;display:inline-block;font-weight:bold;font-size:1.0em;font-family:Helvetica, Arial, sans-serif;line-height:12px;margin-right:3px;padding:7px 16px 6px;text-decoration:none;-webkit-font-smoothing:antialiased;background:#838a90;background:-webkit-linear-gradient(-90deg, #838a90, #414549);background:-moz-linear-gradient(-90deg, #838a90, #414549);background:linear, -90deg, #838a90, #414549;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF838A90', endColorstr='#FF414549');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF838A90', endColorstr='#FF414549');text-shadow:black 0 1px 0;box-shadow:0 1px 1px rgba(0,0,0,0.1),0 1px 0 0px rgba(255,255,255,0.2) inset;border:solid 1px #484e53;border-color:#484e53;border-top-color:#616a71;border-right-color:#484e53;border-bottom-color:#363b3f;border-left-color:#484e53;color:#efefef}a.button.disabled,a:link.button.disabled,a:visited.button.disabled,input[type=submit].disabled{opacity:0.5;cursor:default}a.button:not(.disabled):hover,a:link.button:not(.disabled):hover,a:visited.button:not(.disabled):hover,input[type=submit]:not(.disabled):hover{background:#8b9297;background:-webkit-linear-gradient(-90deg, #8b9297, #484d51);background:-moz-linear-gradient(-90deg, #8b9297, #484d51);background:linear, -90deg, #8b9297, #484d51;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF8B9297', endColorstr='#FF484D51');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF8B9297', endColorstr='#FF484D51')}a.button:not(.disabled):active,a:link.button:not(.disabled):active,a:visited.button:not(.disabled):active,input[type=submit]:not(.disabled):active{box-shadow:0 1px 3px rgba(0,0,0,0.4) inset,0 1px 0 0px #fff;background:#71797f;background:-webkit-linear-gradient(-90deg, #71797f, #35383b);background:-moz-linear-gradient(-90deg, #71797f, #35383b);background:linear, -90deg, #71797f, #35383b;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF71797F', endColorstr='#FF35383B');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF71797F', endColorstr='#FF35383B')}table.index_grid td{border:none;background:none;padding:0 20px 20px 0;margin:0}.columns{clear:both;padding:0}.columns .column{float:left}a,a:link,a:visited{color:#38678b;text-decoration:underline}a:hover{text-decoration:none}.paginated_collection_contents{clear:both}.pagination{float:right;font-size:0.9em;margin-left:10px}.pagination a{-webkit-border-radius:200px;-moz-border-radius:200px;border-radius:200px;display:inline-block;font-weight:bold;font-size:1.0em;font-family:Helvetica, Arial, sans-serif;line-height:12px;margin-right:3px;padding:7px 16px 6px;text-decoration:none;-webkit-font-smoothing:antialiased;background:white;background:-webkit-linear-gradient(-90deg, #fff, #e7e7e7);background:-moz-linear-gradient(-90deg, #fff, #e7e7e7);background:linear, -90deg, white, #e7e7e7;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFE7E7E7');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFE7E7E7');box-shadow:0 1px 1px rgba(0,0,0,0.1),0 1px 0 0 rgba(255,255,255,0.8) inset;border:solid 1px #c7c7c7;border-color:#c7c7c7;border-top-color:lightgrey;border-right-color:#c7c7c7;border-bottom-color:#c2c2c2;border-left-color:#c7c7c7;text-shadow:white 0 1px 0;color:#5e6469}.pagination a.disabled{opacity:0.5;cursor:default}.pagination a:not(.disabled):hover{background:white;background:-webkit-linear-gradient(-90deg, #fff, #f1f1f1);background:-moz-linear-gradient(-90deg, #fff, #f1f1f1);background:linear, -90deg, white, #f1f1f1;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFF1F1F1');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFF1F1F1')}.pagination a:not(.disabled):active{box-shadow:0 1px 2px rgba(0,0,0,0.22) inset,0 1px 0 0px #eee;border-color:#b9b9b9;border-top-color:#c2c2c2;border-right-color:#b9b9b9;border-bottom-color:#b7b7b7;border-left-color:#b9b9b9;background:#f3f3f3;background:-webkit-linear-gradient(-90deg, #f3f3f3, #d8d8d8);background:-moz-linear-gradient(-90deg, #f3f3f3, #d8d8d8);background:linear, -90deg, #f3f3f3, #d8d8d8;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFF3F3F3', endColorstr='#FFD8D8D8');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFF3F3F3', endColorstr='#FFD8D8D8')}.pagination span.page.current{-webkit-border-radius:200px;-moz-border-radius:200px;border-radius:200px;display:inline-block;font-weight:bold;font-size:1.0em;font-family:Helvetica, Arial, sans-serif;line-height:12px;margin-right:3px;padding:7px 16px 6px;text-decoration:none;-webkit-font-smoothing:antialiased;background:#838a90;background:-webkit-linear-gradient(-90deg, #838a90, #414549);background:-moz-linear-gradient(-90deg, #838a90, #414549);background:linear, -90deg, #838a90, #414549;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF838A90', endColorstr='#FF414549');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF838A90', endColorstr='#FF414549');text-shadow:black 0 1px 0;box-shadow:0 1px 1px rgba(0,0,0,0.1),0 1px 0 0px rgba(255,255,255,0.2) inset;border:solid 1px #484e53;border-color:#484e53;border-top-color:#616a71;border-right-color:#484e53;border-bottom-color:#363b3f;border-left-color:#484e53;color:#efefef}.pagination span.page.current.disabled{opacity:0.5;cursor:default}.pagination span.page.current:not(.disabled):hover{background:#8b9297;background:-webkit-linear-gradient(-90deg, #8b9297, #484d51);background:-moz-linear-gradient(-90deg, #8b9297, #484d51);background:linear, -90deg, #8b9297, #484d51;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF8B9297', endColorstr='#FF484D51');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF8B9297', endColorstr='#FF484D51')}.pagination span.page.current:not(.disabled):active{box-shadow:0 1px 3px rgba(0,0,0,0.4) inset,0 1px 0 0px #fff;background:#71797f;background:-webkit-linear-gradient(-90deg, #71797f, #35383b);background:-moz-linear-gradient(-90deg, #71797f, #35383b);background:linear, -90deg, #71797f, #35383b;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF71797F', endColorstr='#FF35383B');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF71797F', endColorstr='#FF35383B')}.pagination a,.pagination span.page.current{-webkit-border-radius:0px;-moz-border-radius:0px;border-radius:0px;margin-right:4px;padding:2px 5px}.pagination_information{float:right;margin-bottom:5px;color:#b3bcc1}.pagination_information b{color:#5c6469}.download_links{float:left}.section,.panel{background:#f4f4f4;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;box-shadow:inset 0 1px 4px #dddddd;-moz-box-shadow:inset 0 1px 4px #dddddd;-webkit-box-shadow:inset 0 1px 4px #dddddd;margin-bottom:20px}.section>h3,.panel>h3{background:#efefef;background:-webkit-linear-gradient(-90deg, #efefef, #dfe1e2);background:-moz-linear-gradient(-90deg, #efefef, #dfe1e2);background:linear, -90deg, #efefef, #dfe1e2;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEFEFEF', endColorstr='#FFDFE1E2');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEFEFEF', endColorstr='#FFDFE1E2');text-shadow:white 0 1px 0;border:solid 1px #cdcdcd;border-color:#d4d4d4;border-top-color:#e6e6e6;border-right-color:#d4d4d4;border-bottom-color:#cdcdcd;border-left-color:#d4d4d4;box-shadow:0 1px 3px rgba(0,0,0,0.12),0 0 1px #fff inset;font-size:1.0em;font-weight:bold;line-height:18px;margin-bottom:0.5em;color:#5e6469;padding:5px 10px 3px 10px}.section>h3 span.icon svg path,.section>h3 span.icon svg polygon,.section>h3 span.icon svg rect,.section>h3 span.icon svg circle,.panel>h3 span.icon svg path,.panel>h3 span.icon svg polygon,.panel>h3 span.icon svg rect,.panel>h3 span.icon svg circle{fill:#5e6469 !important}.section>h3 span.icon,.panel>h3 span.icon{width:1em;height:1em}.section>div,.panel>div{padding:3px 15px 15px 15px}.section hr,.panel hr{border:none;border-bottom:1px solid #E8E8E8}.sidebar_section{background:#f4f4f4;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;box-shadow:inset 0 1px 4px #dddddd;-moz-box-shadow:inset 0 1px 4px #dddddd;-webkit-box-shadow:inset 0 1px 4px #dddddd;margin-bottom:20px}.sidebar_section>h3{background:#efefef;background:-webkit-linear-gradient(-90deg, #efefef, #dfe1e2);background:-moz-linear-gradient(-90deg, #efefef, #dfe1e2);background:linear, -90deg, #efefef, #dfe1e2;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEFEFEF', endColorstr='#FFDFE1E2');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEFEFEF', endColorstr='#FFDFE1E2');text-shadow:white 0 1px 0;border:solid 1px #cdcdcd;border-color:#d4d4d4;border-top-color:#e6e6e6;border-right-color:#d4d4d4;border-bottom-color:#cdcdcd;border-left-color:#d4d4d4;box-shadow:0 1px 3px rgba(0,0,0,0.12),0 0 1px #fff inset;font-size:1.0em;font-weight:bold;line-height:18px;margin-bottom:0.5em;color:#5e6469;padding:5px 10px 3px 10px}.sidebar_section>h3 span.icon svg path,.sidebar_section>h3 span.icon svg polygon,.sidebar_section>h3 span.icon svg rect,.sidebar_section>h3 span.icon svg circle{fill:#5e6469 !important}.sidebar_section>h3 span.icon{width:1em;height:1em}.sidebar_section>div{padding:3px 15px 15px 15px}.sidebar_section hr{border:none;border-bottom:1px solid #E8E8E8}.columns{margin-bottom:10px}.scopes li .count{color:#8e979e;font-weight:normal;font-size:0.9em;line-height:10px}.status_tag{background:#cacaca;color:#fff;text-transform:uppercase;letter-spacing:0.15em;padding:3px 5px 2px 5px;font-size:0.8em}.status_tag.ok,.status_tag.published,.status_tag.complete,.status_tag.completed,.status_tag.green{background:#8daa92}.status_tag.warn,.status_tag.warning,.status_tag.orange{background:#e29b20}.status_tag.error,.status_tag.errored,.status_tag.red{background:#d45f53}.status_tag.yes{background:#6090db}.status_tag.no{background:grey}.table_tools{margin-bottom:16px}.table_tools:after{content:"";display:table;clear:both}.table_tools .dropdown_menu{float:left}a.table_tools_button,.table_tools .dropdown_menu_button{-webkit-border-radius:200px;-moz-border-radius:200px;border-radius:200px;display:inline-block;font-weight:bold;font-size:1.0em;font-family:Helvetica, Arial, sans-serif;line-height:12px;margin-right:3px;padding:7px 16px 6px;text-decoration:none;-webkit-font-smoothing:antialiased;background:white;background:-webkit-linear-gradient(-90deg, #fff, #e7e7e7);background:-moz-linear-gradient(-90deg, #fff, #e7e7e7);background:linear, -90deg, white, #e7e7e7;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFE7E7E7');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFE7E7E7');box-shadow:0 1px 1px rgba(0,0,0,0.1),0 1px 0 0 rgba(255,255,255,0.8) inset;border:solid 1px #c7c7c7;border-color:#c7c7c7;border-top-color:lightgrey;border-right-color:#c7c7c7;border-bottom-color:#c2c2c2;border-left-color:#c7c7c7;text-shadow:white 0 1px 0;color:#5e6469;background:white;background:-webkit-linear-gradient(-90deg, #fff, #f0f0f0);background:-moz-linear-gradient(-90deg, #fff, #f0f0f0);background:linear, -90deg, white, #f0f0f0;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFF0F0F0');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFF0F0F0');border-color:#d0d0d0;border-top-color:#d9d9d9;border-right-color:#d0d0d0;border-bottom-color:#c5c5c5;border-left-color:#d0d0d0;font-size:0.9em;padding:4px 14px 4px;margin:0}a.table_tools_button.disabled,.table_tools .dropdown_menu_button.disabled{opacity:0.5;cursor:default}a.table_tools_button:not(.disabled):hover,.table_tools .dropdown_menu_button:not(.disabled):hover{background:white;background:-webkit-linear-gradient(-90deg, #fff, #f1f1f1);background:-moz-linear-gradient(-90deg, #fff, #f1f1f1);background:linear, -90deg, white, #f1f1f1;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFF1F1F1');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFF1F1F1')}a.table_tools_button:not(.disabled):active,.table_tools .dropdown_menu_button:not(.disabled):active{box-shadow:0 1px 2px rgba(0,0,0,0.22) inset,0 1px 0 0px #eee;border-color:#b9b9b9;border-top-color:#c2c2c2;border-right-color:#b9b9b9;border-bottom-color:#b7b7b7;border-left-color:#b9b9b9;background:#f3f3f3;background:-webkit-linear-gradient(-90deg, #f3f3f3, #d8d8d8);background:-moz-linear-gradient(-90deg, #f3f3f3, #d8d8d8);background:linear, -90deg, #f3f3f3, #d8d8d8;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFF3F3F3', endColorstr='#FFD8D8D8');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFF3F3F3', endColorstr='#FFD8D8D8')}a.table_tools_button:not(.disabled):hover,.table_tools .dropdown_menu_button:not(.disabled):hover{background:white;background:-webkit-linear-gradient(-90deg, #fff, #f6f6f6);background:-moz-linear-gradient(-90deg, #fff, #f6f6f6);background:linear, -90deg, white, #f6f6f6;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFF6F6F6');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFF6F6F6')}a.table_tools_button:not(.disabled):active,.table_tools .dropdown_menu_button:not(.disabled):active{border-color:#c8c8c8;border-top-color:#d7d7d7;border-right-color:#c8c8c8;border-bottom-color:#c3c3c3;border-left-color:#c8c8c8;box-shadow:0 1px 1px 0 rgba(0,0,0,0.17) inset;background:white;background:-webkit-linear-gradient(-90deg, #fff, #e8e8e8);background:-moz-linear-gradient(-90deg, #fff, #e8e8e8);background:linear, -90deg, white, #e8e8e8;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFE8E8E8');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFE8E8E8')}.table_tools_segmented_control{list-style-type:none;padding:0;margin:0}.table_tools_segmented_control li{float:left}.table_tools_segmented_control li a{border-width:1px .5px 1px .5px;border-radius:0}.table_tools_segmented_control li:first-child a{border-left-width:1px;border-radius:12px 0 0 12px}.table_tools_segmented_control li:last-child a{border-right-width:1px;border-radius:0 12px 12px 0}.table_tools_segmented_control li.selected a{background:#f0f0f0;background:-webkit-linear-gradient(-90deg, #f0f0f0, #fdfdfd);background:-moz-linear-gradient(-90deg, #f0f0f0, #fdfdfd);background:linear, -90deg, #f0f0f0, #fdfdfd;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFF0F0F0', endColorstr='#FFFDFDFD');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFF0F0F0', endColorstr='#FFFDFDFD');box-shadow:0 1px 1px 0 rgba(0,0,0,0.1) inset;cursor:default}.table_tools_segmented_control li.selected a:hover{background:#f0f0f0;background:-webkit-linear-gradient(-90deg, #f0f0f0, #fdfdfd);background:-moz-linear-gradient(-90deg, #f0f0f0, #fdfdfd);background:linear, -90deg, #f0f0f0, #fdfdfd;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFF0F0F0', endColorstr='#FFFDFDFD');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFF0F0F0', endColorstr='#FFFDFDFD')}.indexes{float:right}.indexes li .count{color:#8e979e;font-weight:normal;font-size:0.9em;line-height:10px}body.logged_out{background:#e8e9ea}body.logged_out #content_wrapper{width:500px;margin:70px auto}body.logged_out #content_wrapper #active_admin_content{box-shadow:0 1px 2px rgba(0,0,0,0.37);-moz-box-shadow:0 1px 2px rgba(0,0,0,0.37);-webkit-box-shadow:0 1px 2px rgba(0,0,0,0.37);background:#fff;padding:13px 30px}body.logged_out h2{background:#efefef;background:-webkit-linear-gradient(-90deg, #efefef, #dfe1e2);background:-moz-linear-gradient(-90deg, #efefef, #dfe1e2);background:linear, -90deg, #efefef, #dfe1e2;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEFEFEF', endColorstr='#FFDFE1E2');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEFEFEF', endColorstr='#FFDFE1E2');text-shadow:white 0 1px 0;border:solid 1px #cdcdcd;border-color:#d4d4d4;border-top-color:#e6e6e6;border-right-color:#d4d4d4;border-bottom-color:#cdcdcd;border-left-color:#d4d4d4;box-shadow:0 1px 3px rgba(0,0,0,0.12),0 0 1px #fff inset;font-size:1.0em;font-weight:bold;line-height:18px;margin-bottom:0.5em;color:#5e6469;padding:5px 10px 3px 10px;background:#6a7176;background:-webkit-linear-gradient(-90deg, #6a7176, #4d5256);background:-moz-linear-gradient(-90deg, #6a7176, #4d5256);background:linear, -90deg, #6a7176, #4d5256;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF6A7176', endColorstr='#FF4D5256');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF6A7176', endColorstr='#FF4D5256');border-bottom:1px solid #44484b;text-shadow:black 0 1px 0;box-shadow:0 1px 3px rgba(0,0,0,0.3);border:none;color:#fff;margin:-13px -30px 20px -30px}body.logged_out h2 span.icon svg path,body.logged_out h2 span.icon svg polygon,body.logged_out h2 span.icon svg rect,body.logged_out h2 span.icon svg circle{fill:#5e6469 !important}body.logged_out h2 span.icon{width:1em;height:1em}body.logged_out #login form fieldset{box-shadow:none;-moz-box-shadow:none;-webkit-box-shadow:none;background:none;padding:0;margin-bottom:0}body.logged_out #login form fieldset li{padding:10px 0}body.logged_out #login form fieldset input[type=text],body.logged_out #login form fieldset input[type=email],body.logged_out #login form fieldset input[type=password]{width:70%}body.logged_out #login form fieldset.buttons{margin-left:20%}body.logged_out #login a{float:right;margin-top:-32px}#footer{padding:30px 30px;font-size:0.8em;clear:both}#footer p{padding-top:10px}#index_footer{padding-top:5px;text-align:right;font-size:0.85em}.index_content{clear:both}#wrapper{width:100%}.index #wrapper{display:table}#active_admin_content{margin:0;padding:30px}#active_admin_content #main_content_wrapper{float:left;width:100%}#active_admin_content #main_content_wrapper #main_content{margin-right:300px}#active_admin_content.without_sidebar #main_content_wrapper #main_content{margin-right:0}#active_admin_content #sidebar{float:left;width:270px;margin-left:-270px}#title_bar{background:#efefef;background:-webkit-linear-gradient(-90deg, #efefef, #dfe1e2);background:-moz-linear-gradient(-90deg, #efefef, #dfe1e2);background:linear, -90deg, #efefef, #dfe1e2;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEFEFEF', endColorstr='#FFDFE1E2');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEFEFEF', endColorstr='#FFDFE1E2');text-shadow:white 0 1px 0;border:solid 1px #cdcdcd;border-color:#d4d4d4;border-top-color:#e6e6e6;border-right-color:#d4d4d4;border-bottom-color:#cdcdcd;border-left-color:#d4d4d4;box-shadow:0 1px 3px rgba(0,0,0,0.12),0 0 1px #fff inset;font-size:1.0em;font-weight:bold;line-height:18px;margin-bottom:0.5em;color:#5e6469;padding:5px 10px 3px 10px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;box-shadow:0 1px 2px rgba(0,0,0,0.37);display:table;border-bottom-color:#EEE;width:100%;position:relative;margin:0;padding:10px 30px;z-index:800}#title_bar span.icon svg path,#title_bar span.icon svg polygon,#title_bar span.icon svg rect,#title_bar span.icon svg circle{fill:#5e6469 !important}#title_bar span.icon{width:1em;height:1em}#title_bar:after{content:"";display:table;clear:both}#title_bar #titlebar_left,#title_bar #titlebar_right{height:50px;vertical-align:middle;display:table-cell}#title_bar #titlebar_right{text-align:right}#title_bar h2{margin:0;padding:0;font-size:2.6em;line-height:100%;font-weight:bold}#title_bar .action_items span.action_item>a,#title_bar .action_items span.action_item>.dropdown_menu>a{-webkit-border-radius:200px;-moz-border-radius:200px;border-radius:200px;display:inline-block;font-weight:bold;font-size:1.0em;font-family:Helvetica, Arial, sans-serif;line-height:12px;margin-right:3px;padding:7px 16px 6px;text-decoration:none;-webkit-font-smoothing:antialiased;background:white;background:-webkit-linear-gradient(-90deg, #fff, #e7e7e7);background:-moz-linear-gradient(-90deg, #fff, #e7e7e7);background:linear, -90deg, white, #e7e7e7;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFE7E7E7');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFE7E7E7');box-shadow:0 1px 1px rgba(0,0,0,0.1),0 1px 0 0 rgba(255,255,255,0.8) inset;border:solid 1px #c7c7c7;border-color:#c7c7c7;border-top-color:lightgrey;border-right-color:#c7c7c7;border-bottom-color:#c2c2c2;border-left-color:#c7c7c7;text-shadow:white 0 1px 0;color:#5e6469;padding:12px 17px 10px;margin:0px}#title_bar .action_items span.action_item>a.disabled,#title_bar .action_items span.action_item>.dropdown_menu>a.disabled{opacity:0.5;cursor:default}#title_bar .action_items span.action_item>a:not(.disabled):hover,#title_bar .action_items span.action_item>.dropdown_menu>a:not(.disabled):hover{background:white;background:-webkit-linear-gradient(-90deg, #fff, #f1f1f1);background:-moz-linear-gradient(-90deg, #fff, #f1f1f1);background:linear, -90deg, white, #f1f1f1;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFF1F1F1');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFF1F1F1')}#title_bar .action_items span.action_item>a:not(.disabled):active,#title_bar .action_items span.action_item>.dropdown_menu>a:not(.disabled):active{box-shadow:0 1px 2px rgba(0,0,0,0.22) inset,0 1px 0 0px #eee;border-color:#b9b9b9;border-top-color:#c2c2c2;border-right-color:#b9b9b9;border-bottom-color:#b7b7b7;border-left-color:#b9b9b9;background:#f3f3f3;background:-webkit-linear-gradient(-90deg, #f3f3f3, #d8d8d8);background:-moz-linear-gradient(-90deg, #f3f3f3, #d8d8d8);background:linear, -90deg, #f3f3f3, #d8d8d8;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFF3F3F3', endColorstr='#FFD8D8D8');-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFF3F3F3', endColorstr='#FFD8D8D8')}#title_bar .action_items span.action_item>a span.icon,#title_bar .action_items span.action_item>.dropdown_menu>a span.icon{vertical-align:bottom;margin-right:4px}#title_bar .action_items span.action_item>a:hover span.icon svg path,#title_bar .action_items span.action_item>a:hover span.icon svg polygon,#title_bar .action_items span.action_item>a:hover span.icon svg rect,#title_bar .action_items span.action_item>a:hover span.icon svg circle,#title_bar .action_items span.action_item>.dropdown_menu>a:hover span.icon svg path,#title_bar .action_items span.action_item>.dropdown_menu>a:hover span.icon svg polygon,#title_bar .action_items span.action_item>.dropdown_menu>a:hover span.icon svg rect,#title_bar .action_items span.action_item>.dropdown_menu>a:hover span.icon svg circle{fill:black !important}body{font-family:Helvetica, Arial, sans-serif;line-height:150%;font-size:72%;background:white;margin:0;padding:0;color:#323537} diff --git a/public/assets/active_admin.css.gz b/public/assets/active_admin.css.gz index 478ed52e7ad451c56fd5dfb4154129baf5b46511..d2eec8fae5c9f8bd78def56e45b4c9ec78041543 100644 GIT binary patch literal 8652 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 N{U7>V_5qL)0RTPU@$3Kq diff --git a/public/assets/manifest-27c2ec8d97bd8487cae01bba17cdddb9.json b/public/assets/manifest-27c2ec8d97bd8487cae01bba17cdddb9.json index 3c8cf38..b4f485a 100644 --- a/public/assets/manifest-27c2ec8d97bd8487cae01bba17cdddb9.json +++ b/public/assets/manifest-27c2ec8d97bd8487cae01bba17cdddb9.json @@ -1 +1 @@ -{"files":{"GitHub_ThingSpeak_API-f39bba3caddbf4af63e208b8552a98ac.jpg":{"logical_path":"GitHub_ThingSpeak_API.jpg","mtime":"2014-02-08T20:02:14-05:00","size":26303,"digest":"f39bba3caddbf4af63e208b8552a98ac"},"ThingSpeak_Logo-3139b15204b5af565fca3a5f342ef19c.png":{"logical_path":"ThingSpeak_Logo.png","mtime":"2014-02-08T20:02:14-05:00","size":9258,"digest":"3139b15204b5af565fca3a5f342ef19c"},"eye-b67d3d940541ae7d0b469ed20ee92fe3.png":{"logical_path":"eye.png","mtime":"2014-02-08T20:02:14-05:00","size":3294,"digest":"b67d3d940541ae7d0b469ed20ee92fe3"},"flag_gray-319110a59d1d75cad2d8f29af88fdb23.gif":{"logical_path":"flag_gray.gif","mtime":"2014-02-08T20:02:14-05:00","size":983,"digest":"319110a59d1d75cad2d8f29af88fdb23"},"flag_red-16607fd54284010c4e95d5e9a3935b40.gif":{"logical_path":"flag_red.gif","mtime":"2014-02-08T20:02:14-05:00","size":987,"digest":"16607fd54284010c4e95d5e9a3935b40"},"front-b28e4f9d550ff0101a0140b1fb1ec1da.png":{"logical_path":"front.png","mtime":"2014-02-08T20:02:14-05:00","size":17717,"digest":"b28e4f9d550ff0101a0140b1fb1ec1da"},"icon_location_24-40aef0eb9d6824f7538c1056c90a2156.png":{"logical_path":"icon_location_24.png","mtime":"2014-02-08T20:01:43-05:00","size":618,"digest":"40aef0eb9d6824f7538c1056c90a2156"},"icon_rss-3ce0d86e00a9e937993988e73720950e.gif":{"logical_path":"icon_rss.gif","mtime":"2014-02-08T20:02:14-05:00","size":1008,"digest":"3ce0d86e00a9e937993988e73720950e"},"icons/InfoBox-54072dd9794a709a9fee5ab80d4be545.png":{"logical_path":"icons/InfoBox.png","mtime":"2014-02-08T20:02:14-05:00","size":837,"digest":"54072dd9794a709a9fee5ab80d4be545"},"icons/Locked-84572b6d8c7a390e424483b16f28410f.png":{"logical_path":"icons/Locked.png","mtime":"2014-02-08T20:02:14-05:00","size":1882,"digest":"84572b6d8c7a390e424483b16f28410f"},"icons/Public_32-2bcfb892862a4396e3a5593a5e1df202.png":{"logical_path":"icons/Public_32.png","mtime":"2014-02-08T20:02:14-05:00","size":4788,"digest":"2bcfb892862a4396e3a5593a5e1df202"},"icons/Unlocked-226c08041c55d88ecf7898dffe6568aa.png":{"logical_path":"icons/Unlocked.png","mtime":"2014-02-08T20:02:14-05:00","size":1652,"digest":"226c08041c55d88ecf7898dffe6568aa"},"icons/delete-9a7fbc7ba573f4ab735f66bc17466a84.png":{"logical_path":"icons/delete.png","mtime":"2014-02-08T20:02:14-05:00","size":715,"digest":"9a7fbc7ba573f4ab735f66bc17466a84"},"my_house_status_update-526a896242134f12bf2882dfad48fe24.png":{"logical_path":"my_house_status_update.png","mtime":"2014-02-08T20:02:14-05:00","size":13437,"digest":"526a896242134f12bf2882dfad48fe24"},"rails-6a9a73b3eeba7d35c79c3de6fc98b6f1.png":{"logical_path":"rails.png","mtime":"2014-02-08T20:02:14-05:00","size":6646,"digest":"6a9a73b3eeba7d35c79c3de6fc98b6f1"},"react-99715cc1aac81b13fdc4384378c9cf0e.png":{"logical_path":"react.png","mtime":"2014-02-08T20:02:14-05:00","size":2996,"digest":"99715cc1aac81b13fdc4384378c9cf0e"},"scheduled_thinghttp-b525411c648770d5252475ab92925006.png":{"logical_path":"scheduled_thinghttp.png","mtime":"2014-02-08T20:02:14-05:00","size":8677,"digest":"b525411c648770d5252475ab92925006"},"shading-4c8cafd8b85355f46eedb553ece6a663.png":{"logical_path":"shading.png","mtime":"2014-02-08T20:02:14-05:00","size":565,"digest":"4c8cafd8b85355f46eedb553ece6a663"},"social_sensor_network_logo-2cc4b27d8115a3efcf38c0c6539d06fe.png":{"logical_path":"social_sensor_network_logo.png","mtime":"2014-02-08T20:02:14-05:00","size":15370,"digest":"2cc4b27d8115a3efcf38c0c6539d06fe"},"social_sensor_network_main-f2114a6f96a027de3c3b39aefd11a34b.png":{"logical_path":"social_sensor_network_main.png","mtime":"2014-02-08T20:02:14-05:00","size":132931,"digest":"f2114a6f96a027de3c3b39aefd11a34b"},"talkback-a8f0046a06cddead53bfe73e0a1b11b1.png":{"logical_path":"talkback.png","mtime":"2014-02-08T20:02:14-05:00","size":5183,"digest":"a8f0046a06cddead53bfe73e0a1b11b1"},"thinghttp-b22d0641869d4b49e8fdc1441d19bd9d.png":{"logical_path":"thinghttp.png","mtime":"2014-02-08T20:02:14-05:00","size":5918,"digest":"b22d0641869d4b49e8fdc1441d19bd9d"},"thingtweet-2f829197927298b1eb724a072adb072a.png":{"logical_path":"thingtweet.png","mtime":"2014-02-08T20:02:14-05:00","size":4075,"digest":"2f829197927298b1eb724a072adb072a"},"tweetcontrol-5fa1225bb39f188b215d5897b37c2c18.png":{"logical_path":"tweetcontrol.png","mtime":"2014-02-08T20:02:14-05:00","size":13429,"digest":"5fa1225bb39f188b215d5897b37c2c18"},"images/ui-bg_diagonals-thick_18_b81900_40x40-7cff5779324125bfa623755a21cb7d08.png":{"logical_path":"images/ui-bg_diagonals-thick_18_b81900_40x40.png","mtime":"2014-02-08T20:01:44-05:00","size":260,"digest":"7cff5779324125bfa623755a21cb7d08"},"images/ui-bg_diagonals-thick_20_666666_40x40-e3476d26e53f4b2bdba1cbd4216bd169.png":{"logical_path":"images/ui-bg_diagonals-thick_20_666666_40x40.png","mtime":"2014-02-08T20:01:44-05:00","size":251,"digest":"e3476d26e53f4b2bdba1cbd4216bd169"},"images/ui-bg_flat_10_000000_40x100-b4d9562e67d66d83845d2edeaae222d7.png":{"logical_path":"images/ui-bg_flat_10_000000_40x100.png","mtime":"2014-02-08T20:02:14-05:00","size":178,"digest":"b4d9562e67d66d83845d2edeaae222d7"},"images/ui-bg_glass_100_f6f6f6_1x400-4d37c970a424e84d47dd48ae788eaef8.png":{"logical_path":"images/ui-bg_glass_100_f6f6f6_1x400.png","mtime":"2014-02-08T20:01:44-05:00","size":104,"digest":"4d37c970a424e84d47dd48ae788eaef8"},"images/ui-bg_glass_100_fdf5ce_1x400-657936ddb303bcc8c34554da5279debe.png":{"logical_path":"images/ui-bg_glass_100_fdf5ce_1x400.png","mtime":"2014-02-08T20:02:14-05:00","size":125,"digest":"657936ddb303bcc8c34554da5279debe"},"images/ui-bg_glass_65_ffffff_1x400-5f18db79610dfa0b148ff6335bbc42cb.png":{"logical_path":"images/ui-bg_glass_65_ffffff_1x400.png","mtime":"2014-02-08T20:02:14-05:00","size":105,"digest":"5f18db79610dfa0b148ff6335bbc42cb"},"images/ui-bg_gloss-wave_35_f6a828_500x100-93fadea558da2231315ae756b3be6bbf.png":{"logical_path":"images/ui-bg_gloss-wave_35_f6a828_500x100.png","mtime":"2014-02-08T20:02:14-05:00","size":3762,"digest":"93fadea558da2231315ae756b3be6bbf"},"images/ui-bg_highlight-soft_100_eeeeee_1x100-4310274c0febae96f7f3d2f54b0a4f42.png":{"logical_path":"images/ui-bg_highlight-soft_100_eeeeee_1x100.png","mtime":"2014-02-08T20:01:44-05:00","size":90,"digest":"4310274c0febae96f7f3d2f54b0a4f42"},"images/ui-bg_highlight-soft_75_ffe45c_1x100-21008ee33c710d7e484d7f88f2c7dc21.png":{"logical_path":"images/ui-bg_highlight-soft_75_ffe45c_1x100.png","mtime":"2014-02-08T20:02:14-05:00","size":129,"digest":"21008ee33c710d7e484d7f88f2c7dc21"},"images/ui-icons_222222_256x240-d83eeaaf84f04ca2c5d6a684bc7629af.png":{"logical_path":"images/ui-icons_222222_256x240.png","mtime":"2014-02-08T20:02:14-05:00","size":4369,"digest":"d83eeaaf84f04ca2c5d6a684bc7629af"},"images/ui-icons_228ef1_256x240-65e412c112f4e7ee270afb71005fd17d.png":{"logical_path":"images/ui-icons_228ef1_256x240.png","mtime":"2014-02-08T20:02:14-05:00","size":4369,"digest":"65e412c112f4e7ee270afb71005fd17d"},"images/ui-icons_ef8c08_256x240-8b462cb27e07227bac8bd0020d9933e4.png":{"logical_path":"images/ui-icons_ef8c08_256x240.png","mtime":"2014-02-08T20:02:14-05:00","size":4369,"digest":"8b462cb27e07227bac8bd0020d9933e4"},"images/ui-icons_ffd27a_256x240-3d95bb913fb70688654b00e8ed1eb247.png":{"logical_path":"images/ui-icons_ffd27a_256x240.png","mtime":"2014-02-08T20:02:14-05:00","size":4369,"digest":"3d95bb913fb70688654b00e8ed1eb247"},"images/ui-icons_ffffff_256x240-2066cf4b1373355dbf4a2031099e1a04.png":{"logical_path":"images/ui-icons_ffffff_256x240.png","mtime":"2014-02-08T20:02:14-05:00","size":4369,"digest":"2066cf4b1373355dbf4a2031099e1a04"},"thingspeak_logo-95d6e7cb7f17bbbc1526407176244ca8.png":{"logical_path":"thingspeak_logo.png","mtime":"2014-02-10T17:38:24-05:00","size":1609,"digest":"95d6e7cb7f17bbbc1526407176244ca8"},"GitHub_ThingSpeak_API-c55761d06c28c72e17c9196391bf7fe4.jpg":{"logical_path":"GitHub_ThingSpeak_API.jpg","mtime":"2014-02-27T12:20:28-05:00","size":26303,"digest":"c55761d06c28c72e17c9196391bf7fe4"},"eye-9175769cbdc94be2e5c44c59fdd3cbcd.png":{"logical_path":"eye.png","mtime":"2014-02-27T12:20:28-05:00","size":3294,"digest":"9175769cbdc94be2e5c44c59fdd3cbcd"},"flag_gray-a465b55d9751d7d19801facf9d7d66b2.gif":{"logical_path":"flag_gray.gif","mtime":"2014-02-27T12:20:28-05:00","size":983,"digest":"a465b55d9751d7d19801facf9d7d66b2"},"flag_red-87843b96f6a35694691fd624cd68a802.gif":{"logical_path":"flag_red.gif","mtime":"2014-02-27T12:20:27-05:00","size":987,"digest":"87843b96f6a35694691fd624cd68a802"},"front-44d3070595f891d9a2d88e00606c6325.png":{"logical_path":"front.png","mtime":"2014-02-27T12:20:28-05:00","size":17717,"digest":"44d3070595f891d9a2d88e00606c6325"},"icon_location_24-bf607f94a54f074c940a844771200b1b.png":{"logical_path":"icon_location_24.png","mtime":"2014-02-27T12:20:28-05:00","size":618,"digest":"bf607f94a54f074c940a844771200b1b"},"icon_rss-2687cbed842e6291c3a7b431f7bad93e.gif":{"logical_path":"icon_rss.gif","mtime":"2014-02-27T12:20:27-05:00","size":1008,"digest":"2687cbed842e6291c3a7b431f7bad93e"},"icons/InfoBox-3dd7c57e5ed644dc9fa79014c10478ea.png":{"logical_path":"icons/InfoBox.png","mtime":"2014-02-27T12:20:28-05:00","size":837,"digest":"3dd7c57e5ed644dc9fa79014c10478ea"},"icons/Locked-dd04ba8d213caf20f92028729f7d652b.png":{"logical_path":"icons/Locked.png","mtime":"2014-02-27T12:20:28-05:00","size":1882,"digest":"dd04ba8d213caf20f92028729f7d652b"},"icons/Public_32-40b058ba964e1b896725268b604c9c74.png":{"logical_path":"icons/Public_32.png","mtime":"2014-02-27T12:20:28-05:00","size":4788,"digest":"40b058ba964e1b896725268b604c9c74"},"icons/Unlocked-d8d39a21ce887850ee0acfcaf6553d1c.png":{"logical_path":"icons/Unlocked.png","mtime":"2014-02-27T12:20:28-05:00","size":1652,"digest":"d8d39a21ce887850ee0acfcaf6553d1c"},"icons/delete-1b8201e6714e82d1b6343aaa53e6ac91.png":{"logical_path":"icons/delete.png","mtime":"2014-02-27T12:20:28-05:00","size":715,"digest":"1b8201e6714e82d1b6343aaa53e6ac91"},"my_house_status_update-d4b1ef118189a8deb613efab4dd0de51.png":{"logical_path":"my_house_status_update.png","mtime":"2014-02-27T12:20:28-05:00","size":13437,"digest":"d4b1ef118189a8deb613efab4dd0de51"},"rails-8a98a69213c3e39ca47a4f822df62bfb.png":{"logical_path":"rails.png","mtime":"2014-02-27T12:20:28-05:00","size":6646,"digest":"8a98a69213c3e39ca47a4f822df62bfb"},"react-813abec4f0db433aa7c583c33e2332ac.png":{"logical_path":"react.png","mtime":"2014-02-27T12:20:28-05:00","size":2996,"digest":"813abec4f0db433aa7c583c33e2332ac"},"scheduled_thinghttp-6151786a4ee07a2cab4c605587a75016.png":{"logical_path":"scheduled_thinghttp.png","mtime":"2014-02-27T12:20:28-05:00","size":8677,"digest":"6151786a4ee07a2cab4c605587a75016"},"shading-0b2c43248624209936e2bf318c546c16.png":{"logical_path":"shading.png","mtime":"2014-02-27T12:20:28-05:00","size":565,"digest":"0b2c43248624209936e2bf318c546c16"},"social_sensor_network_logo-4a42dbecef9e2ab82564b14592f5d05b.png":{"logical_path":"social_sensor_network_logo.png","mtime":"2014-02-27T12:20:28-05:00","size":15370,"digest":"4a42dbecef9e2ab82564b14592f5d05b"},"social_sensor_network_main-20c93960eee4b916ed842f414bf7fea5.png":{"logical_path":"social_sensor_network_main.png","mtime":"2014-02-27T12:20:28-05:00","size":132931,"digest":"20c93960eee4b916ed842f414bf7fea5"},"talkback-e9f9fa607f7739892d8cd73682aba65d.png":{"logical_path":"talkback.png","mtime":"2014-02-27T12:20:28-05:00","size":5183,"digest":"e9f9fa607f7739892d8cd73682aba65d"},"thinghttp-bb3f9377bc76eaaff763e4f7b4a03577.png":{"logical_path":"thinghttp.png","mtime":"2014-02-27T12:20:28-05:00","size":5918,"digest":"bb3f9377bc76eaaff763e4f7b4a03577"},"thingspeak_logo-dadc6a1037759f672179ca2d4e96ba6d.png":{"logical_path":"thingspeak_logo.png","mtime":"2014-02-27T12:20:27-05:00","size":1609,"digest":"dadc6a1037759f672179ca2d4e96ba6d"},"thingtweet-e770a29c4bb3dc128d9023f0bab6e7c6.png":{"logical_path":"thingtweet.png","mtime":"2014-02-27T12:20:28-05:00","size":4075,"digest":"e770a29c4bb3dc128d9023f0bab6e7c6"},"tweetcontrol-3f52ce7cf7f2796df769016ca2487a37.png":{"logical_path":"tweetcontrol.png","mtime":"2014-02-27T12:20:27-05:00","size":13429,"digest":"3f52ce7cf7f2796df769016ca2487a37"},"tweetcontrol_sample-29e6418760cec16453cc0b3b5707b7c2.png":{"logical_path":"tweetcontrol_sample.png","mtime":"2014-02-27T17:39:03-05:00","size":24608,"digest":"29e6418760cec16453cc0b3b5707b7c2"},"images/ui-bg_diagonals-thick_18_b81900_40x40-8da1641e421200ea88d476a6040548f4.png":{"logical_path":"images/ui-bg_diagonals-thick_18_b81900_40x40.png","mtime":"2014-02-08T20:01:44-05:00","size":260,"digest":"8da1641e421200ea88d476a6040548f4"},"images/ui-bg_diagonals-thick_20_666666_40x40-fbffa7c43cac930aa61ea7f15bcee131.png":{"logical_path":"images/ui-bg_diagonals-thick_20_666666_40x40.png","mtime":"2014-02-08T20:01:44-05:00","size":251,"digest":"fbffa7c43cac930aa61ea7f15bcee131"},"images/ui-bg_flat_10_000000_40x100-dabfeb3662bfa05f655ed5056cce2124.png":{"logical_path":"images/ui-bg_flat_10_000000_40x100.png","mtime":"2014-02-08T20:02:14-05:00","size":178,"digest":"dabfeb3662bfa05f655ed5056cce2124"},"images/ui-bg_glass_100_f6f6f6_1x400-ee77c8327f94bab46c89043ffce9444c.png":{"logical_path":"images/ui-bg_glass_100_f6f6f6_1x400.png","mtime":"2014-02-08T20:01:44-05:00","size":104,"digest":"ee77c8327f94bab46c89043ffce9444c"},"images/ui-bg_glass_100_fdf5ce_1x400-c1024fd9f647f2bf814e32f41e5632c3.png":{"logical_path":"images/ui-bg_glass_100_fdf5ce_1x400.png","mtime":"2014-02-08T20:02:14-05:00","size":125,"digest":"c1024fd9f647f2bf814e32f41e5632c3"},"images/ui-bg_glass_65_ffffff_1x400-6879b674aed618d3df27bd2027469557.png":{"logical_path":"images/ui-bg_glass_65_ffffff_1x400.png","mtime":"2014-02-08T20:02:14-05:00","size":105,"digest":"6879b674aed618d3df27bd2027469557"},"images/ui-bg_gloss-wave_35_f6a828_500x100-61763bbe727affffa1bef63e1492d8a9.png":{"logical_path":"images/ui-bg_gloss-wave_35_f6a828_500x100.png","mtime":"2014-02-08T20:02:14-05:00","size":3762,"digest":"61763bbe727affffa1bef63e1492d8a9"},"images/ui-bg_highlight-soft_100_eeeeee_1x100-f4dc124a7f6d39a9c8a496120c5e8273.png":{"logical_path":"images/ui-bg_highlight-soft_100_eeeeee_1x100.png","mtime":"2014-02-08T20:01:44-05:00","size":90,"digest":"f4dc124a7f6d39a9c8a496120c5e8273"},"images/ui-bg_highlight-soft_75_ffe45c_1x100-970b8bb07ae918e7591662db33b7482e.png":{"logical_path":"images/ui-bg_highlight-soft_75_ffe45c_1x100.png","mtime":"2014-02-08T20:02:14-05:00","size":129,"digest":"970b8bb07ae918e7591662db33b7482e"},"images/ui-icons_222222_256x240-6597c301cf369830bb7171882648f85e.png":{"logical_path":"images/ui-icons_222222_256x240.png","mtime":"2014-02-08T20:02:14-05:00","size":4369,"digest":"6597c301cf369830bb7171882648f85e"},"images/ui-icons_228ef1_256x240-2c0de233993aabf35f961f7c39fa9263.png":{"logical_path":"images/ui-icons_228ef1_256x240.png","mtime":"2014-02-08T20:02:14-05:00","size":4369,"digest":"2c0de233993aabf35f961f7c39fa9263"},"images/ui-icons_ef8c08_256x240-8e46c4f4ea98a986f4e877a51e4c15c5.png":{"logical_path":"images/ui-icons_ef8c08_256x240.png","mtime":"2014-02-08T20:02:14-05:00","size":4369,"digest":"8e46c4f4ea98a986f4e877a51e4c15c5"},"images/ui-icons_ffd27a_256x240-f6366c00a59227a55e14d94caaeea3f6.png":{"logical_path":"images/ui-icons_ffd27a_256x240.png","mtime":"2014-02-08T20:02:14-05:00","size":4369,"digest":"f6366c00a59227a55e14d94caaeea3f6"},"images/ui-icons_ffffff_256x240-13dbadd07134115add4ebe610d444859.png":{"logical_path":"images/ui-icons_ffffff_256x240.png","mtime":"2014-02-08T20:02:14-05:00","size":4369,"digest":"13dbadd07134115add4ebe610d444859"},"channel_public_view-81af126139a236e81d91e5a5a76d603e.png":{"logical_path":"channel_public_view.png","mtime":"2014-02-27T17:39:03-05:00","size":112757,"digest":"81af126139a236e81d91e5a5a76d603e"},"ajax-loader-02917e3c114fd83f5c4c17953aa87e83.gif":{"logical_path":"ajax-loader.gif","mtime":"2014-03-15T23:45:57-04:00","size":3208,"digest":"02917e3c114fd83f5c4c17953aa87e83"},"active_admin-b50063add15e7f808a148a820d74bf3d.js":{"logical_path":"active_admin.js","mtime":"2014-03-20T16:39:45-04:00","size":243506,"digest":"b50063add15e7f808a148a820d74bf3d"},"active_admin-ef03ab96648e45e8a22d6690f32d1693.css":{"logical_path":"active_admin.css","mtime":"2014-03-20T16:38:50-04:00","size":70032,"digest":"ef03ab96648e45e8a22d6690f32d1693"},"active_admin/admin_notes_icon-44589ac44518808ac8dadd1755e03161.png":{"logical_path":"active_admin/admin_notes_icon.png","mtime":"2014-05-08T19:27:41-04:00","size":716,"digest":"44589ac44518808ac8dadd1755e03161"},"active_admin/datepicker/datepicker-header-bg-bcad4373bcdc56124322dea658739849.png":{"logical_path":"active_admin/datepicker/datepicker-header-bg.png","mtime":"2014-05-08T19:27:41-04:00","size":1701,"digest":"bcad4373bcdc56124322dea658739849"},"active_admin/datepicker/datepicker-input-icon-20df875ab8a44d588cbfd3d8018a52b9.png":{"logical_path":"active_admin/datepicker/datepicker-input-icon.png","mtime":"2014-05-08T19:27:41-04:00","size":1535,"digest":"20df875ab8a44d588cbfd3d8018a52b9"},"active_admin/datepicker/datepicker-next-link-icon-f9ef6d04c65df1cb5bda725ebba623a1.png":{"logical_path":"active_admin/datepicker/datepicker-next-link-icon.png","mtime":"2014-05-08T19:27:41-04:00","size":1006,"digest":"f9ef6d04c65df1cb5bda725ebba623a1"},"active_admin/datepicker/datepicker-nipple-c6e265f4a33a97853a69662e6350cb31.png":{"logical_path":"active_admin/datepicker/datepicker-nipple.png","mtime":"2014-05-08T19:27:41-04:00","size":1224,"digest":"c6e265f4a33a97853a69662e6350cb31"},"active_admin/datepicker/datepicker-prev-link-icon-ce5f918e536f436ca2095a9e7442c6df.png":{"logical_path":"active_admin/datepicker/datepicker-prev-link-icon.png","mtime":"2014-05-08T19:27:41-04:00","size":1004,"digest":"ce5f918e536f436ca2095a9e7442c6df"},"active_admin/index_list_icons/block_icon-efadf57de7365b6e1919448c310b5f04.svg":{"logical_path":"active_admin/index_list_icons/block_icon.svg","mtime":"2014-05-08T19:27:41-04:00","size":1141,"digest":"efadf57de7365b6e1919448c310b5f04"},"active_admin/index_list_icons/blog_icon-9522bfa7d1eadd437164992512ac461f.svg":{"logical_path":"active_admin/index_list_icons/blog_icon.svg","mtime":"2014-05-08T19:27:41-04:00","size":881,"digest":"9522bfa7d1eadd437164992512ac461f"},"active_admin/index_list_icons/grid_icon-5dbe976f21a86b79408e60b949411fd5.svg":{"logical_path":"active_admin/index_list_icons/grid_icon.svg","mtime":"2014-05-08T19:27:41-04:00","size":2132,"digest":"5dbe976f21a86b79408e60b949411fd5"},"active_admin/index_list_icons/table_icon-5276b83ac60335e2891d9f0cbbf368ae.svg":{"logical_path":"active_admin/index_list_icons/table_icon.svg","mtime":"2014-05-08T19:27:41-04:00","size":815,"digest":"5276b83ac60335e2891d9f0cbbf368ae"},"active_admin/loading-aebaee21d194d63dd36be976ac42d09b.gif":{"logical_path":"active_admin/loading.gif","mtime":"2014-05-08T19:27:41-04:00","size":2079,"digest":"aebaee21d194d63dd36be976ac42d09b"},"active_admin/nested_menu_arrow-94d9c4f73e81d377f80ae8dbcc71128b.gif":{"logical_path":"active_admin/nested_menu_arrow.gif","mtime":"2014-05-08T19:27:41-04:00","size":70,"digest":"94d9c4f73e81d377f80ae8dbcc71128b"},"active_admin/nested_menu_arrow_dark-b40a488b4f4b7d25cce531a15db4037b.gif":{"logical_path":"active_admin/nested_menu_arrow_dark.gif","mtime":"2014-05-08T19:27:41-04:00","size":70,"digest":"b40a488b4f4b7d25cce531a15db4037b"},"active_admin/orderable-61b5d7f5855b4fbc6b718755d542b71b.png":{"logical_path":"active_admin/orderable.png","mtime":"2014-05-08T19:27:41-04:00","size":220,"digest":"61b5d7f5855b4fbc6b718755d542b71b"},"active_admin/application-e851fe02b20790a5242ac0333acdc2e5.js":{"logical_path":"active_admin/application.js","mtime":"2014-05-08T19:27:41-04:00","size":749,"digest":"e851fe02b20790a5242ac0333acdc2e5"},"active_admin/print-d21aee48657d1ea57f4695edbb2b1b06.css":{"logical_path":"active_admin/print.css","mtime":"2014-05-08T19:27:41-04:00","size":5460,"digest":"d21aee48657d1ea57f4695edbb2b1b06"},"jquery-ui/animated-overlay-f66f40fcb74b7b2076d2a140ad33132d.gif":{"logical_path":"jquery-ui/animated-overlay.gif","mtime":"2014-05-08T19:28:03-04:00","size":1738,"digest":"f66f40fcb74b7b2076d2a140ad33132d"},"jquery-ui/ui-bg_flat_0_aaaaaa_40x100-8c3a37f71112e61b7a0f09cbc94995c9.png":{"logical_path":"jquery-ui/ui-bg_flat_0_aaaaaa_40x100.png","mtime":"2014-05-08T19:28:03-04:00","size":180,"digest":"8c3a37f71112e61b7a0f09cbc94995c9"},"jquery-ui/ui-bg_flat_75_ffffff_40x100-3af74dc50888d335b78248a0694bbd21.png":{"logical_path":"jquery-ui/ui-bg_flat_75_ffffff_40x100.png","mtime":"2014-05-08T19:28:03-04:00","size":178,"digest":"3af74dc50888d335b78248a0694bbd21"},"jquery-ui/ui-bg_glass_55_fbf9ee_1x400-d63699c9cc07cd2ecbf3233058f1638e.png":{"logical_path":"jquery-ui/ui-bg_glass_55_fbf9ee_1x400.png","mtime":"2014-05-08T19:28:03-04:00","size":120,"digest":"d63699c9cc07cd2ecbf3233058f1638e"},"jquery-ui/ui-bg_glass_65_ffffff_1x400-6879b674aed618d3df27bd2027469557.png":{"logical_path":"jquery-ui/ui-bg_glass_65_ffffff_1x400.png","mtime":"2014-05-08T19:28:03-04:00","size":105,"digest":"6879b674aed618d3df27bd2027469557"},"jquery-ui/ui-bg_glass_75_dadada_1x400-393389b036ccddba12c4032ebba856d9.png":{"logical_path":"jquery-ui/ui-bg_glass_75_dadada_1x400.png","mtime":"2014-05-08T19:28:03-04:00","size":111,"digest":"393389b036ccddba12c4032ebba856d9"},"jquery-ui/ui-bg_glass_75_e6e6e6_1x400-470ccb5154632a9b5118eb8246e61097.png":{"logical_path":"jquery-ui/ui-bg_glass_75_e6e6e6_1x400.png","mtime":"2014-05-08T19:28:03-04:00","size":110,"digest":"470ccb5154632a9b5118eb8246e61097"},"jquery-ui/ui-bg_glass_95_fef1ec_1x400-5a857f14cf3a69c2bf968f54ea5d3037.png":{"logical_path":"jquery-ui/ui-bg_glass_95_fef1ec_1x400.png","mtime":"2014-05-08T19:28:03-04:00","size":119,"digest":"5a857f14cf3a69c2bf968f54ea5d3037"},"jquery-ui/ui-bg_highlight-soft_75_cccccc_1x100-0c2f96e44d86042e97a1a3188141d8de.png":{"logical_path":"jquery-ui/ui-bg_highlight-soft_75_cccccc_1x100.png","mtime":"2014-05-08T19:28:03-04:00","size":101,"digest":"0c2f96e44d86042e97a1a3188141d8de"},"jquery-ui/ui-icons_222222_256x240-3a92dcc42b992876335ae81da242fe5f.png":{"logical_path":"jquery-ui/ui-icons_222222_256x240.png","mtime":"2014-05-08T19:28:03-04:00","size":4369,"digest":"3a92dcc42b992876335ae81da242fe5f"},"jquery-ui/ui-icons_2e83ff_256x240-2c61f38ac281b30c924aa57c0e15f797.png":{"logical_path":"jquery-ui/ui-icons_2e83ff_256x240.png","mtime":"2014-05-08T19:28:03-04:00","size":4369,"digest":"2c61f38ac281b30c924aa57c0e15f797"},"jquery-ui/ui-icons_454545_256x240-515ff3b290c7160a009324d292e3e64a.png":{"logical_path":"jquery-ui/ui-icons_454545_256x240.png","mtime":"2014-05-08T19:28:03-04:00","size":4369,"digest":"515ff3b290c7160a009324d292e3e64a"},"jquery-ui/ui-icons_888888_256x240-dcb64181e6f3547e73afa034c4466dfd.png":{"logical_path":"jquery-ui/ui-icons_888888_256x240.png","mtime":"2014-05-08T19:28:03-04:00","size":4369,"digest":"dcb64181e6f3547e73afa034c4466dfd"},"jquery-ui/ui-icons_cd0a0a_256x240-58c4a995b8b611cacb6645f6049b3935.png":{"logical_path":"jquery-ui/ui-icons_cd0a0a_256x240.png","mtime":"2014-05-08T19:28:03-04:00","size":4369,"digest":"58c4a995b8b611cacb6645f6049b3935"},"thingspeak_logo_white-9cac8b416f09882dd73a79fb6cf638f1.png":{"logical_path":"thingspeak_logo_white.png","mtime":"2014-05-08T19:21:40-04:00","size":2954,"digest":"9cac8b416f09882dd73a79fb6cf638f1"},"thingspeak_stars_bg-6908a0cfd5f88ec01ec60aeb1748d108.jpg":{"logical_path":"thingspeak_stars_bg.jpg","mtime":"2014-05-08T19:21:40-04:00","size":125372,"digest":"6908a0cfd5f88ec01ec60aeb1748d108"},"active_admin-daf1d88b3b2d591e19aa91972d495192.js":{"logical_path":"active_admin.js","mtime":"2014-05-08T19:28:03-04:00","size":243581,"digest":"daf1d88b3b2d591e19aa91972d495192"},"application-2ed742652fb31d3ebe34470275a2cc0c.js":{"logical_path":"application.js","mtime":"2014-07-23T13:33:11-04:00","size":63479,"digest":"2ed742652fb31d3ebe34470275a2cc0c"},"application-53947515558473d9fe0b469e83301e18.js":{"logical_path":"application.js","mtime":"2014-07-31T14:58:20-04:00","size":63511,"digest":"53947515558473d9fe0b469e83301e18"},"application-acf65447ac760ab7c9d4797a529315a8.js":{"logical_path":"application.js","mtime":"2014-08-01T15:52:56-04:00","size":63542,"digest":"acf65447ac760ab7c9d4797a529315a8"},"application-5200a9bdb06f602f5a693acb90d67248.css":{"logical_path":"application.css","mtime":"2014-08-06T11:01:53-04:00","size":43774,"digest":"5200a9bdb06f602f5a693acb90d67248"},"application-18dd892b59e443d4c090309575b1c7c9.css":{"logical_path":"application.css","mtime":"2014-08-06T11:06:36-04:00","size":43816,"digest":"18dd892b59e443d4c090309575b1c7c9"},"application-540f4fead37885553021bac515a4c60c.css":{"logical_path":"application.css","mtime":"2014-08-15T21:49:38-04:00","size":43814,"digest":"540f4fead37885553021bac515a4c60c"}},"assets":{"GitHub_ThingSpeak_API.jpg":"GitHub_ThingSpeak_API-c55761d06c28c72e17c9196391bf7fe4.jpg","ThingSpeak_Logo.png":"ThingSpeak_Logo-3139b15204b5af565fca3a5f342ef19c.png","eye.png":"eye-9175769cbdc94be2e5c44c59fdd3cbcd.png","flag_gray.gif":"flag_gray-a465b55d9751d7d19801facf9d7d66b2.gif","flag_red.gif":"flag_red-87843b96f6a35694691fd624cd68a802.gif","front.png":"front-44d3070595f891d9a2d88e00606c6325.png","icon_location_24.png":"icon_location_24-bf607f94a54f074c940a844771200b1b.png","icon_rss.gif":"icon_rss-2687cbed842e6291c3a7b431f7bad93e.gif","icons/InfoBox.png":"icons/InfoBox-3dd7c57e5ed644dc9fa79014c10478ea.png","icons/Locked.png":"icons/Locked-dd04ba8d213caf20f92028729f7d652b.png","icons/Public_32.png":"icons/Public_32-40b058ba964e1b896725268b604c9c74.png","icons/Unlocked.png":"icons/Unlocked-d8d39a21ce887850ee0acfcaf6553d1c.png","icons/delete.png":"icons/delete-1b8201e6714e82d1b6343aaa53e6ac91.png","my_house_status_update.png":"my_house_status_update-d4b1ef118189a8deb613efab4dd0de51.png","rails.png":"rails-8a98a69213c3e39ca47a4f822df62bfb.png","react.png":"react-813abec4f0db433aa7c583c33e2332ac.png","scheduled_thinghttp.png":"scheduled_thinghttp-6151786a4ee07a2cab4c605587a75016.png","shading.png":"shading-0b2c43248624209936e2bf318c546c16.png","social_sensor_network_logo.png":"social_sensor_network_logo-4a42dbecef9e2ab82564b14592f5d05b.png","social_sensor_network_main.png":"social_sensor_network_main-20c93960eee4b916ed842f414bf7fea5.png","talkback.png":"talkback-e9f9fa607f7739892d8cd73682aba65d.png","thinghttp.png":"thinghttp-bb3f9377bc76eaaff763e4f7b4a03577.png","thingtweet.png":"thingtweet-e770a29c4bb3dc128d9023f0bab6e7c6.png","tweetcontrol.png":"tweetcontrol-3f52ce7cf7f2796df769016ca2487a37.png","application.js":"application-acf65447ac760ab7c9d4797a529315a8.js","application.css":"application-540f4fead37885553021bac515a4c60c.css","images/ui-bg_diagonals-thick_18_b81900_40x40.png":"images/ui-bg_diagonals-thick_18_b81900_40x40-8da1641e421200ea88d476a6040548f4.png","images/ui-bg_diagonals-thick_20_666666_40x40.png":"images/ui-bg_diagonals-thick_20_666666_40x40-fbffa7c43cac930aa61ea7f15bcee131.png","images/ui-bg_flat_10_000000_40x100.png":"images/ui-bg_flat_10_000000_40x100-dabfeb3662bfa05f655ed5056cce2124.png","images/ui-bg_glass_100_f6f6f6_1x400.png":"images/ui-bg_glass_100_f6f6f6_1x400-ee77c8327f94bab46c89043ffce9444c.png","images/ui-bg_glass_100_fdf5ce_1x400.png":"images/ui-bg_glass_100_fdf5ce_1x400-c1024fd9f647f2bf814e32f41e5632c3.png","images/ui-bg_glass_65_ffffff_1x400.png":"images/ui-bg_glass_65_ffffff_1x400-6879b674aed618d3df27bd2027469557.png","images/ui-bg_gloss-wave_35_f6a828_500x100.png":"images/ui-bg_gloss-wave_35_f6a828_500x100-61763bbe727affffa1bef63e1492d8a9.png","images/ui-bg_highlight-soft_100_eeeeee_1x100.png":"images/ui-bg_highlight-soft_100_eeeeee_1x100-f4dc124a7f6d39a9c8a496120c5e8273.png","images/ui-bg_highlight-soft_75_ffe45c_1x100.png":"images/ui-bg_highlight-soft_75_ffe45c_1x100-970b8bb07ae918e7591662db33b7482e.png","images/ui-icons_222222_256x240.png":"images/ui-icons_222222_256x240-6597c301cf369830bb7171882648f85e.png","images/ui-icons_228ef1_256x240.png":"images/ui-icons_228ef1_256x240-2c0de233993aabf35f961f7c39fa9263.png","images/ui-icons_ef8c08_256x240.png":"images/ui-icons_ef8c08_256x240-8e46c4f4ea98a986f4e877a51e4c15c5.png","images/ui-icons_ffd27a_256x240.png":"images/ui-icons_ffd27a_256x240-f6366c00a59227a55e14d94caaeea3f6.png","images/ui-icons_ffffff_256x240.png":"images/ui-icons_ffffff_256x240-13dbadd07134115add4ebe610d444859.png","thingspeak_logo.png":"thingspeak_logo-dadc6a1037759f672179ca2d4e96ba6d.png","tweetcontrol_sample.png":"tweetcontrol_sample-29e6418760cec16453cc0b3b5707b7c2.png","channel_public_view.png":"channel_public_view-81af126139a236e81d91e5a5a76d603e.png","ajax-loader.gif":"ajax-loader-02917e3c114fd83f5c4c17953aa87e83.gif","active_admin.js":"active_admin-daf1d88b3b2d591e19aa91972d495192.js","active_admin.css":"active_admin-ef03ab96648e45e8a22d6690f32d1693.css","active_admin/admin_notes_icon.png":"active_admin/admin_notes_icon-44589ac44518808ac8dadd1755e03161.png","active_admin/datepicker/datepicker-header-bg.png":"active_admin/datepicker/datepicker-header-bg-bcad4373bcdc56124322dea658739849.png","active_admin/datepicker/datepicker-input-icon.png":"active_admin/datepicker/datepicker-input-icon-20df875ab8a44d588cbfd3d8018a52b9.png","active_admin/datepicker/datepicker-next-link-icon.png":"active_admin/datepicker/datepicker-next-link-icon-f9ef6d04c65df1cb5bda725ebba623a1.png","active_admin/datepicker/datepicker-nipple.png":"active_admin/datepicker/datepicker-nipple-c6e265f4a33a97853a69662e6350cb31.png","active_admin/datepicker/datepicker-prev-link-icon.png":"active_admin/datepicker/datepicker-prev-link-icon-ce5f918e536f436ca2095a9e7442c6df.png","active_admin/index_list_icons/block_icon.svg":"active_admin/index_list_icons/block_icon-efadf57de7365b6e1919448c310b5f04.svg","active_admin/index_list_icons/blog_icon.svg":"active_admin/index_list_icons/blog_icon-9522bfa7d1eadd437164992512ac461f.svg","active_admin/index_list_icons/grid_icon.svg":"active_admin/index_list_icons/grid_icon-5dbe976f21a86b79408e60b949411fd5.svg","active_admin/index_list_icons/table_icon.svg":"active_admin/index_list_icons/table_icon-5276b83ac60335e2891d9f0cbbf368ae.svg","active_admin/loading.gif":"active_admin/loading-aebaee21d194d63dd36be976ac42d09b.gif","active_admin/nested_menu_arrow.gif":"active_admin/nested_menu_arrow-94d9c4f73e81d377f80ae8dbcc71128b.gif","active_admin/nested_menu_arrow_dark.gif":"active_admin/nested_menu_arrow_dark-b40a488b4f4b7d25cce531a15db4037b.gif","active_admin/orderable.png":"active_admin/orderable-61b5d7f5855b4fbc6b718755d542b71b.png","active_admin/application.js":"active_admin/application-e851fe02b20790a5242ac0333acdc2e5.js","active_admin/print.css":"active_admin/print-d21aee48657d1ea57f4695edbb2b1b06.css","jquery-ui/animated-overlay.gif":"jquery-ui/animated-overlay-f66f40fcb74b7b2076d2a140ad33132d.gif","jquery-ui/ui-bg_flat_0_aaaaaa_40x100.png":"jquery-ui/ui-bg_flat_0_aaaaaa_40x100-8c3a37f71112e61b7a0f09cbc94995c9.png","jquery-ui/ui-bg_flat_75_ffffff_40x100.png":"jquery-ui/ui-bg_flat_75_ffffff_40x100-3af74dc50888d335b78248a0694bbd21.png","jquery-ui/ui-bg_glass_55_fbf9ee_1x400.png":"jquery-ui/ui-bg_glass_55_fbf9ee_1x400-d63699c9cc07cd2ecbf3233058f1638e.png","jquery-ui/ui-bg_glass_65_ffffff_1x400.png":"jquery-ui/ui-bg_glass_65_ffffff_1x400-6879b674aed618d3df27bd2027469557.png","jquery-ui/ui-bg_glass_75_dadada_1x400.png":"jquery-ui/ui-bg_glass_75_dadada_1x400-393389b036ccddba12c4032ebba856d9.png","jquery-ui/ui-bg_glass_75_e6e6e6_1x400.png":"jquery-ui/ui-bg_glass_75_e6e6e6_1x400-470ccb5154632a9b5118eb8246e61097.png","jquery-ui/ui-bg_glass_95_fef1ec_1x400.png":"jquery-ui/ui-bg_glass_95_fef1ec_1x400-5a857f14cf3a69c2bf968f54ea5d3037.png","jquery-ui/ui-bg_highlight-soft_75_cccccc_1x100.png":"jquery-ui/ui-bg_highlight-soft_75_cccccc_1x100-0c2f96e44d86042e97a1a3188141d8de.png","jquery-ui/ui-icons_222222_256x240.png":"jquery-ui/ui-icons_222222_256x240-3a92dcc42b992876335ae81da242fe5f.png","jquery-ui/ui-icons_2e83ff_256x240.png":"jquery-ui/ui-icons_2e83ff_256x240-2c61f38ac281b30c924aa57c0e15f797.png","jquery-ui/ui-icons_454545_256x240.png":"jquery-ui/ui-icons_454545_256x240-515ff3b290c7160a009324d292e3e64a.png","jquery-ui/ui-icons_888888_256x240.png":"jquery-ui/ui-icons_888888_256x240-dcb64181e6f3547e73afa034c4466dfd.png","jquery-ui/ui-icons_cd0a0a_256x240.png":"jquery-ui/ui-icons_cd0a0a_256x240-58c4a995b8b611cacb6645f6049b3935.png","thingspeak_logo_white.png":"thingspeak_logo_white-9cac8b416f09882dd73a79fb6cf638f1.png","thingspeak_stars_bg.jpg":"thingspeak_stars_bg-6908a0cfd5f88ec01ec60aeb1748d108.jpg"}} \ No newline at end of file +{"files":{"GitHub_ThingSpeak_API-f39bba3caddbf4af63e208b8552a98ac.jpg":{"logical_path":"GitHub_ThingSpeak_API.jpg","mtime":"2014-02-08T20:02:14-05:00","size":26303,"digest":"f39bba3caddbf4af63e208b8552a98ac"},"ThingSpeak_Logo-3139b15204b5af565fca3a5f342ef19c.png":{"logical_path":"ThingSpeak_Logo.png","mtime":"2014-02-08T20:02:14-05:00","size":9258,"digest":"3139b15204b5af565fca3a5f342ef19c"},"eye-b67d3d940541ae7d0b469ed20ee92fe3.png":{"logical_path":"eye.png","mtime":"2014-02-08T20:02:14-05:00","size":3294,"digest":"b67d3d940541ae7d0b469ed20ee92fe3"},"flag_gray-319110a59d1d75cad2d8f29af88fdb23.gif":{"logical_path":"flag_gray.gif","mtime":"2014-02-08T20:02:14-05:00","size":983,"digest":"319110a59d1d75cad2d8f29af88fdb23"},"flag_red-16607fd54284010c4e95d5e9a3935b40.gif":{"logical_path":"flag_red.gif","mtime":"2014-02-08T20:02:14-05:00","size":987,"digest":"16607fd54284010c4e95d5e9a3935b40"},"front-b28e4f9d550ff0101a0140b1fb1ec1da.png":{"logical_path":"front.png","mtime":"2014-02-08T20:02:14-05:00","size":17717,"digest":"b28e4f9d550ff0101a0140b1fb1ec1da"},"icon_location_24-40aef0eb9d6824f7538c1056c90a2156.png":{"logical_path":"icon_location_24.png","mtime":"2014-02-08T20:01:43-05:00","size":618,"digest":"40aef0eb9d6824f7538c1056c90a2156"},"icon_rss-3ce0d86e00a9e937993988e73720950e.gif":{"logical_path":"icon_rss.gif","mtime":"2014-02-08T20:02:14-05:00","size":1008,"digest":"3ce0d86e00a9e937993988e73720950e"},"icons/InfoBox-54072dd9794a709a9fee5ab80d4be545.png":{"logical_path":"icons/InfoBox.png","mtime":"2014-02-08T20:02:14-05:00","size":837,"digest":"54072dd9794a709a9fee5ab80d4be545"},"icons/Locked-84572b6d8c7a390e424483b16f28410f.png":{"logical_path":"icons/Locked.png","mtime":"2014-02-08T20:02:14-05:00","size":1882,"digest":"84572b6d8c7a390e424483b16f28410f"},"icons/Public_32-2bcfb892862a4396e3a5593a5e1df202.png":{"logical_path":"icons/Public_32.png","mtime":"2014-02-08T20:02:14-05:00","size":4788,"digest":"2bcfb892862a4396e3a5593a5e1df202"},"icons/Unlocked-226c08041c55d88ecf7898dffe6568aa.png":{"logical_path":"icons/Unlocked.png","mtime":"2014-02-08T20:02:14-05:00","size":1652,"digest":"226c08041c55d88ecf7898dffe6568aa"},"icons/delete-9a7fbc7ba573f4ab735f66bc17466a84.png":{"logical_path":"icons/delete.png","mtime":"2014-02-08T20:02:14-05:00","size":715,"digest":"9a7fbc7ba573f4ab735f66bc17466a84"},"my_house_status_update-526a896242134f12bf2882dfad48fe24.png":{"logical_path":"my_house_status_update.png","mtime":"2014-02-08T20:02:14-05:00","size":13437,"digest":"526a896242134f12bf2882dfad48fe24"},"rails-6a9a73b3eeba7d35c79c3de6fc98b6f1.png":{"logical_path":"rails.png","mtime":"2014-02-08T20:02:14-05:00","size":6646,"digest":"6a9a73b3eeba7d35c79c3de6fc98b6f1"},"react-99715cc1aac81b13fdc4384378c9cf0e.png":{"logical_path":"react.png","mtime":"2014-02-08T20:02:14-05:00","size":2996,"digest":"99715cc1aac81b13fdc4384378c9cf0e"},"scheduled_thinghttp-b525411c648770d5252475ab92925006.png":{"logical_path":"scheduled_thinghttp.png","mtime":"2014-02-08T20:02:14-05:00","size":8677,"digest":"b525411c648770d5252475ab92925006"},"shading-4c8cafd8b85355f46eedb553ece6a663.png":{"logical_path":"shading.png","mtime":"2014-02-08T20:02:14-05:00","size":565,"digest":"4c8cafd8b85355f46eedb553ece6a663"},"social_sensor_network_logo-2cc4b27d8115a3efcf38c0c6539d06fe.png":{"logical_path":"social_sensor_network_logo.png","mtime":"2014-02-08T20:02:14-05:00","size":15370,"digest":"2cc4b27d8115a3efcf38c0c6539d06fe"},"social_sensor_network_main-f2114a6f96a027de3c3b39aefd11a34b.png":{"logical_path":"social_sensor_network_main.png","mtime":"2014-02-08T20:02:14-05:00","size":132931,"digest":"f2114a6f96a027de3c3b39aefd11a34b"},"talkback-a8f0046a06cddead53bfe73e0a1b11b1.png":{"logical_path":"talkback.png","mtime":"2014-02-08T20:02:14-05:00","size":5183,"digest":"a8f0046a06cddead53bfe73e0a1b11b1"},"thinghttp-b22d0641869d4b49e8fdc1441d19bd9d.png":{"logical_path":"thinghttp.png","mtime":"2014-02-08T20:02:14-05:00","size":5918,"digest":"b22d0641869d4b49e8fdc1441d19bd9d"},"thingtweet-2f829197927298b1eb724a072adb072a.png":{"logical_path":"thingtweet.png","mtime":"2014-02-08T20:02:14-05:00","size":4075,"digest":"2f829197927298b1eb724a072adb072a"},"tweetcontrol-5fa1225bb39f188b215d5897b37c2c18.png":{"logical_path":"tweetcontrol.png","mtime":"2014-02-08T20:02:14-05:00","size":13429,"digest":"5fa1225bb39f188b215d5897b37c2c18"},"images/ui-bg_diagonals-thick_18_b81900_40x40-7cff5779324125bfa623755a21cb7d08.png":{"logical_path":"images/ui-bg_diagonals-thick_18_b81900_40x40.png","mtime":"2014-02-08T20:01:44-05:00","size":260,"digest":"7cff5779324125bfa623755a21cb7d08"},"images/ui-bg_diagonals-thick_20_666666_40x40-e3476d26e53f4b2bdba1cbd4216bd169.png":{"logical_path":"images/ui-bg_diagonals-thick_20_666666_40x40.png","mtime":"2014-02-08T20:01:44-05:00","size":251,"digest":"e3476d26e53f4b2bdba1cbd4216bd169"},"images/ui-bg_flat_10_000000_40x100-b4d9562e67d66d83845d2edeaae222d7.png":{"logical_path":"images/ui-bg_flat_10_000000_40x100.png","mtime":"2014-02-08T20:02:14-05:00","size":178,"digest":"b4d9562e67d66d83845d2edeaae222d7"},"images/ui-bg_glass_100_f6f6f6_1x400-4d37c970a424e84d47dd48ae788eaef8.png":{"logical_path":"images/ui-bg_glass_100_f6f6f6_1x400.png","mtime":"2014-02-08T20:01:44-05:00","size":104,"digest":"4d37c970a424e84d47dd48ae788eaef8"},"images/ui-bg_glass_100_fdf5ce_1x400-657936ddb303bcc8c34554da5279debe.png":{"logical_path":"images/ui-bg_glass_100_fdf5ce_1x400.png","mtime":"2014-02-08T20:02:14-05:00","size":125,"digest":"657936ddb303bcc8c34554da5279debe"},"images/ui-bg_glass_65_ffffff_1x400-5f18db79610dfa0b148ff6335bbc42cb.png":{"logical_path":"images/ui-bg_glass_65_ffffff_1x400.png","mtime":"2014-02-08T20:02:14-05:00","size":105,"digest":"5f18db79610dfa0b148ff6335bbc42cb"},"images/ui-bg_gloss-wave_35_f6a828_500x100-93fadea558da2231315ae756b3be6bbf.png":{"logical_path":"images/ui-bg_gloss-wave_35_f6a828_500x100.png","mtime":"2014-02-08T20:02:14-05:00","size":3762,"digest":"93fadea558da2231315ae756b3be6bbf"},"images/ui-bg_highlight-soft_100_eeeeee_1x100-4310274c0febae96f7f3d2f54b0a4f42.png":{"logical_path":"images/ui-bg_highlight-soft_100_eeeeee_1x100.png","mtime":"2014-02-08T20:01:44-05:00","size":90,"digest":"4310274c0febae96f7f3d2f54b0a4f42"},"images/ui-bg_highlight-soft_75_ffe45c_1x100-21008ee33c710d7e484d7f88f2c7dc21.png":{"logical_path":"images/ui-bg_highlight-soft_75_ffe45c_1x100.png","mtime":"2014-02-08T20:02:14-05:00","size":129,"digest":"21008ee33c710d7e484d7f88f2c7dc21"},"images/ui-icons_222222_256x240-d83eeaaf84f04ca2c5d6a684bc7629af.png":{"logical_path":"images/ui-icons_222222_256x240.png","mtime":"2014-02-08T20:02:14-05:00","size":4369,"digest":"d83eeaaf84f04ca2c5d6a684bc7629af"},"images/ui-icons_228ef1_256x240-65e412c112f4e7ee270afb71005fd17d.png":{"logical_path":"images/ui-icons_228ef1_256x240.png","mtime":"2014-02-08T20:02:14-05:00","size":4369,"digest":"65e412c112f4e7ee270afb71005fd17d"},"images/ui-icons_ef8c08_256x240-8b462cb27e07227bac8bd0020d9933e4.png":{"logical_path":"images/ui-icons_ef8c08_256x240.png","mtime":"2014-02-08T20:02:14-05:00","size":4369,"digest":"8b462cb27e07227bac8bd0020d9933e4"},"images/ui-icons_ffd27a_256x240-3d95bb913fb70688654b00e8ed1eb247.png":{"logical_path":"images/ui-icons_ffd27a_256x240.png","mtime":"2014-02-08T20:02:14-05:00","size":4369,"digest":"3d95bb913fb70688654b00e8ed1eb247"},"images/ui-icons_ffffff_256x240-2066cf4b1373355dbf4a2031099e1a04.png":{"logical_path":"images/ui-icons_ffffff_256x240.png","mtime":"2014-02-08T20:02:14-05:00","size":4369,"digest":"2066cf4b1373355dbf4a2031099e1a04"},"thingspeak_logo-95d6e7cb7f17bbbc1526407176244ca8.png":{"logical_path":"thingspeak_logo.png","mtime":"2014-02-10T17:38:24-05:00","size":1609,"digest":"95d6e7cb7f17bbbc1526407176244ca8"},"GitHub_ThingSpeak_API-c55761d06c28c72e17c9196391bf7fe4.jpg":{"logical_path":"GitHub_ThingSpeak_API.jpg","mtime":"2014-07-30T11:58:22-04:00","size":26303,"digest":"c55761d06c28c72e17c9196391bf7fe4"},"eye-9175769cbdc94be2e5c44c59fdd3cbcd.png":{"logical_path":"eye.png","mtime":"2014-02-27T12:20:28-05:00","size":3294,"digest":"9175769cbdc94be2e5c44c59fdd3cbcd"},"flag_gray-a465b55d9751d7d19801facf9d7d66b2.gif":{"logical_path":"flag_gray.gif","mtime":"2014-02-27T12:20:28-05:00","size":983,"digest":"a465b55d9751d7d19801facf9d7d66b2"},"flag_red-87843b96f6a35694691fd624cd68a802.gif":{"logical_path":"flag_red.gif","mtime":"2014-02-27T12:20:27-05:00","size":987,"digest":"87843b96f6a35694691fd624cd68a802"},"front-44d3070595f891d9a2d88e00606c6325.png":{"logical_path":"front.png","mtime":"2014-02-27T12:20:28-05:00","size":17717,"digest":"44d3070595f891d9a2d88e00606c6325"},"icon_location_24-bf607f94a54f074c940a844771200b1b.png":{"logical_path":"icon_location_24.png","mtime":"2014-02-27T12:20:28-05:00","size":618,"digest":"bf607f94a54f074c940a844771200b1b"},"icon_rss-2687cbed842e6291c3a7b431f7bad93e.gif":{"logical_path":"icon_rss.gif","mtime":"2014-02-27T12:20:27-05:00","size":1008,"digest":"2687cbed842e6291c3a7b431f7bad93e"},"icons/InfoBox-3dd7c57e5ed644dc9fa79014c10478ea.png":{"logical_path":"icons/InfoBox.png","mtime":"2014-02-27T12:20:28-05:00","size":837,"digest":"3dd7c57e5ed644dc9fa79014c10478ea"},"icons/Locked-dd04ba8d213caf20f92028729f7d652b.png":{"logical_path":"icons/Locked.png","mtime":"2014-02-27T12:20:28-05:00","size":1882,"digest":"dd04ba8d213caf20f92028729f7d652b"},"icons/Public_32-40b058ba964e1b896725268b604c9c74.png":{"logical_path":"icons/Public_32.png","mtime":"2014-02-27T12:20:28-05:00","size":4788,"digest":"40b058ba964e1b896725268b604c9c74"},"icons/Unlocked-d8d39a21ce887850ee0acfcaf6553d1c.png":{"logical_path":"icons/Unlocked.png","mtime":"2014-02-27T12:20:28-05:00","size":1652,"digest":"d8d39a21ce887850ee0acfcaf6553d1c"},"icons/delete-1b8201e6714e82d1b6343aaa53e6ac91.png":{"logical_path":"icons/delete.png","mtime":"2014-02-27T12:20:28-05:00","size":715,"digest":"1b8201e6714e82d1b6343aaa53e6ac91"},"my_house_status_update-d4b1ef118189a8deb613efab4dd0de51.png":{"logical_path":"my_house_status_update.png","mtime":"2014-07-20T18:51:26-04:00","size":13437,"digest":"d4b1ef118189a8deb613efab4dd0de51"},"rails-8a98a69213c3e39ca47a4f822df62bfb.png":{"logical_path":"rails.png","mtime":"2014-02-27T12:20:28-05:00","size":6646,"digest":"8a98a69213c3e39ca47a4f822df62bfb"},"react-813abec4f0db433aa7c583c33e2332ac.png":{"logical_path":"react.png","mtime":"2014-07-20T18:51:26-04:00","size":2996,"digest":"813abec4f0db433aa7c583c33e2332ac"},"scheduled_thinghttp-6151786a4ee07a2cab4c605587a75016.png":{"logical_path":"scheduled_thinghttp.png","mtime":"2014-07-20T18:51:27-04:00","size":8677,"digest":"6151786a4ee07a2cab4c605587a75016"},"shading-0b2c43248624209936e2bf318c546c16.png":{"logical_path":"shading.png","mtime":"2014-02-27T12:20:28-05:00","size":565,"digest":"0b2c43248624209936e2bf318c546c16"},"social_sensor_network_logo-4a42dbecef9e2ab82564b14592f5d05b.png":{"logical_path":"social_sensor_network_logo.png","mtime":"2014-07-20T18:51:26-04:00","size":15370,"digest":"4a42dbecef9e2ab82564b14592f5d05b"},"social_sensor_network_main-20c93960eee4b916ed842f414bf7fea5.png":{"logical_path":"social_sensor_network_main.png","mtime":"2014-07-20T18:51:27-04:00","size":132931,"digest":"20c93960eee4b916ed842f414bf7fea5"},"talkback-e9f9fa607f7739892d8cd73682aba65d.png":{"logical_path":"talkback.png","mtime":"2014-07-20T18:51:26-04:00","size":5183,"digest":"e9f9fa607f7739892d8cd73682aba65d"},"thinghttp-bb3f9377bc76eaaff763e4f7b4a03577.png":{"logical_path":"thinghttp.png","mtime":"2014-07-20T18:51:26-04:00","size":5918,"digest":"bb3f9377bc76eaaff763e4f7b4a03577"},"thingspeak_logo-dadc6a1037759f672179ca2d4e96ba6d.png":{"logical_path":"thingspeak_logo.png","mtime":"2014-02-27T12:20:27-05:00","size":1609,"digest":"dadc6a1037759f672179ca2d4e96ba6d"},"thingtweet-e770a29c4bb3dc128d9023f0bab6e7c6.png":{"logical_path":"thingtweet.png","mtime":"2014-07-20T18:51:27-04:00","size":4075,"digest":"e770a29c4bb3dc128d9023f0bab6e7c6"},"tweetcontrol-3f52ce7cf7f2796df769016ca2487a37.png":{"logical_path":"tweetcontrol.png","mtime":"2014-07-20T18:51:26-04:00","size":13429,"digest":"3f52ce7cf7f2796df769016ca2487a37"},"tweetcontrol_sample-29e6418760cec16453cc0b3b5707b7c2.png":{"logical_path":"tweetcontrol_sample.png","mtime":"2014-07-20T18:51:27-04:00","size":24608,"digest":"29e6418760cec16453cc0b3b5707b7c2"},"images/ui-bg_diagonals-thick_18_b81900_40x40-8da1641e421200ea88d476a6040548f4.png":{"logical_path":"images/ui-bg_diagonals-thick_18_b81900_40x40.png","mtime":"2014-07-20T18:51:27-04:00","size":260,"digest":"8da1641e421200ea88d476a6040548f4"},"images/ui-bg_diagonals-thick_20_666666_40x40-fbffa7c43cac930aa61ea7f15bcee131.png":{"logical_path":"images/ui-bg_diagonals-thick_20_666666_40x40.png","mtime":"2014-07-20T18:51:27-04:00","size":251,"digest":"fbffa7c43cac930aa61ea7f15bcee131"},"images/ui-bg_flat_10_000000_40x100-dabfeb3662bfa05f655ed5056cce2124.png":{"logical_path":"images/ui-bg_flat_10_000000_40x100.png","mtime":"2014-07-20T18:51:27-04:00","size":178,"digest":"dabfeb3662bfa05f655ed5056cce2124"},"images/ui-bg_glass_100_f6f6f6_1x400-ee77c8327f94bab46c89043ffce9444c.png":{"logical_path":"images/ui-bg_glass_100_f6f6f6_1x400.png","mtime":"2014-07-20T18:51:27-04:00","size":104,"digest":"ee77c8327f94bab46c89043ffce9444c"},"images/ui-bg_glass_100_fdf5ce_1x400-c1024fd9f647f2bf814e32f41e5632c3.png":{"logical_path":"images/ui-bg_glass_100_fdf5ce_1x400.png","mtime":"2014-07-20T18:51:27-04:00","size":125,"digest":"c1024fd9f647f2bf814e32f41e5632c3"},"images/ui-bg_glass_65_ffffff_1x400-6879b674aed618d3df27bd2027469557.png":{"logical_path":"images/ui-bg_glass_65_ffffff_1x400.png","mtime":"2014-07-20T18:51:27-04:00","size":105,"digest":"6879b674aed618d3df27bd2027469557"},"images/ui-bg_gloss-wave_35_f6a828_500x100-61763bbe727affffa1bef63e1492d8a9.png":{"logical_path":"images/ui-bg_gloss-wave_35_f6a828_500x100.png","mtime":"2014-07-20T18:51:27-04:00","size":3762,"digest":"61763bbe727affffa1bef63e1492d8a9"},"images/ui-bg_highlight-soft_100_eeeeee_1x100-f4dc124a7f6d39a9c8a496120c5e8273.png":{"logical_path":"images/ui-bg_highlight-soft_100_eeeeee_1x100.png","mtime":"2014-07-20T18:51:27-04:00","size":90,"digest":"f4dc124a7f6d39a9c8a496120c5e8273"},"images/ui-bg_highlight-soft_75_ffe45c_1x100-970b8bb07ae918e7591662db33b7482e.png":{"logical_path":"images/ui-bg_highlight-soft_75_ffe45c_1x100.png","mtime":"2014-07-20T18:51:27-04:00","size":129,"digest":"970b8bb07ae918e7591662db33b7482e"},"images/ui-icons_222222_256x240-6597c301cf369830bb7171882648f85e.png":{"logical_path":"images/ui-icons_222222_256x240.png","mtime":"2014-07-20T18:51:27-04:00","size":4369,"digest":"6597c301cf369830bb7171882648f85e"},"images/ui-icons_228ef1_256x240-2c0de233993aabf35f961f7c39fa9263.png":{"logical_path":"images/ui-icons_228ef1_256x240.png","mtime":"2014-07-20T18:51:27-04:00","size":4369,"digest":"2c0de233993aabf35f961f7c39fa9263"},"images/ui-icons_ef8c08_256x240-8e46c4f4ea98a986f4e877a51e4c15c5.png":{"logical_path":"images/ui-icons_ef8c08_256x240.png","mtime":"2014-07-20T18:51:27-04:00","size":4369,"digest":"8e46c4f4ea98a986f4e877a51e4c15c5"},"images/ui-icons_ffd27a_256x240-f6366c00a59227a55e14d94caaeea3f6.png":{"logical_path":"images/ui-icons_ffd27a_256x240.png","mtime":"2014-07-20T18:51:27-04:00","size":4369,"digest":"f6366c00a59227a55e14d94caaeea3f6"},"images/ui-icons_ffffff_256x240-13dbadd07134115add4ebe610d444859.png":{"logical_path":"images/ui-icons_ffffff_256x240.png","mtime":"2014-07-20T18:51:27-04:00","size":4369,"digest":"13dbadd07134115add4ebe610d444859"},"channel_public_view-81af126139a236e81d91e5a5a76d603e.png":{"logical_path":"channel_public_view.png","mtime":"2014-07-20T18:51:26-04:00","size":112757,"digest":"81af126139a236e81d91e5a5a76d603e"},"ajax-loader-02917e3c114fd83f5c4c17953aa87e83.gif":{"logical_path":"ajax-loader.gif","mtime":"2014-07-20T18:51:26-04:00","size":3208,"digest":"02917e3c114fd83f5c4c17953aa87e83"},"active_admin-b50063add15e7f808a148a820d74bf3d.js":{"logical_path":"active_admin.js","mtime":"2014-03-20T16:39:45-04:00","size":243506,"digest":"b50063add15e7f808a148a820d74bf3d"},"active_admin-ef03ab96648e45e8a22d6690f32d1693.css":{"logical_path":"active_admin.css","mtime":"2014-03-20T16:38:50-04:00","size":70032,"digest":"ef03ab96648e45e8a22d6690f32d1693"},"active_admin/admin_notes_icon-44589ac44518808ac8dadd1755e03161.png":{"logical_path":"active_admin/admin_notes_icon.png","mtime":"2014-05-08T19:27:41-04:00","size":716,"digest":"44589ac44518808ac8dadd1755e03161"},"active_admin/datepicker/datepicker-header-bg-bcad4373bcdc56124322dea658739849.png":{"logical_path":"active_admin/datepicker/datepicker-header-bg.png","mtime":"2014-05-08T19:27:41-04:00","size":1701,"digest":"bcad4373bcdc56124322dea658739849"},"active_admin/datepicker/datepicker-input-icon-20df875ab8a44d588cbfd3d8018a52b9.png":{"logical_path":"active_admin/datepicker/datepicker-input-icon.png","mtime":"2014-05-08T19:27:41-04:00","size":1535,"digest":"20df875ab8a44d588cbfd3d8018a52b9"},"active_admin/datepicker/datepicker-next-link-icon-f9ef6d04c65df1cb5bda725ebba623a1.png":{"logical_path":"active_admin/datepicker/datepicker-next-link-icon.png","mtime":"2014-05-08T19:27:41-04:00","size":1006,"digest":"f9ef6d04c65df1cb5bda725ebba623a1"},"active_admin/datepicker/datepicker-nipple-c6e265f4a33a97853a69662e6350cb31.png":{"logical_path":"active_admin/datepicker/datepicker-nipple.png","mtime":"2014-05-08T19:27:41-04:00","size":1224,"digest":"c6e265f4a33a97853a69662e6350cb31"},"active_admin/datepicker/datepicker-prev-link-icon-ce5f918e536f436ca2095a9e7442c6df.png":{"logical_path":"active_admin/datepicker/datepicker-prev-link-icon.png","mtime":"2014-05-08T19:27:41-04:00","size":1004,"digest":"ce5f918e536f436ca2095a9e7442c6df"},"active_admin/index_list_icons/block_icon-efadf57de7365b6e1919448c310b5f04.svg":{"logical_path":"active_admin/index_list_icons/block_icon.svg","mtime":"2014-05-08T19:27:41-04:00","size":1141,"digest":"efadf57de7365b6e1919448c310b5f04"},"active_admin/index_list_icons/blog_icon-9522bfa7d1eadd437164992512ac461f.svg":{"logical_path":"active_admin/index_list_icons/blog_icon.svg","mtime":"2014-05-08T19:27:41-04:00","size":881,"digest":"9522bfa7d1eadd437164992512ac461f"},"active_admin/index_list_icons/grid_icon-5dbe976f21a86b79408e60b949411fd5.svg":{"logical_path":"active_admin/index_list_icons/grid_icon.svg","mtime":"2014-05-08T19:27:41-04:00","size":2132,"digest":"5dbe976f21a86b79408e60b949411fd5"},"active_admin/index_list_icons/table_icon-5276b83ac60335e2891d9f0cbbf368ae.svg":{"logical_path":"active_admin/index_list_icons/table_icon.svg","mtime":"2014-05-08T19:27:41-04:00","size":815,"digest":"5276b83ac60335e2891d9f0cbbf368ae"},"active_admin/loading-aebaee21d194d63dd36be976ac42d09b.gif":{"logical_path":"active_admin/loading.gif","mtime":"2014-05-08T19:27:41-04:00","size":2079,"digest":"aebaee21d194d63dd36be976ac42d09b"},"active_admin/nested_menu_arrow-94d9c4f73e81d377f80ae8dbcc71128b.gif":{"logical_path":"active_admin/nested_menu_arrow.gif","mtime":"2014-05-08T19:27:41-04:00","size":70,"digest":"94d9c4f73e81d377f80ae8dbcc71128b"},"active_admin/nested_menu_arrow_dark-b40a488b4f4b7d25cce531a15db4037b.gif":{"logical_path":"active_admin/nested_menu_arrow_dark.gif","mtime":"2014-05-08T19:27:41-04:00","size":70,"digest":"b40a488b4f4b7d25cce531a15db4037b"},"active_admin/orderable-61b5d7f5855b4fbc6b718755d542b71b.png":{"logical_path":"active_admin/orderable.png","mtime":"2014-05-08T19:27:41-04:00","size":220,"digest":"61b5d7f5855b4fbc6b718755d542b71b"},"active_admin/application-e851fe02b20790a5242ac0333acdc2e5.js":{"logical_path":"active_admin/application.js","mtime":"2014-05-08T19:27:41-04:00","size":749,"digest":"e851fe02b20790a5242ac0333acdc2e5"},"active_admin/print-d21aee48657d1ea57f4695edbb2b1b06.css":{"logical_path":"active_admin/print.css","mtime":"2014-05-08T19:27:41-04:00","size":5460,"digest":"d21aee48657d1ea57f4695edbb2b1b06"},"jquery-ui/animated-overlay-f66f40fcb74b7b2076d2a140ad33132d.gif":{"logical_path":"jquery-ui/animated-overlay.gif","mtime":"2014-05-08T19:28:03-04:00","size":1738,"digest":"f66f40fcb74b7b2076d2a140ad33132d"},"jquery-ui/ui-bg_flat_0_aaaaaa_40x100-8c3a37f71112e61b7a0f09cbc94995c9.png":{"logical_path":"jquery-ui/ui-bg_flat_0_aaaaaa_40x100.png","mtime":"2014-05-08T19:28:03-04:00","size":180,"digest":"8c3a37f71112e61b7a0f09cbc94995c9"},"jquery-ui/ui-bg_flat_75_ffffff_40x100-3af74dc50888d335b78248a0694bbd21.png":{"logical_path":"jquery-ui/ui-bg_flat_75_ffffff_40x100.png","mtime":"2014-05-08T19:28:03-04:00","size":178,"digest":"3af74dc50888d335b78248a0694bbd21"},"jquery-ui/ui-bg_glass_55_fbf9ee_1x400-d63699c9cc07cd2ecbf3233058f1638e.png":{"logical_path":"jquery-ui/ui-bg_glass_55_fbf9ee_1x400.png","mtime":"2014-05-08T19:28:03-04:00","size":120,"digest":"d63699c9cc07cd2ecbf3233058f1638e"},"jquery-ui/ui-bg_glass_65_ffffff_1x400-6879b674aed618d3df27bd2027469557.png":{"logical_path":"jquery-ui/ui-bg_glass_65_ffffff_1x400.png","mtime":"2014-05-08T19:28:03-04:00","size":105,"digest":"6879b674aed618d3df27bd2027469557"},"jquery-ui/ui-bg_glass_75_dadada_1x400-393389b036ccddba12c4032ebba856d9.png":{"logical_path":"jquery-ui/ui-bg_glass_75_dadada_1x400.png","mtime":"2014-05-08T19:28:03-04:00","size":111,"digest":"393389b036ccddba12c4032ebba856d9"},"jquery-ui/ui-bg_glass_75_e6e6e6_1x400-470ccb5154632a9b5118eb8246e61097.png":{"logical_path":"jquery-ui/ui-bg_glass_75_e6e6e6_1x400.png","mtime":"2014-05-08T19:28:03-04:00","size":110,"digest":"470ccb5154632a9b5118eb8246e61097"},"jquery-ui/ui-bg_glass_95_fef1ec_1x400-5a857f14cf3a69c2bf968f54ea5d3037.png":{"logical_path":"jquery-ui/ui-bg_glass_95_fef1ec_1x400.png","mtime":"2014-05-08T19:28:03-04:00","size":119,"digest":"5a857f14cf3a69c2bf968f54ea5d3037"},"jquery-ui/ui-bg_highlight-soft_75_cccccc_1x100-0c2f96e44d86042e97a1a3188141d8de.png":{"logical_path":"jquery-ui/ui-bg_highlight-soft_75_cccccc_1x100.png","mtime":"2014-05-08T19:28:03-04:00","size":101,"digest":"0c2f96e44d86042e97a1a3188141d8de"},"jquery-ui/ui-icons_222222_256x240-3a92dcc42b992876335ae81da242fe5f.png":{"logical_path":"jquery-ui/ui-icons_222222_256x240.png","mtime":"2014-05-08T19:28:03-04:00","size":4369,"digest":"3a92dcc42b992876335ae81da242fe5f"},"jquery-ui/ui-icons_2e83ff_256x240-2c61f38ac281b30c924aa57c0e15f797.png":{"logical_path":"jquery-ui/ui-icons_2e83ff_256x240.png","mtime":"2014-05-08T19:28:03-04:00","size":4369,"digest":"2c61f38ac281b30c924aa57c0e15f797"},"jquery-ui/ui-icons_454545_256x240-515ff3b290c7160a009324d292e3e64a.png":{"logical_path":"jquery-ui/ui-icons_454545_256x240.png","mtime":"2014-05-08T19:28:03-04:00","size":4369,"digest":"515ff3b290c7160a009324d292e3e64a"},"jquery-ui/ui-icons_888888_256x240-dcb64181e6f3547e73afa034c4466dfd.png":{"logical_path":"jquery-ui/ui-icons_888888_256x240.png","mtime":"2014-05-08T19:28:03-04:00","size":4369,"digest":"dcb64181e6f3547e73afa034c4466dfd"},"jquery-ui/ui-icons_cd0a0a_256x240-58c4a995b8b611cacb6645f6049b3935.png":{"logical_path":"jquery-ui/ui-icons_cd0a0a_256x240.png","mtime":"2014-05-08T19:28:03-04:00","size":4369,"digest":"58c4a995b8b611cacb6645f6049b3935"},"thingspeak_logo_white-9cac8b416f09882dd73a79fb6cf638f1.png":{"logical_path":"thingspeak_logo_white.png","mtime":"2014-08-01T14:27:59-04:00","size":2954,"digest":"9cac8b416f09882dd73a79fb6cf638f1"},"thingspeak_stars_bg-6908a0cfd5f88ec01ec60aeb1748d108.jpg":{"logical_path":"thingspeak_stars_bg.jpg","mtime":"2014-08-01T14:27:59-04:00","size":125372,"digest":"6908a0cfd5f88ec01ec60aeb1748d108"},"active_admin-daf1d88b3b2d591e19aa91972d495192.js":{"logical_path":"active_admin.js","mtime":"2014-07-20T18:51:27-04:00","size":243581,"digest":"daf1d88b3b2d591e19aa91972d495192"},"application-2ed742652fb31d3ebe34470275a2cc0c.js":{"logical_path":"application.js","mtime":"2014-07-23T13:33:11-04:00","size":63479,"digest":"2ed742652fb31d3ebe34470275a2cc0c"},"application-53947515558473d9fe0b469e83301e18.js":{"logical_path":"application.js","mtime":"2014-07-31T14:58:20-04:00","size":63511,"digest":"53947515558473d9fe0b469e83301e18"},"application-acf65447ac760ab7c9d4797a529315a8.js":{"logical_path":"application.js","mtime":"2014-08-01T21:15:46-04:00","size":63542,"digest":"acf65447ac760ab7c9d4797a529315a8"},"application-5200a9bdb06f602f5a693acb90d67248.css":{"logical_path":"application.css","mtime":"2014-08-06T11:01:53-04:00","size":43774,"digest":"5200a9bdb06f602f5a693acb90d67248"},"application-18dd892b59e443d4c090309575b1c7c9.css":{"logical_path":"application.css","mtime":"2014-08-06T11:06:36-04:00","size":43816,"digest":"18dd892b59e443d4c090309575b1c7c9"},"application-540f4fead37885553021bac515a4c60c.css":{"logical_path":"application.css","mtime":"2014-08-15T21:49:38-04:00","size":43814,"digest":"540f4fead37885553021bac515a4c60c"},"active_admin-4181fc567971368e6063e9b90fd937e9.css":{"logical_path":"active_admin.css","mtime":"2014-07-20T18:51:27-04:00","size":69858,"digest":"4181fc567971368e6063e9b90fd937e9"},"timecontrol_form-491c6c7b902cfc83460e0912e29daa11.js":{"logical_path":"timecontrol_form.js","mtime":"2014-09-12T13:40:43-04:00","size":958,"digest":"491c6c7b902cfc83460e0912e29daa11"}},"assets":{"GitHub_ThingSpeak_API.jpg":"GitHub_ThingSpeak_API-c55761d06c28c72e17c9196391bf7fe4.jpg","ThingSpeak_Logo.png":"ThingSpeak_Logo-3139b15204b5af565fca3a5f342ef19c.png","eye.png":"eye-9175769cbdc94be2e5c44c59fdd3cbcd.png","flag_gray.gif":"flag_gray-a465b55d9751d7d19801facf9d7d66b2.gif","flag_red.gif":"flag_red-87843b96f6a35694691fd624cd68a802.gif","front.png":"front-44d3070595f891d9a2d88e00606c6325.png","icon_location_24.png":"icon_location_24-bf607f94a54f074c940a844771200b1b.png","icon_rss.gif":"icon_rss-2687cbed842e6291c3a7b431f7bad93e.gif","icons/InfoBox.png":"icons/InfoBox-3dd7c57e5ed644dc9fa79014c10478ea.png","icons/Locked.png":"icons/Locked-dd04ba8d213caf20f92028729f7d652b.png","icons/Public_32.png":"icons/Public_32-40b058ba964e1b896725268b604c9c74.png","icons/Unlocked.png":"icons/Unlocked-d8d39a21ce887850ee0acfcaf6553d1c.png","icons/delete.png":"icons/delete-1b8201e6714e82d1b6343aaa53e6ac91.png","my_house_status_update.png":"my_house_status_update-d4b1ef118189a8deb613efab4dd0de51.png","rails.png":"rails-8a98a69213c3e39ca47a4f822df62bfb.png","react.png":"react-813abec4f0db433aa7c583c33e2332ac.png","scheduled_thinghttp.png":"scheduled_thinghttp-6151786a4ee07a2cab4c605587a75016.png","shading.png":"shading-0b2c43248624209936e2bf318c546c16.png","social_sensor_network_logo.png":"social_sensor_network_logo-4a42dbecef9e2ab82564b14592f5d05b.png","social_sensor_network_main.png":"social_sensor_network_main-20c93960eee4b916ed842f414bf7fea5.png","talkback.png":"talkback-e9f9fa607f7739892d8cd73682aba65d.png","thinghttp.png":"thinghttp-bb3f9377bc76eaaff763e4f7b4a03577.png","thingtweet.png":"thingtweet-e770a29c4bb3dc128d9023f0bab6e7c6.png","tweetcontrol.png":"tweetcontrol-3f52ce7cf7f2796df769016ca2487a37.png","application.js":"application-acf65447ac760ab7c9d4797a529315a8.js","application.css":"application-540f4fead37885553021bac515a4c60c.css","images/ui-bg_diagonals-thick_18_b81900_40x40.png":"images/ui-bg_diagonals-thick_18_b81900_40x40-8da1641e421200ea88d476a6040548f4.png","images/ui-bg_diagonals-thick_20_666666_40x40.png":"images/ui-bg_diagonals-thick_20_666666_40x40-fbffa7c43cac930aa61ea7f15bcee131.png","images/ui-bg_flat_10_000000_40x100.png":"images/ui-bg_flat_10_000000_40x100-dabfeb3662bfa05f655ed5056cce2124.png","images/ui-bg_glass_100_f6f6f6_1x400.png":"images/ui-bg_glass_100_f6f6f6_1x400-ee77c8327f94bab46c89043ffce9444c.png","images/ui-bg_glass_100_fdf5ce_1x400.png":"images/ui-bg_glass_100_fdf5ce_1x400-c1024fd9f647f2bf814e32f41e5632c3.png","images/ui-bg_glass_65_ffffff_1x400.png":"images/ui-bg_glass_65_ffffff_1x400-6879b674aed618d3df27bd2027469557.png","images/ui-bg_gloss-wave_35_f6a828_500x100.png":"images/ui-bg_gloss-wave_35_f6a828_500x100-61763bbe727affffa1bef63e1492d8a9.png","images/ui-bg_highlight-soft_100_eeeeee_1x100.png":"images/ui-bg_highlight-soft_100_eeeeee_1x100-f4dc124a7f6d39a9c8a496120c5e8273.png","images/ui-bg_highlight-soft_75_ffe45c_1x100.png":"images/ui-bg_highlight-soft_75_ffe45c_1x100-970b8bb07ae918e7591662db33b7482e.png","images/ui-icons_222222_256x240.png":"images/ui-icons_222222_256x240-6597c301cf369830bb7171882648f85e.png","images/ui-icons_228ef1_256x240.png":"images/ui-icons_228ef1_256x240-2c0de233993aabf35f961f7c39fa9263.png","images/ui-icons_ef8c08_256x240.png":"images/ui-icons_ef8c08_256x240-8e46c4f4ea98a986f4e877a51e4c15c5.png","images/ui-icons_ffd27a_256x240.png":"images/ui-icons_ffd27a_256x240-f6366c00a59227a55e14d94caaeea3f6.png","images/ui-icons_ffffff_256x240.png":"images/ui-icons_ffffff_256x240-13dbadd07134115add4ebe610d444859.png","thingspeak_logo.png":"thingspeak_logo-dadc6a1037759f672179ca2d4e96ba6d.png","tweetcontrol_sample.png":"tweetcontrol_sample-29e6418760cec16453cc0b3b5707b7c2.png","channel_public_view.png":"channel_public_view-81af126139a236e81d91e5a5a76d603e.png","ajax-loader.gif":"ajax-loader-02917e3c114fd83f5c4c17953aa87e83.gif","active_admin.js":"active_admin-daf1d88b3b2d591e19aa91972d495192.js","active_admin.css":"active_admin-4181fc567971368e6063e9b90fd937e9.css","active_admin/admin_notes_icon.png":"active_admin/admin_notes_icon-44589ac44518808ac8dadd1755e03161.png","active_admin/datepicker/datepicker-header-bg.png":"active_admin/datepicker/datepicker-header-bg-bcad4373bcdc56124322dea658739849.png","active_admin/datepicker/datepicker-input-icon.png":"active_admin/datepicker/datepicker-input-icon-20df875ab8a44d588cbfd3d8018a52b9.png","active_admin/datepicker/datepicker-next-link-icon.png":"active_admin/datepicker/datepicker-next-link-icon-f9ef6d04c65df1cb5bda725ebba623a1.png","active_admin/datepicker/datepicker-nipple.png":"active_admin/datepicker/datepicker-nipple-c6e265f4a33a97853a69662e6350cb31.png","active_admin/datepicker/datepicker-prev-link-icon.png":"active_admin/datepicker/datepicker-prev-link-icon-ce5f918e536f436ca2095a9e7442c6df.png","active_admin/index_list_icons/block_icon.svg":"active_admin/index_list_icons/block_icon-efadf57de7365b6e1919448c310b5f04.svg","active_admin/index_list_icons/blog_icon.svg":"active_admin/index_list_icons/blog_icon-9522bfa7d1eadd437164992512ac461f.svg","active_admin/index_list_icons/grid_icon.svg":"active_admin/index_list_icons/grid_icon-5dbe976f21a86b79408e60b949411fd5.svg","active_admin/index_list_icons/table_icon.svg":"active_admin/index_list_icons/table_icon-5276b83ac60335e2891d9f0cbbf368ae.svg","active_admin/loading.gif":"active_admin/loading-aebaee21d194d63dd36be976ac42d09b.gif","active_admin/nested_menu_arrow.gif":"active_admin/nested_menu_arrow-94d9c4f73e81d377f80ae8dbcc71128b.gif","active_admin/nested_menu_arrow_dark.gif":"active_admin/nested_menu_arrow_dark-b40a488b4f4b7d25cce531a15db4037b.gif","active_admin/orderable.png":"active_admin/orderable-61b5d7f5855b4fbc6b718755d542b71b.png","active_admin/application.js":"active_admin/application-e851fe02b20790a5242ac0333acdc2e5.js","active_admin/print.css":"active_admin/print-d21aee48657d1ea57f4695edbb2b1b06.css","jquery-ui/animated-overlay.gif":"jquery-ui/animated-overlay-f66f40fcb74b7b2076d2a140ad33132d.gif","jquery-ui/ui-bg_flat_0_aaaaaa_40x100.png":"jquery-ui/ui-bg_flat_0_aaaaaa_40x100-8c3a37f71112e61b7a0f09cbc94995c9.png","jquery-ui/ui-bg_flat_75_ffffff_40x100.png":"jquery-ui/ui-bg_flat_75_ffffff_40x100-3af74dc50888d335b78248a0694bbd21.png","jquery-ui/ui-bg_glass_55_fbf9ee_1x400.png":"jquery-ui/ui-bg_glass_55_fbf9ee_1x400-d63699c9cc07cd2ecbf3233058f1638e.png","jquery-ui/ui-bg_glass_65_ffffff_1x400.png":"jquery-ui/ui-bg_glass_65_ffffff_1x400-6879b674aed618d3df27bd2027469557.png","jquery-ui/ui-bg_glass_75_dadada_1x400.png":"jquery-ui/ui-bg_glass_75_dadada_1x400-393389b036ccddba12c4032ebba856d9.png","jquery-ui/ui-bg_glass_75_e6e6e6_1x400.png":"jquery-ui/ui-bg_glass_75_e6e6e6_1x400-470ccb5154632a9b5118eb8246e61097.png","jquery-ui/ui-bg_glass_95_fef1ec_1x400.png":"jquery-ui/ui-bg_glass_95_fef1ec_1x400-5a857f14cf3a69c2bf968f54ea5d3037.png","jquery-ui/ui-bg_highlight-soft_75_cccccc_1x100.png":"jquery-ui/ui-bg_highlight-soft_75_cccccc_1x100-0c2f96e44d86042e97a1a3188141d8de.png","jquery-ui/ui-icons_222222_256x240.png":"jquery-ui/ui-icons_222222_256x240-3a92dcc42b992876335ae81da242fe5f.png","jquery-ui/ui-icons_2e83ff_256x240.png":"jquery-ui/ui-icons_2e83ff_256x240-2c61f38ac281b30c924aa57c0e15f797.png","jquery-ui/ui-icons_454545_256x240.png":"jquery-ui/ui-icons_454545_256x240-515ff3b290c7160a009324d292e3e64a.png","jquery-ui/ui-icons_888888_256x240.png":"jquery-ui/ui-icons_888888_256x240-dcb64181e6f3547e73afa034c4466dfd.png","jquery-ui/ui-icons_cd0a0a_256x240.png":"jquery-ui/ui-icons_cd0a0a_256x240-58c4a995b8b611cacb6645f6049b3935.png","thingspeak_logo_white.png":"thingspeak_logo_white-9cac8b416f09882dd73a79fb6cf638f1.png","thingspeak_stars_bg.jpg":"thingspeak_stars_bg-6908a0cfd5f88ec01ec60aeb1748d108.jpg","timecontrol_form.js":"timecontrol_form-491c6c7b902cfc83460e0912e29daa11.js"}} \ No newline at end of file