instagram-rss_generator 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 4ddadbcca54e495afa4276f97439d189f5692f93
4
+ data.tar.gz: 10df40971c9adeebba6d18feebd2a809b6902d47
5
+ SHA512:
6
+ metadata.gz: 8e8494665344b32eff403a4df8fe9e14e2cb23870caf34b45e153f40f7bb86802a1f1a737a00bd55e228785ad8770dd239bf3423d4993fb6d86cdaee43237fe3
7
+ data.tar.gz: 208318d65c50bb955adb19ba4bf7aa4583bd95a4122e09eccaf52ce35a73c5012ca63ead5fbb88240d92d791f55ccf616c414b4b1fce6ef0adbfeeb14dbc47ad
@@ -0,0 +1,17 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
data/Gemfile ADDED
@@ -0,0 +1,5 @@
1
+ source 'https://rubygems.org'
2
+ ruby '2.1.1'
3
+
4
+ # Specify your gem's dependencies in instagram-rss_generator.gemspec
5
+ gemspec
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 TODO: Write your name
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,32 @@
1
+ # Instagram::RssGenerator
2
+
3
+ This is a simple gem which takes an Instagram username and creates an RSS feed for the users' latest posts.
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'instagram-rss_generator'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install instagram-rss_generator
18
+
19
+ ## Usage
20
+
21
+ require 'instagram-rss_generator'
22
+ Instagram::RssGenerator.call('#{user_name}')
23
+
24
+ Where `user_name` is of the form `instagram.com/:user_name`
25
+
26
+ ## Contributing
27
+
28
+ 1. Fork it
29
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
30
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
31
+ 4. Push to the branch (`git push origin my-new-feature`)
32
+ 5. Create new Pull Request
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+
3
+ require 'rspec/core/rake_task'
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
@@ -0,0 +1,26 @@
1
+ # -*- encoding: utf-8 -*-
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'instagram-rss_generator/version'
5
+
6
+ Gem::Specification.new do |gem|
7
+ gem.name = "instagram-rss_generator"
8
+ gem.version = Instagram::VERSION
9
+ gem.authors = ["Sharethrough Engineering"]
10
+ gem.email = ["engineers@sharethrough.com"]
11
+ gem.description = %q{Create an RSS feed for an Instagram user}
12
+ gem.summary = %q{Create Instagram RSS feed}
13
+ gem.homepage = "https://github.com/sharethrough/instagram-rss-generator"
14
+ gem.license = 'MIT'
15
+
16
+ gem.files = `git ls-files`.split($/)
17
+ gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
18
+ gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
19
+ gem.require_paths = ["lib"]
20
+
21
+ gem.add_dependency("phantomjs", '~> 1.9')
22
+ gem.add_dependency("nokogiri", '~> 1.6')
23
+
24
+ gem.add_development_dependency('rake')
25
+ gem.add_development_dependency('rspec')
26
+ end
@@ -0,0 +1,101 @@
1
+ require "instagram-rss_generator/version"
2
+ require 'phantomjs'
3
+ require 'nokogiri'
4
+
5
+ module Instagram
6
+ class RssGenerator
7
+ attr_reader :user_name
8
+
9
+ def self.call(user_name)
10
+ new(user_name).call
11
+ end
12
+
13
+ def initialize(user_name)
14
+ @user_name = user_name
15
+ end
16
+
17
+ def call
18
+ @html_content = build_static_html
19
+ build_rss_feed
20
+ end
21
+
22
+ def build_static_html
23
+ file_path = page_building_script
24
+ html = Phantomjs.run(file_path)
25
+ File.delete(file_path)
26
+ html
27
+ end
28
+
29
+ def build_rss_feed
30
+ builder = Nokogiri::XML::Builder.new do |xml|
31
+ xml.rss(
32
+ "xmlns:blogChannel" => "http://backend.userland.com/blogChannelModule",
33
+ "xmlns:media" => "http://search.yahoo.com/mrss/",
34
+ "xmlns:dc" => "http://purl.org/dc/elements/1.1/",
35
+ "xmlns:atom" => "http://www.w3.org/2005/Atom",
36
+ "version" => "2.0"
37
+ ) {
38
+ xml.channel {
39
+ xml.title "#{user_name}'s Instagram Feed"
40
+ xml.link instagram_url
41
+ xml.description "#{user_name}'s Instagram Feed"
42
+ xml["atom"].link("href" => instagram_url, "rel" => "self")
43
+ items.each do |item|
44
+ xml.item {
45
+ xml.title "#{user_name}'s photo on Instagram"
46
+ xml.link get_photo_url(item)
47
+ xml.guid get_photo_url(item)
48
+ xml.pubDate get_photo_date(item)
49
+ }
50
+ end
51
+ }
52
+ }
53
+ end
54
+ builder.to_xml
55
+ end
56
+
57
+ def instagram_url
58
+ "http://instagram.com/#{user_name}"
59
+ end
60
+
61
+ def items
62
+ document = Nokogiri::HTML(@html_content)
63
+ document.css("li.photo")
64
+ end
65
+
66
+ def get_photo_url(item)
67
+ anchor = item.css('a.bg.bg')
68
+ anchor.attr('href').value
69
+ end
70
+
71
+ def get_photo_date(item)
72
+ elements = item.css('time.photo-date span')
73
+ day = elements[2].text
74
+ month = elements[4].text
75
+ year = elements[6].text
76
+ Date.parse("#{month} #{day} #{year}").rfc2822.to_s
77
+ end
78
+
79
+ def page_building_script
80
+ file = File.new('build.#{user_name}.js', 'w')
81
+ file.write(
82
+ <<-EOS
83
+ var page = require('webpage').create();
84
+ page.open('#{instagram_url}', function (status) {
85
+ if (status !== 'success') {
86
+ console.log('unable to access network');
87
+ } else {
88
+ var p = page.evaluate(function () {
89
+ return document.getElementsByTagName('html')[0].innerHTML;
90
+ });
91
+ console.log(p);
92
+ }
93
+ phantom.exit();
94
+ });
95
+ EOS
96
+ )
97
+ file.close
98
+ file.path
99
+ end
100
+ end
101
+ end
@@ -0,0 +1,3 @@
1
+ module Instagram
2
+ VERSION = "0.0.1"
3
+ end
@@ -0,0 +1,43 @@
1
+ <head>
2
+ <meta charset="UTF-8">
3
+ <title>clorox on Instagram</title>
4
+
5
+ <meta name="robots" content="noimageindex">
6
+
7
+ <link rel="Shortcut Icon" type="image/x-icon" href="//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/ico/favicon.ico">
8
+
9
+ <meta name="apple-mobile-web-app-capable" content="yes">
10
+ <meta name="apple-mobile-web-app-status-bar-style" content="black">
11
+
12
+ <link rel="apple-touch-icon-precomposed" href="//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/ico/apple-touch-icon-precomposed.png">
13
+ <link rel="apple-touch-icon-precomposed" sizes="72x72" href="//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/ico/apple-touch-icon-72x72-precomposed.png">
14
+ <link rel="apple-touch-icon-precomposed" sizes="114x114" href="//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/ico/apple-touch-icon-114x114-precomposed.png">
15
+ <link rel="apple-touch-icon-precomposed" sizes="144x144" href="//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/ico/apple-touch-icon-144x144-precomposed.png">
16
+
17
+
18
+ <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
19
+
20
+
21
+
22
+ <script type="text/javascript" async="" src="http://www.google-analytics.com/ga.js"></script><script type="text/javascript" src="//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/scripts/jquery.js"></script>
23
+ <script type="text/javascript" src="//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/scripts/bluebar.js"></script>
24
+
25
+
26
+
27
+
28
+
29
+ <meta property="og:type" content="profile">
30
+ <meta property="og:image" content="http://images.ak.instagram.com/profiles/anonymousUser.jpg">
31
+ <meta property="og:title" content="clorox on Instagram">
32
+ <meta property="og:description" content="The sticky, icky, dictionary of hilarious mess. Brought to you by your friends at Clorox.">
33
+ <meta property="og:url" content="http://instagram.com/clorox">
34
+
35
+
36
+
37
+
38
+
39
+
40
+ <style type="text/css">.VerticalCenter{display:table;height:100%;width:100%}.vcCell{display:table-cell;vertical-align:middle}</style><style type="text/css">.formActions input[type=submit],.formActions input[type=submit]:visited{color:#fff}.formActions input[type=submit]:hover{color:#fff}.formActions input.ButtonActive[type=submit],.formActions input.button-active[type=submit],.formActions input.active[type=submit],.formActions input[type=submit]:active,html.touch .formActions input.pressed[type=submit],.formActions html.touch input.pressed[type=submit]{color:rgba(255,255,255,.8);text-shadow:0 1px 0 rgba(0,0,0,.3)}.formActions input[type=submit]{background-color:#6bb38a;background-image:-webkit-gradient(linear,left top,left bottom,from(#6bb38a),to(#3d8b5f));background-image:-webkit-linear-gradient(top,#6bb38a,#3d8b5f);background-image:-moz-linear-gradient(top,#6bb38a,#3d8b5f);background-image:-o-linear-gradient(top,#6bb38a,#3d8b5f);background-image:-ms-linear-gradient(top,#6bb38a,#3d8b5f);background-image:linear-gradient(top,#6bb38a,#3d8b5f);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#6bb38a', EndColorStr='#3d8b5f');background-position:50% 50%;text-shadow:0 1px 1px #1e693f}.formActions input.ButtonActive[type=submit],.formActions input.button-active[type=submit],.formActions input.active[type=submit],.formActions input[type=submit]:active,html.touch .formActions input.pressed[type=submit],.formActions html.touch input.pressed[type=submit]{background:#3a845a}.formActions input[type=submit]{border:1px solid #3d8b5f}.formActions input.ButtonActive[type=submit],.formActions input.button-active[type=submit],.formActions input.active[type=submit],.formActions input[type=submit]:active,html.touch .formActions input.pressed[type=submit],.formActions html.touch input.pressed[type=submit]{border-color:#2d6847}.igModalDialog .igDialogInner{border:none;margin:0}.igModalDialog .igDialogHeader{border:none;margin:0;-webkit-border-radius:3px 3px 0 0;border-radius:3px 3px 0 0}.igDialogLayer{position:fixed;left:0;right:0;top:0;bottom:0;padding:16px;background-color:rgba(1,1,1,.725);z-index:100;overflow:auto}.touch .igDialogLayer{cursor:pointer}.igDialogLayer.vcCell{padding:16px}.igdContentWrap{padding:8px 32px}.igDialogContent{margin:0 auto;background:#fdfdfd;-webkit-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 5px rgba(0,0,0,.1);-moz-box-shadow:0 1px 5px rgba(0,0,0,.1);box-shadow:0 1px 5px rgba(0,0,0,.1);-webkit-background-clip:padding-box;background-clip:padding-box}.igDialogHeader{position:relative;height:44px;border:1px solid #1c5380;border-width:1px 1px 0;-webkit-box-shadow:0 -1px 0 #06365f inset,0 1px 0 rgba(255,255,255,.2)inset;-moz-box-shadow:0 -1px 0 #06365f inset,0 1px 0 rgba(255,255,255,.2)inset;box-shadow:0 -1px 0 #06365f inset,0 1px 0 rgba(255,255,255,.2)inset;-webkit-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0;background-color:#517fa4;background-image:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/shared/noise-1.png),-webkit-gradient(linear,left top,left bottom,from(#517fa4),to(#306088));background-image:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/shared/noise-1.png),-webkit-linear-gradient(top,#517fa4,#306088);background-image:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/shared/noise-1.png),-moz-linear-gradient(top,#517fa4,#306088);background-image:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/shared/noise-1.png),-o-linear-gradient(top,#517fa4,#306088);background-image:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/shared/noise-1.png),-ms-linear-gradient(top,#517fa4,#306088);background-image:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/shared/noise-1.png),linear-gradient(top,#517fa4,#306088);background-position:50% 50%;margin:-1px -1px 1px}.igDialogTitle{margin:0;line-height:44px}.formAdjacent label{display:inline-block;width:35%}.igDialogClose{position:fixed;right:8px;top:0;display:block;font:30px/30px "Helvetica Neue",Arial,Helvetica,sans-serif;font-weight:700;font-style:normal;color:#fff;cursor:pointer}.igDialogTitle{color:#fff;font-size:18px;text-align:center;text-shadow:0 1px 1px rgba(0,0,0,.4)}@media screen and (max-width:920px){.igDialogLayer{padding:32px}}@media only screen and (-webkit-min-device-pixel-ratio:2),only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (min--moz-device-pixel-ratio:2),only screen and (-o-min-device-pixel-ratio:2/1),only screen and (min-device-pixel-ratio:2),only screen and (min-resolution:192dpi),only screen and (min-resolution:2dppx){.igDialogClose,.igdContentWrap{-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}</style><style type="text/css">.LoginDialogSubmit,.LoginDialogSubmit:visited{color:#fff}.LoginDialogSubmit:hover{color:#fff}.ButtonActive.LoginDialogSubmit,.button-active.LoginDialogSubmit,.active.LoginDialogSubmit,.LoginDialogSubmit:active,html.touch .pressed.LoginDialogSubmit{color:rgba(255,255,255,.8);text-shadow:0 1px 0 rgba(0,0,0,.3)}.LoginDialogSubmit{background-color:#6bb38a;background-image:-webkit-gradient(linear,left top,left bottom,from(#6bb38a),to(#3d8b5f));background-image:-webkit-linear-gradient(top,#6bb38a,#3d8b5f);background-image:-moz-linear-gradient(top,#6bb38a,#3d8b5f);background-image:-o-linear-gradient(top,#6bb38a,#3d8b5f);background-image:-ms-linear-gradient(top,#6bb38a,#3d8b5f);background-image:linear-gradient(top,#6bb38a,#3d8b5f);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#6bb38a', EndColorStr='#3d8b5f');background-position:50% 50%;text-shadow:0 1px 1px #1e693f}.ButtonActive.LoginDialogSubmit,.button-active.LoginDialogSubmit,.active.LoginDialogSubmit,.LoginDialogSubmit:active,html.touch .pressed.LoginDialogSubmit{background:#3a845a}.LoginDialogSubmit{border:1px solid #3d8b5f}.ButtonActive.LoginDialogSubmit,.button-active.LoginDialogSubmit,.active.LoginDialogSubmit,.LoginDialogSubmit:active,html.touch .pressed.LoginDialogSubmit{border-color:#2d6847}.LoginDialog{max-width:400px}.LoginDialog.igDialogContent label{color:#06365f}h3.LoginDialogMessage{background-color:rgba(221,221,221,.15);border-bottom:1px solid #c3cfd9;box-shadow:0 1px 5px rgba(153,153,153,.2);color:#3f729b;line-height:64px;margin:0;text-align:center;vertical-align:middle}.LoginDialogForgot{text-decoration:underline}.LoginDialogError{color:#f93855}.LoginMessageText{-webkit-transition:opacity .25s;-moz-transition:opacity .25s;-o-transition:opacity .25s;transition:opacity .25s}.LoginDialogIframe{border:none;width:100%;height:182px}.dialog.loginForm{border:none;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.login-text-enter{opacity:.01}.login-text-leave{display:none}.login-text-enter.login-text-enter-active{opacity:1}</style><style type="text/css">.ResponsiveContainer{position:relative;width:100%}.rcContent{bottom:0;left:0;position:absolute;right:0;top:0}</style><style type="text/css">@charset "UTF-8";.bbBaseButton{cursor:pointer;display:inline-block;position:relative;text-decoration:none;white-space:nowrap;-webkit-tap-highlight-color:rgba(0,0,0,0);-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.bbBaseButton:hover{text-decoration:none}</style><style type="text/css">.ButtonSizeMicro,.ButtonSizeMini{font-size:1.2rem;padding:4px 7px;-webkit-border-radius:2px;border-radius:2px}.ButtonSizeSmall{font-size:1.2rem;padding:7px 9px 6px}.Button,.ButtonSizeMedium{font-size:1.4rem;padding:7px 10px 8px}.ButtonSizeMedium{-webkit-border-radius:3px;border-radius:3px}.ButtonSizeLarge{font-size:1.6rem;padding:9px 12px}.ButtonSizeXL{font-size:2.3rem;padding:10px 13px}.ButtonColorBlue,.ButtonColorBlue:visited{color:#fff}.ButtonColorBlue:hover{color:#fff}.ButtonActive.ButtonColorBlue,.button-active.ButtonColorBlue,.active.ButtonColorBlue,.ButtonColorBlue:active,html.touch .pressed.ButtonColorBlue{color:rgba(255,255,255,.8);text-shadow:0 1px 0 rgba(0,0,0,.3)}.Button{text-shadow:0 1px 0 rgba(255,255,255,.2);-webkit-box-shadow:0 1px 1px rgba(0,0,0,.08),inset 1px 0 0 rgba(255,255,255,.05),inset -1px 0 0 rgba(255,255,255,.05),inset 0 1px 0 rgba(255,255,255,.2);-moz-box-shadow:0 1px 1px rgba(0,0,0,.08),inset 1px 0 0 rgba(255,255,255,.05),inset -1px 0 0 rgba(255,255,255,.05),inset 0 1px 0 rgba(255,255,255,.2);box-shadow:0 1px 1px rgba(0,0,0,.08),inset 1px 0 0 rgba(255,255,255,.05),inset -1px 0 0 rgba(255,255,255,.05),inset 0 1px 0 rgba(255,255,255,.2)}.ButtonActive.Button,.button-active.Button,.active.Button,.Button:active,html.touch .pressed.Button{-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.08),inset 0 0 1px rgba(0,0,0,.08),0 1px 0 rgba(255,255,255,.9);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.08),inset 0 0 1px rgba(0,0,0,.08),0 1px 0 rgba(255,255,255,.9);box-shadow:inset 0 1px 1px rgba(0,0,0,.08),inset 0 0 1px rgba(0,0,0,.08),0 1px 0 rgba(255,255,255,.9)}.ButtonColorBlue{text-shadow:0 1px 0 rgba(255,255,255,.2);-webkit-box-shadow:0 1px 1px rgba(0,0,0,.1),inset 1px 0 0 rgba(255,255,255,.05),inset -1px 0 0 rgba(255,255,255,.05),inset 0 1px 0 rgba(255,255,255,.2);-moz-box-shadow:0 1px 1px rgba(0,0,0,.1),inset 1px 0 0 rgba(255,255,255,.05),inset -1px 0 0 rgba(255,255,255,.05),inset 0 1px 0 rgba(255,255,255,.2);box-shadow:0 1px 1px rgba(0,0,0,.1),inset 1px 0 0 rgba(255,255,255,.05),inset -1px 0 0 rgba(255,255,255,.05),inset 0 1px 0 rgba(255,255,255,.2)}.ButtonActive.ButtonColorBlue,.button-active.ButtonColorBlue,.active.ButtonColorBlue,.ButtonColorBlue:active,html.touch .pressed.ButtonColorBlue{-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.15),inset 0 0 1px rgba(0,0,0,.15),0 1px 0 rgba(255,255,255,.8);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.15),inset 0 0 1px rgba(0,0,0,.15),0 1px 0 rgba(255,255,255,.8);box-shadow:inset 0 1px 1px rgba(0,0,0,.15),inset 0 0 1px rgba(0,0,0,.15),0 1px 0 rgba(255,255,255,.8)}.ButtonColorBlue{background-color:#6f97b6;background-image:-webkit-gradient(linear,left top,left bottom,from(#6f97b6),to(#3f729b));background-image:-webkit-linear-gradient(top,#6f97b6,#3f729b);background-image:-moz-linear-gradient(top,#6f97b6,#3f729b);background-image:-o-linear-gradient(top,#6f97b6,#3f729b);background-image:-ms-linear-gradient(top,#6f97b6,#3f729b);background-image:linear-gradient(top,#6f97b6,#3f729b);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#6f97b6', EndColorStr='#3f729b');background-position:50% 50%;text-shadow:0 1px 1px #1c5380}.ButtonActive.ButtonColorBlue,.button-active.ButtonColorBlue,.active.ButtonColorBlue,.ButtonColorBlue:active,html.touch .pressed.ButtonColorBlue{background:#3c6d94}.ButtonColorBlue{border:1px solid #1c5380}.ButtonActive.ButtonColorBlue,.button-active.ButtonColorBlue,.active.ButtonColorBlue,.ButtonColorBlue:active,html.touch .pressed.ButtonColorBlue{border-color:#133856}.Button{position:relative;cursor:pointer;font-weight:700;line-height:1em;text-decoration:none!important;color:#111;-webkit-tap-highlight-color:rgba(0,0,0,0);-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:#eee;-webkit-border-radius:4px;border-radius:4px}.Button:hover{background-color:#eee}.Button.ButtonActive,.Button.button-active,.Button.active,.Button:active,html.touch .Button.pressed{background-color:#ddd}.Button{background-color:#f9fafb;background-image:-webkit-gradient(linear,left top,left bottom,from(#f9fafb),to(#eef1f4));background-image:-webkit-linear-gradient(top,#f9fafb,#eef1f4);background-image:-moz-linear-gradient(top,#f9fafb,#eef1f4);background-image:-o-linear-gradient(top,#f9fafb,#eef1f4);background-image:-ms-linear-gradient(top,#f9fafb,#eef1f4);background-image:linear-gradient(top,#f9fafb,#eef1f4);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#f9fafb', EndColorStr='#eef1f4');background-position:50% 50%}.Button.ButtonActive,.Button.button-active,.Button.active,.Button:active,html.touch .Button.pressed{background:#e8ecf0}.Button{border:1px solid #c6daec}.Button.ButtonActive,.Button.button-active,.Button.active,.Button:active,html.touch .Button.pressed{border-color:#b3cee6}</style><style type="text/css">@charset "UTF-8";.iguiFullPageWidth{background-color:#fff;width:100%}</style><style type="text/css">@charset "UTF-8";.iguiHeadline1,.iguiHeadline2,.iguiHeadline3,.iguiHeadline4,.iguiHeadline5{color:#1e3f5b;margin:32px 0 16px;font-family:"freight-sans-pro","Helvetica Neue",Arial,Helvetica,sans-serif}.iguiHeadline1{font-size:37px;line-height:40px;font-weight:400}.iguiHeadline2{font-size:27px;line-height:32px;font-weight:400}.iguiHeadline3{font-size:22px;line-height:32px;font-weight:500}.iguiHeadline4,.iguiHeadline5{font-size:19px;line-height:24px;font-weight:500}</style><style type="text/css">@charset "UTF-8";.iguiVerticalPadding{padding:32px 0 16px}</style><style type="text/css">@-webkit-keyframes 'spin8'{0%,12.499%{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg)}12.5%,24.999%{-webkit-transform:rotate(225deg);-moz-transform:rotate(225deg);-o-transform:rotate(225deg);transform:rotate(225deg)}25%,37.499%{-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-o-transform:rotate(270deg);transform:rotate(270deg)}37.5%,49.999%{-webkit-transform:rotate(315deg);-moz-transform:rotate(315deg);-o-transform:rotate(315deg);transform:rotate(315deg)}50%,62.499%{-webkit-transform:rotate(360deg);-moz-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}62.5%,74.999%{-webkit-transform:rotate(405deg);-moz-transform:rotate(405deg);-o-transform:rotate(405deg);transform:rotate(405deg)}75%,87.499%{-webkit-transform:rotate(450deg);-moz-transform:rotate(450deg);-o-transform:rotate(450deg);transform:rotate(450deg)}87.5%,99.999%{-webkit-transform:rotate(495deg);-moz-transform:rotate(495deg);-o-transform:rotate(495deg);transform:rotate(495deg)}100%{-webkit-transform:rotate(100deg);-moz-transform:rotate(100deg);-o-transform:rotate(100deg);transform:rotate(100deg)}}@-moz-keyframes spin8{0%,12.499%{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg)}12.5%,24.999%{-webkit-transform:rotate(225deg);-moz-transform:rotate(225deg);-o-transform:rotate(225deg);transform:rotate(225deg)}25%,37.499%{-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-o-transform:rotate(270deg);transform:rotate(270deg)}37.5%,49.999%{-webkit-transform:rotate(315deg);-moz-transform:rotate(315deg);-o-transform:rotate(315deg);transform:rotate(315deg)}50%,62.499%{-webkit-transform:rotate(360deg);-moz-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}62.5%,74.999%{-webkit-transform:rotate(405deg);-moz-transform:rotate(405deg);-o-transform:rotate(405deg);transform:rotate(405deg)}75%,87.499%{-webkit-transform:rotate(450deg);-moz-transform:rotate(450deg);-o-transform:rotate(450deg);transform:rotate(450deg)}87.5%,99.999%{-webkit-transform:rotate(495deg);-moz-transform:rotate(495deg);-o-transform:rotate(495deg);transform:rotate(495deg)}100%{-webkit-transform:rotate(100deg);-moz-transform:rotate(100deg);-o-transform:rotate(100deg);transform:rotate(100deg)}}@-ms-keyframes spin8{0%,12.499%{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg)}12.5%,24.999%{-webkit-transform:rotate(225deg);-moz-transform:rotate(225deg);-o-transform:rotate(225deg);transform:rotate(225deg)}25%,37.499%{-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-o-transform:rotate(270deg);transform:rotate(270deg)}37.5%,49.999%{-webkit-transform:rotate(315deg);-moz-transform:rotate(315deg);-o-transform:rotate(315deg);transform:rotate(315deg)}50%,62.499%{-webkit-transform:rotate(360deg);-moz-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}62.5%,74.999%{-webkit-transform:rotate(405deg);-moz-transform:rotate(405deg);-o-transform:rotate(405deg);transform:rotate(405deg)}75%,87.499%{-webkit-transform:rotate(450deg);-moz-transform:rotate(450deg);-o-transform:rotate(450deg);transform:rotate(450deg)}87.5%,99.999%{-webkit-transform:rotate(495deg);-moz-transform:rotate(495deg);-o-transform:rotate(495deg);transform:rotate(495deg)}100%{-webkit-transform:rotate(100deg);-moz-transform:rotate(100deg);-o-transform:rotate(100deg);transform:rotate(100deg)}}@-o-keyframes spin8{0%,12.499%{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg)}12.5%,24.999%{-webkit-transform:rotate(225deg);-moz-transform:rotate(225deg);-o-transform:rotate(225deg);transform:rotate(225deg)}25%,37.499%{-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-o-transform:rotate(270deg);transform:rotate(270deg)}37.5%,49.999%{-webkit-transform:rotate(315deg);-moz-transform:rotate(315deg);-o-transform:rotate(315deg);transform:rotate(315deg)}50%,62.499%{-webkit-transform:rotate(360deg);-moz-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}62.5%,74.999%{-webkit-transform:rotate(405deg);-moz-transform:rotate(405deg);-o-transform:rotate(405deg);transform:rotate(405deg)}75%,87.499%{-webkit-transform:rotate(450deg);-moz-transform:rotate(450deg);-o-transform:rotate(450deg);transform:rotate(450deg)}87.5%,99.999%{-webkit-transform:rotate(495deg);-moz-transform:rotate(495deg);-o-transform:rotate(495deg);transform:rotate(495deg)}100%{-webkit-transform:rotate(100deg);-moz-transform:rotate(100deg);-o-transform:rotate(100deg);transform:rotate(100deg)}}@keyframes 'spin8'{0%,12.499%{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg)}12.5%,24.999%{-webkit-transform:rotate(225deg);-moz-transform:rotate(225deg);-o-transform:rotate(225deg);transform:rotate(225deg)}25%,37.499%{-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-o-transform:rotate(270deg);transform:rotate(270deg)}37.5%,49.999%{-webkit-transform:rotate(315deg);-moz-transform:rotate(315deg);-o-transform:rotate(315deg);transform:rotate(315deg)}50%,62.499%{-webkit-transform:rotate(360deg);-moz-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}62.5%,74.999%{-webkit-transform:rotate(405deg);-moz-transform:rotate(405deg);-o-transform:rotate(405deg);transform:rotate(405deg)}75%,87.499%{-webkit-transform:rotate(450deg);-moz-transform:rotate(450deg);-o-transform:rotate(450deg);transform:rotate(450deg)}87.5%,99.999%{-webkit-transform:rotate(495deg);-moz-transform:rotate(495deg);-o-transform:rotate(495deg);transform:rotate(495deg)}100%{-webkit-transform:rotate(100deg);-moz-transform:rotate(100deg);-o-transform:rotate(100deg);transform:rotate(100deg)}}.Spinner{height:18px;left:50%;margin-left:-9px;margin-top:-9px;position:absolute;top:50%;width:18px;background-image:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/shared/spinner.png);background-size:100%;-webkit-animation:spin8 .8s linear infinite;-moz-animation:spin8 .8s linear infinite;-o-animation:spin8 .8s linear infinite;animation:spin8 .8s linear infinite}</style><style type="text/css">.followButtonPhoto .followButtonFollow,.followButtonPhoto .followButtonFollowing,.followButtonPhoto .followButtonRequested{font-size:1.2rem;padding:4px 7px;-webkit-border-radius:2px;border-radius:2px}html .followButtonFollow,html .followButtonRequested,html .followButtonFollowing,.followButtonPhoto .followButtonFollowing,html .followButtonFollow:visited,html .followButtonRequested:visited,html .followButtonFollowing:visited,.followButtonPhoto .followButtonFollowing:visited{color:#fff}html .followButtonFollow:hover,html .followButtonRequested:hover,html .followButtonFollowing:hover,.followButtonPhoto .followButtonFollowing:hover{color:#fff}html .ButtonActive.followButtonFollow,html .ButtonActive.followButtonRequested,.followButtonPhoto .ButtonActive.followButtonRequested,html .ButtonActive.followButtonFollowing,.followButtonPhoto .ButtonActive.followButtonFollowing,html .button-active.followButtonFollow,html .button-active.followButtonRequested,.followButtonPhoto .button-active.followButtonRequested,html .button-active.followButtonFollowing,.followButtonPhoto .button-active.followButtonFollowing,html .active.followButtonFollow,html .active.followButtonRequested,.followButtonPhoto .active.followButtonRequested,html .active.followButtonFollowing,.followButtonPhoto .active.followButtonFollowing,html .followButtonFollow:active,html .followButtonRequested:active,.followButtonPhoto .followButtonRequested:active,html .followButtonFollowing:active,.followButtonPhoto .followButtonFollowing:active,html.touch .pressed.followButtonFollow,html.touch .pressed.followButtonRequested,html.touch .pressed.followButtonFollowing{color:rgba(255,255,255,.8);text-shadow:0 1px 0 rgba(0,0,0,.3)}.followButtonPhoto .followButtonFollow{-webkit-box-shadow:0 1px 1px rgba(0,0,0,.08),inset 1px 0 0 rgba(255,255,255,.05),inset -1px 0 0 rgba(255,255,255,.05),inset 0 1px 0 rgba(255,255,255,.2);-moz-box-shadow:0 1px 1px rgba(0,0,0,.08),inset 1px 0 0 rgba(255,255,255,.05),inset -1px 0 0 rgba(255,255,255,.05),inset 0 1px 0 rgba(255,255,255,.2);box-shadow:0 1px 1px rgba(0,0,0,.08),inset 1px 0 0 rgba(255,255,255,.05),inset -1px 0 0 rgba(255,255,255,.05),inset 0 1px 0 rgba(255,255,255,.2)}.followButtonPhoto .ButtonActive.followButtonFollow,.followButtonPhoto .button-active.followButtonFollow,.followButtonPhoto .active.followButtonFollow,.followButtonPhoto .followButtonFollow:active,html.touch .followButtonPhoto .pressed.followButtonFollow,.followButtonPhoto html.touch .pressed.followButtonFollow{-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.08),inset 0 0 1px rgba(0,0,0,.08),0 1px 0 rgba(255,255,255,.9);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.08),inset 0 0 1px rgba(0,0,0,.08),0 1px 0 rgba(255,255,255,.9);box-shadow:inset 0 1px 1px rgba(0,0,0,.08),inset 0 0 1px rgba(0,0,0,.08),0 1px 0 rgba(255,255,255,.9)}html .followButtonFollow{text-shadow:0 1px 0 rgba(255,255,255,.2)}html .followButtonFollow,html .followButtonRequested,.followButtonPhoto .followButtonRequested{-webkit-box-shadow:0 1px 1px rgba(0,0,0,.1),inset 1px 0 0 rgba(255,255,255,.05),inset -1px 0 0 rgba(255,255,255,.05),inset 0 1px 0 rgba(255,255,255,.2);-moz-box-shadow:0 1px 1px rgba(0,0,0,.1),inset 1px 0 0 rgba(255,255,255,.05),inset -1px 0 0 rgba(255,255,255,.05),inset 0 1px 0 rgba(255,255,255,.2);box-shadow:0 1px 1px rgba(0,0,0,.1),inset 1px 0 0 rgba(255,255,255,.05),inset -1px 0 0 rgba(255,255,255,.05),inset 0 1px 0 rgba(255,255,255,.2)}html .ButtonActive.followButtonFollow,html .ButtonActive.followButtonRequested,.followButtonPhoto .ButtonActive.followButtonRequested,html .button-active.followButtonFollow,html .button-active.followButtonRequested,.followButtonPhoto .button-active.followButtonRequested,html .active.followButtonFollow,html .active.followButtonRequested,.followButtonPhoto .active.followButtonRequested,html .followButtonFollow:active,html .followButtonRequested:active,.followButtonPhoto .followButtonRequested:active,html.touch .pressed.followButtonFollow,html.touch .pressed.followButtonRequested{-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.15),inset 0 0 1px rgba(0,0,0,.15),0 1px 0 rgba(255,255,255,.8);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.15),inset 0 0 1px rgba(0,0,0,.15),0 1px 0 rgba(255,255,255,.8);box-shadow:inset 0 1px 1px rgba(0,0,0,.15),inset 0 0 1px rgba(0,0,0,.15),0 1px 0 rgba(255,255,255,.8)}html .followButtonFollow{background-color:#6f97b6;background-image:-webkit-gradient(linear,left top,left bottom,from(#6f97b6),to(#3f729b));background-image:-webkit-linear-gradient(top,#6f97b6,#3f729b);background-image:-moz-linear-gradient(top,#6f97b6,#3f729b);background-image:-o-linear-gradient(top,#6f97b6,#3f729b);background-image:-ms-linear-gradient(top,#6f97b6,#3f729b);background-image:linear-gradient(top,#6f97b6,#3f729b);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#6f97b6', EndColorStr='#3f729b');background-position:50% 50%;text-shadow:0 1px 1px #1c5380}html .ButtonActive.followButtonFollow,html .button-active.followButtonFollow,html .active.followButtonFollow,html .followButtonFollow:active,html.touch .pressed.followButtonFollow{background:#3c6d94}html .followButtonFollow{border:1px solid #1c5380}html .ButtonActive.followButtonFollow,html .button-active.followButtonFollow,html .active.followButtonFollow,html .followButtonFollow:active,html.touch .pressed.followButtonFollow{border-color:#133856}html .followButtonRequested,.followButtonPhoto .followButtonRequested{background-color:#999;background-image:-webkit-gradient(linear,left top,left bottom,from(#999),to(#7c7c7c));background-image:-webkit-linear-gradient(top,#999,#7c7c7c);background-image:-moz-linear-gradient(top,#999,#7c7c7c);background-image:-o-linear-gradient(top,#999,#7c7c7c);background-image:-ms-linear-gradient(top,#999,#7c7c7c);background-image:linear-gradient(top,#999,#7c7c7c);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#999999', EndColorStr='#7c7c7c');background-position:50% 50%;text-shadow:0 1px 0 rgba(0,0,0,.4)}html .ButtonActive.followButtonRequested,.followButtonPhoto .ButtonActive.followButtonRequested,html .button-active.followButtonRequested,.followButtonPhoto .button-active.followButtonRequested,html .active.followButtonRequested,.followButtonPhoto .active.followButtonRequested,html .followButtonRequested:active,.followButtonPhoto .followButtonRequested:active,html.touch .pressed.followButtonRequested{background:#777}html .followButtonRequested,.followButtonPhoto .followButtonRequested{border:1px solid #777}html .ButtonActive.followButtonRequested,.followButtonPhoto .ButtonActive.followButtonRequested,html .button-active.followButtonRequested,.followButtonPhoto .button-active.followButtonRequested,html .active.followButtonRequested,.followButtonPhoto .active.followButtonRequested,html .followButtonRequested:active,.followButtonPhoto .followButtonRequested:active,html.touch .pressed.followButtonRequested{border-color:#666}.followButtonPhoto .followButtonFollow{background-color:#f3f3f3;background-image:-webkit-gradient(linear,left top,left bottom,from(#f3f3f3),to(#ddd));background-image:-webkit-linear-gradient(top,#f3f3f3,#ddd);background-image:-moz-linear-gradient(top,#f3f3f3,#ddd);background-image:-o-linear-gradient(top,#f3f3f3,#ddd);background-image:-ms-linear-gradient(top,#f3f3f3,#ddd);background-image:linear-gradient(top,#f3f3f3,#ddd);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#f3f3f3', EndColorStr='#dddddd');background-position:50% 50%;text-shadow:0 1px 0 rgba(255,255,255,.6)}.followButtonPhoto .ButtonActive.followButtonFollow,.followButtonPhoto .button-active.followButtonFollow,.followButtonPhoto .active.followButtonFollow,.followButtonPhoto .followButtonFollow:active,html.touch .followButtonPhoto .pressed.followButtonFollow,.followButtonPhoto html.touch .pressed.followButtonFollow{background:#d8d8d8}.followButtonPhoto .followButtonFollow{border:1px solid #c6c6c6}.followButtonPhoto .ButtonActive.followButtonFollow,.followButtonPhoto .button-active.followButtonFollow,.followButtonPhoto .active.followButtonFollow,.followButtonPhoto .followButtonFollow:active,html.touch .followButtonPhoto .pressed.followButtonFollow,.followButtonPhoto html.touch .pressed.followButtonFollow{border-color:#bbb}html .followButtonFollowing,.followButtonPhoto .followButtonFollowing{background-color:#47bc60;background-image:-webkit-gradient(linear,left top,left bottom,from(#47bc60),to(#39a64e));background-image:-webkit-linear-gradient(top,#47bc60,#39a64e);background-image:-moz-linear-gradient(top,#47bc60,#39a64e);background-image:-o-linear-gradient(top,#47bc60,#39a64e);background-image:-ms-linear-gradient(top,#47bc60,#39a64e);background-image:linear-gradient(top,#47bc60,#39a64e);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#47bc60', EndColorStr='#39a64e');background-position:50% 50%;text-shadow:0 1px 1px #2c803c}html .ButtonActive.followButtonFollowing,.followButtonPhoto .ButtonActive.followButtonFollowing,html .button-active.followButtonFollowing,.followButtonPhoto .button-active.followButtonFollowing,html .active.followButtonFollowing,.followButtonPhoto .active.followButtonFollowing,html .followButtonFollowing:active,.followButtonPhoto .followButtonFollowing:active,html.touch .pressed.followButtonFollowing{background:#369e4a}html .followButtonFollowing,.followButtonPhoto .followButtonFollowing{border:1px solid #329345}html .ButtonActive.followButtonFollowing,.followButtonPhoto .ButtonActive.followButtonFollowing,html .button-active.followButtonFollowing,.followButtonPhoto .button-active.followButtonFollowing,html .active.followButtonFollowing,.followButtonPhoto .active.followButtonFollowing,html .followButtonFollowing:active,.followButtonPhoto .followButtonFollowing:active,html.touch .pressed.followButtonFollowing{border-color:#256d33}.followButtonPhoto .followButtonFollow,.followButtonPhoto .followButtonFollowing,.followButtonPhoto .followButtonRequested{width:auto}.followButtonPhoto .followButtonFollow,.followButtonPhoto .followButtonFollow:visited,.followButtonPhoto .followButtonRequested,.followButtonPhoto .followButtonRequested:visited{color:#666}.followButtonPhoto .followButtonFollow:hover,.followButtonPhoto .followButtonRequested:hover{color:#444}.followButtonPhoto .followButtonFollow.ButtonActive,.followButtonPhoto .followButtonFollow:active,html.touch .followButtonPhoto .followButtonFollow.pressed,.followButtonPhoto .followButtonRequested.ButtonActive,.followButtonPhoto .followButtonRequested:active,html.touch .followButtonPhoto .followButtonRequested.pressed{color:#444}.avatar-container .followButtonFollow,.avatar-container .followButtonFollowing,.avatar-container .followButtonRequested{margin-top:5px;width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box}.followButtonIndicator{width:110px;height:110px;display:block;position:absolute;left:5px;top:5px;background:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/alpha/000_40.png);-webkit-border-radius:2px;border-radius:2px}.page-profile .followButtonFollow,.page-profile .followButtonFollowing,.page-profile .followButtonRequested,.sulFeedItem .followButtonFollow,.sulFeedItem .followButtonFollowing,.sulFeedItem .followButtonRequested{padding:5px 6px 6px;-webkit-border-radius:3px;border-radius:3px}.FollowButton{font-size:14px;text-align:center}</style><style type="text/css">.iLoading{opacity:0}.iLoaded{opacity:1}.iLoaded.iWithTransition{-webkit-transition:opacity 2s;-moz-transition:opacity 2s;-o-transition:opacity 2s;transition:opacity 2s}.Image{background-size:100% 100%;position:relative}</style><style type="text/css">.compWrapper{margin-left:auto;margin-right:auto;max-width:1024px;min-width:720px;border:1px solid #000;border-top:none;-webkit-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0}.compInnerWrapper{padding-bottom:40%;position:relative;width:auto}.compNoComp .compInnerWrapper{padding-bottom:88px}.compContainer{position:absolute;right:0;top:0;bottom:0;left:0;margin-left:0;margin-top:1px;background-color:#000;-webkit-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0;-webkit-box-shadow:inset 0 0 0 1px rgba(255,255,255,.06);-moz-box-shadow:inset 0 0 0 1px rgba(255,255,255,.06);box-shadow:inset 0 0 0 1px rgba(255,255,255,.06)}.compNoComp .compContainer,.compContainerLoading{background-color:#444}.compPhoto{position:absolute;height:50%;width:20%;margin:0 0 0 -1px}.compPhoto .compFrontside,.compPhoto .compFlipside{bottom:1px;left:1px;position:absolute;right:0;top:0;-webkit-transition:opacity .6s ease-out;-moz-transition:opacity .6s ease-out;-o-transition:opacity .6s ease-out;transition:opacity .6s ease-out}.compPhotoShadow{border:1px solid rgba(255,255,255,.15);bottom:0;display:block;left:0;position:absolute;right:0;top:0}.compPhoto1{left:0;top:0}.compPhoto1,.compPhoto1 a,.compPhoto1 .Image,.compPhoto1 .compPhotoShadow{-webkit-border-radius:4px 0 0 0;border-radius:4px 0 0 0}.compPhoto2{left:0;top:50%}.compPhoto3{left:20%;top:0}.compPhoto.compPhoto3{height:100%;width:40%}.compPhoto4{left:60%;top:0}.compPhoto5{left:60%;top:50%}.compPhoto6{left:80%;top:0}.compPhoto6,.compPhoto6 a,.compPhoto6 .Image,.compPhoto6 .compPhotoShadow{-webkit-border-radius:0 4px 0 0;border-radius:0 4px 0 0}.compPhoto7{left:80%;top:50%}.compPhoto6 .compPhotoShadow,.compPhoto7 .compPhotoShadow{right:-1px}.compFlipside,.compFlipped .compFrontside{opacity:0}.compFlipped .compFlipside{opacity:1}.compPhoto.compPhoto2 .compFlipside,.compPhoto.compPhoto2 .compFrontside,.compPhoto.compPhoto3 .compFlipside,.compPhoto.compPhoto3 .compFrontside,.compPhoto.compPhoto5 .compFlipside,.compPhoto.compPhoto5 .compFrontside,.compPhoto.compPhoto7 .compFlipside,.compPhoto.compPhoto7 .compFrontside{bottom:0}</style><style type="text/css">.tThumbImage{padding-bottom:100%}.tVideo{position:relative}.tVideoIndicator{background:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/frame/vesper-frame-assets.png) no-repeat -36px -278px;display:block;height:27px;position:absolute;right:6px;top:8px;width:27px}@media only screen and (-webkit-min-device-pixel-ratio:2),only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (min--moz-device-pixel-ratio:2),only screen and (-o-min-device-pixel-ratio:2/1),only screen and (min-device-pixel-ratio:2),only screen and (min-resolution:192dpi),only screen and (min-resolution:2dppx){.tVideoIndicator{background:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/frame/vesper-frame-assets@2x.png) no-repeat -36px -278px;background-size:380px 600px}}</style><style type="text/css"></style><style type="text/css">.Dropdown{display:inline-block;margin:-10px 0 0;padding:10px 0 0;position:relative;pointer-events:none;-webkit-transition:opacity .2s ease-out,margin .2s ease-out;-moz-transition:opacity .2s ease-out,margin .2s ease-out;-o-transition:opacity .2s ease-out,margin .2s ease-out;transition:opacity .2s ease-out,margin .2s ease-out;opacity:0}html.android .Dropdown,html.no-csstransitions .Dropdown,html.msie .Dropdown,html.opera .Dropdown{display:none}.Dropdown ul.DropdownOptionList,.Dropdown ul{background:#eee url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/bg/white-gradient-300px.png) repeat-x 0 0;background-color:rgba(255,255,255,.3);-webkit-border-radius:3px;border-radius:3px;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.95),0 1px 8px rgba(0,0,0,.2),0 0 0 1px rgba(0,0,0,.08);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.95),0 1px 8px rgba(0,0,0,.2),0 0 0 1px rgba(0,0,0,.08);box-shadow:inset 0 1px 0 rgba(255,255,255,.95),0 1px 8px rgba(0,0,0,.2),0 0 0 1px rgba(0,0,0,.08);min-width:100px;padding:1px 3px;margin:0;list-style:none}.Dropdown li{padding:5px 0;margin:0;border-top:1px solid #eee;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.95);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.95);box-shadow:inset 0 1px 0 rgba(255,255,255,.95)}.Dropdown li:first-child{border-top:none;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.Dropdown li a{display:block;padding:4px 8px;margin:-3px 0;border:1px solid transparent;-webkit-border-radius:2px;border-radius:2px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.Dropdown li a:hover.DropdownLinkHover,.Dropdown li a:hover{border:1px solid #eee;background:#999 url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/bg/white-gradient-300px.png) repeat-x 50% 50%;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.9);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.9);box-shadow:inset 0 1px 0 rgba(255,255,255,.9)}html.touch .Dropdown li a:hover,.Dropdown li a:active{border:1px solid #ddd;border-top-color:#d6d6d6;background:#eaeaea;-webkit-box-shadow:inset 0 0 3px rgba(0,0,0,.1),0 1px 0 rgba(255,255,255,.9);-moz-box-shadow:inset 0 0 3px rgba(0,0,0,.1),0 1px 0 rgba(255,255,255,.9);box-shadow:inset 0 0 3px rgba(0,0,0,.1),0 1px 0 rgba(255,255,255,.9)}.Dropdown li>strong{display:block;margin-bottom:-5px;padding-bottom:5px;border-bottom:1px solid #ddd}.Dropdown i{position:absolute;left:10px;right:auto;top:0;height:10px;width:13px;z-index:10;background:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/shared/glyph-assets.png) no-repeat -1px -800px}.dInverted .Dropdown{padding:0 0 5px;top:auto;bottom:0}.dInverted .Dropdown i{background-position:-1px -701px;margin-top:-6px;top:100%}.dInverted .Dropdown{margin:10px 0 0}.dInverted .dOpen.Dropdown{margin:0}.dOpen.Dropdown{margin:0;opacity:.99;pointer-events:all}html.android .dOpen.Dropdown,html.no-csstransitions .dOpen.Dropdown,html.msie .dOpen.Dropdown,html.opera .dOpen.Dropdown{display:inline-block}.Dropdown{text-shadow:0 1px 0 rgba(255,255,255,.9);font-weight:700}.Dropdown,.Dropdown a,.Dropdown a:link{color:#666;text-decoration:none}.Dropdown a:active{text-decoration:none}.Dropdown a:hover{color:#444}.Dropdown a:active{color:#111}.Dropdown li.negative,.Dropdown li.negative a,.Dropdown li.negative a:active{color:#c00}.Dropdown li strong{text-align:center;font-weight:700;text-transform:uppercase;font-size:10px;line-height:15px;color:#aaa}.dWrapper{width:auto;height:100%;position:relative}.dContainer.dRightAlign{margin-right:-24px;position:absolute;right:100%}.dContainer.dRightAlign i{left:auto;right:15px}</style><style type="text/css">@charset "UTF-8";@font-face{font-family:'proxima-nova';src:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/webfonts/proximanova-bold-webfont.eot);src:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/webfonts/proximanova-bold-webfont.eot?#iefix) format("embedded-opentype"),url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/webfonts/proximanova-bold-webfont.woff) format("woff"),url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/webfonts/proximanova-bold-webfont.ttf) format("truetype"),url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/webfonts/proximanova-bold-webfont.svg#ProximaNovaBold) format("svg");font-weight:700;font-style:normal}@font-face{font-family:'proxima-nova';src:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/webfonts/proximanova-boldit-webfont.eot);src:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/webfonts/proximanova-boldit-webfont.eot?#iefix) format("embedded-opentype"),url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/webfonts/proximanova-boldit-webfont.woff) format("woff"),url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/webfonts/proximanova-boldit-webfont.ttf) format("truetype"),url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/webfonts/proximanova-boldit-webfont.svg#ProximaNovaBoldItalic) format("svg");font-weight:700;font-style:italic}@font-face{font-family:'proxima-nova';src:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/webfonts/proximanova-reg-webfont.eot);src:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/webfonts/proximanova-reg-webfont.eot?#iefix) format("embedded-opentype"),url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/webfonts/proximanova-reg-webfont.woff) format("woff"),url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/webfonts/proximanova-reg-webfont.ttf) format("truetype"),url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/webfonts/proximanova-reg-webfont.svg#ProximaNovaRegular) format("svg");font-weight:400;font-style:normal}@font-face{font-family:'proxima-nova';src:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/webfonts/proximanova-regit-webfont.eot);src:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/webfonts/proximanova-regit-webfont.eot?#iefix) format("embedded-opentype"),url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/webfonts/proximanova-regit-webfont.woff) format("woff"),url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/webfonts/proximanova-regit-webfont.ttf) format("truetype"),url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/webfonts/proximanova-regit-webfont.svg#ProximaNovaRegularItalic) format("svg");font-weight:400;font-style:italic}@font-face{font-family:'proxima-nova';src:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/webfonts/proximanova-sbold-webfont.eot);src:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/webfonts/proximanova-sbold-webfont.eot?#iefix) format("embedded-opentype"),url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/webfonts/proximanova-sbold-webfont.woff) format("woff"),url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/webfonts/proximanova-sbold-webfont.ttf) format("truetype"),url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/webfonts/proximanova-sbold-webfont.svg#ProximaNovaSemibold) format("svg");font-weight:600;font-style:normal}article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block}audio,canvas,video{display:inline-block;*display:inline;*zoom:1}audio:not([controls]){display:none}[hidden]{display:none}html{-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}html,button{font-family:sans-serif}body{margin:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}blockquote{margin:1em 40px}dfn{font-style:italic}mark{background:#ff0;color:#000}pre{font-family:monospace,serif;font-size:1em}pre,code,kbd,samp{_font-family:'courier new',monospace}kbd,samp{font-family:monospace,serif;font-size:1em}pre{white-space:pre-wrap;word-wrap:break-word}q{quotes:none}q:before,q:after{content:'';content:none}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}ol{padding:0 0 0 40px}dd{margin:0 0 0 40px}nav ul,nav ol{list-style:none;list-style-image:none}img{border:0;-ms-interpolation-mode:bicubic}svg:not(:root){overflow:hidden}figure,form{margin:0}legend{border:0;padding:0;white-space:normal;*margin-left:-7px}button,input,select{vertical-align:baseline}button,input,select,textarea{font-size:100%;margin:0;*vertical-align:middle}button,input{line-height:normal}button,input[type="button"],input[type="reset"],input[type="submit"]{cursor:pointer;-webkit-appearance:button;*overflow:visible}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0;*height:13px;*width:13px}input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-decoration,input[type="search"]::-webkit-search-cancel-button{-webkit-appearance:none}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}textarea{overflow:auto;vertical-align:top}table{border-collapse:collapse;border-spacing:0}html,body{height:100%}html{font-size:62.5%;-webkit-font-smoothing:antialiased}body{background:#fff}a img,fieldset{border:none}fieldset{padding:0}input[type=submit],input.submit{font-weight:700;width:auto!important}input[type=image],input.image,input[type=radio],input.radio,input[type=checkbox],input.checkbox{background:none!important;border:none!important;height:auto!important;width:auto!important}h1 img,h2 img,h3 img,h4 img,h5 img,h6 img{margin:0}img.left{display:inline;float:left!important}img.right{display:inline;float:right!important}caption,th{text-align:left}.hide{display:none!important}.show{display:block!important}.invisible{visibility:hidden!important}.visible{visibility:visible!important}.clear:after,.page-footer:after{clear:both;content:".";display:block;height:0;visibility:hidden;font-size:.01em!important;line-height:.01em!important}.clear,.page-footer{display:inline-block}* html .clear,* html .page-footer{height:1%}.clear,.page-footer{display:block}@media screen and (max-device-width:480px){html{-webkit-text-size-adjust:none;-ms-text-size-adjust:none}}form p{margin-bottom:10px}label{display:block}input{padding:9px 8px 7px}input,select,textarea{border:1px solid #ccc;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;-webkit-border-radius:3px;border-radius:3px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}input:focus,select:focus,textarea:focus{border-color:#a4baca!important;background:#f5f7f9}select{padding:2px}input[type=file]{padding:2px;border:none;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}label{font-weight:700}.form-checkbox>span label span,.form-radio>span label span{padding-left:10px;font-weight:400}body{line-height:20px;color:#222}.proxima-nova,body,input,select,textarea{font-family:'proxima-nova','Helvetica Neue',Arial,Helvetica,sans-serif}.freight-sans-pro,h1,h2,h3{font-family:'freight-sans-pro','proxima-nova','Helvetica Neue',Arial,Helvetica,sans-serif}code{font-family:Monaco,Consolas,'Lucida Console',monospace}.at-symbol{font-family:Verdana,Helvetica,Arial,sans-serif}body{font-size:1.4rem}h1{font-size:36px;line-height:40px}h2{font-size:23px;line-height:30px}h3{font-size:16px}h4{font-size:14px;text-transform:uppercase}small{font-size:12px}h1,h2,h3,h4,h5,h6,th{font-weight:700}h1{margin:40px 0 20px -1px}h2{margin:20px 0 10px}h1+h2{margin-top:20px}h3,h4{margin:20px 0 10px}h1:first-child,h2:first-child{margin-top:0}p{margin:0 0 10px}pre{margin:15px 0 25px}pre code{padding:14px 14px 14px 19px}form label{display:block;margin:0 0 5px}form input,form select,form textarea{font-size:1.4rem}table{margin:20px 0 30px}th,td{padding:5px 10px 4px 0;border-bottom:1px solid #ddd}th,tr:last-child td{border-bottom-color:#ccc}ul,ol{margin:0 0 20px}ul ul,ul ol,ol ul,ol ol{margin:5px 0 15px}li{margin:0 0 5px}a,a:visited{text-decoration:none}a:hover{text-decoration:underline}a,a:visited{color:#3f729b}a:hover{color:#1c5380}code{-webkit-font-smoothing:subpixel-antialiased;font-size:12px;font-style:normal;font-weight:400;line-height:15px}th{text-transform:uppercase}.at-symbol{opacity:.6}p.emphasized{font-size:16px;font-weight:600;line-height:25px}.top-bar h1{color:#fff}.top-bar h2{color:#fff;font-size:14px;font-weight:700;text-transform:uppercase;text-shadow:0 1px 1px rgba(0,0,0,.6)}.top-bar a,.top-bar a:visited,.top-bar a:hover{text-decoration:none}.page-footer{font-size:12px;line-height:16px}.page-footer nav{text-transform:uppercase;font-weight:700}.page-footer p{text-transform:uppercase;color:#999;color:rgba(0,0,0,.3)}.page-footer p,.account-state{font-weight:700}.account-state,.account-state a,.account-state a:hover{color:#fff}.account-state a:active{color:#eee}.dropdown{text-shadow:0 1px 0 rgba(255,255,255,.9);font-weight:700}.dropdown,.dropdown a,.dropdown a:link{color:#666;text-decoration:none}.dropdown a:active{text-decoration:none}.dropdown a:hover{color:#444}.dropdown a:active{color:#111}.dropdown li.negative,.dropdown li.negative a,.dropdown li.negative a:active{color:#c00}.dropdown li strong{text-align:center;font-weight:700;text-transform:uppercase;font-size:10px;line-height:15px;color:#aaa}.page-footer-chromeless,.page-footer-dark,.page-home .page-footer{text-shadow:0 1px 0 rgba(255,255,255,.6)}.page-footer-dark span,.page-footer-dark a,.page-footer-dark a:visited{color:#fff;-moz-opacity:.3;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";filter:alpha(opacity=30);opacity:.3}.page-footer-dark a:active,.page-footer-dark a:hover{color:#fff}.page-footer-dark a:hover,.page-footer-dark a:active{-moz-opacity:.8;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";filter:alpha(opacity=80);opacity:.8}a{-webkit-tap-highlight-color:rgba(63,114,155,.3)}pre code{display:block;overflow:auto;background:#fafafa;border:1px solid #ddd}code{max-width:100%;display:inline;background:#eee}form ul.errorlist{display:none}form ul.errorlist+p input,form ul.errorlist+p textarea{background-color:#fff6f6;border-color:#eec3c7}fieldset{margin:0 0 20px}input[type=text]{-webkit-appearance:none}textarea{padding:7px 7px 6px}.form-actions{padding-top:20px}.main form.bordered{padding:40px 0 1px;margin:-1px 0 0;border-top:1px solid #ddd}.main form.bordered input:not([type=submit]),.main form.bordered span{width:50%;display:inline-block}.main form.bordered span>input:not([type=submit]){width:100%}.main form.bordered textarea{width:100%}.main form.bordered .form-actions{margin-top:40px;border-top:1px solid #ddd;padding-top:20px}.main form.adjacent fieldset{margin:0 0 30px}.main form.adjacent p{min-height:30px;margin-bottom:10px}.main form.adjacent label{display:inline-block;width:160px;min-height:20px}.main form.adjacent.wide label{width:220px}.main form.adjacent.very-wide label{width:330px}.main form.adjacent input[type=text],.main form.adjacent input[type=email],.main form.adjacent input[type=password],.main form.adjacent input[type=tel],.main form.adjacent textarea{margin-top:-5px;position:relative;top:0}.main form.adjacent textarea{margin-bottom:10px}.main form.adjacent span .button{margin:-5px 0 0 10px}.main form.adjacent span.helptext{font-size:.9em;font-style:italic;display:block;padding:10px 0;width:auto;max-width:999px!important}.fadedTextField{background-color:rgba(255,255,255,.2);border-color:rgba(0,0,0,.08)}.fadedTextField:focus{background:#fff}table{width:100%!important}ol{padding-left:20px}ol,ul{list-style-position:outside}ul{padding:0 0 0 20px;list-style-type:square}ol{list-style-type:decimal}[type=submit],.button{cursor:pointer;font-weight:700;line-height:1em;text-decoration:none!important;-webkit-tap-highlight-color:rgba(0,0,0,0);-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:inline-block;position:relative;background-color:#eee}[type=submit]:hover,.button:hover{background-color:#eee}.ButtonActive[type=submit],.ButtonActive.button,.button-active[type=submit],.button-active.button,.active[type=submit],.active.button,[type=submit]:active,.button:active,html.touch .pressed[type=submit],html.touch .pressed.button{background-color:#ddd}.button-micro,.button-tiny{font-size:1.2rem;padding:4px 7px;-webkit-border-radius:2px;border-radius:2px}.button-small,.button-altsmall,.main form.adjacent span .button{font-size:1.2rem;padding:7px 9px 6px}[type=button],[type=submit],.button,.button-medium{font-size:1.4rem;padding:7px 10px 8px;-webkit-border-radius:3px;border-radius:3px}.button-large{font-size:1.6rem;padding:9px 12px}.button-xlarge{font-size:2.3rem;padding:10px 13px}[type=submit],.button,.button-light,[type=submit]:visited,.button:visited,.button-light:visited{color:#0f3556}[type=submit]:hover,.button:hover,.button-light:hover{color:#062540}.button-active[type=submit],.button-active.button,.button-active.button-light,.active[type=submit],.active.button,.active.button-light,[type=submit]:active,.button:active,.button-light:active,html.touch .pressed[type=submit],html.touch .pressed.button,html.touch .pressed.button-light{color:#062540}.button-blue,.button-headerblue,.button-gray,.button-green,.button-altgreen,.button-red,.button-darkred,.button-brown,.button-yellow,.button-altblue,.button-blue:visited,.button-headerblue:visited,.button-gray:visited,.button-green:visited,.button-altgreen:visited,.button-red:visited,.button-darkred:visited,.button-brown:visited,.button-yellow:visited,.button-altblue:visited{color:#fff}.button-blue:hover,.button-headerblue:hover,.button-gray:hover,.button-green:hover,.button-altgreen:hover,.button-red:hover,.button-darkred:hover,.button-brown:hover,.button-yellow:hover,.button-altblue:hover{color:#fff}.ButtonActive.button-blue,.ButtonActive.button-headerblue,.ButtonActive.button-gray,.ButtonActive.button-green,.ButtonActive.button-altgreen,.ButtonActive.button-red,.ButtonActive.button-darkred,.ButtonActive.button-brown,.ButtonActive.button-yellow,.ButtonActive.button-altblue,.button-active.button-blue,.button-active.button-headerblue,.button-active.button-gray,.button-active.button-green,.button-active.button-altgreen,.button-active.button-red,.button-active.button-darkred,.button-active.button-brown,.button-active.button-yellow,.button-active.button-altblue,.active.button-blue,.active.button-headerblue,.active.button-gray,.active.button-green,.active.button-altgreen,.active.button-red,.active.button-darkred,.active.button-brown,.active.button-yellow,.active.button-altblue,.button-blue:active,.button-headerblue:active,.button-gray:active,.button-green:active,.button-altgreen:active,.button-red:active,.button-darkred:active,.button-brown:active,.button-yellow:active,.button-altblue:active,html.touch .pressed.button-blue,html.touch .pressed.button-headerblue,html.touch .pressed.button-gray,html.touch .pressed.button-green,html.touch .pressed.button-altgreen,html.touch .pressed.button-red,html.touch .pressed.button-darkred,html.touch .pressed.button-brown,html.touch .pressed.button-yellow,html.touch .pressed.button-altblue{color:rgba(255,255,255,.8);text-shadow:0 1px 0 rgba(0,0,0,.3)}.button-grey,.button-grey:visited{color:#666}.button-grey:hover{color:#444}.button-active.button-grey,.active.button-grey,.button-grey:active,html.touch .pressed.button-grey{color:#444}[type=submit],.button,.button-light{text-shadow:0 1px 0 rgba(255,255,255,.2)}[type=submit],.button,.button-light,.button-grey{-webkit-box-shadow:0 1px 1px rgba(0,0,0,.08),inset 1px 0 0 rgba(255,255,255,.05),inset -1px 0 0 rgba(255,255,255,.05),inset 0 1px 0 rgba(255,255,255,.2);-moz-box-shadow:0 1px 1px rgba(0,0,0,.08),inset 1px 0 0 rgba(255,255,255,.05),inset -1px 0 0 rgba(255,255,255,.05),inset 0 1px 0 rgba(255,255,255,.2);box-shadow:0 1px 1px rgba(0,0,0,.08),inset 1px 0 0 rgba(255,255,255,.05),inset -1px 0 0 rgba(255,255,255,.05),inset 0 1px 0 rgba(255,255,255,.2)}.ButtonActive[type=submit],.ButtonActive.button,.ButtonActive.button-light,.ButtonActive.button-grey,.button-active[type=submit],.button-active.button,.button-active.button-light,.button-active.button-grey,.active[type=submit],.active.button,.active.button-light,.active.button-grey,[type=submit]:active,.button:active,.button-light:active,.button-grey:active,html.touch .pressed[type=submit],html.touch .pressed.button,html.touch .pressed.button-light,html.touch .pressed.button-grey{-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.08),inset 0 0 1px rgba(0,0,0,.08),0 1px 0 rgba(255,255,255,.9);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.08),inset 0 0 1px rgba(0,0,0,.08),0 1px 0 rgba(255,255,255,.9);box-shadow:inset 0 1px 1px rgba(0,0,0,.08),inset 0 0 1px rgba(0,0,0,.08),0 1px 0 rgba(255,255,255,.9)}.button-blue{text-shadow:0 1px 0 rgba(255,255,255,.2)}.button-blue,.button-gray,.button-brown,.button-red,.button-green,.button-yellow,.button-altblue,.button-altgreen{-webkit-box-shadow:0 1px 1px rgba(0,0,0,.1),inset 1px 0 0 rgba(255,255,255,.05),inset -1px 0 0 rgba(255,255,255,.05),inset 0 1px 0 rgba(255,255,255,.2);-moz-box-shadow:0 1px 1px rgba(0,0,0,.1),inset 1px 0 0 rgba(255,255,255,.05),inset -1px 0 0 rgba(255,255,255,.05),inset 0 1px 0 rgba(255,255,255,.2);box-shadow:0 1px 1px rgba(0,0,0,.1),inset 1px 0 0 rgba(255,255,255,.05),inset -1px 0 0 rgba(255,255,255,.05),inset 0 1px 0 rgba(255,255,255,.2)}.button-brown,.button-red,.button-green,.button-yellow,.button-altblue,.button-altgreen{text-shadow:0 1px 0 rgba(255,255,255,.2)}.ButtonActive.button-blue,.ButtonActive.button-gray,.ButtonActive.button-brown,.ButtonActive.button-red,.ButtonActive.button-green,.ButtonActive.button-yellow,.ButtonActive.button-altblue,.ButtonActive.button-altgreen,.button-active.button-blue,.button-active.button-gray,.button-active.button-brown,.button-active.button-red,.button-active.button-green,.button-active.button-yellow,.button-active.button-altblue,.button-active.button-altgreen,.active.button-blue,.active.button-gray,.active.button-brown,.active.button-red,.active.button-green,.active.button-yellow,.active.button-altblue,.active.button-altgreen,.button-blue:active,.button-gray:active,.button-brown:active,.button-red:active,.button-green:active,.button-yellow:active,.button-altblue:active,.button-altgreen:active,html.touch .pressed.button-blue,html.touch .pressed.button-gray,html.touch .pressed.button-brown,html.touch .pressed.button-red,html.touch .pressed.button-green,html.touch .pressed.button-yellow,html.touch .pressed.button-altblue,html.touch .pressed.button-altgreen{-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.15),inset 0 0 1px rgba(0,0,0,.15),0 1px 0 rgba(255,255,255,.8);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.15),inset 0 0 1px rgba(0,0,0,.15),0 1px 0 rgba(255,255,255,.8);box-shadow:inset 0 1px 1px rgba(0,0,0,.15),inset 0 0 1px rgba(0,0,0,.15),0 1px 0 rgba(255,255,255,.8)}[type=submit],.button{background-position:50% 50%}[type=submit],.button,.button-light{background-color:#f9fafb;background-image:-webkit-gradient(linear,left top,left bottom,from(#f9fafb),to(#eef1f4));background-image:-webkit-linear-gradient(top,#f9fafb,#eef1f4);background-image:-moz-linear-gradient(top,#f9fafb,#eef1f4);background-image:-o-linear-gradient(top,#f9fafb,#eef1f4);background-image:-ms-linear-gradient(top,#f9fafb,#eef1f4);background-image:linear-gradient(top,#f9fafb,#eef1f4);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#f9fafb', EndColorStr='#eef1f4')}.ButtonActive[type=submit],.ButtonActive.button,.ButtonActive.button-light,.button-active[type=submit],.button-active.button,.button-active.button-light,.active[type=submit],.active.button,.active.button-light,[type=submit]:active,.button:active,.button-light:active,html.touch .pressed[type=submit],html.touch .pressed.button,html.touch .pressed.button-light{background:#e8ecf0}[type=submit],.button,.button-light{border:1px solid #c6daec}.ButtonActive[type=submit],.ButtonActive.button,.ButtonActive.button-light,.button-active[type=submit],.button-active.button,.button-active.button-light,.active[type=submit],.active.button,.active.button-light,[type=submit]:active,.button:active,.button-light:active,html.touch .pressed[type=submit],html.touch .pressed.button,html.touch .pressed.button-light{border-color:#b3cee6}.button-blue{background-color:#6f97b6;background-image:-webkit-gradient(linear,left top,left bottom,from(#6f97b6),to(#3f729b));background-image:-webkit-linear-gradient(top,#6f97b6,#3f729b);background-image:-moz-linear-gradient(top,#6f97b6,#3f729b);background-image:-o-linear-gradient(top,#6f97b6,#3f729b);background-image:-ms-linear-gradient(top,#6f97b6,#3f729b);background-image:linear-gradient(top,#6f97b6,#3f729b);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#6f97b6', EndColorStr='#3f729b');background-position:50% 50%;text-shadow:0 1px 1px #1c5380}.ButtonActive.button-blue,.button-active.button-blue,.active.button-blue,.button-blue:active,html.touch .pressed.button-blue{background:#3c6d94}.button-blue{border:1px solid #1c5380}.ButtonActive.button-blue,.button-active.button-blue,.active.button-blue,.button-blue:active,html.touch .pressed.button-blue{border-color:#133856}.button-headerblue{background-color:#517fa4;background-image:-webkit-gradient(linear,left top,left bottom,from(#517fa4),to(#306088));background-image:-webkit-linear-gradient(top,#517fa4,#306088);background-image:-moz-linear-gradient(top,#517fa4,#306088);background-image:-o-linear-gradient(top,#517fa4,#306088);background-image:-ms-linear-gradient(top,#517fa4,#306088);background-image:linear-gradient(top,#517fa4,#306088);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#517fa4', EndColorStr='#306088');background-position:50% 50%;text-shadow:0 1px 1px #06365f}.ButtonActive.button-headerblue,.button-active.button-headerblue,.active.button-headerblue,.button-headerblue:active,html.touch .pressed.button-headerblue{background:#2d5b80}.button-headerblue{border:1px solid #06365f}.ButtonActive.button-headerblue,.button-active.button-headerblue,.active.button-headerblue,.button-headerblue:active,html.touch .pressed.button-headerblue{border-color:#031b2f}.button-gray{background-color:#999;background-image:-webkit-gradient(linear,left top,left bottom,from(#999),to(#7c7c7c));background-image:-webkit-linear-gradient(top,#999,#7c7c7c);background-image:-moz-linear-gradient(top,#999,#7c7c7c);background-image:-o-linear-gradient(top,#999,#7c7c7c);background-image:-ms-linear-gradient(top,#999,#7c7c7c);background-image:linear-gradient(top,#999,#7c7c7c);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#999999', EndColorStr='#7c7c7c');background-position:50% 50%;text-shadow:0 1px 0 rgba(0,0,0,.4)}.ButtonActive.button-gray,.button-active.button-gray,.active.button-gray,.button-gray:active,html.touch .pressed.button-gray{background:#777}.button-gray{border:1px solid #777}.ButtonActive.button-gray,.button-active.button-gray,.active.button-gray,.button-gray:active,html.touch .pressed.button-gray{border-color:#666}.button-grey{background-color:#f3f3f3;background-image:-webkit-gradient(linear,left top,left bottom,from(#f3f3f3),to(#ddd));background-image:-webkit-linear-gradient(top,#f3f3f3,#ddd);background-image:-moz-linear-gradient(top,#f3f3f3,#ddd);background-image:-o-linear-gradient(top,#f3f3f3,#ddd);background-image:-ms-linear-gradient(top,#f3f3f3,#ddd);background-image:linear-gradient(top,#f3f3f3,#ddd);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#f3f3f3', EndColorStr='#dddddd');background-position:50% 50%;text-shadow:0 1px 0 rgba(255,255,255,.6)}.ButtonActive.button-grey,.button-active.button-grey,.active.button-grey,.button-grey:active,html.touch .pressed.button-grey{background:#d8d8d8}.button-grey{border:1px solid #c6c6c6}.ButtonActive.button-grey,.button-active.button-grey,.active.button-grey,.button-grey:active,html.touch .pressed.button-grey{border-color:#bbb}.button-green{background-color:#6bb38a;background-image:-webkit-gradient(linear,left top,left bottom,from(#6bb38a),to(#3d8b5f));background-image:-webkit-linear-gradient(top,#6bb38a,#3d8b5f);background-image:-moz-linear-gradient(top,#6bb38a,#3d8b5f);background-image:-o-linear-gradient(top,#6bb38a,#3d8b5f);background-image:-ms-linear-gradient(top,#6bb38a,#3d8b5f);background-image:linear-gradient(top,#6bb38a,#3d8b5f);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#6bb38a', EndColorStr='#3d8b5f');background-position:50% 50%;text-shadow:0 1px 1px #1e693f}.ButtonActive.button-green,.button-active.button-green,.active.button-green,.button-green:active,html.touch .pressed.button-green{background:#3a845a}.button-green{border:1px solid #3d8b5f}.ButtonActive.button-green,.button-active.button-green,.active.button-green,.button-green:active,html.touch .pressed.button-green{border-color:#2d6847}.button-altgreen{background-color:#47bc60;background-image:-webkit-gradient(linear,left top,left bottom,from(#47bc60),to(#39a64e));background-image:-webkit-linear-gradient(top,#47bc60,#39a64e);background-image:-moz-linear-gradient(top,#47bc60,#39a64e);background-image:-o-linear-gradient(top,#47bc60,#39a64e);background-image:-ms-linear-gradient(top,#47bc60,#39a64e);background-image:linear-gradient(top,#47bc60,#39a64e);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#47bc60', EndColorStr='#39a64e');background-position:50% 50%;text-shadow:0 1px 1px #2c803c}.ButtonActive.button-altgreen,.button-active.button-altgreen,.active.button-altgreen,.button-altgreen:active,html.touch .pressed.button-altgreen{background:#369e4a}.button-altgreen{border:1px solid #329345}.ButtonActive.button-altgreen,.button-active.button-altgreen,.active.button-altgreen,.button-altgreen:active,html.touch .pressed.button-altgreen{border-color:#256d33}.button-red{background-color:#e8485f;background-image:-webkit-gradient(linear,left top,left bottom,from(#e8485f),to(#b72e42));background-image:-webkit-linear-gradient(top,#e8485f,#b72e42);background-image:-moz-linear-gradient(top,#e8485f,#b72e42);background-image:-o-linear-gradient(top,#e8485f,#b72e42);background-image:-ms-linear-gradient(top,#e8485f,#b72e42);background-image:linear-gradient(top,#e8485f,#b72e42);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#e8485f', EndColorStr='#b72e42');background-position:50% 50%;text-shadow:0 1px 1px #b72e42}.ButtonActive.button-red,.button-active.button-red,.active.button-red,.button-red:active,html.touch .pressed.button-red{background:#af2c3f}.button-red{border:1px solid #b72e42}.ButtonActive.button-red,.button-active.button-red,.active.button-red,.button-red:active,html.touch .pressed.button-red{border-color:#8e2433}.button-darkred{background-color:#c6213a;background-image:-webkit-gradient(linear,left top,left bottom,from(#c6213a),to(#961427));background-image:-webkit-linear-gradient(top,#c6213a,#961427);background-image:-moz-linear-gradient(top,#c6213a,#961427);background-image:-o-linear-gradient(top,#c6213a,#961427);background-image:-ms-linear-gradient(top,#c6213a,#961427);background-image:linear-gradient(top,#c6213a,#961427);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#c6213a', EndColorStr='#961427');background-position:50% 50%;text-shadow:0 1px 1px #961427}.ButtonActive.button-darkred,.button-active.button-darkred,.active.button-darkred,.button-darkred:active,html.touch .pressed.button-darkred{background:#8d1325}.button-darkred{border:1px solid #961427}.ButtonActive.button-darkred,.button-active.button-darkred,.active.button-darkred,.button-darkred:active,html.touch .pressed.button-darkred{border-color:#690e1b}.button-uppercase,.button-altsmall,.main form.adjacent span .button{text-transform:uppercase}.button-icon{text-indent:-9999em}.button-icon i{display:block}.button-icon:active i,html.touch .button-icon.pressed i{opacity:.8}.button-icon-left b{padding-left:24px}.button-icon-right b{padding-right:24px}.button-pulldown b{padding-right:14px;background:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/glyphs/arrow-down-small.png) no-repeat 100% 50%}.button-light{background-color:#fff;background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#f9fafb));background-image:-webkit-linear-gradient(top,#fff,#f9fafb);background-image:-moz-linear-gradient(top,#fff,#f9fafb);background-image:-o-linear-gradient(top,#fff,#f9fafb);background-image:-ms-linear-gradient(top,#fff,#f9fafb);background-image:linear-gradient(top,#fff,#f9fafb);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='white', EndColorStr='#f9fafb');background-position:50% 50%}.button-light.ButtonActive,.button-light.button-active,.button-light.active,.button-light:active,html.touch .button-light.pressed{background:#f3f5f7}.button-brown{background-color:#8f6a58;background-image:-webkit-gradient(linear,left top,left bottom,from(#8f6a58),to(#6c4634));background-image:-webkit-linear-gradient(top,#8f6a58,#6c4634);background-image:-moz-linear-gradient(top,#8f6a58,#6c4634);background-image:-o-linear-gradient(top,#8f6a58,#6c4634);background-image:-ms-linear-gradient(top,#8f6a58,#6c4634);background-image:linear-gradient(top,#8f6a58,#6c4634);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#8f6a58', EndColorStr='#6c4634');background-position:50% 50%;text-shadow:0 1px 1px #6c4634}.button-brown.ButtonActive,.button-brown.button-active,.button-brown.active,.button-brown:active,html.touch .button-brown.pressed{background:#654231}.button-brown{border:1px solid #6c4634}.button-brown.ButtonActive,.button-brown.button-active,.button-brown.active,.button-brown:active,html.touch .button-brown.pressed{border-color:#4a3023}.button-yellow{background-color:#c9981a;background-image:-webkit-gradient(linear,left top,left bottom,from(#c9981a),to(#a07711));background-image:-webkit-linear-gradient(top,#c9981a,#a07711);background-image:-moz-linear-gradient(top,#c9981a,#a07711);background-image:-o-linear-gradient(top,#c9981a,#a07711);background-image:-ms-linear-gradient(top,#c9981a,#a07711);background-image:linear-gradient(top,#c9981a,#a07711);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#c9981a', EndColorStr='#a07711');background-position:50% 50%;text-shadow:0 1px 1px #a07711}.button-yellow.ButtonActive,.button-yellow.button-active,.button-yellow.active,.button-yellow:active,html.touch .button-yellow.pressed{background:#977010}.button-yellow{border:1px solid #a07711}.button-yellow.ButtonActive,.button-yellow.button-active,.button-yellow.active,.button-yellow:active,html.touch .button-yellow.pressed{border-color:#72550c}.button-altblue{background-color:#5daaf3;background-image:-webkit-gradient(linear,left top,left bottom,from(#5daaf3),to(#2a85de));background-image:-webkit-linear-gradient(top,#5daaf3,#2a85de);background-image:-moz-linear-gradient(top,#5daaf3,#2a85de);background-image:-o-linear-gradient(top,#5daaf3,#2a85de);background-image:-ms-linear-gradient(top,#5daaf3,#2a85de);background-image:linear-gradient(top,#5daaf3,#2a85de);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#5daaf3', EndColorStr='#2a85de');background-position:50% 50%;text-shadow:0 1px 1px #2a85de}.button-altblue.ButtonActive,.button-altblue.button-active,.button-altblue.active,.button-altblue:active,html.touch .button-altblue.pressed{background:#2280dc}.button-altblue{border:1px solid #2a85de}.button-altblue.ButtonActive,.button-altblue.button-active,.button-altblue.active,.button-altblue:active,html.touch .button-altblue.pressed{border-color:#1d6bb8}.img-outset,.img-inset{background:0 0}.img-outset img,.img-inset img{width:auto;display:block;visibility:visible}.img,.img-outset,.img-inset{position:relative;display:inline-block}.img b,.img-outset b,.img-inset b{position:absolute;top:0;left:0;display:block;width:100%;height:100%}.img img,.img-outset img,.img-inset img{display:block}.img-outset,.img-inset{-webkit-border-radius:3px;border-radius:3px;background:no-repeat 0 0;-webkit-background-size:100%;background-size:100%}.img-outset b,.img-inset b{-webkit-border-radius:2px;border-radius:2px}.img-outset img,.img-inset img{display:block}span.img-inset{-webkit-box-shadow:0 1px 0 rgba(255,255,255,.4),0 1px 0 1px rgba(255,255,255,.1);-moz-box-shadow:0 1px 0 rgba(255,255,255,.4),0 1px 0 1px rgba(255,255,255,.1);box-shadow:0 1px 0 rgba(255,255,255,.4),0 1px 0 1px rgba(255,255,255,.1)}span.img-inset b{-webkit-box-shadow:inset 0 0 0 1px rgba(0,0,0,.15),inset 0 0 2px 0 rgba(0,0,0,.2);-moz-box-shadow:inset 0 0 0 1px rgba(0,0,0,.15),inset 0 0 2px 0 rgba(0,0,0,.2);box-shadow:inset 0 0 0 1px rgba(0,0,0,.15),inset 0 0 2px 0 rgba(0,0,0,.2)}span.img-outset{-webkit-box-shadow:0 0 0 1px rgba(0,0,0,.1),0 1px 2px rgba(0,0,0,.2);-moz-box-shadow:0 0 0 1px rgba(0,0,0,.1),0 1px 2px rgba(0,0,0,.2);box-shadow:0 0 0 1px rgba(0,0,0,.1),0 1px 2px rgba(0,0,0,.2)}span.img-outset b{-webkit-box-shadow:inset 0 0 0 1px rgba(255,255,255,.1),inset 0 1px 0 rgba(255,255,255,.3);-moz-box-shadow:inset 0 0 0 1px rgba(255,255,255,.1),inset 0 1px 0 rgba(255,255,255,.3);box-shadow:inset 0 0 0 1px rgba(255,255,255,.1),inset 0 1px 0 rgba(255,255,255,.3)}@media only screen and (-webkit-min-device-pixel-ratio:2),only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (min--moz-device-pixel-ratio:2),only screen and (-o-min-device-pixel-ratio:2/1),only screen and (min-device-pixel-ratio:2),only screen and (min-resolution:192dpi),only screen and (min-resolution:2dppx){span.img-outset{-webkit-box-shadow:0 0 0 1px rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.1);-moz-box-shadow:0 0 0 1px rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.1);box-shadow:0 0 0 1px rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.1)}}.avatar-xsmall,.avatar-xsmall img,.top-bar-actions>li img img{width:22px;height:22px}.avatar-small,.avatar-small img{width:30px;height:30px}.avatar-medium,.avatar-medium img{width:40px;height:40px}.avatar-medium,.avatar-medium b{-webkit-border-radius:4px;border-radius:4px}.avatar-large,.avatar-large img{width:70px;height:70px}.avatar-large,.avatar-large b{-webkit-border-radius:4px;border-radius:4px}.avatar-profile,.avatar-profile img{width:110px;height:110px}.avatar-profile,.avatar-profile b{-webkit-border-radius:3px;border-radius:3px}.root{height:100%;min-width:320px}body.thirdparty .root{min-width:240px}.page,.dialog-outer{position:relative;min-height:100%}.page-footer{position:relative;margin-top:-48px;z-index:20}.hidden{display:none}.wrapper{margin:0 auto;padding:0 16px;position:relative;width:992px}.top-bar{position:relative;height:43px;border-bottom:1px solid #1c5380;border-bottom-color:rgba(4,40,71,.8);-webkit-box-shadow:0 1px 0 rgba(111,151,182,.5)inset,0 -1px 0 rgba(111,151,182,.2)inset,0 1px 1px rgba(0,0,0,.2);-moz-box-shadow:0 1px 0 rgba(111,151,182,.5)inset,0 -1px 0 rgba(111,151,182,.2)inset,0 1px 1px rgba(0,0,0,.2);box-shadow:0 1px 0 rgba(111,151,182,.5)inset,0 -1px 0 rgba(111,151,182,.2)inset,0 1px 1px rgba(0,0,0,.2);background-color:#517fa4;background-image:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/shared/noise-1.png),-webkit-gradient(linear,left top,left bottom,from(#517fa4),to(#306088));background-image:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/shared/noise-1.png),-webkit-linear-gradient(top,#517fa4,#306088);background-image:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/shared/noise-1.png),-moz-linear-gradient(top,#517fa4,#306088);background-image:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/shared/noise-1.png),-o-linear-gradient(top,#517fa4,#306088);background-image:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/shared/noise-1.png),-ms-linear-gradient(top,#517fa4,#306088);background-image:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/shared/noise-1.png),linear-gradient(top,#517fa4,#306088);background-position:50% 50%;z-index:100}.top-bar hgroup{position:relative;height:44px}.top-bar .logo{height:35px;width:97px;background:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/shared/shared-assets.png) no-repeat 0 4px;position:absolute;top:4px;margin:0;text-indent:-9999em}.top-bar .logo a{display:block;height:100%;width:100%}.top-bar h2{position:absolute;top:7px;left:120px;margin:0}@media only screen and (-webkit-min-device-pixel-ratio:2),only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (min--moz-device-pixel-ratio:2),only screen and (-o-min-device-pixel-ratio:2/1),only screen and (min-device-pixel-ratio:2),only screen and (min-resolution:192dpi),only screen and (min-resolution:2dppx){.top-bar{background-color:#517fa4;background-image:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/shared/noise-2.png),-webkit-gradient(linear,left top,left bottom,from(#517fa4),to(#306088));background-image:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/shared/noise-2.png),-webkit-linear-gradient(top,#517fa4,#306088);background-image:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/shared/noise-2.png),-moz-linear-gradient(top,#517fa4,#306088);background-image:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/shared/noise-2.png),-o-linear-gradient(top,#517fa4,#306088);background-image:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/shared/noise-2.png),-ms-linear-gradient(top,#517fa4,#306088);background-image:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/shared/noise-2.png),linear-gradient(top,#517fa4,#306088);background-position:50% 50%;-webkit-background-size:30px 20px,auto;background-size:30px 20px,auto}.top-bar .logo{background-image:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/shared/shared-assets@2x.png);background-size:150px 600px}}.top-bar-new{position:relative}.top-bar-new .logo{position:absolute;left:50%;margin-left:-50px!important}.top-bar-new .top-bar-left,.top-bar-new .top-bar-right{position:absolute;top:0}.top-bar-new .top-bar-left{left:-1px}.top-bar-new .top-bar-right{right:0}.top-bar-new .top-bar-center{margin-left:auto;margin-right:auto;width:50px}.top-bar-wrapper{position:relative;max-width:1024px;margin:0 auto}.top-bar-left .top-bar-actions{float:left;display:inline}.top-bar-home{padding:0!important}.top-bar-home,.top-bar-home i{height:44px!important;width:44px!important}.top-bar-home i{position:absolute;left:0;top:0;display:block;margin:0!important;background:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/shared/shared-assets.png) no-repeat 6px -194px}.top-bar-home:hover{background:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/alpha/fff_10.png);background:rgba(255,255,255,.1)}.top-bar-home:active{background-color:#1c5380;background-color:rgba(6,54,95,.35);-webkit-box-shadow:-1px 0 0 rgba(255,255,255,.15),inset 0 0 1px rgba(6,54,95,.4),inset 1px 0 1px rgba(6,54,95,.4);-moz-box-shadow:-1px 0 0 rgba(255,255,255,.15),inset 0 0 1px rgba(6,54,95,.4),inset 1px 0 1px rgba(6,54,95,.4);box-shadow:-1px 0 0 rgba(255,255,255,.15),inset 0 0 1px rgba(6,54,95,.4),inset 1px 0 1px rgba(6,54,95,.4)}@media only screen and (-webkit-min-device-pixel-ratio:2),only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (min--moz-device-pixel-ratio:2),only screen and (-o-min-device-pixel-ratio:2/1),only screen and (min-device-pixel-ratio:2),only screen and (min-resolution:192dpi),only screen and (min-resolution:2dppx){.top-bar-home i{background-image:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/shared/shared-assets@2x.png);background-size:150px 600px}}.page-footer{clear:both;overflow:hidden;padding:8px 0 7px;border-top:1px solid #ddd;background:#fff;text-align:center}.page-footer nav,.page-footer nav ul{margin:0;padding:0}.page-footer nav,.page-footer .copyright,.page-footer li{display:inline-block}.page-footer li{margin:0}.page-footer a{display:block;padding:8px 6px}.page-footer .copyright{padding:8px 6px;margin:0 0 0 8px}.page-footer-chromeless,.page-footer-dark,.page-home .page-footer{background:0 0;border:none}.inset-avatar .inset-avatar-border{float:left;width:22px;height:22px;margin:-1px 8px 0 0;-webkit-border-radius:2px;border-radius:2px;-webkit-box-shadow:0 1px 2px #06365f;-moz-box-shadow:0 1px 2px #06365f;box-shadow:0 1px 2px #06365f}.inset-avatar .inset-avatar-border .inset-avatar-frame{width:22px;height:22px;-webkit-border-radius:2px;border-radius:2px;-webkit-box-shadow:inset 0 0 1px rgba(255,255,255,.8);-moz-box-shadow:inset 0 0 1px rgba(255,255,255,.8);box-shadow:inset 0 0 1px rgba(255,255,255,.8);position:absolute;z-index:100}.inset-avatar .inset-avatar-border img{width:22px!important;-webkit-border-radius:2px;border-radius:2px}.top-bar-actions{margin:0;padding:0;border-right:1px solid #5786aa;border-right-color:rgba(255,255,255,.1);border-left:1px solid #06365f;border-left-color:rgba(0,0,0,.1)}.top-bar-actions>li{position:relative;float:left;display:inline;margin:0}.top-bar-actions>li>a{position:relative;display:block;height:20px;padding:11px 11px 13px 12px;border-right:1px solid #06365f;border-right-color:rgba(0,0,0,.1);-webkit-box-shadow:inset 1px 0 0 rgba(255,255,255,.1);-moz-box-shadow:inset 1px 0 0 rgba(255,255,255,.1);box-shadow:inset 1px 0 0 rgba(255,255,255,.1);text-shadow:0 1px 0 rgba(3,27,47,.5);-webkit-tap-highlight-color:rgba(0,0,0,0)}.top-bar-actions>li>a i{display:block;float:left;height:28px;width:28px;margin:-5px 4px 0 -8px}.top-bar-actions>li>a:hover{background:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/alpha/fff_10.png);background:rgba(255,255,255,.1);border-right-color:rgba(0,0,0,.15)}.top-bar-actions>li>a:active,.top-bar-actions>li>a.link-active,html.touch .top-bar-actions>li>a.pressed{border-left:none;background-color:#1c5380;background-color:rgba(6,54,95,.35);-webkit-box-shadow:-1px 0 0 rgba(255,255,255,.15),inset 0 0 1px rgba(6,54,95,.4),inset 1px 0 1px rgba(6,54,95,.4);-moz-box-shadow:-1px 0 0 rgba(255,255,255,.15),inset 0 0 1px rgba(6,54,95,.4),inset 1px 0 1px rgba(6,54,95,.4);box-shadow:-1px 0 0 rgba(255,255,255,.15),inset 0 0 1px rgba(6,54,95,.4),inset 1px 0 1px rgba(6,54,95,.4)}.top-bar-actions>li .img-outset{float:left;display:inline;margin:-2px 10px 1px -1px}.top-bar-actions>li img{width:24px;height:24px;visibility:hidden}.top-bar-actions .link-signin i{background:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/shared/glyph-assets.png) no-repeat 2px 3px}.top-bar-actions .link-settings i{background:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/shared/glyph-assets.png) no-repeat 3px -196px}.top-bar-actions .link-open-instagram i{width:26px;height:28px;margin-left:1px!important;background:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/shared/glyph-assets.png) no-repeat 0 -399px}.top-bar-actions .link-open-instagram strong{position:relative;color:#e5ebf0;top:-1px}.account-state{position:absolute;top:0;right:15px}.account-state p,.account-state .top-bar-actions{float:right;display:inline}.account-state p{padding:8px 0 0 15px;text-shadow:0 1px 0 rgba(0,0,0,.3)}.account-state .dropdown{right:1px;top:38px}.account-state .dropdown a{padding-right:18px;-webkit-tap-highlight-color:rgba(0,0,0,0)}.account-state .dropdown i{top:0;left:auto;right:13px;height:10px;width:13px;background:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/shared/dropdown-arrow.png) no-repeat 0 0}.account-state .dropdown ul{min-width:150px}.dropdown{position:absolute;right:0;top:0;z-index:50;margin:-10px 0 0;padding:10px 0 0;pointer-events:none;-webkit-transition:opacity .2s ease-out,margin .2s ease-out;-moz-transition:opacity .2s ease-out,margin .2s ease-out;-o-transition:opacity .2s ease-out,margin .2s ease-out;transition:opacity .2s ease-out,margin .2s ease-out;opacity:0}html.android .dropdown,html.no-csstransitions .dropdown,html.msie .dropdown,html.opera .dropdown{display:none}.dropdown ul.dropdownOptionList,.dropdown ul{background:#eee url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/bg/white-gradient-300px.png) repeat-x 0 0;background-color:rgba(255,255,255,.3);-webkit-border-radius:3px;border-radius:3px;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.95),0 1px 8px rgba(0,0,0,.2),0 0 0 1px rgba(0,0,0,.08);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.95),0 1px 8px rgba(0,0,0,.2),0 0 0 1px rgba(0,0,0,.08);box-shadow:inset 0 1px 0 rgba(255,255,255,.95),0 1px 8px rgba(0,0,0,.2),0 0 0 1px rgba(0,0,0,.08);min-width:100px;padding:1px 3px;margin:0;list-style:none}.dropdown li{padding:5px 0;margin:0;border-top:1px solid #eee;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.95);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.95);box-shadow:inset 0 1px 0 rgba(255,255,255,.95)}.dropdown li:first-child{border-top:none;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.dropdown li a{display:block;padding:4px 8px;margin:-3px 0;border:1px solid transparent;-webkit-border-radius:2px;border-radius:2px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.dropdown li a:hover.dropdownLinkHover,.dropdown li a:hover{border:1px solid #eee;background:#999 url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/bg/white-gradient-300px.png) repeat-x 50% 50%;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.9);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.9);box-shadow:inset 0 1px 0 rgba(255,255,255,.9)}html.touch .dropdown li a:hover,.dropdown li a:active{border:1px solid #ddd;border-top-color:#d6d6d6;background:#eaeaea;-webkit-box-shadow:inset 0 0 3px rgba(0,0,0,.1),0 1px 0 rgba(255,255,255,.9);-moz-box-shadow:inset 0 0 3px rgba(0,0,0,.1),0 1px 0 rgba(255,255,255,.9);box-shadow:inset 0 0 3px rgba(0,0,0,.1),0 1px 0 rgba(255,255,255,.9)}.dropdown li>strong{display:block;margin-bottom:-5px;padding-bottom:5px;border-bottom:1px solid #ddd}.dropdown i{position:absolute;left:10px;right:auto;top:0;height:10px;width:13px;z-index:10;background:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/shared/glyph-assets.png) no-repeat -1px -800px}.dropdown i.right{left:auto;right:10px}.dropdown-inverted{margin:0 0 -10px;padding:0 0 5px;top:auto;bottom:0}.dropdown-inverted i{background-position:-1px -701px}.dropdown-open .dropdown{margin:0;opacity:.99;pointer-events:all}html.android .dropdown-open .dropdown,html.no-csstransitions .dropdown-open .dropdown,html.msie .dropdown-open .dropdown,html.opera .dropdown-open .dropdown{display:block}.alerts{margin-bottom:20px}.alert-red,.alert-blue,.alert-green{padding:11px 12px 9px;-webkit-border-radius:4px;border-radius:4px;margin-bottom:10px;border:solid 1px;min-height:0}.alert-red{color:#b94a5c;background-color:#f2dede;border-color:#eed3d7}.alert-blue{color:#3a87ad;background-color:#d9edf7;border-color:#bce8f1}.alert-green{color:#468847;background-color:#dff0d8;border-color:#d6e9c6}.p-error .main{padding:0 0 160px}.error-container{width:400px;border:1px solid #a4baca;background:#fdfdfd;-webkit-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 5px rgba(0,0,0,.1);-moz-box-shadow:0 1px 5px rgba(0,0,0,.1);box-shadow:0 1px 5px rgba(0,0,0,.1);-webkit-background-clip:padding-box;background-clip:padding-box;margin:100px auto 0;padding:25px 30px 20px;text-align:center}.top-bar .internal-settings{position:relative;float:right;display:inline;width:110px;height:44px;margin:0 0 -1px;padding:0}.top-bar .internal-settings>a{position:absolute;left:0;top:0;display:block;width:40px;height:40px;margin:2px;color:#2e4253;background:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/glyphs/internal-settings.png) no-repeat 0 -1px;opacity:.6}.top-bar .internal-settings>a>strong{display:block;height:40px;padding-top:9px;margin-left:34px}.top-bar .internal-settings .dropdown{right:0;margin-right:-1px}.top-bar .internal-settings .dropdown i{right:17px}.top-bar .internal-settings.dropdown-open a,.top-bar .internal-settings:hover a{opacity:1}.top-bar .on-prerelease>a{background-position:0 -41px;color:#fff}@media only screen and (-webkit-min-device-pixel-ratio:2),only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (min--moz-device-pixel-ratio:2),only screen and (-o-min-device-pixel-ratio:2/1),only screen and (min-device-pixel-ratio:2),only screen and (min-resolution:192dpi),only screen and (min-resolution:2dppx){.top-bar .internal-settings>a{background-image:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/glyphs/internal-settings@2x.png);background-size:40px 80px}}@media screen and (max-width:460px){.p-error .main{padding-bottom:0}.error-container{margin:0;border:none;width:auto}}@media screen and (max-width:990px){body,.root,.wrapper{width:100%}.wrapper{box-sizing:border-box}.account-state{right:0}.account-state ul{border-right-width:0}}@media screen and (max-width:480px){.account-state .link-signin>a strong,.account-state .link-profile>a strong{display:none}.account-state a{padding-bottom:12px}.account-state a .img-inset,.account-state a .img-outset{margin-right:0}}@media screen and (max-width:480px){.top-bar .wrapper{padding:0 9px}}@-webkit-keyframes 'fade-in'{0%{opacity:0}100%{opacity:1}}@-moz-keyframes fade-in{0%{opacity:0}100%{opacity:1}}@-ms-keyframes fade-in{0%{opacity:0}100%{opacity:1}}@-o-keyframes fade-in{0%{opacity:0}100%{opacity:1}}@keyframes 'fade-in'{0%{opacity:0}100%{opacity:1}}@media only screen and (-webkit-min-device-pixel-ratio:2),only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (min--moz-device-pixel-ratio:2),only screen and (-o-min-device-pixel-ratio:2/1),only screen and (min-device-pixel-ratio:2),only screen and (min-resolution:192dpi),only screen and (min-resolution:2dppx){.top-bar{-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.account-state .link-signin i,.account-state .link-settings i,.account-state .link-open-instagram i{background-image:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/shared/glyph-assets@2x.png);-webkit-background-size:150px 1600px;background-size:150px 1600px}.dropdown{-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0);-webkit-transition:all .2s ease-out;-moz-transition:all .2s ease-out;-o-transition:all .2s ease-out;transition:all .2s ease-out}.dropdown-open .dropdown{margin:-10px 0 0;-webkit-transform:translate3d(0,10px,0);-moz-transform:translate3d(0,10px,0);-o-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}}.mobileAvatarImage img{height:100%;visibility:hidden;width:auto}.bluebar-menu-items{float:left;height:44px;list-style:none;margin:0;padding:0}.bluebar-menu-item{display:inline;float:left}.bluebar-menu-link{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;color:#fff;display:block;font-size:16px;font-weight:700;height:20px;padding:11px 11px 13px 12px;position:relative}.bluebar-menu-link:hover{background-color:rgba(255,255,255,.1);color:#fff}.bluebar-wrapper-960{margin:0 auto;position:relative;width:960px}.bluebar-home-logo{background:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/branding/new-logo.png) no-repeat;height:32px;left:4px;margin:0;position:absolute;top:9px;width:100px}.bluebar-business-logo{background:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/business/instagram-for-business-logo.png) no-repeat;background-size:250px;height:40px;top:0;width:250px}.bluebar-FollowerCountLabel{color:#a5a9ac;float:left;font-size:14px;font-weight:lighter;margin:12px 4px 0 12px}@media only screen and (-webkit-min-device-pixel-ratio:2),only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (min--moz-device-pixel-ratio:2),only screen and (-o-min-device-pixel-ratio:2/1),only screen and (min-device-pixel-ratio:2),only screen and (min-resolution:192dpi),only screen and (min-resolution:2dppx){.bluebar-home-logo{background-image:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/branding/new-logo@2x.png)}.bluebar-business-logo{background-image:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/business/instagram-for-business-logo@2x.png)}}.top-bar.bluebar-newstyle{background:#fff;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;border:none;height:72px}.bluebar-newstyle .top-bar-right li{padding:10px}.bluebar-newstyle .top-bar-left,.bluebar-newstyle .top-bar-right{margin:16px 0 0}.bluebar-newstyle .top-bar-actions,.bluebar-newstyle .top-bar-actions>li>a,.bluebar-newstyle .top-bar-actions>li>a:active,.bluebar-newstyle .top-bar-actions>li>a.link-active{background:0 0;border:none;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;height:auto;padding:0}.bluebar-newstyle .current-user-avatar{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;-webkit-border-radius:18px;border-radius:18px;height:34px;width:34px}.bluebar-newstyle .top-bar-actions>li .img-outset{margin:-6px 12px 0 0}.bluebar-newstyle .link-profile strong{color:#4a5158;text-shadow:none}.bluebar-newstyle .link-profile strong::after{color:#4a5158;content:" \25bc";font-size:10px;margin:0;position:relative}</style><style type="text/css"></style><style type="text/css">.video-js{background-color:#000;position:relative;padding:0;font-size:10px;vertical-align:middle}.video-js .vjs-tech{position:absolute;top:0;left:0;width:100%;height:100%}.video-js:-moz-full-screen{position:absolute}body.vjs-full-window{padding:0;margin:0;height:100%;overflow-y:auto}.video-js.vjs-fullscreen{position:fixed;overflow:hidden;z-index:1000;left:0;top:0;bottom:0;right:0;width:100%!important;height:100%!important;_position:absolute}.video-js:-webkit-full-screen{width:100%!important;height:100%!important}.vjs-poster{background-repeat:no-repeat;background-position:50% 50%;background-size:contain;cursor:pointer;height:100%;margin:0;padding:0;position:relative;width:100%}.vjs-poster img{display:block;margin:0 auto;max-height:100%;padding:0;width:100%}.video-js .vjs-text-track-display{text-align:center;position:absolute;bottom:4em;left:1em;right:1em;font-family:Arial,sans-serif}.video-js .vjs-text-track{display:none;font-size:1.4em;text-align:center;margin-bottom:.1em;background:#000;background:rgba(0,0,0,.5)}.video-js .vjs-subtitles{color:#fff}.video-js .vjs-captions{color:#fc6}.vjs-tt-cue{display:block}.vjs-fade-in{display:block!important;visibility:visible;opacity:1;-webkit-transition:visibility .1s,opacity .1s;-moz-transition:visibility .1s,opacity .1s;-ms-transition:visibility .1s,opacity .1s;-o-transition:visibility .1s,opacity .1s;transition:visibility .1s,opacity .1s}.vjs-fade-out{display:block!important;visibility:hidden;opacity:0;-webkit-transition:visibility 1.5s,opacity 1.5s;-moz-transition:visibility 1.5s,opacity 1.5s;-ms-transition:visibility 1.5s,opacity 1.5s;-o-transition:visibility 1.5s,opacity 1.5s;transition:visibility 1.5s,opacity 1.5s;-webkit-transition-delay:2s;-moz-transition-delay:2s;-ms-transition-delay:2s;-o-transition-delay:2s;transition-delay:2s}.vjs-default-skin .vjs-hidden{display:none}.vjs-lock-showing{display:block!important;opacity:1;visibility:visible}@font-face{font-family:'VideoJS';src:url('../f/1/vjs.eot');src:url('../f/1/vjs.eot') format('embedded-opentype'),url('../f/1/vjs.woff') format('woff'),url('../f/1/vjs.ttf') format('truetype');font-weight:400;font-style:normal}.vjs-default-skin{color:#ccc}.vjs-default-skin .vjs-slider{outline:0;position:relative;cursor:pointer;padding:0;background:#323232;background:rgba(100,100,100,.5)}.vjs-default-skin .vjs-slider:focus{background:#464646;background:rgba(100,100,100,.7);-webkit-box-shadow:0 0 2em rgba(255,255,255,1);-moz-box-shadow:0 0 2em rgba(255,255,255,1);box-shadow:0 0 2em rgba(255,255,255,1)}.vjs-default-skin .vjs-slider-handle{position:absolute;left:0;top:0}.vjs-default-skin .vjs-slider-handle:before{content:"\e009";font-family:VideoJS;font-size:1em;line-height:1;text-align:center;text-shadow:0 0 1em #fff;position:absolute;top:0;left:0;-webkit-transform:rotate(-45deg);-moz-transform:rotate(-45deg);-ms-transform:rotate(-45deg);-o-transform:rotate(-45deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2)}.vjs-default-skin .vjs-control-bar{display:none;position:absolute;bottom:0;left:0;right:0;padding:0;margin:0;height:3em;background-color:#000;background-color:rgba(7,40,50,.7);font-style:normal;font-weight:400;font-family:Arial,sans-serif}.vjs-default-skin .vjs-control{outline:none;position:relative;float:left;text-align:center;margin:0;padding:0;height:3em;width:4em}.vjs-default-skin .vjs-control:before{font-family:VideoJS;font-size:1.5em;line-height:2;position:absolute;top:0;left:0;width:100%;height:100%;text-align:center;text-shadow:1px 1px 1px rgba(0,0,0,.5)}.vjs-default-skin .vjs-control:focus:before,.vjs-default-skin .vjs-control:hover:before{text-shadow:0 0 1em rgba(255,255,255,1)}.vjs-default-skin .vjs-control-text{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.vjs-default-skin .vjs-play-control{width:5em;cursor:pointer}.vjs-default-skin .vjs-play-control:before{content:"\e001"}.vjs-default-skin.vjs-playing .vjs-play-control:before{content:"\e002"}.vjs-default-skin .vjs-mute-control,.vjs-default-skin .vjs-volume-menu-button{cursor:pointer;float:right}.vjs-default-skin .vjs-mute-control:before,.vjs-default-skin .vjs-volume-menu-button:before{content:"\e006"}.vjs-default-skin .vjs-mute-control.vjs-vol-0:before,.vjs-default-skin .vjs-volume-menu-button.vjs-vol-0:before{content:"\e003"}.vjs-default-skin .vjs-mute-control.vjs-vol-1:before,.vjs-default-skin .vjs-volume-menu-button.vjs-vol-1:before{content:"\e004"}.vjs-default-skin .vjs-mute-control.vjs-vol-2:before,.vjs-default-skin .vjs-volume-menu-button.vjs-vol-2:before{content:"\e005"}.vjs-default-skin .vjs-volume-control{width:5em;float:right}.vjs-default-skin .vjs-volume-bar{width:5em;height:.6em;margin:1.1em auto 0}.vjs-default-skin .vjs-volume-menu-button .vjs-menu-content{height:2.9em}.vjs-default-skin .vjs-volume-level{position:absolute;top:0;left:0;height:.5em;background:#66A8CC url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAGCAYAAADgzO9IAAAAP0lEQVQIHWWMAQoAIAgDR/QJ/Ub//04+w7ZICBwcOg5FZi5iBB82AGzixEglJrd4TVK5XUJpskSTEvpdFzX9AB2pGziSQcvAAAAAAElFTkSuQmCC) -50% 0}.vjs-default-skin .vjs-volume-bar .vjs-volume-handle{width:.5em;height:.5em}.vjs-default-skin .vjs-volume-handle:before{font-size:.9em;top:-.2em;left:-.2em;width:1em;height:1em}.vjs-default-skin .vjs-volume-menu-button .vjs-menu .vjs-menu-content{width:6em;left:-4em}.vjs-default-skin .vjs-progress-control{position:absolute;left:0;right:0;width:auto;font-size:.3em;height:1em;top:-1em;-webkit-transition:top .4s,height .4s,font-size .4s,-webkit-transform .4s;-moz-transition:top .4s,height .4s,font-size .4s,-moz-transform .4s;-o-transition:top .4s,height .4s,font-size .4s,-o-transform .4s;transition:top .4s,height .4s,font-size .4s,transform .4s}.vjs-default-skin:hover .vjs-progress-control{font-size:.9em;-webkit-transition:top .2s,height .2s,font-size .2s,-webkit-transform .2s;-moz-transition:top .2s,height .2s,font-size .2s,-moz-transform .2s;-o-transition:top .2s,height .2s,font-size .2s,-o-transform .2s;transition:top .2s,height .2s,font-size .2s,transform .2s}.vjs-default-skin .vjs-progress-holder{height:100%}.vjs-default-skin .vjs-progress-holder .vjs-play-progress,.vjs-default-skin .vjs-progress-holder .vjs-load-progress{position:absolute;display:block;height:100%;margin:0;padding:0;left:0;top:0}.vjs-default-skin .vjs-play-progress{background:#66A8CC url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAGCAYAAADgzO9IAAAAP0lEQVQIHWWMAQoAIAgDR/QJ/Ub//04+w7ZICBwcOg5FZi5iBB82AGzixEglJrd4TVK5XUJpskSTEvpdFzX9AB2pGziSQcvAAAAAAElFTkSuQmCC) -50% 0}.vjs-default-skin .vjs-load-progress{background:#646464;background:rgba(255,255,255,.4)}.vjs-default-skin .vjs-seek-handle{width:1.5em;height:100%}.vjs-default-skin .vjs-seek-handle:before{padding-top:.1em}.vjs-default-skin .vjs-time-controls{font-size:1em;line-height:3em}.vjs-default-skin .vjs-current-time,.vjs-default-skin .vjs-duration{float:left}.vjs-default-skin .vjs-remaining-time{display:none;float:left}.vjs-time-divider{float:left;line-height:3em}.vjs-default-skin .vjs-fullscreen-control{width:3.8em;cursor:pointer;float:right}.vjs-default-skin .vjs-fullscreen-control:before{content:"\e000"}.vjs-default-skin.vjs-fullscreen .vjs-fullscreen-control:before{content:"\e00b"}.vjs-default-skin .vjs-big-play-button{display:block;z-index:2;position:absolute;top:2em;left:2em;width:12em;height:8em;margin:0;text-align:center;vertical-align:middle;cursor:pointer;opacity:1;background-color:#282828;background-color:rgba(7,40,50,.7);border:.3em solid #323232;border-color:rgba(255,255,255,.25);-webkit-border-radius:25px;-moz-border-radius:25px;border-radius:25px;-webkit-box-shadow:0 0 1em rgba(255,255,255,.25);-moz-box-shadow:0 0 1em rgba(255,255,255,.25);box-shadow:0 0 1em rgba(255,255,255,.25);-webkit-transition:border .4s,-webkit-box-shadow .4s,-webkit-transform .4s;-moz-transition:border .4s,-moz-box-shadow .4s,-moz-transform .4s;-o-transition:border .4s,-o-box-shadow .4s,-o-transform .4s;transition:border .4s,box-shadow .4s,transform .4s}.vjs-default-skin:hover .vjs-big-play-button,.vjs-default-skin .vjs-big-play-button:focus{outline:0;border-color:#fff;border-color:rgba(255,255,255,1);background-color:#505050;background-color:rgba(50,50,50,.75);-webkit-box-shadow:0 0 3em #fff;-moz-box-shadow:0 0 3em #fff;box-shadow:0 0 3em #fff;-webkit-transition:border 0,-webkit-box-shadow 0,-webkit-transform 0;-moz-transition:border 0s,-moz-box-shadow 0s,-moz-transform 0s;-o-transition:border 0,-o-box-shadow 0,-o-transform 0;transition:border 0s,box-shadow 0s,transform 0s}.vjs-default-skin .vjs-big-play-button:before{content:"\e001";font-family:VideoJS;font-size:3em;line-height:2.66;text-shadow:.05em .05em .1em #000;text-align:center;position:absolute;left:0;width:100%;height:100%}.vjs-loading-spinner{display:none;position:absolute;top:50%;left:50%;font-size:5em;line-height:1;width:1em;height:1em;margin-left:-.5em;margin-top:-.5em;opacity:.75;-webkit-animation:spin 1.5s infinite linear;-moz-animation:spin 1.5s infinite linear;-o-animation:spin 1.5s infinite linear;animation:spin 1.5s infinite linear}.vjs-default-skin .vjs-loading-spinner:before{content:"\e00a";font-family:VideoJS;position:absolute;width:1em;height:1em;text-align:center;text-shadow:0 0 .1em #000}.vjs-default-skin .vjs-loading-spinner:after{content:"\e00a";font-family:VideoJS;position:absolute;width:1em;height:1em;text-align:center;-webkit-background-clip:text;-webkit-text-fill-color:transparent}@-moz-keyframes spin{0%{-moz-transform:rotate(0)}100%{-moz-transform:rotate(359deg)}}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0)}100%{-webkit-transform:rotate(359deg)}}@-o-keyframes spin{0%{-o-transform:rotate(0)}100%{-o-transform:rotate(359deg)}}@-ms-keyframes spin{0%{-ms-transform:rotate(0)}100%{-ms-transform:rotate(359deg)}}@keyframes spin{0%{transform:rotate(0)}100%{transform:rotate(359deg)}}.vjs-default-skin .vjs-menu-button{float:right;cursor:pointer}.vjs-default-skin .vjs-menu{display:none;position:absolute;bottom:0;left:0;width:0;height:0;margin-bottom:3em;border-left:2em solid transparent;border-right:2em solid transparent;border-top:1.55em solid #000;border-top-color:rgba(7,40,50,.5)}.vjs-default-skin .vjs-menu-button .vjs-menu .vjs-menu-content{display:block;padding:0;margin:0;position:absolute;width:10em;bottom:1.5em;max-height:15em;overflow:auto;left:-5em;background-color:#000;background-color:rgba(7,40,50,.7);-webkit-box-shadow:-20px -20px 0 rgba(255,255,255,.5);-moz-box-shadow:0 0 1em rgba(255,255,255,.5);box-shadow:-.2em -.2em .3em rgba(255,255,255,.2)}.vjs-default-skin .vjs-menu-button:hover .vjs-menu{display:block}.vjs-default-skin .vjs-menu-button ul li{list-style:none;margin:0;padding:.3em 0;line-height:1.4em;font-size:1.2em;font-weight:400;text-align:center;text-transform:lowercase}.vjs-default-skin .vjs-menu-button ul li.vjs-selected{background-color:#000}.vjs-default-skin .vjs-menu-button ul li:focus,.vjs-default-skin .vjs-menu-button ul li:hover,.vjs-default-skin .vjs-menu-button ul li.vjs-selected:focus,.vjs-default-skin .vjs-menu-button ul li.vjs-selected:hover{background-color:#fff;background-color:rgba(255,255,255,.75);color:#111;outline:0;-webkit-box-shadow:0 0 1em rgba(255,255,255,1);-moz-box-shadow:0 0 1em rgba(255,255,255,1);box-shadow:0 0 1em rgba(255,255,255,1)}.vjs-default-skin .vjs-menu-button ul li.vjs-menu-title{text-align:center;text-transform:uppercase;font-size:1em;line-height:2em;padding:0;margin:0 0 .3em;font-weight:700;cursor:default}.vjs-default-skin .vjs-subtitles-button:before{content:"\e00c"}.vjs-default-skin .vjs-captions-button{font-size:1em}.vjs-default-skin .vjs-captions-button:before{content:"\e008";font-family:VideoJS;font-size:1.5em;line-height:2;position:absolute;top:0;left:0;width:100%;height:100%;text-align:center;text-shadow:none}.vjs-default-skin .vjs-captions-button:focus .vjs-control-content:before,.vjs-default-skin .vjs-captions-button:hover .vjs-control-content:before{-webkit-box-shadow:0 0 1em rgba(255,255,255,1);-moz-box-shadow:0 0 1em rgba(255,255,255,1);box-shadow:0 0 1em rgba(255,255,255,1)}</style><style type="text/css">.vjsTestMode .vjs-loading-spinner{display:none!important}</style><style type="text/css">.Video{position:relative}.vStatesHide .vStatePlay,.vStatesHide .vStatePause,.vStatesHide .vStatePrebuffer,.vStatesHide .vStateBuffering,.vStatesHide .vStateSound,.vStatesHide .vStateMuted{opacity:0;-webkit-transition-delay:.1s;-moz-transition-delay:.1s;-o-transition-delay:.1s;transition-delay:.1s}.vStatePlay,.vStatePause,.vStatePrebuffer,.vStateBuffering,.vStateSound,.vStateMuted{background:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/frame/vesper-frame-assets.png) no-repeat 0 0;display:block;position:absolute;-webkit-transition:opacity .2s ease-out;-moz-transition:opacity .2s ease-out;-o-transition:opacity .2s ease-out;transition:opacity .2s ease-out}.vOffsetIndicator .vStatePlay,.vOffsetIndicator .vStatePause,.vOffsetIndicator .vStatePrebuffer,.vOffsetIndicator .vStateBuffering,.vOffsetIndicator .vStateSound,.vOffsetIndicator .vStateMuted{background-position:-17px -15px;background-size:190px 300px;height:36px;left:auto;margin:0;right:16px;top:16px;width:38px}.vStatePlay,.vStatePause,.vStatePrebuffer,.vStateBuffering{height:135px;left:50%;margin-left:-61px;margin-top:-55px;top:50%;width:135px}.vStateSound,.vStateMuted{left:11px;bottom:11px;width:48px;height:48px;display:none}.vCoverLayer{bottom:0;display:block;left:0;position:absolute;right:0;top:0;z-index:2}.Video .vStateSound{background-position:-29px -389px}.Video .vStatePause{display:none}.Video .vStatePaused,.Video .vStatePause{background-position:-18px -78px}.Video.vOffsetIndicator .vStatePause{display:block}.Video .vStateMuted{background-position:-149px -389px}.Video .vjs-control-bar,.Video .vjs-control,.Video .vjs-loading-spinner,.Video .vjs-big-play-button,.Video .text-track-display,html.touch .Video .vStates{display:none}@media only screen and (-webkit-min-device-pixel-ratio:2),only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (min--moz-device-pixel-ratio:2),only screen and (-o-min-device-pixel-ratio:2/1),only screen and (min-device-pixel-ratio:2),only screen and (min-resolution:192dpi),only screen and (min-resolution:2dppx){.vStatePlay,.vStatePause,.vStatePrebuffer,.vStateBuffering,.vStateSound,.vStateMuted{background:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/frame/vesper-frame-assets@2x.png) no-repeat 0 0;background-size:360px 600px}.vOffsetIndicator .vStatePlay,.vOffsetIndicator .vStatePause,.vOffsetIndicator .vStatePrebuffer,.vOffsetIndicator .vStateBuffering,.vOffsetIndicator .vStateSound,.vOffsetIndicator .vStateMuted{background-size:180px 300px}.Video .vStateMuted{background-position:-156px -389px}}</style><style type="text/css">.LikePopAnimation{-webkit-animation:like-pop-animation .3s ease-out 0;-moz-animation:like-pop-animation .3s ease-out 0s;-o-animation:like-pop-animation .3s ease-out 0;animation:like-pop-animation .3s ease-out 0s}@-webkit-keyframes 'like-pop-animation'{0%{-webkit-background-size:20% 20%;background-size:20% 20%;opacity:.25}50%{opacity:.9}100%{-webkit-background-size:40% 40%;background-size:40% 40%;opacity:0}}@-moz-keyframes like-pop-animation{0%{-webkit-background-size:20% 20%;background-size:20% 20%;opacity:.25}50%{opacity:.9}100%{-webkit-background-size:40% 40%;background-size:40% 40%;opacity:0}}@-ms-keyframes like-pop-animation{0%{-webkit-background-size:20% 20%;background-size:20% 20%;opacity:.25}50%{opacity:.9}100%{-webkit-background-size:40% 40%;background-size:40% 40%;opacity:0}}@-o-keyframes like-pop-animation{0%{-webkit-background-size:20% 20%;background-size:20% 20%;opacity:.25}50%{opacity:.9}100%{-webkit-background-size:40% 40%;background-size:40% 40%;opacity:0}}@keyframes 'like-pop-animation'{0%{-webkit-background-size:20% 20%;background-size:20% 20%;opacity:.25}50%{opacity:.9}100%{-webkit-background-size:40% 40%;background-size:40% 40%;opacity:0}}</style><style type="text/css">.LikeableFrame{position:absolute;height:100%;width:60%}</style><style type="text/css">.Comment{min-height:32px;margin:0 0 8px;opacity:.99;-webkit-transition:opacity .2s;-moz-transition:opacity .2s;-o-transition:opacity .2s;transition:opacity .2s}.Comment.ImageBlock .ibImg{top:4px}.cDelete{visibility:hidden;position:absolute;top:0;right:8px;width:17px;height:17px;margin:0;background:#f0f0f0 url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/p/photo-page-assets.png) no-repeat 4px -496px;-webkit-border-radius:2px;border-radius:2px}.Comment:hover .cDelete,.cDropdownShown{visibility:visible}.dWrapper .cDeleteDropdown{position:relative}.dWrapper .dContainer.cDeleteDropdown{margin-right:-23px}.dWrapper .dInverted.cDeleteDropdown{margin-left:10px;margin-top:-48px}.cDeleted{opacity:0}</style><style type="text/css">.cNameLink{display:block;font-weight:700}</style><style type="text/css">.sNameLink{display:inline-block;font-size:18px;font-weight:700}</style><style type="text/css">.ImageBlock{position:relative;padding:0}.ImageBlock .ibImg{position:absolute;left:12px;top:12px;-webkit-border-radius:2px;border-radius:2px;-webkit-box-shadow:inset 0 0 0 1px rgba(0,0,0,.3);-moz-box-shadow:inset 0 0 0 1px rgba(0,0,0,.3);box-shadow:inset 0 0 0 1px rgba(0,0,0,.3)}.ImageBlock .ibContent{padding:0 8px 0 20px}</style><style type="text/css">.ScrollContainer{overflow-y:scroll}</style><style type="text/css">[type=submit],.button{cursor:pointer;font-weight:700;line-height:1em;text-decoration:none!important;-webkit-tap-highlight-color:rgba(0,0,0,0);-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:inline-block;position:relative;background-color:#eee}[type=submit]:hover,.button:hover{background-color:#eee}.ButtonActive[type=submit],.ButtonActive.button,.button-active[type=submit],.button-active.button,.active[type=submit],.active.button,[type=submit]:active,.button:active,html.touch .pressed[type=submit],html.touch .pressed.button{background-color:#ddd}.button-micro,.button-tiny{font-size:1.2rem;padding:4px 7px;-webkit-border-radius:2px;border-radius:2px}.button-small,.button-altsmall{font-size:1.2rem;padding:7px 9px 6px}[type=button],[type=submit],.button,.button-medium{font-size:1.4rem;padding:7px 10px 8px;-webkit-border-radius:3px;border-radius:3px}.button-large{font-size:1.6rem;padding:9px 12px}.button-xlarge{font-size:2.3rem;padding:10px 13px}[type=submit],.button,.button-light,[type=submit]:visited,.button:visited,.button-light:visited{color:#0f3556}[type=submit]:hover,.button:hover,.button-light:hover{color:#062540}.button-active[type=submit],.button-active.button,.button-active.button-light,.active[type=submit],.active.button,.active.button-light,[type=submit]:active,.button:active,.button-light:active,html.touch .pressed[type=submit],html.touch .pressed.button,html.touch .pressed.button-light{color:#062540}.button-blue,.button-headerblue,.button-gray,.button-green,.button-altgreen,.button-red,.button-darkred,.button-brown,.button-yellow,.button-altblue,.button-blue:visited,.button-headerblue:visited,.button-gray:visited,.button-green:visited,.button-altgreen:visited,.button-red:visited,.button-darkred:visited,.button-brown:visited,.button-yellow:visited,.button-altblue:visited{color:#fff}.button-blue:hover,.button-headerblue:hover,.button-gray:hover,.button-green:hover,.button-altgreen:hover,.button-red:hover,.button-darkred:hover,.button-brown:hover,.button-yellow:hover,.button-altblue:hover{color:#fff}.ButtonActive.button-blue,.ButtonActive.button-headerblue,.ButtonActive.button-gray,.ButtonActive.button-green,.ButtonActive.button-altgreen,.ButtonActive.button-red,.ButtonActive.button-darkred,.ButtonActive.button-brown,.ButtonActive.button-yellow,.ButtonActive.button-altblue,.button-active.button-blue,.button-active.button-headerblue,.button-active.button-gray,.button-active.button-green,.button-active.button-altgreen,.button-active.button-red,.button-active.button-darkred,.button-active.button-brown,.button-active.button-yellow,.button-active.button-altblue,.active.button-blue,.active.button-headerblue,.active.button-gray,.active.button-green,.active.button-altgreen,.active.button-red,.active.button-darkred,.active.button-brown,.active.button-yellow,.active.button-altblue,.button-blue:active,.button-headerblue:active,.button-gray:active,.button-green:active,.button-altgreen:active,.button-red:active,.button-darkred:active,.button-brown:active,.button-yellow:active,.button-altblue:active,html.touch .pressed.button-blue,html.touch .pressed.button-headerblue,html.touch .pressed.button-gray,html.touch .pressed.button-green,html.touch .pressed.button-altgreen,html.touch .pressed.button-red,html.touch .pressed.button-darkred,html.touch .pressed.button-brown,html.touch .pressed.button-yellow,html.touch .pressed.button-altblue{color:rgba(255,255,255,.8);text-shadow:0 1px 0 rgba(0,0,0,.3)}.button-grey,.button-grey:visited{color:#666}.button-grey:hover{color:#444}.button-active.button-grey,.active.button-grey,.button-grey:active,html.touch .pressed.button-grey{color:#444}[type=submit],.button,.button-light{text-shadow:0 1px 0 rgba(255,255,255,.2)}[type=submit],.button,.button-light,.button-grey{-webkit-box-shadow:0 1px 1px rgba(0,0,0,.08),inset 1px 0 0 rgba(255,255,255,.05),inset -1px 0 0 rgba(255,255,255,.05),inset 0 1px 0 rgba(255,255,255,.2);-moz-box-shadow:0 1px 1px rgba(0,0,0,.08),inset 1px 0 0 rgba(255,255,255,.05),inset -1px 0 0 rgba(255,255,255,.05),inset 0 1px 0 rgba(255,255,255,.2);box-shadow:0 1px 1px rgba(0,0,0,.08),inset 1px 0 0 rgba(255,255,255,.05),inset -1px 0 0 rgba(255,255,255,.05),inset 0 1px 0 rgba(255,255,255,.2)}.ButtonActive[type=submit],.ButtonActive.button,.ButtonActive.button-light,.ButtonActive.button-grey,.button-active[type=submit],.button-active.button,.button-active.button-light,.button-active.button-grey,.active[type=submit],.active.button,.active.button-light,.active.button-grey,[type=submit]:active,.button:active,.button-light:active,.button-grey:active,html.touch .pressed[type=submit],html.touch .pressed.button,html.touch .pressed.button-light,html.touch .pressed.button-grey{-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.08),inset 0 0 1px rgba(0,0,0,.08),0 1px 0 rgba(255,255,255,.9);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.08),inset 0 0 1px rgba(0,0,0,.08),0 1px 0 rgba(255,255,255,.9);box-shadow:inset 0 1px 1px rgba(0,0,0,.08),inset 0 0 1px rgba(0,0,0,.08),0 1px 0 rgba(255,255,255,.9)}.button-blue{text-shadow:0 1px 0 rgba(255,255,255,.2)}.button-blue,.button-gray,.button-brown,.button-red,.button-green,.button-yellow,.button-altblue,.button-altgreen{-webkit-box-shadow:0 1px 1px rgba(0,0,0,.1),inset 1px 0 0 rgba(255,255,255,.05),inset -1px 0 0 rgba(255,255,255,.05),inset 0 1px 0 rgba(255,255,255,.2);-moz-box-shadow:0 1px 1px rgba(0,0,0,.1),inset 1px 0 0 rgba(255,255,255,.05),inset -1px 0 0 rgba(255,255,255,.05),inset 0 1px 0 rgba(255,255,255,.2);box-shadow:0 1px 1px rgba(0,0,0,.1),inset 1px 0 0 rgba(255,255,255,.05),inset -1px 0 0 rgba(255,255,255,.05),inset 0 1px 0 rgba(255,255,255,.2)}.button-brown,.button-red,.button-green,.button-yellow,.button-altblue,.button-altgreen{text-shadow:0 1px 0 rgba(255,255,255,.2)}.ButtonActive.button-blue,.ButtonActive.button-gray,.ButtonActive.button-brown,.ButtonActive.button-red,.ButtonActive.button-green,.ButtonActive.button-yellow,.ButtonActive.button-altblue,.ButtonActive.button-altgreen,.button-active.button-blue,.button-active.button-gray,.button-active.button-brown,.button-active.button-red,.button-active.button-green,.button-active.button-yellow,.button-active.button-altblue,.button-active.button-altgreen,.active.button-blue,.active.button-gray,.active.button-brown,.active.button-red,.active.button-green,.active.button-yellow,.active.button-altblue,.active.button-altgreen,.button-blue:active,.button-gray:active,.button-brown:active,.button-red:active,.button-green:active,.button-yellow:active,.button-altblue:active,.button-altgreen:active,html.touch .pressed.button-blue,html.touch .pressed.button-gray,html.touch .pressed.button-brown,html.touch .pressed.button-red,html.touch .pressed.button-green,html.touch .pressed.button-yellow,html.touch .pressed.button-altblue,html.touch .pressed.button-altgreen{-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.15),inset 0 0 1px rgba(0,0,0,.15),0 1px 0 rgba(255,255,255,.8);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.15),inset 0 0 1px rgba(0,0,0,.15),0 1px 0 rgba(255,255,255,.8);box-shadow:inset 0 1px 1px rgba(0,0,0,.15),inset 0 0 1px rgba(0,0,0,.15),0 1px 0 rgba(255,255,255,.8)}[type=submit],.button{background-position:50% 50%}[type=submit],.button,.button-light{background-color:#f9fafb;background-image:-webkit-gradient(linear,left top,left bottom,from(#f9fafb),to(#eef1f4));background-image:-webkit-linear-gradient(top,#f9fafb,#eef1f4);background-image:-moz-linear-gradient(top,#f9fafb,#eef1f4);background-image:-o-linear-gradient(top,#f9fafb,#eef1f4);background-image:-ms-linear-gradient(top,#f9fafb,#eef1f4);background-image:linear-gradient(top,#f9fafb,#eef1f4);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#f9fafb', EndColorStr='#eef1f4')}.ButtonActive[type=submit],.ButtonActive.button,.ButtonActive.button-light,.button-active[type=submit],.button-active.button,.button-active.button-light,.active[type=submit],.active.button,.active.button-light,[type=submit]:active,.button:active,.button-light:active,html.touch .pressed[type=submit],html.touch .pressed.button,html.touch .pressed.button-light{background:#e8ecf0}[type=submit],.button,.button-light{border:1px solid #c6daec}.ButtonActive[type=submit],.ButtonActive.button,.ButtonActive.button-light,.button-active[type=submit],.button-active.button,.button-active.button-light,.active[type=submit],.active.button,.active.button-light,[type=submit]:active,.button:active,.button-light:active,html.touch .pressed[type=submit],html.touch .pressed.button,html.touch .pressed.button-light{border-color:#b3cee6}.button-blue{background-color:#6f97b6;background-image:-webkit-gradient(linear,left top,left bottom,from(#6f97b6),to(#3f729b));background-image:-webkit-linear-gradient(top,#6f97b6,#3f729b);background-image:-moz-linear-gradient(top,#6f97b6,#3f729b);background-image:-o-linear-gradient(top,#6f97b6,#3f729b);background-image:-ms-linear-gradient(top,#6f97b6,#3f729b);background-image:linear-gradient(top,#6f97b6,#3f729b);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#6f97b6', EndColorStr='#3f729b');background-position:50% 50%;text-shadow:0 1px 1px #1c5380}.ButtonActive.button-blue,.button-active.button-blue,.active.button-blue,.button-blue:active,html.touch .pressed.button-blue{background:#3c6d94}.button-blue{border:1px solid #1c5380}.ButtonActive.button-blue,.button-active.button-blue,.active.button-blue,.button-blue:active,html.touch .pressed.button-blue{border-color:#133856}.button-headerblue{background-color:#517fa4;background-image:-webkit-gradient(linear,left top,left bottom,from(#517fa4),to(#306088));background-image:-webkit-linear-gradient(top,#517fa4,#306088);background-image:-moz-linear-gradient(top,#517fa4,#306088);background-image:-o-linear-gradient(top,#517fa4,#306088);background-image:-ms-linear-gradient(top,#517fa4,#306088);background-image:linear-gradient(top,#517fa4,#306088);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#517fa4', EndColorStr='#306088');background-position:50% 50%;text-shadow:0 1px 1px #06365f}.ButtonActive.button-headerblue,.button-active.button-headerblue,.active.button-headerblue,.button-headerblue:active,html.touch .pressed.button-headerblue{background:#2d5b80}.button-headerblue{border:1px solid #06365f}.ButtonActive.button-headerblue,.button-active.button-headerblue,.active.button-headerblue,.button-headerblue:active,html.touch .pressed.button-headerblue{border-color:#031b2f}.button-gray{background-color:#999;background-image:-webkit-gradient(linear,left top,left bottom,from(#999),to(#7c7c7c));background-image:-webkit-linear-gradient(top,#999,#7c7c7c);background-image:-moz-linear-gradient(top,#999,#7c7c7c);background-image:-o-linear-gradient(top,#999,#7c7c7c);background-image:-ms-linear-gradient(top,#999,#7c7c7c);background-image:linear-gradient(top,#999,#7c7c7c);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#999999', EndColorStr='#7c7c7c');background-position:50% 50%;text-shadow:0 1px 0 rgba(0,0,0,.4)}.ButtonActive.button-gray,.button-active.button-gray,.active.button-gray,.button-gray:active,html.touch .pressed.button-gray{background:#777}.button-gray{border:1px solid #777}.ButtonActive.button-gray,.button-active.button-gray,.active.button-gray,.button-gray:active,html.touch .pressed.button-gray{border-color:#666}.button-grey{background-color:#f3f3f3;background-image:-webkit-gradient(linear,left top,left bottom,from(#f3f3f3),to(#ddd));background-image:-webkit-linear-gradient(top,#f3f3f3,#ddd);background-image:-moz-linear-gradient(top,#f3f3f3,#ddd);background-image:-o-linear-gradient(top,#f3f3f3,#ddd);background-image:-ms-linear-gradient(top,#f3f3f3,#ddd);background-image:linear-gradient(top,#f3f3f3,#ddd);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#f3f3f3', EndColorStr='#dddddd');background-position:50% 50%;text-shadow:0 1px 0 rgba(255,255,255,.6)}.ButtonActive.button-grey,.button-active.button-grey,.active.button-grey,.button-grey:active,html.touch .pressed.button-grey{background:#d8d8d8}.button-grey{border:1px solid #c6c6c6}.ButtonActive.button-grey,.button-active.button-grey,.active.button-grey,.button-grey:active,html.touch .pressed.button-grey{border-color:#bbb}.button-green{background-color:#6bb38a;background-image:-webkit-gradient(linear,left top,left bottom,from(#6bb38a),to(#3d8b5f));background-image:-webkit-linear-gradient(top,#6bb38a,#3d8b5f);background-image:-moz-linear-gradient(top,#6bb38a,#3d8b5f);background-image:-o-linear-gradient(top,#6bb38a,#3d8b5f);background-image:-ms-linear-gradient(top,#6bb38a,#3d8b5f);background-image:linear-gradient(top,#6bb38a,#3d8b5f);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#6bb38a', EndColorStr='#3d8b5f');background-position:50% 50%;text-shadow:0 1px 1px #1e693f}.ButtonActive.button-green,.button-active.button-green,.active.button-green,.button-green:active,html.touch .pressed.button-green{background:#3a845a}.button-green{border:1px solid #3d8b5f}.ButtonActive.button-green,.button-active.button-green,.active.button-green,.button-green:active,html.touch .pressed.button-green{border-color:#2d6847}.button-altgreen{background-color:#47bc60;background-image:-webkit-gradient(linear,left top,left bottom,from(#47bc60),to(#39a64e));background-image:-webkit-linear-gradient(top,#47bc60,#39a64e);background-image:-moz-linear-gradient(top,#47bc60,#39a64e);background-image:-o-linear-gradient(top,#47bc60,#39a64e);background-image:-ms-linear-gradient(top,#47bc60,#39a64e);background-image:linear-gradient(top,#47bc60,#39a64e);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#47bc60', EndColorStr='#39a64e');background-position:50% 50%;text-shadow:0 1px 1px #2c803c}.ButtonActive.button-altgreen,.button-active.button-altgreen,.active.button-altgreen,.button-altgreen:active,html.touch .pressed.button-altgreen{background:#369e4a}.button-altgreen{border:1px solid #329345}.ButtonActive.button-altgreen,.button-active.button-altgreen,.active.button-altgreen,.button-altgreen:active,html.touch .pressed.button-altgreen{border-color:#256d33}.button-red{background-color:#e8485f;background-image:-webkit-gradient(linear,left top,left bottom,from(#e8485f),to(#b72e42));background-image:-webkit-linear-gradient(top,#e8485f,#b72e42);background-image:-moz-linear-gradient(top,#e8485f,#b72e42);background-image:-o-linear-gradient(top,#e8485f,#b72e42);background-image:-ms-linear-gradient(top,#e8485f,#b72e42);background-image:linear-gradient(top,#e8485f,#b72e42);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#e8485f', EndColorStr='#b72e42');background-position:50% 50%;text-shadow:0 1px 1px #b72e42}.ButtonActive.button-red,.button-active.button-red,.active.button-red,.button-red:active,html.touch .pressed.button-red{background:#af2c3f}.button-red{border:1px solid #b72e42}.ButtonActive.button-red,.button-active.button-red,.active.button-red,.button-red:active,html.touch .pressed.button-red{border-color:#8e2433}.button-darkred{background-color:#c6213a;background-image:-webkit-gradient(linear,left top,left bottom,from(#c6213a),to(#961427));background-image:-webkit-linear-gradient(top,#c6213a,#961427);background-image:-moz-linear-gradient(top,#c6213a,#961427);background-image:-o-linear-gradient(top,#c6213a,#961427);background-image:-ms-linear-gradient(top,#c6213a,#961427);background-image:linear-gradient(top,#c6213a,#961427);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#c6213a', EndColorStr='#961427');background-position:50% 50%;text-shadow:0 1px 1px #961427}.ButtonActive.button-darkred,.button-active.button-darkred,.active.button-darkred,.button-darkred:active,html.touch .pressed.button-darkred{background:#8d1325}.button-darkred{border:1px solid #961427}.ButtonActive.button-darkred,.button-active.button-darkred,.active.button-darkred,.button-darkred:active,html.touch .pressed.button-darkred{border-color:#690e1b}.button-uppercase,.button-altsmall{text-transform:uppercase}.button-icon{text-indent:-9999em}.button-icon i{display:block}.button-icon:active i,html.touch .button-icon.pressed i{opacity:.8}.button-icon-left b{padding-left:24px}.button-icon-right b{padding-right:24px}.button-pulldown b{padding-right:14px;background:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/glyphs/arrow-down-small.png) no-repeat 100% 50%}.button-light{background-color:#fff;background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#f9fafb));background-image:-webkit-linear-gradient(top,#fff,#f9fafb);background-image:-moz-linear-gradient(top,#fff,#f9fafb);background-image:-o-linear-gradient(top,#fff,#f9fafb);background-image:-ms-linear-gradient(top,#fff,#f9fafb);background-image:linear-gradient(top,#fff,#f9fafb);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='white', EndColorStr='#f9fafb');background-position:50% 50%}.button-light.ButtonActive,.button-light.button-active,.button-light.active,.button-light:active,html.touch .button-light.pressed{background:#f3f5f7}.button-brown{background-color:#8f6a58;background-image:-webkit-gradient(linear,left top,left bottom,from(#8f6a58),to(#6c4634));background-image:-webkit-linear-gradient(top,#8f6a58,#6c4634);background-image:-moz-linear-gradient(top,#8f6a58,#6c4634);background-image:-o-linear-gradient(top,#8f6a58,#6c4634);background-image:-ms-linear-gradient(top,#8f6a58,#6c4634);background-image:linear-gradient(top,#8f6a58,#6c4634);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#8f6a58', EndColorStr='#6c4634');background-position:50% 50%;text-shadow:0 1px 1px #6c4634}.button-brown.ButtonActive,.button-brown.button-active,.button-brown.active,.button-brown:active,html.touch .button-brown.pressed{background:#654231}.button-brown{border:1px solid #6c4634}.button-brown.ButtonActive,.button-brown.button-active,.button-brown.active,.button-brown:active,html.touch .button-brown.pressed{border-color:#4a3023}.button-yellow{background-color:#c9981a;background-image:-webkit-gradient(linear,left top,left bottom,from(#c9981a),to(#a07711));background-image:-webkit-linear-gradient(top,#c9981a,#a07711);background-image:-moz-linear-gradient(top,#c9981a,#a07711);background-image:-o-linear-gradient(top,#c9981a,#a07711);background-image:-ms-linear-gradient(top,#c9981a,#a07711);background-image:linear-gradient(top,#c9981a,#a07711);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#c9981a', EndColorStr='#a07711');background-position:50% 50%;text-shadow:0 1px 1px #a07711}.button-yellow.ButtonActive,.button-yellow.button-active,.button-yellow.active,.button-yellow:active,html.touch .button-yellow.pressed{background:#977010}.button-yellow{border:1px solid #a07711}.button-yellow.ButtonActive,.button-yellow.button-active,.button-yellow.active,.button-yellow:active,html.touch .button-yellow.pressed{border-color:#72550c}.button-altblue{background-color:#5daaf3;background-image:-webkit-gradient(linear,left top,left bottom,from(#5daaf3),to(#2a85de));background-image:-webkit-linear-gradient(top,#5daaf3,#2a85de);background-image:-moz-linear-gradient(top,#5daaf3,#2a85de);background-image:-o-linear-gradient(top,#5daaf3,#2a85de);background-image:-ms-linear-gradient(top,#5daaf3,#2a85de);background-image:linear-gradient(top,#5daaf3,#2a85de);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#5daaf3', EndColorStr='#2a85de');background-position:50% 50%;text-shadow:0 1px 1px #2a85de}.button-altblue.ButtonActive,.button-altblue.button-active,.button-altblue.active,.button-altblue:active,html.touch .button-altblue.pressed{background:#2280dc}.button-altblue{border:1px solid #2a85de}.button-altblue.ButtonActive,.button-altblue.button-active,.button-altblue.active,.button-altblue:active,html.touch .button-altblue.pressed{border-color:#1d6bb8}.Story{margin:0;border-bottom:1px solid #ddd;box-shadow:0 1px 1px rgba(0,0,0,.06)}.Story .FollowButtonContainer{position:absolute;top:8px;right:8px}.Story .FollowButton{width:auto;padding:4px 6px 5px;-webkit-border-radius:3px;border-radius:3px}.Story.ImageBlock .ibContent{padding-top:12px;padding-bottom:12px;padding-left:24px}@media screen and (min-width:960px){.Story.ImageBlock .ibContent{max-height:192px;overflow-y:auto;word-wrap:break-word}}</style><style type="text/css">.timestamp{color:#aaa;font-weight:700}</style><style type="text/css">.LocationLink{background:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/MediaItem/MediaItem.png) no-repeat 0 -95px;padding:0 0 0 14px;overflow:hidden;text-overflow:ellipsis}.llNoWrap{white-space:nowrap}.LocationLink{font-weight:700;color:#aaa}@media only screen and (-webkit-min-device-pixel-ratio:2),only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (min--moz-device-pixel-ratio:2),only screen and (-o-min-device-pixel-ratio:2/1),only screen and (min-device-pixel-ratio:2),only screen and (min-resolution:192dpi),only screen and (min-resolution:2dppx){.LocationLink{background-image:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/MediaItem/MediaItem@2x.png);background-size:160px 480px}}</style><style type="text/css">.igUserListSectionHeader{background:gainsboro;background:-webkit-gradient(linear,top,bottom,color-stop(0%,#ececec),color-stop(100%,gainsboro));background:-webkit-linear-gradient(top,#ececec 0%,gainsboro 100%);background:-moz-linear-gradient(top,#ececec 0%,gainsboro 100%);background:-o-linear-gradient(top,#ececec 0%,gainsboro 100%);background:-ms-linear-gradient(top,#ececec 0%,gainsboro 100%);background:linear-gradient(top,#ececec 0%,gainsboro 100%);background-color:#ededed;border-radius:0;border:none;color:#999;font-size:12px;font-weight:700;margin:0;padding:2px 11px;text-shadow:0 1px 0 #fff;text-transform:uppercase}</style><style type="text/css">.igUserStatsBar{color:#999;font-weight:700;line-height:1em}</style><style type="text/css">.igUserList .FollowButton{margin-top:9px}.igUserList .Story{background-color:#ededef;border-bottom:1px solid #ddd;border-top:1px solid #f6f6f8;box-shadow:none}.igUserList .Story:hover{background-color:#f6f6f8}.igUserList .sNameLink{font-size:14px}.igUserListBottomStory{border-radius:0 0 4px 4px}.igUserListSectionHeader{background:gainsboro;background:-webkit-gradient(linear,top,bottom,color-stop(0%,#ececec),color-stop(100%,gainsboro));background:-webkit-linear-gradient(top,#ececec 0%,gainsboro 100%);background:-moz-linear-gradient(top,#ececec 0%,gainsboro 100%);background:-o-linear-gradient(top,#ececec 0%,gainsboro 100%);background:-ms-linear-gradient(top,#ececec 0%,gainsboro 100%);background:linear-gradient(top,#ececec 0%,gainsboro 100%);background-color:#ededed;border-radius:0;border:none;color:#999;font-size:12px;font-weight:700;margin:0;padding:2px 11px;text-shadow:0 1px 0 #fff;text-transform:uppercase}</style><style type="text/css">.igLoadMoreLink{font-weight:700;font-size:16px;text-shadow:0 1px 0 rgba(255,255,255,.8);color:#3f729b;text-align:center}</style><style type="text/css">.igLikesModalHeader{-webkit-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0;-webkit-box-shadow:0 -1px 3px rgba(0,0,0,.1)inset;-moz-box-shadow:0 -1px 3px rgba(0,0,0,.1)inset;box-shadow:0 -1px 3px rgba(0,0,0,.1)inset;background:gainsboro;background:-webkit-gradient(linear,top,bottom,color-stop(0%,#ececec),color-stop(100%,gainsboro));background:-webkit-linear-gradient(top,#ececec 0%,gainsboro 100%);background:-moz-linear-gradient(top,#ececec 0%,gainsboro 100%);background:-o-linear-gradient(top,#ececec 0%,gainsboro 100%);background:-ms-linear-gradient(top,#ececec 0%,gainsboro 100%);background:linear-gradient(top,#ececec 0%,gainsboro 100%)}.igLikesModalTitle{color:#666;font-size:16px;line-height:44px;margin-bottom:0;text-align:center;text-shadow:0 1px 0 #fff}.igLikesModalMain{border-radius:4px;max-height:1000px;overflow-y:auto}.igLikesModalMoreContainer{text-align:center;margin:1.5em}</style><style type="text/css">.LikeList{color:#aaa;text-shadow:0 1px 0 rgba(255,255,255,.8)}.llRemainingCount,.llNameLink{font-weight:700;max-width:150px;overflow:hidden;text-overflow:ellipsis}</style><style type="text/css">.LikesBar{display:block;margin:0;padding:11px 12px 12px 36px;background:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/MediaItem/MediaItem.png) no-repeat -93px 13px;border-bottom:1px solid #ddd;box-shadow:0 1px 1px rgba(0,0,0,.06);line-height:16px}@media only screen and (-webkit-min-device-pixel-ratio:2),only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (min--moz-device-pixel-ratio:2),only screen and (-o-min-device-pixel-ratio:2/1),only screen and (min-device-pixel-ratio:2),only screen and (min-resolution:192dpi),only screen and (min-resolution:2dppx){.LikesBar{background-image:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/MediaItem/MediaItem@2x.png);background-size:160px 480px}}</style><style type="text/css">.IconButton{width:44px;height:36px;padding:0!important;text-indent:-9999em}.ibInner{display:block;height:100%}</style><style type="text/css">.Button.LikeButton{-webkit-box-shadow:0 1px 1px rgba(0,0,0,.08),inset 1px 0 0 rgba(255,255,255,.05),inset -1px 0 0 rgba(255,255,255,.05),inset 0 1px 0 rgba(255,255,255,.2);-moz-box-shadow:0 1px 1px rgba(0,0,0,.08),inset 1px 0 0 rgba(255,255,255,.05),inset -1px 0 0 rgba(255,255,255,.05),inset 0 1px 0 rgba(255,255,255,.2);box-shadow:0 1px 1px rgba(0,0,0,.08),inset 1px 0 0 rgba(255,255,255,.05),inset -1px 0 0 rgba(255,255,255,.05),inset 0 1px 0 rgba(255,255,255,.2)}.ButtonActive.Button.LikeButton,.button-active.Button.LikeButton,.active.Button.LikeButton,.Button.LikeButton:active,html.touch .pressed.Button.LikeButton{-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.08),inset 0 0 1px rgba(0,0,0,.08),0 1px 0 rgba(255,255,255,.9);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.08),inset 0 0 1px rgba(0,0,0,.08),0 1px 0 rgba(255,255,255,.9);box-shadow:inset 0 1px 1px rgba(0,0,0,.08),inset 0 0 1px rgba(0,0,0,.08),0 1px 0 rgba(255,255,255,.9)}.Button.LikeButton{background-color:#fafafa;background-image:-webkit-gradient(linear,left top,left bottom,from(#fafafa),to(#eee));background-image:-webkit-linear-gradient(top,#fafafa,#eee);background-image:-moz-linear-gradient(top,#fafafa,#eee);background-image:-o-linear-gradient(top,#fafafa,#eee);background-image:-ms-linear-gradient(top,#fafafa,#eee);background-image:linear-gradient(top,#fafafa,#eee);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#fafafa', EndColorStr='#eeeeee');background-position:50% 50%;text-shadow:0 1px 0 rgba(255,255,255,.6)}.ButtonActive.Button.LikeButton,.button-active.Button.LikeButton,.active.Button.LikeButton,.Button.LikeButton:active,html.touch .pressed.Button.LikeButton{background:#e9e9e9}.Button.LikeButton{border:1px solid #d6d6d6}.ButtonActive.Button.LikeButton,.button-active.Button.LikeButton,.active.Button.LikeButton,.Button.LikeButton:active,html.touch .pressed.Button.LikeButton{border-color:#c6c6c6}.Button.LikeButton .ibInner{background:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/MediaItem/MediaItem.png) no-repeat 4px 1px}.lbLiked.LikeButton .ibInner{background-position:-44px 1px}.lbAnimation{background:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/p/glyph-heart-pop-big.png) no-repeat 50% 50%;display:block;position:absolute;left:-1px;top:1px;width:100%;height:100%;opacity:0;z-index:5;pointer-events:none;-webkit-background-size:40% 40%;background-size:40% 40%}@media only screen and (-webkit-min-device-pixel-ratio:2),only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (min--moz-device-pixel-ratio:2),only screen and (-o-min-device-pixel-ratio:2/1),only screen and (min-device-pixel-ratio:2),only screen and (min-resolution:192dpi),only screen and (min-resolution:2dppx){.Button.LikeButton .ibInner{background-image:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/MediaItem/MediaItem@2x.png);background-size:160px 480px}}</style><style type="text/css">.ReportModal.igDialogContent{max-width:400px;background-color:#ccc}</style><style type="text/css">.EmbedModal .Button.emButton,.EmbedModal .Button.emButton:visited{color:#fff}.EmbedModal .Button.emButton:hover{color:#fff}.EmbedModal .ButtonActive.Button.emButton,.EmbedModal .button-active.Button.emButton,.EmbedModal .active.Button.emButton,.EmbedModal .Button.emButton:active,html.touch .EmbedModal .pressed.Button.emButton,.EmbedModal html.touch .pressed.Button.emButton{color:rgba(255,255,255,.8);text-shadow:0 1px 0 rgba(0,0,0,.3)}.EmbedModal .Button.emButton{background-color:#6bb38a;background-image:-webkit-gradient(linear,left top,left bottom,from(#6bb38a),to(#3d8b5f));background-image:-webkit-linear-gradient(top,#6bb38a,#3d8b5f);background-image:-moz-linear-gradient(top,#6bb38a,#3d8b5f);background-image:-o-linear-gradient(top,#6bb38a,#3d8b5f);background-image:-ms-linear-gradient(top,#6bb38a,#3d8b5f);background-image:linear-gradient(top,#6bb38a,#3d8b5f);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#6bb38a', EndColorStr='#3d8b5f');background-position:50% 50%;text-shadow:0 1px 1px #1e693f}.EmbedModal .ButtonActive.Button.emButton,.EmbedModal .button-active.Button.emButton,.EmbedModal .active.Button.emButton,.EmbedModal .Button.emButton:active,html.touch .EmbedModal .pressed.Button.emButton,.EmbedModal html.touch .pressed.Button.emButton{background:#3a845a}.EmbedModal .Button.emButton{border:1px solid #3d8b5f}.EmbedModal .ButtonActive.Button.emButton,.EmbedModal .button-active.Button.emButton,.EmbedModal .active.Button.emButton,.EmbedModal .Button.emButton:active,html.touch .EmbedModal .pressed.Button.emButton,.EmbedModal html.touch .pressed.Button.emButton{border-color:#2d6847}.EmbedModal.igDialogContent{max-width:400px}.EmbedModal .igDialogMain{padding:24px}.emOutput,.emTextarea{margin:0 0 16px}.emTextarea{width:100%;height:64px}.emLegal{margin:0;font-size:12px;color:#aaa}</style><style type="text/css">.Button.MoreButton{-webkit-box-shadow:0 1px 1px rgba(0,0,0,.08),inset 1px 0 0 rgba(255,255,255,.05),inset -1px 0 0 rgba(255,255,255,.05),inset 0 1px 0 rgba(255,255,255,.2);-moz-box-shadow:0 1px 1px rgba(0,0,0,.08),inset 1px 0 0 rgba(255,255,255,.05),inset -1px 0 0 rgba(255,255,255,.05),inset 0 1px 0 rgba(255,255,255,.2);box-shadow:0 1px 1px rgba(0,0,0,.08),inset 1px 0 0 rgba(255,255,255,.05),inset -1px 0 0 rgba(255,255,255,.05),inset 0 1px 0 rgba(255,255,255,.2)}.ButtonActive.Button.MoreButton,.button-active.Button.MoreButton,.active.Button.MoreButton,.Button.MoreButton:active,html.touch .pressed.Button.MoreButton{-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.08),inset 0 0 1px rgba(0,0,0,.08),0 1px 0 rgba(255,255,255,.9);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.08),inset 0 0 1px rgba(0,0,0,.08),0 1px 0 rgba(255,255,255,.9);box-shadow:inset 0 1px 1px rgba(0,0,0,.08),inset 0 0 1px rgba(0,0,0,.08),0 1px 0 rgba(255,255,255,.9)}.Button.MoreButton{background-color:#fafafa;background-image:-webkit-gradient(linear,left top,left bottom,from(#fafafa),to(#eee));background-image:-webkit-linear-gradient(top,#fafafa,#eee);background-image:-moz-linear-gradient(top,#fafafa,#eee);background-image:-o-linear-gradient(top,#fafafa,#eee);background-image:-ms-linear-gradient(top,#fafafa,#eee);background-image:linear-gradient(top,#fafafa,#eee);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#fafafa', EndColorStr='#eeeeee');background-position:50% 50%;text-shadow:0 1px 0 rgba(255,255,255,.6)}.ButtonActive.Button.MoreButton,.button-active.Button.MoreButton,.active.Button.MoreButton,.Button.MoreButton:active,html.touch .pressed.Button.MoreButton{background:#e9e9e9}.Button.MoreButton{border:1px solid #d6d6d6}.ButtonActive.Button.MoreButton,.button-active.Button.MoreButton,.active.Button.MoreButton,.Button.MoreButton:active,html.touch .pressed.Button.MoreButton{border-color:#c6c6c6}.Button.MoreButton .ibInner{background:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/MediaItem/MediaItem.png) no-repeat 6px -180px}@media only screen and (-webkit-min-device-pixel-ratio:2),only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (min--moz-device-pixel-ratio:2),only screen and (-o-min-device-pixel-ratio:2/1),only screen and (min-device-pixel-ratio:2),only screen and (min-resolution:192dpi),only screen and (min-resolution:2dppx){.Button.MoreButton .ibInner{background-image:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/MediaItem/MediaItem@2x.png);background-size:160px 480px}}.mbDropdown.mbPrerelease.dContainer.dInverted{margin-top:-128px}.mbDropdown.dContainer.dInverted{margin-top:-90px}</style><style type="text/css">.FeedbackBar{position:relative;height:52px;box-shadow:0 -1px 1px rgba(0,0,0,.06)}.FeedbackBar .LikeButton,.FeedbackBar .MoreButton{height:34px;width:43px;margin:8px}.FeedbackBar .MoreButton,.fbInputContainer{position:absolute;right:0}.fbInputContainer{top:0;left:0;margin:8px 60px 0}.fbInput{width:100%;padding:10px 9px 9px}</style><style type="text/css">.Info{bottom:0;left:59.76563%;position:absolute;right:0;top:0;background:#f8f8f8;border-width:1px 1px 1px 0}.Info .iContentArea{bottom:52px}.Info .iContentArea,.Info .iMeasuredHeader{left:0;position:absolute;right:0;top:0}.Info .iMeasuredScrollContainer{bottom:0;left:0;position:absolute;right:0}.Info .Story,.Info .LikesBar,.Info .FeedbackBar{background-color:#fefefe}.Info .Story{-webkit-border-radius:0 3px 0 0;border-radius:0 3px 0 0}.Info .iComments{padding:8px 0}.Info .FeedbackBar{position:absolute;left:0;right:0;bottom:0;-webkit-border-radius:0 0 3px 0;border-radius:0 0 3px 0}.Modal .Info{border:none}</style><style type="text/css">.Item{position:relative;width:100%;height:100%;-webkit-box-shadow:0 0 12px rgba(0,0,0,.1);-moz-box-shadow:0 0 12px rgba(0,0,0,.1);box-shadow:0 0 12px rgba(0,0,0,.1);-webkit-border-radius:4px;border-radius:4px}.iMedia{background-color:#eee;-webkit-box-shadow:inset 0 0 0 1px rgba(0,0,0,.2),inset 0 0 0 2px rgba(255,255,255,.15);-moz-box-shadow:inset 0 0 0 1px rgba(0,0,0,.2),inset 0 0 0 2px rgba(255,255,255,.15);box-shadow:inset 0 0 0 1px rgba(0,0,0,.2),inset 0 0 0 2px rgba(255,255,255,.15)}.iMedia,.iMedia .Frame{-webkit-border-radius:3px 0 0 3px;border-radius:3px 0 0 3px}.Modal .Item{-webkit-box-shadow:0 0 0 1px rgba(0,0,0,.2),0 1px 12px rgba(0,0,0,.4);-moz-box-shadow:0 0 0 1px rgba(0,0,0,.2),0 1px 12px rgba(0,0,0,.4);box-shadow:0 0 0 1px rgba(0,0,0,.2),0 1px 12px rgba(0,0,0,.4)}.Modal .iMedia{-webkit-box-shadow:inset -1px 0 0 rgba(0,0,0,.2),inset -2px 0 0 rgba(255,255,255,.15),inset 0 0 0 1px rgba(255,255,255,.15);-moz-box-shadow:inset -1px 0 0 rgba(0,0,0,.2),inset -2px 0 0 rgba(255,255,255,.15),inset 0 0 0 1px rgba(255,255,255,.15);box-shadow:inset -1px 0 0 rgba(0,0,0,.2),inset -2px 0 0 rgba(255,255,255,.15),inset 0 0 0 1px rgba(255,255,255,.15)}</style><style type="text/css">.MediaModal .Item{height:auto;padding-bottom:59.76563%}.MediaModal .Item .Info{-webkit-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;border-left:1px solid rgba(0,0,0,.2);margin-left:-1px;-webkit-background-clip:padding-box;background-clip:padding-box}.MediaModal .iMedia{width:59.76563%;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}@media screen and (max-width:920px){.igDialogContent.MediaModal{background:0 0}.MediaModal .Info,.MediaModal .Info .FeedbackBar,.MediaModal .Info .ScrollContainer{position:relative;top:auto;left:auto;bottom:auto;right:auto}.MediaModal .Item{max-width:612px;margin:0 auto;padding-bottom:0}.MediaModal .Item .Info,.MediaModal .Item .Info .FeedbackBar{-webkit-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px}.MediaModal .Item .Info{border-left:none;margin-left:0;border-top:1px solid rgba(0,0,0,.2);margin-top:-1px}.MediaModal .Item .Info .Story{-webkit-border-radius:0;border-radius:0}.MediaModal .iMedia{position:relative}.MediaModal .iMedia,.MediaModal .iMedia .Frame{width:100%;-webkit-border-radius:3px 3px 0 0;border-radius:3px 3px 0 0}.MediaModal .iMedia .Frame{height:auto;padding-bottom:100%}.MediaModal .video-js{position:absolute}}.MediaModal.igDialogContent{max-width:1024px}.MediaModal .iMedia{background-color:#888}.MediaModal .Frame{-webkit-box-shadow:0 0 0 1px rgba(0,0,0,.1),inset 0 0 0 1px rgba(255,255,255,.12);-moz-box-shadow:0 0 0 1px rgba(0,0,0,.1),inset 0 0 0 1px rgba(255,255,255,.12);box-shadow:0 0 0 1px rgba(0,0,0,.1),inset 0 0 0 1px rgba(255,255,255,.12)}.mmLeftArrow,.mmRightArrow{background:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/MediaItem/MediaItem.png);display:block;height:32px;margin-top:-16px;position:absolute;text-indent:-9999em;top:50%;width:24px}.MediaModal .mmRightArrow{background-position:-7px -257px;right:-50px}.MediaModal .mmLeftArrow{background-position:-71px -257px;left:-42px}@media screen and (max-width:960px){.MediaModal .mmRightArrow{right:-42px}.MediaModal .mmLeftArrow{left:-34px}}@media only screen and (-webkit-min-device-pixel-ratio:2),only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (min--moz-device-pixel-ratio:2),only screen and (-o-min-device-pixel-ratio:2/1),only screen and (min-device-pixel-ratio:2),only screen and (min-resolution:192dpi),only screen and (min-resolution:2dppx){.mmLeftArrow,.mmRightArrow{background:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/MediaItem/MediaItem@2x.png);background-size:160px 480px}}</style><style type="text/css">@font-face{font-family:'proxima-nova';src:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/webfonts/proximanova-bold-webfont.eot);src:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/webfonts/proximanova-bold-webfont.eot?#iefix) format("embedded-opentype"),url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/webfonts/proximanova-bold-webfont.woff) format("woff"),url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/webfonts/proximanova-bold-webfont.ttf) format("truetype"),url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/webfonts/proximanova-bold-webfont.svg#ProximaNovaBold) format("svg");font-weight:700;font-style:normal}@font-face{font-family:'proxima-nova';src:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/webfonts/proximanova-boldit-webfont.eot);src:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/webfonts/proximanova-boldit-webfont.eot?#iefix) format("embedded-opentype"),url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/webfonts/proximanova-boldit-webfont.woff) format("woff"),url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/webfonts/proximanova-boldit-webfont.ttf) format("truetype"),url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/webfonts/proximanova-boldit-webfont.svg#ProximaNovaBoldItalic) format("svg");font-weight:700;font-style:italic}@font-face{font-family:'proxima-nova';src:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/webfonts/proximanova-reg-webfont.eot);src:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/webfonts/proximanova-reg-webfont.eot?#iefix) format("embedded-opentype"),url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/webfonts/proximanova-reg-webfont.woff) format("woff"),url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/webfonts/proximanova-reg-webfont.ttf) format("truetype"),url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/webfonts/proximanova-reg-webfont.svg#ProximaNovaRegular) format("svg");font-weight:400;font-style:normal}@font-face{font-family:'proxima-nova';src:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/webfonts/proximanova-regit-webfont.eot);src:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/webfonts/proximanova-regit-webfont.eot?#iefix) format("embedded-opentype"),url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/webfonts/proximanova-regit-webfont.woff) format("woff"),url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/webfonts/proximanova-regit-webfont.ttf) format("truetype"),url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/webfonts/proximanova-regit-webfont.svg#ProximaNovaRegularItalic) format("svg");font-weight:400;font-style:italic}@font-face{font-family:'proxima-nova';src:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/webfonts/proximanova-sbold-webfont.eot);src:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/webfonts/proximanova-sbold-webfont.eot?#iefix) format("embedded-opentype"),url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/webfonts/proximanova-sbold-webfont.woff) format("woff"),url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/webfonts/proximanova-sbold-webfont.ttf) format("truetype"),url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/webfonts/proximanova-sbold-webfont.svg#ProximaNovaSemibold) format("svg");font-weight:600;font-style:normal}article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block}audio,canvas,video{display:inline-block;*display:inline;*zoom:1}audio:not([controls]){display:none}[hidden]{display:none}html{-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}html,button{font-family:sans-serif}body{margin:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}blockquote{margin:1em 40px}dfn{font-style:italic}mark{background:#ff0;color:#000}pre{font-family:monospace,serif;font-size:1em}pre,code,kbd,samp{_font-family:'courier new',monospace}kbd,samp{font-family:monospace,serif;font-size:1em}pre{white-space:pre-wrap;word-wrap:break-word}q{quotes:none}q:before,q:after{content:'';content:none}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}ol{padding:0 0 0 40px}dd{margin:0 0 0 40px}nav ul,nav ol{list-style:none;list-style-image:none}img{border:0;-ms-interpolation-mode:bicubic}svg:not(:root){overflow:hidden}figure,form{margin:0}legend{border:0;padding:0;white-space:normal;*margin-left:-7px}button,input,select{vertical-align:baseline}button,input,select,textarea{font-size:100%;margin:0;*vertical-align:middle}button,input{line-height:normal}button,input[type="button"],input[type="reset"],input[type="submit"]{cursor:pointer;-webkit-appearance:button;*overflow:visible}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0;*height:13px;*width:13px}input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-decoration,input[type="search"]::-webkit-search-cancel-button{-webkit-appearance:none}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}textarea{overflow:auto;vertical-align:top}table{border-collapse:collapse;border-spacing:0}html,body{height:100%}html{font-size:62.5%;-webkit-font-smoothing:antialiased}body{background:#fff}a img,fieldset{border:none}fieldset{padding:0}input[type=submit],input.submit{font-weight:700;width:auto!important}input[type=image],input.image,input[type=radio],input.radio,input[type=checkbox],input.checkbox{background:none!important;border:none!important;height:auto!important;width:auto!important}h1 img,h2 img,h3 img,h4 img,h5 img,h6 img{margin:0}img.left{display:inline;float:left!important}img.right{display:inline;float:right!important}caption,th{text-align:left}.hide{display:none!important}.show{display:block!important}.invisible{visibility:hidden!important}.visible{visibility:visible!important}.clear:after,.page-footer:after,.photo-feed:after,.modal-footer:after,.media-likes .like-list ul:after,.user-tooltip ul:after{clear:both;content:".";display:block;height:0;visibility:hidden;font-size:.01em!important;line-height:.01em!important}.clear,.page-footer,.photo-feed,.modal-footer,.media-likes .like-list ul,.user-tooltip ul{display:inline-block}* html .clear,* html .page-footer,* html .photo-feed,* html .modal-footer,* html .media-likes .like-list ul,.media-likes .like-list * html ul,* html .user-tooltip ul,.user-tooltip * html ul{height:1%}.clear,.page-footer,.photo-feed,.modal-footer,.media-likes .like-list ul,.user-tooltip ul{display:block}@media screen and (max-device-width:480px){html{-webkit-text-size-adjust:none;-ms-text-size-adjust:none}}form p{margin-bottom:10px}label{display:block}input{padding:9px 8px 7px}input,select,textarea{border:1px solid #ccc;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;-webkit-border-radius:3px;border-radius:3px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}input:focus,select:focus,textarea:focus{border-color:#a4baca!important;background:#f5f7f9}select{padding:2px}input[type=file]{padding:2px;border:none;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}label{font-weight:700}.form-checkbox>span label span,.form-radio>span label span{padding-left:10px;font-weight:400}body{line-height:20px;color:#222}.proxima-nova,body,input,select,textarea{font-family:'proxima-nova','Helvetica Neue',Arial,Helvetica,sans-serif}.freight-sans-pro,h1,h2,h3{font-family:'freight-sans-pro','proxima-nova','Helvetica Neue',Arial,Helvetica,sans-serif}code{font-family:Monaco,Consolas,'Lucida Console',monospace}.at-symbol{font-family:Verdana,Helvetica,Arial,sans-serif}body{font-size:1.4rem}h1{font-size:36px;line-height:40px}h2{font-size:23px;line-height:30px}h3{font-size:16px}h4{font-size:14px;text-transform:uppercase}small{font-size:12px}h1,h2,h3,h4,h5,h6,th{font-weight:700}h1{margin:40px 0 20px -1px}h2{margin:20px 0 10px}h1+h2{margin-top:20px}h3,h4{margin:20px 0 10px}h1:first-child,h2:first-child{margin-top:0}p{margin:0 0 10px}pre{margin:15px 0 25px}pre code{padding:14px 14px 14px 19px}form label{display:block;margin:0 0 5px}form input,form select,form textarea{font-size:1.4rem}table{margin:20px 0 30px}th,td{padding:5px 10px 4px 0;border-bottom:1px solid #ddd}th,tr:last-child td{border-bottom-color:#ccc}ul,ol{margin:0 0 20px}ul ul,ul ol,ol ul,ol ol{margin:5px 0 15px}li{margin:0 0 5px}a,a:visited{text-decoration:none}a:hover{text-decoration:underline}a,a:visited{color:#3f729b}a:hover{color:#1c5380}code{-webkit-font-smoothing:subpixel-antialiased;font-size:12px;font-style:normal;font-weight:400;line-height:15px}th{text-transform:uppercase}.at-symbol{opacity:.6}p.emphasized{font-size:16px;font-weight:600;line-height:25px}.top-bar h1{color:#fff}.top-bar h2{color:#fff;font-size:14px;font-weight:700;text-transform:uppercase;text-shadow:0 1px 1px rgba(0,0,0,.6)}.top-bar a,.top-bar a:visited,.top-bar a:hover{text-decoration:none}.page-footer{font-size:12px;line-height:16px}.page-footer nav{text-transform:uppercase;font-weight:700}.page-footer p{text-transform:uppercase;color:#999;color:rgba(0,0,0,.3)}.page-footer p,.account-state{font-weight:700}.account-state,.account-state a,.account-state a:hover{color:#fff}.account-state a:active{color:#eee}.dropdown{text-shadow:0 1px 0 rgba(255,255,255,.9);font-weight:700}.dropdown,.dropdown a,.dropdown a:link{color:#666;text-decoration:none}.dropdown a:active{text-decoration:none}.dropdown a:hover{color:#444}.dropdown a:active{color:#111}.dropdown li.negative,.dropdown li.negative a,.dropdown li.negative a:active{color:#c00}.dropdown li strong{text-align:center;font-weight:700;text-transform:uppercase;font-size:10px;line-height:15px;color:#aaa}.page-footer-chromeless,.page-footer-dark,.page-home .page-footer,html .page-footer{text-shadow:0 1px 0 rgba(255,255,255,.6)}.page-footer-dark span,.page-footer-dark a,.page-footer-dark a:visited{color:#fff;-moz-opacity:.3;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";filter:alpha(opacity=30);opacity:.3}.page-footer-dark a:active,.page-footer-dark a:hover{color:#fff}.page-footer-dark a:hover,.page-footer-dark a:active{-moz-opacity:.8;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";filter:alpha(opacity=80);opacity:.8}a{-webkit-tap-highlight-color:rgba(63,114,155,.3)}pre code{display:block;overflow:auto;background:#fafafa;border:1px solid #ddd}code{max-width:100%;display:inline;background:#eee}form ul.errorlist{display:none}form ul.errorlist+p input,form ul.errorlist+p textarea{background-color:#fff6f6;border-color:#eec3c7}fieldset{margin:0 0 20px}input[type=text]{-webkit-appearance:none}textarea{padding:7px 7px 6px}.form-actions{padding-top:20px}.main form.bordered{padding:40px 0 1px;margin:-1px 0 0;border-top:1px solid #ddd}.main form.bordered input:not([type=submit]),.main form.bordered span{width:50%;display:inline-block}.main form.bordered span>input:not([type=submit]){width:100%}.main form.bordered textarea{width:100%}.main form.bordered .form-actions{margin-top:40px;border-top:1px solid #ddd;padding-top:20px}.main form.adjacent fieldset{margin:0 0 30px}.main form.adjacent p{min-height:30px;margin-bottom:10px}.main form.adjacent label{display:inline-block;width:160px;min-height:20px}.main form.adjacent.wide label{width:220px}.main form.adjacent.very-wide label{width:330px}.main form.adjacent input[type=text],.main form.adjacent input[type=email],.main form.adjacent input[type=password],.main form.adjacent input[type=tel],.main form.adjacent textarea{margin-top:-5px;position:relative;top:0}.main form.adjacent textarea{margin-bottom:10px}.main form.adjacent span .button{margin:-5px 0 0 10px}.main form.adjacent span.helptext{font-size:.9em;font-style:italic;display:block;padding:10px 0;width:auto;max-width:999px!important}.fadedTextField{background-color:rgba(255,255,255,.2);border-color:rgba(0,0,0,.08)}.fadedTextField:focus{background:#fff}table{width:100%!important}ol{padding-left:20px}ol,ul{list-style-position:outside}ul{padding:0 0 0 20px;list-style-type:square}ol{list-style-type:decimal}[type=submit],.button{cursor:pointer;font-weight:700;line-height:1em;text-decoration:none!important;-webkit-tap-highlight-color:rgba(0,0,0,0);-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:inline-block;position:relative;background-color:#eee}[type=submit]:hover,.button:hover{background-color:#eee}.ButtonActive[type=submit],.ButtonActive.button,.button-active[type=submit],.button-active.button,.active[type=submit],.active.button,[type=submit]:active,.button:active,html.touch .pressed[type=submit],html.touch .pressed.button{background-color:#ddd}.button-micro,.button-tiny{font-size:1.2rem;padding:4px 7px;-webkit-border-radius:2px;border-radius:2px}.button-small,.button-altsmall,.main form.adjacent span .button{font-size:1.2rem;padding:7px 9px 6px}[type=button],[type=submit],.button,.button-medium{font-size:1.4rem;padding:7px 10px 8px;-webkit-border-radius:3px;border-radius:3px}.button-large{font-size:1.6rem;padding:9px 12px}.button-xlarge{font-size:2.3rem;padding:10px 13px}[type=submit],.button,.button-light,[type=submit]:visited,.button:visited,.button-light:visited{color:#0f3556}[type=submit]:hover,.button:hover,.button-light:hover{color:#062540}.button-active[type=submit],.button-active.button,.button-active.button-light,.active[type=submit],.active.button,.active.button-light,[type=submit]:active,.button:active,.button-light:active,html.touch .pressed[type=submit],html.touch .pressed.button,html.touch .pressed.button-light{color:#062540}.button-blue,.following-false,.avatar-action .edit-profile-button,.avatar-container .followButtonActions .edit-profile-button,.button-headerblue,.modal .modal-close,.button-gray,.avatar-action .requested,.avatar-container .followButtonActions .requested,.button-green,.button-altgreen,.following-true,.button-red,.button-darkred,.button-brown,.button-yellow,.button-altblue,.button-blue:visited,.following-false:visited,.avatar-action .edit-profile-button:visited,.avatar-container .followButtonActions .edit-profile-button:visited,.button-headerblue:visited,.modal .modal-close:visited,.button-gray:visited,.avatar-action .requested:visited,.avatar-container .followButtonActions .requested:visited,.button-green:visited,.button-altgreen:visited,.following-true:visited,.button-red:visited,.button-darkred:visited,.button-brown:visited,.button-yellow:visited,.button-altblue:visited{color:#fff}.button-blue:hover,.following-false:hover,.avatar-action .edit-profile-button:hover,.avatar-container .followButtonActions .edit-profile-button:hover,.button-headerblue:hover,.modal .modal-close:hover,.button-gray:hover,.avatar-action .requested:hover,.avatar-container .followButtonActions .requested:hover,.button-green:hover,.button-altgreen:hover,.following-true:hover,.button-red:hover,.button-darkred:hover,.button-brown:hover,.button-yellow:hover,.button-altblue:hover{color:#fff}.ButtonActive.button-blue,.ButtonActive.following-false,.avatar-action .ButtonActive.edit-profile-button,.avatar-container .followButtonActions .ButtonActive.edit-profile-button,.ButtonActive.button-headerblue,.modal .ButtonActive.modal-close,.ButtonActive.button-gray,.avatar-action .ButtonActive.requested,.avatar-container .followButtonActions .ButtonActive.requested,.ButtonActive.button-green,.ButtonActive.button-altgreen,.ButtonActive.following-true,.ButtonActive.button-red,.ButtonActive.button-darkred,.ButtonActive.button-brown,.ButtonActive.button-yellow,.ButtonActive.button-altblue,.button-active.button-blue,.button-active.following-false,.avatar-action .button-active.edit-profile-button,.avatar-container .followButtonActions .button-active.edit-profile-button,.button-active.button-headerblue,.modal .button-active.modal-close,.button-active.button-gray,.avatar-action .button-active.requested,.avatar-container .followButtonActions .button-active.requested,.button-active.button-green,.button-active.button-altgreen,.button-active.following-true,.button-active.button-red,.button-active.button-darkred,.button-active.button-brown,.button-active.button-yellow,.button-active.button-altblue,.active.button-blue,.active.following-false,.avatar-action .active.edit-profile-button,.avatar-container .followButtonActions .active.edit-profile-button,.active.button-headerblue,.modal .active.modal-close,.active.button-gray,.avatar-action .active.requested,.avatar-container .followButtonActions .active.requested,.active.button-green,.active.button-altgreen,.active.following-true,.active.button-red,.active.button-darkred,.active.button-brown,.active.button-yellow,.active.button-altblue,.button-blue:active,.following-false:active,.avatar-action .edit-profile-button:active,.avatar-container .followButtonActions .edit-profile-button:active,.button-headerblue:active,.modal .modal-close:active,.button-gray:active,.avatar-action .requested:active,.avatar-container .followButtonActions .requested:active,.button-green:active,.button-altgreen:active,.following-true:active,.button-red:active,.button-darkred:active,.button-brown:active,.button-yellow:active,.button-altblue:active,html.touch .pressed.button-blue,html.touch .pressed.following-false,html.touch .avatar-action .pressed.edit-profile-button,.avatar-action html.touch .pressed.edit-profile-button,html.touch .avatar-container .followButtonActions .pressed.edit-profile-button,.avatar-container .followButtonActions html.touch .pressed.edit-profile-button,html.touch .pressed.button-headerblue,html.touch .modal .pressed.modal-close,.modal html.touch .pressed.modal-close,html.touch .pressed.button-gray,html.touch .avatar-action .pressed.requested,.avatar-action html.touch .pressed.requested,html.touch .avatar-container .followButtonActions .pressed.requested,.avatar-container .followButtonActions html.touch .pressed.requested,html.touch .pressed.button-green,html.touch .pressed.button-altgreen,html.touch .pressed.following-true,html.touch .pressed.button-red,html.touch .pressed.button-darkred,html.touch .pressed.button-brown,html.touch .pressed.button-yellow,html.touch .pressed.button-altblue{color:rgba(255,255,255,.8);text-shadow:0 1px 0 rgba(0,0,0,.3)}.button-grey,#requested,.button-grey:visited,#requested:visited{color:#666}.button-grey:hover,#requested:hover{color:#444}.button-active.button-grey,.button-active#requested,.active.button-grey,.active#requested,.button-grey:active,#requested:active,html.touch .pressed.button-grey,html.touch .pressed#requested{color:#444}[type=submit],.button,.button-light{text-shadow:0 1px 0 rgba(255,255,255,.2)}[type=submit],.button,.button-light,.button-grey,#requested{-webkit-box-shadow:0 1px 1px rgba(0,0,0,.08),inset 1px 0 0 rgba(255,255,255,.05),inset -1px 0 0 rgba(255,255,255,.05),inset 0 1px 0 rgba(255,255,255,.2);-moz-box-shadow:0 1px 1px rgba(0,0,0,.08),inset 1px 0 0 rgba(255,255,255,.05),inset -1px 0 0 rgba(255,255,255,.05),inset 0 1px 0 rgba(255,255,255,.2);box-shadow:0 1px 1px rgba(0,0,0,.08),inset 1px 0 0 rgba(255,255,255,.05),inset -1px 0 0 rgba(255,255,255,.05),inset 0 1px 0 rgba(255,255,255,.2)}.ButtonActive[type=submit],.ButtonActive.button,.ButtonActive.button-light,.ButtonActive.button-grey,.ButtonActive#requested,.button-active[type=submit],.button-active.button,.button-active.button-light,.button-active.button-grey,.button-active#requested,.active[type=submit],.active.button,.active.button-light,.active.button-grey,.active#requested,[type=submit]:active,.button:active,.button-light:active,.button-grey:active,#requested:active,html.touch .pressed[type=submit],html.touch .pressed.button,html.touch .pressed.button-light,html.touch .pressed.button-grey,html.touch .pressed#requested{-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.08),inset 0 0 1px rgba(0,0,0,.08),0 1px 0 rgba(255,255,255,.9);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.08),inset 0 0 1px rgba(0,0,0,.08),0 1px 0 rgba(255,255,255,.9);box-shadow:inset 0 1px 1px rgba(0,0,0,.08),inset 0 0 1px rgba(0,0,0,.08),0 1px 0 rgba(255,255,255,.9)}.button-blue,.following-false,.avatar-action .edit-profile-button,.avatar-container .followButtonActions .edit-profile-button{text-shadow:0 1px 0 rgba(255,255,255,.2)}.button-blue,.following-false,.avatar-action .edit-profile-button,.avatar-container .followButtonActions .edit-profile-button,.button-gray,.avatar-action .requested,.avatar-container .followButtonActions .requested,.button-brown,.button-red,.button-green,.button-yellow,.button-altblue,.button-altgreen,.following-true{-webkit-box-shadow:0 1px 1px rgba(0,0,0,.1),inset 1px 0 0 rgba(255,255,255,.05),inset -1px 0 0 rgba(255,255,255,.05),inset 0 1px 0 rgba(255,255,255,.2);-moz-box-shadow:0 1px 1px rgba(0,0,0,.1),inset 1px 0 0 rgba(255,255,255,.05),inset -1px 0 0 rgba(255,255,255,.05),inset 0 1px 0 rgba(255,255,255,.2);box-shadow:0 1px 1px rgba(0,0,0,.1),inset 1px 0 0 rgba(255,255,255,.05),inset -1px 0 0 rgba(255,255,255,.05),inset 0 1px 0 rgba(255,255,255,.2)}.button-brown,.button-red,.button-green,.button-yellow,.button-altblue,.button-altgreen,.following-true{text-shadow:0 1px 0 rgba(255,255,255,.2)}.ButtonActive.button-blue,.ButtonActive.following-false,.avatar-action .ButtonActive.edit-profile-button,.avatar-container .followButtonActions .ButtonActive.edit-profile-button,.ButtonActive.button-gray,.avatar-action .ButtonActive.requested,.avatar-container .followButtonActions .ButtonActive.requested,.ButtonActive.button-brown,.ButtonActive.button-red,.ButtonActive.button-green,.ButtonActive.button-yellow,.ButtonActive.button-altblue,.ButtonActive.button-altgreen,.ButtonActive.following-true,.button-active.button-blue,.button-active.following-false,.avatar-action .button-active.edit-profile-button,.avatar-container .followButtonActions .button-active.edit-profile-button,.button-active.button-gray,.avatar-action .button-active.requested,.avatar-container .followButtonActions .button-active.requested,.button-active.button-brown,.button-active.button-red,.button-active.button-green,.button-active.button-yellow,.button-active.button-altblue,.button-active.button-altgreen,.button-active.following-true,.active.button-blue,.active.following-false,.avatar-action .active.edit-profile-button,.avatar-container .followButtonActions .active.edit-profile-button,.active.button-gray,.avatar-action .active.requested,.avatar-container .followButtonActions .active.requested,.active.button-brown,.active.button-red,.active.button-green,.active.button-yellow,.active.button-altblue,.active.button-altgreen,.active.following-true,.button-blue:active,.following-false:active,.avatar-action .edit-profile-button:active,.avatar-container .followButtonActions .edit-profile-button:active,.button-gray:active,.avatar-action .requested:active,.avatar-container .followButtonActions .requested:active,.button-brown:active,.button-red:active,.button-green:active,.button-yellow:active,.button-altblue:active,.button-altgreen:active,.following-true:active,html.touch .pressed.button-blue,html.touch .pressed.following-false,html.touch .avatar-action .pressed.edit-profile-button,.avatar-action html.touch .pressed.edit-profile-button,html.touch .avatar-container .followButtonActions .pressed.edit-profile-button,.avatar-container .followButtonActions html.touch .pressed.edit-profile-button,html.touch .pressed.button-gray,html.touch .avatar-action .pressed.requested,.avatar-action html.touch .pressed.requested,html.touch .avatar-container .followButtonActions .pressed.requested,.avatar-container .followButtonActions html.touch .pressed.requested,html.touch .pressed.button-brown,html.touch .pressed.button-red,html.touch .pressed.button-green,html.touch .pressed.button-yellow,html.touch .pressed.button-altblue,html.touch .pressed.button-altgreen,html.touch .pressed.following-true{-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.15),inset 0 0 1px rgba(0,0,0,.15),0 1px 0 rgba(255,255,255,.8);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.15),inset 0 0 1px rgba(0,0,0,.15),0 1px 0 rgba(255,255,255,.8);box-shadow:inset 0 1px 1px rgba(0,0,0,.15),inset 0 0 1px rgba(0,0,0,.15),0 1px 0 rgba(255,255,255,.8)}[type=submit],.button{background-position:50% 50%}[type=submit],.button,.button-light{background-color:#f9fafb;background-image:-webkit-gradient(linear,left top,left bottom,from(#f9fafb),to(#eef1f4));background-image:-webkit-linear-gradient(top,#f9fafb,#eef1f4);background-image:-moz-linear-gradient(top,#f9fafb,#eef1f4);background-image:-o-linear-gradient(top,#f9fafb,#eef1f4);background-image:-ms-linear-gradient(top,#f9fafb,#eef1f4);background-image:linear-gradient(top,#f9fafb,#eef1f4);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#f9fafb', EndColorStr='#eef1f4')}.ButtonActive[type=submit],.ButtonActive.button,.ButtonActive.button-light,.button-active[type=submit],.button-active.button,.button-active.button-light,.active[type=submit],.active.button,.active.button-light,[type=submit]:active,.button:active,.button-light:active,html.touch .pressed[type=submit],html.touch .pressed.button,html.touch .pressed.button-light{background:#e8ecf0}[type=submit],.button,.button-light{border:1px solid #c6daec}.ButtonActive[type=submit],.ButtonActive.button,.ButtonActive.button-light,.button-active[type=submit],.button-active.button,.button-active.button-light,.active[type=submit],.active.button,.active.button-light,[type=submit]:active,.button:active,.button-light:active,html.touch .pressed[type=submit],html.touch .pressed.button,html.touch .pressed.button-light{border-color:#b3cee6}.button-blue,.following-false,.avatar-action .edit-profile-button,.avatar-action .following-false,.avatar-container .followButtonActions .edit-profile-button,.avatar-container .followButtonActions .following-false{background-color:#6f97b6;background-image:-webkit-gradient(linear,left top,left bottom,from(#6f97b6),to(#3f729b));background-image:-webkit-linear-gradient(top,#6f97b6,#3f729b);background-image:-moz-linear-gradient(top,#6f97b6,#3f729b);background-image:-o-linear-gradient(top,#6f97b6,#3f729b);background-image:-ms-linear-gradient(top,#6f97b6,#3f729b);background-image:linear-gradient(top,#6f97b6,#3f729b);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#6f97b6', EndColorStr='#3f729b');background-position:50% 50%;text-shadow:0 1px 1px #1c5380}.ButtonActive.button-blue,.ButtonActive.following-false,.avatar-action .ButtonActive.edit-profile-button,.avatar-container .followButtonActions .ButtonActive.edit-profile-button,.avatar-container .followButtonActions .ButtonActive.following-false,.button-active.button-blue,.button-active.following-false,.avatar-action .button-active.edit-profile-button,.avatar-container .followButtonActions .button-active.edit-profile-button,.avatar-container .followButtonActions .button-active.following-false,.active.button-blue,.active.following-false,.avatar-action .active.edit-profile-button,.avatar-container .followButtonActions .active.edit-profile-button,.avatar-container .followButtonActions .active.following-false,.button-blue:active,.following-false:active,.avatar-action .edit-profile-button:active,.avatar-container .followButtonActions .edit-profile-button:active,.avatar-container .followButtonActions .following-false:active,html.touch .pressed.button-blue,html.touch .pressed.following-false,html.touch .avatar-action .pressed.edit-profile-button,.avatar-action html.touch .pressed.edit-profile-button,html.touch .avatar-container .followButtonActions .pressed.edit-profile-button,.avatar-container .followButtonActions html.touch .pressed.edit-profile-button{background:#3c6d94}.button-blue,.following-false,.avatar-action .edit-profile-button,.avatar-action .following-false,.avatar-container .followButtonActions .edit-profile-button,.avatar-container .followButtonActions .following-false{border:1px solid #1c5380}.ButtonActive.button-blue,.ButtonActive.following-false,.avatar-action .ButtonActive.edit-profile-button,.avatar-container .followButtonActions .ButtonActive.edit-profile-button,.avatar-container .followButtonActions .ButtonActive.following-false,.button-active.button-blue,.button-active.following-false,.avatar-action .button-active.edit-profile-button,.avatar-container .followButtonActions .button-active.edit-profile-button,.avatar-container .followButtonActions .button-active.following-false,.active.button-blue,.active.following-false,.avatar-action .active.edit-profile-button,.avatar-container .followButtonActions .active.edit-profile-button,.avatar-container .followButtonActions .active.following-false,.button-blue:active,.following-false:active,.avatar-action .edit-profile-button:active,.avatar-container .followButtonActions .edit-profile-button:active,.avatar-container .followButtonActions .following-false:active,html.touch .pressed.button-blue,html.touch .pressed.following-false,html.touch .avatar-action .pressed.edit-profile-button,.avatar-action html.touch .pressed.edit-profile-button,html.touch .avatar-container .followButtonActions .pressed.edit-profile-button,.avatar-container .followButtonActions html.touch .pressed.edit-profile-button{border-color:#133856}.button-headerblue,.modal .modal-close{background-color:#517fa4;background-image:-webkit-gradient(linear,left top,left bottom,from(#517fa4),to(#306088));background-image:-webkit-linear-gradient(top,#517fa4,#306088);background-image:-moz-linear-gradient(top,#517fa4,#306088);background-image:-o-linear-gradient(top,#517fa4,#306088);background-image:-ms-linear-gradient(top,#517fa4,#306088);background-image:linear-gradient(top,#517fa4,#306088);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#517fa4', EndColorStr='#306088');background-position:50% 50%;text-shadow:0 1px 1px #06365f}.ButtonActive.button-headerblue,.modal .ButtonActive.modal-close,.button-active.button-headerblue,.modal .button-active.modal-close,.active.button-headerblue,.modal .active.modal-close,.button-headerblue:active,.modal .modal-close:active,html.touch .pressed.button-headerblue,html.touch .modal .pressed.modal-close,.modal html.touch .pressed.modal-close{background:#2d5b80}.button-headerblue,.modal .modal-close{border:1px solid #06365f}.ButtonActive.button-headerblue,.modal .ButtonActive.modal-close,.button-active.button-headerblue,.modal .button-active.modal-close,.active.button-headerblue,.modal .active.modal-close,.button-headerblue:active,.modal .modal-close:active,html.touch .pressed.button-headerblue,html.touch .modal .pressed.modal-close,.modal html.touch .pressed.modal-close{border-color:#031b2f}.button-gray,.avatar-action .requested,.avatar-container .followButtonActions .requested{background-color:#999;background-image:-webkit-gradient(linear,left top,left bottom,from(#999),to(#7c7c7c));background-image:-webkit-linear-gradient(top,#999,#7c7c7c);background-image:-moz-linear-gradient(top,#999,#7c7c7c);background-image:-o-linear-gradient(top,#999,#7c7c7c);background-image:-ms-linear-gradient(top,#999,#7c7c7c);background-image:linear-gradient(top,#999,#7c7c7c);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#999999', EndColorStr='#7c7c7c');background-position:50% 50%;text-shadow:0 1px 0 rgba(0,0,0,.4)}.ButtonActive.button-gray,.avatar-action .ButtonActive.requested,.avatar-container .followButtonActions .ButtonActive.requested,.button-active.button-gray,.avatar-action .button-active.requested,.avatar-container .followButtonActions .button-active.requested,.active.button-gray,.avatar-action .active.requested,.avatar-container .followButtonActions .active.requested,.button-gray:active,.avatar-action .requested:active,.avatar-container .followButtonActions .requested:active,html.touch .pressed.button-gray,html.touch .avatar-action .pressed.requested,.avatar-action html.touch .pressed.requested,html.touch .avatar-container .followButtonActions .pressed.requested,.avatar-container .followButtonActions html.touch .pressed.requested{background:#777}.button-gray,.avatar-action .requested,.avatar-container .followButtonActions .requested{border:1px solid #777}.ButtonActive.button-gray,.avatar-action .ButtonActive.requested,.avatar-container .followButtonActions .ButtonActive.requested,.button-active.button-gray,.avatar-action .button-active.requested,.avatar-container .followButtonActions .button-active.requested,.active.button-gray,.avatar-action .active.requested,.avatar-container .followButtonActions .active.requested,.button-gray:active,.avatar-action .requested:active,.avatar-container .followButtonActions .requested:active,html.touch .pressed.button-gray,html.touch .avatar-action .pressed.requested,.avatar-action html.touch .pressed.requested,html.touch .avatar-container .followButtonActions .pressed.requested,.avatar-container .followButtonActions html.touch .pressed.requested{border-color:#666}.button-grey,#requested{background-color:#f3f3f3;background-image:-webkit-gradient(linear,left top,left bottom,from(#f3f3f3),to(#ddd));background-image:-webkit-linear-gradient(top,#f3f3f3,#ddd);background-image:-moz-linear-gradient(top,#f3f3f3,#ddd);background-image:-o-linear-gradient(top,#f3f3f3,#ddd);background-image:-ms-linear-gradient(top,#f3f3f3,#ddd);background-image:linear-gradient(top,#f3f3f3,#ddd);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#f3f3f3', EndColorStr='#dddddd');background-position:50% 50%;text-shadow:0 1px 0 rgba(255,255,255,.6)}.ButtonActive.button-grey,.ButtonActive#requested,.button-active.button-grey,.button-active#requested,.active.button-grey,.active#requested,.button-grey:active,#requested:active,html.touch .pressed.button-grey,html.touch .pressed#requested{background:#d8d8d8}.button-grey,#requested{border:1px solid #c6c6c6}.ButtonActive.button-grey,.ButtonActive#requested,.button-active.button-grey,.button-active#requested,.active.button-grey,.active#requested,.button-grey:active,#requested:active,html.touch .pressed.button-grey,html.touch .pressed#requested{border-color:#bbb}.button-green{background-color:#6bb38a;background-image:-webkit-gradient(linear,left top,left bottom,from(#6bb38a),to(#3d8b5f));background-image:-webkit-linear-gradient(top,#6bb38a,#3d8b5f);background-image:-moz-linear-gradient(top,#6bb38a,#3d8b5f);background-image:-o-linear-gradient(top,#6bb38a,#3d8b5f);background-image:-ms-linear-gradient(top,#6bb38a,#3d8b5f);background-image:linear-gradient(top,#6bb38a,#3d8b5f);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#6bb38a', EndColorStr='#3d8b5f');background-position:50% 50%;text-shadow:0 1px 1px #1e693f}.ButtonActive.button-green,.button-active.button-green,.active.button-green,.button-green:active,html.touch .pressed.button-green{background:#3a845a}.button-green{border:1px solid #3d8b5f}.ButtonActive.button-green,.button-active.button-green,.active.button-green,.button-green:active,html.touch .pressed.button-green{border-color:#2d6847}.button-altgreen,.following-true,.avatar-action .following-true,.avatar-container .followButtonActions .following-true{background-color:#47bc60;background-image:-webkit-gradient(linear,left top,left bottom,from(#47bc60),to(#39a64e));background-image:-webkit-linear-gradient(top,#47bc60,#39a64e);background-image:-moz-linear-gradient(top,#47bc60,#39a64e);background-image:-o-linear-gradient(top,#47bc60,#39a64e);background-image:-ms-linear-gradient(top,#47bc60,#39a64e);background-image:linear-gradient(top,#47bc60,#39a64e);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#47bc60', EndColorStr='#39a64e');background-position:50% 50%;text-shadow:0 1px 1px #2c803c}.ButtonActive.button-altgreen,.ButtonActive.following-true,.avatar-container .followButtonActions .ButtonActive.following-true,.button-active.button-altgreen,.button-active.following-true,.avatar-container .followButtonActions .button-active.following-true,.active.button-altgreen,.active.following-true,.avatar-container .followButtonActions .active.following-true,.button-altgreen:active,.following-true:active,.avatar-container .followButtonActions .following-true:active,html.touch .pressed.button-altgreen,html.touch .pressed.following-true{background:#369e4a}.button-altgreen,.following-true,.avatar-action .following-true,.avatar-container .followButtonActions .following-true{border:1px solid #329345}.ButtonActive.button-altgreen,.ButtonActive.following-true,.avatar-container .followButtonActions .ButtonActive.following-true,.button-active.button-altgreen,.button-active.following-true,.avatar-container .followButtonActions .button-active.following-true,.active.button-altgreen,.active.following-true,.avatar-container .followButtonActions .active.following-true,.button-altgreen:active,.following-true:active,.avatar-container .followButtonActions .following-true:active,html.touch .pressed.button-altgreen,html.touch .pressed.following-true{border-color:#256d33}.button-red{background-color:#e8485f;background-image:-webkit-gradient(linear,left top,left bottom,from(#e8485f),to(#b72e42));background-image:-webkit-linear-gradient(top,#e8485f,#b72e42);background-image:-moz-linear-gradient(top,#e8485f,#b72e42);background-image:-o-linear-gradient(top,#e8485f,#b72e42);background-image:-ms-linear-gradient(top,#e8485f,#b72e42);background-image:linear-gradient(top,#e8485f,#b72e42);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#e8485f', EndColorStr='#b72e42');background-position:50% 50%;text-shadow:0 1px 1px #b72e42}.ButtonActive.button-red,.button-active.button-red,.active.button-red,.button-red:active,html.touch .pressed.button-red{background:#af2c3f}.button-red{border:1px solid #b72e42}.ButtonActive.button-red,.button-active.button-red,.active.button-red,.button-red:active,html.touch .pressed.button-red{border-color:#8e2433}.button-darkred{background-color:#c6213a;background-image:-webkit-gradient(linear,left top,left bottom,from(#c6213a),to(#961427));background-image:-webkit-linear-gradient(top,#c6213a,#961427);background-image:-moz-linear-gradient(top,#c6213a,#961427);background-image:-o-linear-gradient(top,#c6213a,#961427);background-image:-ms-linear-gradient(top,#c6213a,#961427);background-image:linear-gradient(top,#c6213a,#961427);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#c6213a', EndColorStr='#961427');background-position:50% 50%;text-shadow:0 1px 1px #961427}.ButtonActive.button-darkred,.button-active.button-darkred,.active.button-darkred,.button-darkred:active,html.touch .pressed.button-darkred{background:#8d1325}.button-darkred{border:1px solid #961427}.ButtonActive.button-darkred,.button-active.button-darkred,.active.button-darkred,.button-darkred:active,html.touch .pressed.button-darkred{border-color:#690e1b}.button-uppercase,.button-altsmall,.main form.adjacent span .button{text-transform:uppercase}.button-icon,.modal .modal-close{text-indent:-9999em}.button-icon i,.modal .modal-close i{display:block}.button-icon:active i,.modal .modal-close:active i,html.touch .button-icon.pressed i,html.touch .modal .pressed.modal-close i,.modal html.touch .pressed.modal-close i{opacity:.8}.button-icon-left b{padding-left:24px}.button-icon-right b{padding-right:24px}.button-pulldown b{padding-right:14px;background:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/glyphs/arrow-down-small.png) no-repeat 100% 50%}.button-light{background-color:#fff;background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#f9fafb));background-image:-webkit-linear-gradient(top,#fff,#f9fafb);background-image:-moz-linear-gradient(top,#fff,#f9fafb);background-image:-o-linear-gradient(top,#fff,#f9fafb);background-image:-ms-linear-gradient(top,#fff,#f9fafb);background-image:linear-gradient(top,#fff,#f9fafb);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='white', EndColorStr='#f9fafb');background-position:50% 50%}.button-light.ButtonActive,.button-light.button-active,.button-light.active,.button-light:active,html.touch .button-light.pressed{background:#f3f5f7}.button-brown{background-color:#8f6a58;background-image:-webkit-gradient(linear,left top,left bottom,from(#8f6a58),to(#6c4634));background-image:-webkit-linear-gradient(top,#8f6a58,#6c4634);background-image:-moz-linear-gradient(top,#8f6a58,#6c4634);background-image:-o-linear-gradient(top,#8f6a58,#6c4634);background-image:-ms-linear-gradient(top,#8f6a58,#6c4634);background-image:linear-gradient(top,#8f6a58,#6c4634);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#8f6a58', EndColorStr='#6c4634');background-position:50% 50%;text-shadow:0 1px 1px #6c4634}.button-brown.ButtonActive,.button-brown.button-active,.button-brown.active,.button-brown:active,html.touch .button-brown.pressed{background:#654231}.button-brown{border:1px solid #6c4634}.button-brown.ButtonActive,.button-brown.button-active,.button-brown.active,.button-brown:active,html.touch .button-brown.pressed{border-color:#4a3023}.button-yellow{background-color:#c9981a;background-image:-webkit-gradient(linear,left top,left bottom,from(#c9981a),to(#a07711));background-image:-webkit-linear-gradient(top,#c9981a,#a07711);background-image:-moz-linear-gradient(top,#c9981a,#a07711);background-image:-o-linear-gradient(top,#c9981a,#a07711);background-image:-ms-linear-gradient(top,#c9981a,#a07711);background-image:linear-gradient(top,#c9981a,#a07711);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#c9981a', EndColorStr='#a07711');background-position:50% 50%;text-shadow:0 1px 1px #a07711}.button-yellow.ButtonActive,.button-yellow.button-active,.button-yellow.active,.button-yellow:active,html.touch .button-yellow.pressed{background:#977010}.button-yellow{border:1px solid #a07711}.button-yellow.ButtonActive,.button-yellow.button-active,.button-yellow.active,.button-yellow:active,html.touch .button-yellow.pressed{border-color:#72550c}.button-altblue{background-color:#5daaf3;background-image:-webkit-gradient(linear,left top,left bottom,from(#5daaf3),to(#2a85de));background-image:-webkit-linear-gradient(top,#5daaf3,#2a85de);background-image:-moz-linear-gradient(top,#5daaf3,#2a85de);background-image:-o-linear-gradient(top,#5daaf3,#2a85de);background-image:-ms-linear-gradient(top,#5daaf3,#2a85de);background-image:linear-gradient(top,#5daaf3,#2a85de);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#5daaf3', EndColorStr='#2a85de');background-position:50% 50%;text-shadow:0 1px 1px #2a85de}.button-altblue.ButtonActive,.button-altblue.button-active,.button-altblue.active,.button-altblue:active,html.touch .button-altblue.pressed{background:#2280dc}.button-altblue{border:1px solid #2a85de}.button-altblue.ButtonActive,.button-altblue.button-active,.button-altblue.active,.button-altblue:active,html.touch .button-altblue.pressed{border-color:#1d6bb8}.img-outset,.img-inset{background:0 0}.img-outset img,.img-inset img{width:auto;display:block;visibility:visible}.img,.img-outset,.img-inset{position:relative;display:inline-block}.img b,.img-outset b,.img-inset b{position:absolute;top:0;left:0;display:block;width:100%;height:100%}.img img,.img-outset img,.img-inset img{display:block}.img-outset,.img-inset{-webkit-border-radius:3px;border-radius:3px;background:no-repeat 0 0;-webkit-background-size:100%;background-size:100%}.img-outset b,.img-inset b{-webkit-border-radius:2px;border-radius:2px}.img-outset img,.img-inset img{display:block}span.img-inset{-webkit-box-shadow:0 1px 0 rgba(255,255,255,.4),0 1px 0 1px rgba(255,255,255,.1);-moz-box-shadow:0 1px 0 rgba(255,255,255,.4),0 1px 0 1px rgba(255,255,255,.1);box-shadow:0 1px 0 rgba(255,255,255,.4),0 1px 0 1px rgba(255,255,255,.1)}span.img-inset b{-webkit-box-shadow:inset 0 0 0 1px rgba(0,0,0,.15),inset 0 0 2px 0 rgba(0,0,0,.2);-moz-box-shadow:inset 0 0 0 1px rgba(0,0,0,.15),inset 0 0 2px 0 rgba(0,0,0,.2);box-shadow:inset 0 0 0 1px rgba(0,0,0,.15),inset 0 0 2px 0 rgba(0,0,0,.2)}span.img-outset{-webkit-box-shadow:0 0 0 1px rgba(0,0,0,.1),0 1px 2px rgba(0,0,0,.2);-moz-box-shadow:0 0 0 1px rgba(0,0,0,.1),0 1px 2px rgba(0,0,0,.2);box-shadow:0 0 0 1px rgba(0,0,0,.1),0 1px 2px rgba(0,0,0,.2)}span.img-outset b{-webkit-box-shadow:inset 0 0 0 1px rgba(255,255,255,.1),inset 0 1px 0 rgba(255,255,255,.3);-moz-box-shadow:inset 0 0 0 1px rgba(255,255,255,.1),inset 0 1px 0 rgba(255,255,255,.3);box-shadow:inset 0 0 0 1px rgba(255,255,255,.1),inset 0 1px 0 rgba(255,255,255,.3)}@media only screen and (-webkit-min-device-pixel-ratio:2),only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (min--moz-device-pixel-ratio:2),only screen and (-o-min-device-pixel-ratio:2/1),only screen and (min-device-pixel-ratio:2),only screen and (min-resolution:192dpi),only screen and (min-resolution:2dppx){span.img-outset{-webkit-box-shadow:0 0 0 1px rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.1);-moz-box-shadow:0 0 0 1px rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.1);box-shadow:0 0 0 1px rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.1)}}.avatar-xsmall,.avatar-xsmall img,.top-bar-actions>li img img{width:22px;height:22px}.avatar-small,.media-inner .like-avatar,.media-inner .comment-avatar,.avatar-small img,.media-inner .like-avatar img,.media-inner .comment-avatar img{width:30px;height:30px}.avatar-medium,.media-inner .user-avatar,.avatar-medium img,.media-inner .user-avatar img{width:40px;height:40px}.avatar-medium,.media-inner .user-avatar,.avatar-medium b,.media-inner .user-avatar b{-webkit-border-radius:4px;border-radius:4px}.avatar-large,.avatar-large img{width:70px;height:70px}.avatar-large,.avatar-large b{-webkit-border-radius:4px;border-radius:4px}.avatar-profile,.user-avatar,.avatar-profile img,.user-avatar img{width:110px;height:110px}.avatar-profile,.user-avatar,.avatar-profile b,.user-avatar b{-webkit-border-radius:3px;border-radius:3px}.root{height:100%;min-width:320px}body.thirdparty .root{min-width:240px}.page,.dialog-outer{position:relative;min-height:100%}.page-footer{position:relative;margin-top:-48px;z-index:20}.hidden{display:none}.wrapper{margin:0 auto;padding:0 16px;position:relative;width:992px}.top-bar{position:relative;border-bottom-color:rgba(4,40,71,.8);-webkit-box-shadow:0 1px 0 rgba(111,151,182,.5)inset,0 -1px 0 rgba(111,151,182,.2)inset,0 1px 1px rgba(0,0,0,.2);-moz-box-shadow:0 1px 0 rgba(111,151,182,.5)inset,0 -1px 0 rgba(111,151,182,.2)inset,0 1px 1px rgba(0,0,0,.2);box-shadow:0 1px 0 rgba(111,151,182,.5)inset,0 -1px 0 rgba(111,151,182,.2)inset,0 1px 1px rgba(0,0,0,.2);background-color:#517fa4;background-image:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/shared/noise-1.png),-webkit-gradient(linear,left top,left bottom,from(#517fa4),to(#306088));background-image:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/shared/noise-1.png),-webkit-linear-gradient(top,#517fa4,#306088);background-image:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/shared/noise-1.png),-moz-linear-gradient(top,#517fa4,#306088);background-image:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/shared/noise-1.png),-o-linear-gradient(top,#517fa4,#306088);background-image:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/shared/noise-1.png),-ms-linear-gradient(top,#517fa4,#306088);background-image:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/shared/noise-1.png),linear-gradient(top,#517fa4,#306088);background-position:50% 50%;z-index:100}.top-bar hgroup{position:relative;height:44px}.top-bar .logo{height:35px;width:97px;background:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/shared/shared-assets.png) no-repeat 0 4px;position:absolute;top:4px;margin:0;text-indent:-9999em}.top-bar .logo a{display:block;height:100%;width:100%}.top-bar h2{position:absolute;top:7px;left:120px;margin:0}@media only screen and (-webkit-min-device-pixel-ratio:2),only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (min--moz-device-pixel-ratio:2),only screen and (-o-min-device-pixel-ratio:2/1),only screen and (min-device-pixel-ratio:2),only screen and (min-resolution:192dpi),only screen and (min-resolution:2dppx){.top-bar{background-color:#517fa4;background-image:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/shared/noise-2.png),-webkit-gradient(linear,left top,left bottom,from(#517fa4),to(#306088));background-image:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/shared/noise-2.png),-webkit-linear-gradient(top,#517fa4,#306088);background-image:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/shared/noise-2.png),-moz-linear-gradient(top,#517fa4,#306088);background-image:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/shared/noise-2.png),-o-linear-gradient(top,#517fa4,#306088);background-image:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/shared/noise-2.png),-ms-linear-gradient(top,#517fa4,#306088);background-image:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/shared/noise-2.png),linear-gradient(top,#517fa4,#306088);background-position:50% 50%;-webkit-background-size:30px 20px,auto;background-size:30px 20px,auto}.top-bar .logo{background-image:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/shared/shared-assets@2x.png);background-size:150px 600px}}.top-bar-new{position:relative}.top-bar-new .logo{position:absolute;left:50%;margin-left:-50px!important}.top-bar-new .top-bar-left,.top-bar-new .top-bar-right{position:absolute;top:0}.top-bar-new .top-bar-left{left:-1px}.top-bar-new .top-bar-right{right:0}.top-bar-new .top-bar-center{margin-left:auto;margin-right:auto;width:50px}.top-bar-wrapper{position:relative;max-width:1024px;margin:0 auto}.top-bar-left .top-bar-actions{float:left;display:inline}.top-bar-home{padding:0!important}.top-bar-home,.top-bar-home i{height:44px!important;width:44px!important}.top-bar-home i{position:absolute;left:0;top:0;display:block;margin:0!important;background:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/shared/shared-assets.png) no-repeat 6px -194px}.top-bar-home:hover{background:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/alpha/fff_10.png);background:rgba(255,255,255,.1)}.top-bar-home:active{background-color:#1c5380;background-color:rgba(6,54,95,.35);-webkit-box-shadow:-1px 0 0 rgba(255,255,255,.15),inset 0 0 1px rgba(6,54,95,.4),inset 1px 0 1px rgba(6,54,95,.4);-moz-box-shadow:-1px 0 0 rgba(255,255,255,.15),inset 0 0 1px rgba(6,54,95,.4),inset 1px 0 1px rgba(6,54,95,.4);box-shadow:-1px 0 0 rgba(255,255,255,.15),inset 0 0 1px rgba(6,54,95,.4),inset 1px 0 1px rgba(6,54,95,.4)}@media only screen and (-webkit-min-device-pixel-ratio:2),only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (min--moz-device-pixel-ratio:2),only screen and (-o-min-device-pixel-ratio:2/1),only screen and (min-device-pixel-ratio:2),only screen and (min-resolution:192dpi),only screen and (min-resolution:2dppx){.top-bar-home i{background-image:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/shared/shared-assets@2x.png);background-size:150px 600px}}.page-footer{clear:both;overflow:hidden;padding:8px 0 7px;border-top:1px solid #ddd;background:#fff;text-align:center}.page-footer nav,.page-footer nav ul{margin:0;padding:0}.page-footer nav,.page-footer .copyright,.page-footer li{display:inline-block}.page-footer li{margin:0}.page-footer a{display:block;padding:8px 6px}.page-footer .copyright{padding:8px 6px;margin:0 0 0 8px}.page-footer-chromeless,.page-footer-dark,.page-home .page-footer,html .page-footer{background:0 0;border:none}.inset-avatar .inset-avatar-border{float:left;width:22px;height:22px;margin:-1px 8px 0 0;-webkit-border-radius:2px;border-radius:2px;-webkit-box-shadow:0 1px 2px #06365f;-moz-box-shadow:0 1px 2px #06365f;box-shadow:0 1px 2px #06365f}.inset-avatar .inset-avatar-border .inset-avatar-frame{width:22px;height:22px;-webkit-border-radius:2px;border-radius:2px;-webkit-box-shadow:inset 0 0 1px rgba(255,255,255,.8);-moz-box-shadow:inset 0 0 1px rgba(255,255,255,.8);box-shadow:inset 0 0 1px rgba(255,255,255,.8);position:absolute;z-index:100}.inset-avatar .inset-avatar-border img{width:22px!important;-webkit-border-radius:2px;border-radius:2px}.top-bar-actions{margin:0;padding:0;border-right:1px solid #5786aa;border-right-color:rgba(255,255,255,.1);border-left:1px solid #06365f;border-left-color:rgba(0,0,0,.1)}.top-bar-actions>li{position:relative;float:left;display:inline;margin:0}.top-bar-actions>li>a{position:relative;display:block;height:20px;padding:11px 11px 13px 12px;border-right:1px solid #06365f;border-right-color:rgba(0,0,0,.1);-webkit-box-shadow:inset 1px 0 0 rgba(255,255,255,.1);-moz-box-shadow:inset 1px 0 0 rgba(255,255,255,.1);box-shadow:inset 1px 0 0 rgba(255,255,255,.1);text-shadow:0 1px 0 rgba(3,27,47,.5);-webkit-tap-highlight-color:rgba(0,0,0,0)}.top-bar-actions>li>a i{display:block;float:left;height:28px;width:28px;margin:-5px 4px 0 -8px}.top-bar-actions>li>a:hover{background:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/alpha/fff_10.png);background:rgba(255,255,255,.1);border-right-color:rgba(0,0,0,.15)}.top-bar-actions>li>a:active,.top-bar-actions>li>a.link-active,html.touch .top-bar-actions>li>a.pressed{border-left:none;background-color:#1c5380;background-color:rgba(6,54,95,.35);-webkit-box-shadow:-1px 0 0 rgba(255,255,255,.15),inset 0 0 1px rgba(6,54,95,.4),inset 1px 0 1px rgba(6,54,95,.4);-moz-box-shadow:-1px 0 0 rgba(255,255,255,.15),inset 0 0 1px rgba(6,54,95,.4),inset 1px 0 1px rgba(6,54,95,.4);box-shadow:-1px 0 0 rgba(255,255,255,.15),inset 0 0 1px rgba(6,54,95,.4),inset 1px 0 1px rgba(6,54,95,.4)}.top-bar-actions>li .img-outset{float:left;display:inline;margin:-2px 10px 1px -1px}.top-bar-actions>li img{width:24px;height:24px;visibility:hidden}.top-bar-actions .link-signin i{background:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/shared/glyph-assets.png) no-repeat 2px 3px}.top-bar-actions .link-settings i{background:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/shared/glyph-assets.png) no-repeat 3px -196px}.top-bar-actions .link-open-instagram i{width:26px;height:28px;margin-left:1px!important;background:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/shared/glyph-assets.png) no-repeat 0 -399px}.top-bar-actions .link-open-instagram strong{position:relative;color:#e5ebf0;top:-1px}.account-state{position:absolute;top:0;right:15px}.account-state p,.account-state .top-bar-actions{float:right;display:inline}.account-state p{padding:8px 0 0 15px;text-shadow:0 1px 0 rgba(0,0,0,.3)}.account-state .dropdown{right:1px;top:38px}.account-state .dropdown a{padding-right:18px;-webkit-tap-highlight-color:rgba(0,0,0,0)}.account-state .dropdown i{top:0;left:auto;right:13px;height:10px;width:13px;background:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/shared/dropdown-arrow.png) no-repeat 0 0}.account-state .dropdown ul{min-width:150px}.dropdown{position:absolute;right:0;top:0;z-index:50;margin:-10px 0 0;padding:10px 0 0;pointer-events:none;-webkit-transition:opacity .2s ease-out,margin .2s ease-out;-moz-transition:opacity .2s ease-out,margin .2s ease-out;-o-transition:opacity .2s ease-out,margin .2s ease-out;transition:opacity .2s ease-out,margin .2s ease-out;opacity:0}html.android .dropdown,html.no-csstransitions .dropdown,html.msie .dropdown,html.opera .dropdown{display:none}.dropdown ul.dropdownOptionList,.dropdown ul{background:#eee url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/bg/white-gradient-300px.png) repeat-x 0 0;background-color:rgba(255,255,255,.3);-webkit-border-radius:3px;border-radius:3px;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.95),0 1px 8px rgba(0,0,0,.2),0 0 0 1px rgba(0,0,0,.08);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.95),0 1px 8px rgba(0,0,0,.2),0 0 0 1px rgba(0,0,0,.08);box-shadow:inset 0 1px 0 rgba(255,255,255,.95),0 1px 8px rgba(0,0,0,.2),0 0 0 1px rgba(0,0,0,.08);min-width:100px;padding:1px 3px;margin:0;list-style:none}.dropdown li{padding:5px 0;margin:0;border-top:1px solid #eee;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.95);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.95);box-shadow:inset 0 1px 0 rgba(255,255,255,.95)}.dropdown li:first-child{border-top:none;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.dropdown li a{display:block;padding:4px 8px;margin:-3px 0;border:1px solid transparent;-webkit-border-radius:2px;border-radius:2px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.dropdown li a:hover.dropdownLinkHover,.dropdown li a:hover{border:1px solid #eee;background:#999 url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/bg/white-gradient-300px.png) repeat-x 50% 50%;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.9);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.9);box-shadow:inset 0 1px 0 rgba(255,255,255,.9)}html.touch .dropdown li a:hover,.dropdown li a:active{border:1px solid #ddd;border-top-color:#d6d6d6;background:#eaeaea;-webkit-box-shadow:inset 0 0 3px rgba(0,0,0,.1),0 1px 0 rgba(255,255,255,.9);-moz-box-shadow:inset 0 0 3px rgba(0,0,0,.1),0 1px 0 rgba(255,255,255,.9);box-shadow:inset 0 0 3px rgba(0,0,0,.1),0 1px 0 rgba(255,255,255,.9)}.dropdown li>strong{display:block;margin-bottom:-5px;padding-bottom:5px;border-bottom:1px solid #ddd}.dropdown i{position:absolute;left:10px;right:auto;top:0;height:10px;width:13px;z-index:10;background:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/shared/glyph-assets.png) no-repeat -1px -800px}.dropdown i.right{left:auto;right:10px}.dropdown-inverted{margin:0 0 -10px;padding:0 0 5px;top:auto;bottom:0}.dropdown-inverted i{background-position:-1px -701px}.dropdown-open .dropdown{margin:0;opacity:.99;pointer-events:all}html.android .dropdown-open .dropdown,html.no-csstransitions .dropdown-open .dropdown,html.msie .dropdown-open .dropdown,html.opera .dropdown-open .dropdown{display:block}.alerts{margin-bottom:20px}.alert-red,.alert-blue,.alert-green{padding:11px 12px 9px;-webkit-border-radius:4px;border-radius:4px;margin-bottom:10px;border:solid 1px;min-height:0}.alert-red{color:#b94a5c;background-color:#f2dede;border-color:#eed3d7}.alert-blue{color:#3a87ad;background-color:#d9edf7;border-color:#bce8f1}.alert-green{color:#468847;background-color:#dff0d8;border-color:#d6e9c6}.p-error .main{padding:0 0 160px}.error-container{width:400px;border:1px solid #a4baca;background:#fdfdfd;-webkit-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 5px rgba(0,0,0,.1);-moz-box-shadow:0 1px 5px rgba(0,0,0,.1);box-shadow:0 1px 5px rgba(0,0,0,.1);-webkit-background-clip:padding-box;background-clip:padding-box;margin:100px auto 0;padding:25px 30px 20px;text-align:center}.top-bar .internal-settings{position:relative;float:right;display:inline;width:110px;height:44px;margin:0 0 -1px;padding:0}.top-bar .internal-settings>a{position:absolute;left:0;top:0;display:block;width:40px;height:40px;margin:2px;color:#2e4253;background:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/glyphs/internal-settings.png) no-repeat 0 -1px;opacity:.6}.top-bar .internal-settings>a>strong{display:block;height:40px;padding-top:9px;margin-left:34px}.top-bar .internal-settings .dropdown{right:0;margin-right:-1px}.top-bar .internal-settings .dropdown i{right:17px}.top-bar .internal-settings.dropdown-open a,.top-bar .internal-settings:hover a{opacity:1}.top-bar .on-prerelease>a{background-position:0 -41px;color:#fff}@media only screen and (-webkit-min-device-pixel-ratio:2),only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (min--moz-device-pixel-ratio:2),only screen and (-o-min-device-pixel-ratio:2/1),only screen and (min-device-pixel-ratio:2),only screen and (min-resolution:192dpi),only screen and (min-resolution:2dppx){.top-bar .internal-settings>a{background-image:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/glyphs/internal-settings@2x.png);background-size:40px 80px}}@media screen and (max-width:460px){.p-error .main{padding-bottom:0}.error-container{margin:0;border:none;width:auto}}@media screen and (max-width:990px){body,.root,.wrapper{width:100%}.wrapper{box-sizing:border-box}.account-state{right:0}.account-state ul{border-right-width:0}}@media screen and (max-width:480px){.account-state .link-signin>a strong,.account-state .link-profile>a strong{display:none}.account-state a{padding-bottom:12px}.account-state a .img-inset,.account-state a .img-outset{margin-right:0}}@media screen and (max-width:480px){.top-bar .wrapper{padding:0 9px}}@-webkit-keyframes 'fade-in'{0%{opacity:0}100%{opacity:1}}@-moz-keyframes fade-in{0%{opacity:0}100%{opacity:1}}@-ms-keyframes fade-in{0%{opacity:0}100%{opacity:1}}@-o-keyframes fade-in{0%{opacity:0}100%{opacity:1}}@keyframes 'fade-in'{0%{opacity:0}100%{opacity:1}}@media only screen and (-webkit-min-device-pixel-ratio:2),only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (min--moz-device-pixel-ratio:2),only screen and (-o-min-device-pixel-ratio:2/1),only screen and (min-device-pixel-ratio:2),only screen and (min-resolution:192dpi),only screen and (min-resolution:2dppx){.top-bar{-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.account-state .link-signin i,.account-state .link-settings i,.account-state .link-open-instagram i{background-image:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/shared/glyph-assets@2x.png);-webkit-background-size:150px 1600px;background-size:150px 1600px}.dropdown{-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0);-webkit-transition:all .2s ease-out;-moz-transition:all .2s ease-out;-o-transition:all .2s ease-out;transition:all .2s ease-out}.dropdown-open .dropdown{margin:-10px 0 0;-webkit-transform:translate3d(0,10px,0);-moz-transform:translate3d(0,10px,0);-o-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}}.mobileAvatarImage img{height:100%;visibility:hidden;width:auto}.photo-grid-status{font-weight:700;text-align:center}.photo-grid-status strong,.photo-grid-status span{text-align:center}.photo-grid-status strong{font-size:19px}.status-private{color:#bbb;text-shadow:0 1px 1px rgba(0,0,0,.8)}.status-private strong{color:#eee}.status-no-photos{color:#999;text-shadow:0 1px 1px rgba(255,255,255,.8);font-size:16px}.profile-user h1{font-size:23px;line-height:30px}.profile-user h1,.profile-user h1 a,.profile-user h1 a:visited{color:#111}.profile-user .user-bio{color:#666}.profile-user .user-bio strong{color:#444}.profile-user .user-stats{color:#999;font-weight:700;text-align:center;line-height:15px;text-shadow:0 1px 0 rgba(255,255,255,.8)}.profile-user .number-stat{color:#333;font-size:16px;text-align:center}.feed-photos h2{font-size:18px;line-height:20px}.feed-photos h3,.feed-photos .photo-date{font-size:12px;font-weight:700;color:#777;text-shadow:0 1px 0 rgba(255,255,255,.8)}.feed-photos .photo-stats{font-size:13px;color:#999}.feed-photos .photo-stats,.feed-photos .more-photos{font-weight:700;text-shadow:0 1px 0 rgba(255,255,255,.8)}.feed-photos .more-photos{font-size:16px}.feed-photos .more-photos a{text-decoration:none}.feed-photos .more-photos .more-photos-disabled{pointer-events:none}.feed-photos .more-photos .more-photos-disabled,.feed-photos .more-photos .more-photos-disabled:visited,.feed-photos .more-photos .more-photos-disabled:hover{color:#bbb}html body{background:#d8d8d8 url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/shared/noise-2.png);min-width:720px}.top-bar{border-bottom:none;height:44px}.main{padding:0 0 50px;margin:0}.photo-grid-status .photo-grid-status-message,.photo-grid-status strong{display:block}.status-private{height:408px;max-width:1024px;background:#444;margin:0 auto;-webkit-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0;-webkit-box-shadow:inset 0 0 0 1px rgba(255,255,255,.06);-moz-box-shadow:inset 0 0 0 1px rgba(255,255,255,.06);box-shadow:inset 0 0 0 1px rgba(255,255,255,.06)}.status-private p{padding:140px 0 0}.status-private span:first-letter,.status-private strong:first-letter{text-transform:capitalize}.status-private strong{margin:0 0 10px;padding-top:80px;background:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/profile/profile-page-assets-2.png) no-repeat 50% 8px}.status-no-photos{padding:60px 0;margin:0;-webkit-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.15),0 1px 5px rgba(0,0,0,.05);-moz-box-shadow:0 1px 1px rgba(0,0,0,.15),0 1px 5px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.15),0 1px 5px rgba(0,0,0,.05)}.status-no-photos .no-photos-message{display:block;padding:60px 0 0;background:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/profile/profile-page-assets-2.png) no-repeat 50% -200px}.header-notice{-webkit-box-shadow:0 1px 5px rgba(0,0,0,.1),0 1px 0 rgba(0,0,0,.1);-moz-box-shadow:0 1px 5px rgba(0,0,0,.1),0 1px 0 rgba(0,0,0,.1);box-shadow:0 1px 5px rgba(0,0,0,.1),0 1px 0 rgba(0,0,0,.1);padding:10px 0 9px;background:#444;border-bottom:1px solid #555}.header-notice p{margin:0}.privacy-notice strong{display:inline-block;padding:0 0 0 24px;background:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/shared/glyph-assets.png) no-repeat 1px -1299px}.header-notice{color:#fff}.header-notice p{text-shadow:0 1px 1px rgba(0,0,0,.6);text-align:center}.feed-header{margin:0;padding:32px 0 0;background:#333 url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/profile/noise-black.png) 50% 50%;background-image:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/profile/profile-header-gradient.png),url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/profile/noise-black.png);-webkit-box-shadow:0 1px 0 rgba(255,255,255,.2),0 1px 3px rgba(0,0,0,.5)inset;-moz-box-shadow:0 1px 0 rgba(255,255,255,.2),0 1px 3px rgba(0,0,0,.5)inset;box-shadow:0 1px 0 rgba(255,255,255,.2),0 1px 3px rgba(0,0,0,.5)inset;position:relative;overflow:hidden}.has-no-comp .feed-header{height:80px}.profile-main-wrapper{padding-right:1px}.photo-grid{min-height:600px}.profile-user{position:relative;max-width:964px;min-height:75px;margin:0 auto;padding:10px 30px 15px;border-bottom:1px solid #d9d9d9;background:#eee url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/bg/white-gradient-200px.png) repeat-x 50% 50%;-webkit-box-shadow:1px 0 0 rgba(0,0,0,.05),-1px 0 0 rgba(0,0,0,.05),0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:1px 0 0 rgba(0,0,0,.05),-1px 0 0 rgba(0,0,0,.05),0 1px 2px rgba(0,0,0,.05);box-shadow:1px 0 0 rgba(0,0,0,.05),-1px 0 0 rgba(0,0,0,.05),0 1px 2px rgba(0,0,0,.05)}.profile-user .profile-options{position:relative;z-index:10;float:left;display:inline}.profile-user .profile-options .dropdown{top:20px;left:100%;right:auto;margin-left:-30px}.profile-user .profile-options .dropdown i{left:10px;right:0}.profile-user h1{padding-left:140px;margin:0 0 5px}.profile-user h1 a{position:relative;padding-right:24px}.profile-user h1 b{width:7px;height:5px;display:block;position:absolute;right:10px;top:50%;margin-top:-1px;-moz-opacity:.7;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";filter:alpha(opacity=70);opacity:.7;-webkit-transition:opacity .2s ease-out;-moz-transition:opacity .2s ease-out;-o-transition:opacity .2s ease-out;transition:opacity .2s ease-out;background:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/p/glyph-arrow-down.png)}.profile-user .user-bio{clear:both;margin:0 0 -1px;padding-left:140px;padding-right:270px;text-overflow:ellipsis;-webkit-hyphens:auto;-moz-hyphens:auto;hyphens:auto;-ms-word-break:break-all;word-break:break-word}.profile-user .user-bio strong,.profile-user .user-bio a{display:inline-block;margin-bottom:-1px}.profile-user .has-bio strong:after{content:" \00b7 "}.profile-is-private .profile-user{-webkit-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.15),0 1px 5px rgba(0,0,0,.05);-moz-box-shadow:0 1px 1px rgba(0,0,0,.15),0 1px 5px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.15),0 1px 5px rgba(0,0,0,.05);border-bottom:none;margin-bottom:0}.avatar-container{position:absolute;left:25px;bottom:11px;margin:0;padding:5px 5px 32px;background:#fff;z-index:2;-webkit-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 0 1px rgba(0,0,0,.1),0 1px 5px rgba(0,0,0,.15);-moz-box-shadow:0 0 1px rgba(0,0,0,.1),0 1px 5px rgba(0,0,0,.15);box-shadow:0 0 1px rgba(0,0,0,.1),0 1px 5px rgba(0,0,0,.15)}.avatar-container .user-avatar{top:0;margin-bottom:-1px;position:relative}.avatar-container .user-avatar img{visibility:hidden}.follow-indicator{width:110px;height:110px;display:block;position:absolute;left:5px;top:5px;background:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/alpha/000_40.png);-webkit-border-radius:2px;border-radius:2px}.avatar-action,.avatar-container .followButtonActions{position:absolute;left:5px;bottom:5px;width:110px;font-family:"proxima-nova","Helvetica Neue",Arial,Helvetica,sans-serif!important}.avatar-action .button,.avatar-container .followButtonActions .button{width:108px;padding:5px 0 6px;text-align:center}.user-stats{position:absolute;right:25px;top:50%;background:#ddd url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/bg/white-gradient-100px.png) repeat-x 50% 50%;border:1px solid #ccc;padding:3px 0;margin:-26px 0 0;-webkit-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.08),inset 0 1px 0 rgba(255,255,255,.8);-moz-box-shadow:0 1px 1px rgba(0,0,0,.08),inset 0 1px 0 rgba(255,255,255,.8);box-shadow:0 1px 1px rgba(0,0,0,.08),inset 0 1px 0 rgba(255,255,255,.8)}.user-stats li{float:left;display:inline;min-width:64px;height:30px;margin:0;padding:7px 8px;border-left:1px solid #ccc;-webkit-box-shadow:inset 1px 0 0 rgba(255,255,255,.8);-moz-box-shadow:inset 1px 0 0 rgba(255,255,255,.8);box-shadow:inset 1px 0 0 rgba(255,255,255,.8)}.user-stats li:first-child{border-left:0;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.user-stats .number-stat{display:block}.profile-comp ul,.photo-grid ul{padding:0}.profile-comp li,.photo-grid li{list-style:none}.profile-comp li a,.photo-grid li a{display:block;position:relative}.profile-comp li .Image,.photo-grid li .Image{width:100%;height:auto;display:block}.feed-photos{max-width:1024px;margin:0 auto;background:#eaeaea;-webkit-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px}.feed-photos header{display:none}.feed-photos header ul,.feed-photos header li{float:left;display:inline}.feed-photos header ul{list-style:none;padding:0}.feed-photos header li{margin-right:10px}.photo-grid{clear:left;padding:10px 10px 0!important;margin:0 auto;max-width:1004px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.24),0 1px 5px rgba(0,0,0,.05);-moz-box-shadow:0 1px 1px rgba(0,0,0,.24),0 1px 5px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.24),0 1px 5px rgba(0,0,0,.05)}.photo-feed{margin:0;padding:0}.photo-feed .photo{position:relative;float:left;display:inline;width:20%;margin:0;padding:7px 0 23px}.photo-feed .photo:after{display:block;height:1px;position:absolute;bottom:-1px;left:0;right:0;margin:0 -10px;background:#ddd;border-bottom:1px solid #f6f6f6;content:"";overflow:hidden}.photo-feed .photo .photo-wrapper{position:relative;margin:0 20px 10px;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.4),0 1px 0 1px rgba(255,255,255,.1);-moz-box-shadow:0 1px 0 rgba(255,255,255,.4),0 1px 0 1px rgba(255,255,255,.1);box-shadow:0 1px 0 rgba(255,255,255,.4),0 1px 0 1px rgba(255,255,255,.1)}.photo-feed .photo .photo-wrapper .photoShadow{background-color:rgba(0,0,0,.1);border:1px solid rgba(0,0,0,.12);bottom:0;left:0;position:absolute;right:0;top:0;z-index:1;-webkit-transition:background-color .05s ease-out;-moz-transition:background-color .05s ease-out;-o-transition:background-color .05s ease-out;transition:background-color .05s ease-out}.photo-feed .photo .photo-wrapper .Image{padding-bottom:100%}.photo-feed .photo h3{position:absolute;top:-3px;left:0;margin:0;opacity:1;-webkit-transition:opacity .05s ease-out;-moz-transition:opacity .05s ease-out;-o-transition:opacity .05s ease-out;transition:opacity .05s ease-out}.photo-feed .photo .img-inset,.photo-feed .photo img{display:block}.photo-feed .photo .img-inset,.photo-feed .photo .img-inset b{-webkit-border-radius:0;border-radius:0}.photo-feed .photo .img-inset b{background:rgba(0,0,0,.08)}.photo-feed .photo .bg{position:absolute;top:25px;left:0;bottom:0;width:100%;margin:-5px;padding:5px;background:rgba(204,204,204,.8)url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/bg/white-gradient-300px.png) repeat-x 0 100%;-webkit-box-shadow:0 0 0 1px rgba(0,0,0,.04),0 1px 5px rgba(0,0,0,.1);-moz-box-shadow:0 0 0 1px rgba(0,0,0,.04),0 1px 5px rgba(0,0,0,.1);box-shadow:0 0 0 1px rgba(0,0,0,.04),0 1px 5px rgba(0,0,0,.1);-webkit-transition:all .15s ease-out .1s;-moz-transition:all .15s ease-out .1s;-o-transition:all .15s ease-out .1s;transition:all .15s ease-out .1s}.noScroll .photo-feed .photo:hover h3{opacity:0}.noScroll .photo-feed .photo:hover .img-inset b{background:rgba(0,0,0,0)}.noScroll .photo-feed .photo:hover .bg{margin:-28px -12px;padding:28px 12px;-webkit-transition-delay:0;-moz-transition-delay:0;-o-transition-delay:0;transition-delay:0;-webkit-transition-duration:.1s;-moz-transition-duration:.1s;-o-transition-duration:.1s;transition-duration:.1s;-webkit-box-shadow:0 0 0 1px rgba(0,0,0,.04),0 1px 5px rgba(0,0,0,.2);-moz-box-shadow:0 0 0 1px rgba(0,0,0,.04),0 1px 5px rgba(0,0,0,.2);box-shadow:0 0 0 1px rgba(0,0,0,.04),0 1px 5px rgba(0,0,0,.2)}.noScroll .photo-feed .photo:hover .photo-date,.noScroll .photo-feed .photo:hover .photo-stats{opacity:1;-webkit-transition-delay:.1s;-moz-transition-delay:.1s;-o-transition-delay:.1s;transition-delay:.1s}.noScroll .photo-feed .photo:hover .photoShadow{background-color:rgba(0,0,0,0)}.photo-feed .photo:active .bg{background-color:#fff;-webkit-transition-delay:0;-moz-transition-delay:0;-o-transition-delay:0;transition-delay:0}.photo-date{position:relative}.photo-date,.photo-stats{display:block;opacity:0;pointer-events:none;-webkit-transition:opacity .3s ease-out 0;-moz-transition:opacity .3s ease-out 0;-o-transition:opacity .3s ease-out 0;transition:opacity .3s ease-out 0}.photo-date{height:20px;padding:1px 0 4px;text-align:center}.photo-stats{position:absolute;left:0;bottom:-25px;width:100%;text-align:center;margin:0 0 1px}.photo-stats li{display:inline-block;margin:0 0 0 .5em}.photo-stats li:first-child{margin-left:0}.photo-stats b{display:block;padding-left:20px;background:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/profile/profile-page-assets.png) no-repeat 0 0}.photo-stats .stat-likes b{background-position:3px -96px}.photo-stats .stat-comments b{background-position:3px 4px}@media screen and (max-width:800px){.photo-feed .photo{width:25%}}.more-photos{padding:0;margin:-2px 0 0}.more-photos,.more-photos a{-webkit-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px}.more-photos a{position:relative;display:block;text-align:center;margin:0;padding:20px 0;background:#e6e6e6 url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/bg/white-gradient-200px.png) repeat-x 50% 100%;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.4),0 0 1px rgba(0,0,0,.24),0 1px 5px rgba(0,0,0,.05);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.4),0 0 1px rgba(0,0,0,.24),0 1px 5px rgba(0,0,0,.05);box-shadow:inset 0 1px 0 rgba(255,255,255,.4),0 0 1px rgba(0,0,0,.24),0 1px 5px rgba(0,0,0,.05)}.more-photos .more-photos-enabled{background-color:#eee;cursor:pointer}.more-photos .more-photos-enabled:active{background:#eaeaea;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.1),inset 0 1px 2px rgba(0,0,0,.06),-1px 0 0 rgba(0,0,0,.05),1px 0 0 rgba(0,0,0,.05);-moz-box-shadow:inset 0 -1px 0 rgba(0,0,0,.1),inset 0 1px 2px rgba(0,0,0,.06),-1px 0 0 rgba(0,0,0,.05),1px 0 0 rgba(0,0,0,.05);box-shadow:inset 0 -1px 0 rgba(0,0,0,.1),inset 0 1px 2px rgba(0,0,0,.06),-1px 0 0 rgba(0,0,0,.05),1px 0 0 rgba(0,0,0,.05);padding:21px 0 19px;margin:0 0 -1px;border-top:1px solid #ccc;top:-1px;cursor:auto}.loading-indicator{position:relative;top:2px;display:inline-block;width:20px;height:20px;margin:-5px .4em -5px 0;cursor:progress}@media only screen and (-webkit-min-device-pixel-ratio:2),only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (min--moz-device-pixel-ratio:2),only screen and (-o-min-device-pixel-ratio:2/1),only screen and (min-device-pixel-ratio:2),only screen and (min-resolution:192dpi),only screen and (min-resolution:2dppx){.photo-stats b{background-image:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/profile/profile-page-assets@2x.png);-webkit-background-size:200px 200px;background-size:200px 200px}}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:100;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop,.modal-backdrop.fade.in{-moz-opacity:.8;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";filter:alpha(opacity=80);opacity:.8}.modal{position:fixed;top:50%;left:50%;z-index:101;overflow:auto;width:560px;margin:-250px 0 0 -280px;border:1px solid #999;border:1px solid rgba(0,0,0,.3);-webkit-border-radius:8px;border-radius:8px;-webkit-box-shadow:0 3px 7px rgba(0,0,0,.3);-moz-box-shadow:0 3px 7px rgba(0,0,0,.3);box-shadow:0 3px 7px rgba(0,0,0,.3);-webkit-background-clip:padding-box;background-clip:padding-box}.modal.fade{-webkit-transition:opacity .3s linear,top .3s ease-out;-moz-transition:opacity .3s linear,top .3s ease-out;-o-transition:opacity .3s linear,top .3s ease-out;transition:opacity .3s linear,top .3s ease-out;top:-25%}.modal.fade.in{top:50%}.modal-header{padding:9px 15px;border-bottom:1px solid #eee}.modal-header .close{margin-top:2px}.modal-body{overflow-y:auto;max-height:400px;padding:15px}.modal-form,.modal-footer{margin-bottom:0}.modal-footer{padding:14px 15px 15px;text-align:right;background-color:#f5f5f5;border-top:1px solid #ddd;-webkit-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px;-webkit-box-shadow:inset 0 1px 0 #fff;-moz-box-shadow:inset 0 1px 0 #fff;box-shadow:inset 0 1px 0 #fff}.modal-footer .btn+.btn{margin-left:5px;margin-bottom:0}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal .dialog{-webkit-box-shadow:0 1px 10px rgba(0,0,0,.1);-moz-box-shadow:0 1px 10px rgba(0,0,0,.1);box-shadow:0 1px 10px rgba(0,0,0,.1)}.modal .dialog-main{padding:20px 20px 5px}.modal .modal-close{position:absolute;right:6px;top:6px;width:9px}.modal .modal-close i{position:absolute;left:50%;top:50%;margin:-7px 0 0 -8px;display:block;width:16px;height:16px;background:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/glyphs/cross.png) no-repeat 50% 50%}.media-inner{position:relative;width:664px;margin:0 auto}.media-photo{position:relative;width:612px;height:612px;margin:20px 0 0;background:#fff;z-index:10;-webkit-box-shadow:0 1px 3px rgba(0,0,0,.2);-moz-box-shadow:0 1px 3px rgba(0,0,0,.2);box-shadow:0 1px 3px rgba(0,0,0,.2)}.media-photo,.media-photo .img{-webkit-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px}.media-photo .img{-webkit-box-shadow:inset 0 0 0 1px rgba(0,0,0,.1),inset -1px 0 0 0 rgba(6,54,95,.6),inset 0 0 0 2px rgba(255,255,255,.1);-moz-box-shadow:inset 0 0 0 1px rgba(0,0,0,.1),inset -1px 0 0 0 rgba(6,54,95,.6),inset 0 0 0 2px rgba(255,255,255,.1);box-shadow:inset 0 0 0 1px rgba(0,0,0,.1),inset -1px 0 0 0 rgba(6,54,95,.6),inset 0 0 0 2px rgba(255,255,255,.1);-webkit-background-size:100% 100%;background-size:100% 100%;-webkit-transition:all .4s ease-out;-moz-transition:all .4s ease-out;-o-transition:all .4s ease-out;transition:all .4s ease-out}.media-photo img{display:block;width:612px;height:612px;visibility:hidden}.media-photo ::-moz-selection{background:rgba(0,0,0,0)}.media-photo ::selection{background:rgba(0,0,0,0)}.media-open .media-photo .img{-webkit-box-shadow:inset 0 0 0 1px rgba(0,0,0,.1),inset -1px 0 0 0 rgba(6,54,95,.1),inset 0 0 0 2px rgba(255,255,255,.1),1px 0 1px rgba(0,0,0,.05);-moz-box-shadow:inset 0 0 0 1px rgba(0,0,0,.1),inset -1px 0 0 0 rgba(6,54,95,.1),inset 0 0 0 2px rgba(255,255,255,.1),1px 0 1px rgba(0,0,0,.05);box-shadow:inset 0 0 0 1px rgba(0,0,0,.1),inset -1px 0 0 0 rgba(6,54,95,.1),inset 0 0 0 2px rgba(255,255,255,.1),1px 0 1px rgba(0,0,0,.05)}.dismiss{position:absolute;left:10px;top:10px;display:block;width:21px;height:21px;background:rgba(0,0,0,.2)url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/p/glyph-cross-white.png) no-repeat 50% 50%;-webkit-border-radius:3px;border-radius:3px}.dismiss:active{background-color:#000}.media-photo .media-caption{position:absolute;bottom:12px;left:12px;width:536px;background:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/alpha/000_75.png);padding:10px 37px 10px 15px;margin:0;color:#eee;-webkit-border-radius:2px;border-radius:2px;-webkit-transition:opacity .7s ease-out 2.5s;-moz-transition:opacity .7s ease-out 2.5s;-o-transition:opacity .7s ease-out 2.5s;transition:opacity .7s ease-out 2.5s;-webkit-animation-fill-mode:backwards}.media-photo .media-caption .caption-text{padding-right:.5em}.media-photo .media-caption .caption-location{background:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/p/photo-page-assets.png) no-repeat 0 -596px;display:inline-block;-webkit-font-smoothing:antialiased;color:#ffeaba}.media-photo .media-caption .caption-location span{visibility:hidden;width:14px;display:inline-block}.media-photo .media-caption .dismiss{left:auto;right:10px}.initial-caption-fade-done .media-photo .media-caption{opacity:0}.initial-caption-fade-done .media-photo:hover .media-caption{opacity:1;-webkit-transition-duration:.3s;-moz-transition-duration:.3s;-o-transition-duration:.3s;transition-duration:.3s;-webkit-transition-delay:0;-moz-transition-delay:0;-o-transition-delay:0;transition-delay:0}.caption-dismissed .media-photo .media-caption,.caption-dismissed .media-photo:hover .media-caption{opacity:0}.media-info{position:absolute;right:0;top:80px;width:312px;height:610px;padding:0 50px 0 0;background:#f8f8f8;border:1px solid #ccc;-webkit-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;-webkit-box-shadow:0 1px 3px rgba(0,0,0,.05);-moz-box-shadow:0 1px 3px rgba(0,0,0,.05);box-shadow:0 1px 3px rgba(0,0,0,.05)}.media-info .comment-avatar img,.media-info .like-avatar img{visibility:hidden}.media-likes{position:relative;height:50px;background:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/p/top-bar-white.png) repeat-x 0 15px;margin:-15px 0 0;padding:15px 0 0;overflow:hidden;border-bottom:1px solid #eaeaea;border-bottom-color:rgba(0,0,0,.05);-webkit-box-shadow:inset 0 -1px 0 rgba(255,255,255,.8);-moz-box-shadow:inset 0 -1px 0 rgba(255,255,255,.8);box-shadow:inset 0 -1px 0 rgba(255,255,255,.8)}.media-likes h2{float:left;display:inline;padding:0 0 0 20px;margin:0 -5px 0 0;background:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/p/photo-page-assets.png) no-repeat 17px -383px}.media-likes h2,.media-likes h2 .like-count{opacity:1;-webkit-transition:opacity .3s ease-out;-moz-transition:opacity .3s ease-out;-o-transition:opacity .3s ease-out;transition:opacity .3s ease-out}.media-likes h2 .like-count{display:block;min-width:10px;padding:10px 18px 10px 20px;background:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/p/media-likes-shadow.png) no-repeat 100% 50%;text-align:center}.media-likes h2 b{display:none}.media-likes .like-list{position:relative;width:100%;float:left;display:inline;margin:-15px -200px 0 -5px;padding:15px 0 0;overflow:hidden}.media-likes .like-list ul{list-style:none;padding:10px 0 10px 8px}.media-likes li{float:left;display:inline;margin:0 8px 0 0;position:relative}.media-likes .like .img-inset{display:block}.media-likes .new-like{margin-left:-38px;opacity:0;-webkit-transition:margin-left .3s ease-out,opacity .3s ease-out;-moz-transition:margin-left .3s ease-out,opacity .3s ease-out;-o-transition:margin-left .3s ease-out,opacity .3s ease-out;transition:margin-left .3s ease-out,opacity .3s ease-out}.media-likes .tooltip{position:absolute;top:0;left:50%;margin:-24px 0 0;padding:0 4px;border:1px solid #ccc;background:#fff;background:rgba(255,255,255,.2)url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/bg/tooltip-white.png);-webkit-border-radius:3px;border-radius:3px;-webkit-box-shadow:0 1px 5px rgba(0,0,0,.15),inset 0 1px 0 rgba(255,255,255,.95);-moz-box-shadow:0 1px 5px rgba(0,0,0,.15),inset 0 1px 0 rgba(255,255,255,.95);box-shadow:0 1px 5px rgba(0,0,0,.15),inset 0 1px 0 rgba(255,255,255,.95);-webkit-transition:opacity .2s ease-out;-moz-transition:opacity .2s ease-out;-o-transition:opacity .2s ease-out;transition:opacity .2s ease-out;pointer-events:none;-moz-opacity:0;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";filter:alpha(opacity=0);opacity:0;min-width:22px;text-align:center}.media-likes .tooltip:after{content:"";display:block;position:absolute;bottom:0;left:50%;margin:0 0 -8px -4px;width:9px;height:8px;background:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/p/like-tooltip-arrow.png) no-repeat 0 0}.media-likes .new-like .tooltip,.media-likes .first-two .tooltip,.media-likes li:nth-child(1) .tooltip,.media-likes li:nth-child(2) .tooltip{left:-1px;margin-left:0!important}.media-likes .new-like .tooltip:after,.media-likes .first-two .tooltip:after,.media-likes li:nth-child(1) .tooltip:after,.media-likes li:nth-child(2) .tooltip:after{left:11px;margin-left:0}.media-likes li:nth-child(5) .tooltip,.media-likes li:nth-child(6) .tooltip,.media-likes li:nth-child(7) .tooltip,.media-likes .last-two .tooltip{left:auto;right:-1px;margin-left:0!important}.media-likes li:nth-child(5) .tooltip:after,.media-likes li:nth-child(6) .tooltip:after,.media-likes li:nth-child(7) .tooltip:after,.media-likes .last-two .tooltip:after{left:auto;right:11px;margin-left:0}.media-likes .like:hover .tooltip{-moz-opacity:1;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";filter:alpha(opacity=100);opacity:1;pointer-events:all}.media-likes .like-slide .new-like{margin-left:0;opacity:1}.media-likes .likes-notice{position:absolute;top:25px;left:50px;margin:0 0 0 40px;padding:5px 0;opacity:0;-webkit-transition:opacity .3s ease-out,margin-left .3s ease-out;-moz-transition:opacity .3s ease-out,margin-left .3s ease-out;-o-transition:opacity .3s ease-out,margin-left .3s ease-out;transition:opacity .3s ease-out,margin-left .3s ease-out}html.no-csstransitions .media-likes .likes-notice{display:none}.no-likes .media-likes h2{opacity:.5}.no-likes .media-likes h2 .like-count{opacity:0}.no-likes .media-likes .likes-notice{opacity:.5;margin-left:0}html.no-csstransitions .no-likes .media-likes .likes-notice{display:block}.media-likes-fade{position:absolute;right:0;top:15px;height:50px;width:35px;pointer-events:none;background:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/p/media-likes-fade.png) no-repeat 0 0}.media-comments{padding-bottom:50px;position:relative}.media-comments ::-webkit-scrollbar{-webkit-appearance:none;width:7px}.media-comments ::-webkit-scrollbar-thumb{background-color:#ddd}.media-comments h2{display:none}.media-comments ul{max-height:488px;padding:10px 0 0;margin:-1px 0 0;list-style:none}.media-comments .comments-scrolled-tinybit{-webkit-box-shadow:inset 0 2px 0 rgba(0,0,0,.05);-moz-box-shadow:inset 0 2px 0 rgba(0,0,0,.05);box-shadow:inset 0 2px 0 rgba(0,0,0,.05)}.media-comments .comments-scrolled-littlemore{-webkit-box-shadow:inset 0 2px 0 rgba(0,0,0,.05),inset 0 3px 0 rgba(0,0,0,.03);-moz-box-shadow:inset 0 2px 0 rgba(0,0,0,.05),inset 0 3px 0 rgba(0,0,0,.03);box-shadow:inset 0 2px 0 rgba(0,0,0,.05),inset 0 3px 0 rgba(0,0,0,.03)}.media-comments .comments-scrolled{-webkit-box-shadow:inset 0 2px 0 rgba(0,0,0,.03),inset 0 3px 0 rgba(0,0,0,.03),inset 0 4px 0 rgba(0,0,0,.01),inset 0 5px 0 rgba(0,0,0,.01);-moz-box-shadow:inset 0 2px 0 rgba(0,0,0,.03),inset 0 3px 0 rgba(0,0,0,.03),inset 0 4px 0 rgba(0,0,0,.01),inset 0 5px 0 rgba(0,0,0,.01);box-shadow:inset 0 2px 0 rgba(0,0,0,.03),inset 0 3px 0 rgba(0,0,0,.03),inset 0 4px 0 rgba(0,0,0,.01),inset 0 5px 0 rgba(0,0,0,.01)}.media-comments .comment{position:relative;padding:0 10px 10px 50px;margin:0 2px 2px 1px;width:auto;word-wrap:break-word;min-height:30px}* html .media-comments .comment{height:auto}.media-comments .comment p{margin:0}.media-comments .comment .username{display:block;margin-bottom:2px}.media-comments .comment-text{display:block}.media-comments .img-inset{position:absolute;left:10px;top:1px}.media-comments .caption{padding-top:10px;padding-bottom:11px;border-bottom:1px solid #ddd;margin-bottom:0;background:#fcfcfc;-webkit-box-shadow:inset 0 1px 0 rgba(0,0,0,.02),inset 0 2px 0 rgba(0,0,0,.02);-moz-box-shadow:inset 0 1px 0 rgba(0,0,0,.02),inset 0 2px 0 rgba(0,0,0,.02);box-shadow:inset 0 1px 0 rgba(0,0,0,.02),inset 0 2px 0 rgba(0,0,0,.02)}.mount-addcomment .media-comments .caption{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.media-comments .caption .img-inset{top:12px}.media-comments .caption .comment-text{max-height:200px;overflow:auto}.media-comments .comment-meta{position:absolute;top:2px;right:8px}.media-comments .caption .comment-meta{top:10px;right:8px}.mount-addcomment .media-comments ul .comment-meta{right:6px}.media-comments .failed .comment-meta{display:none!important}.media-comments .failure-message{text-align:center;padding:4px;margin:5px 0 0 -1px;border:1px solid #fed87e;background:#fffaed;display:block;-webkit-border-radius:3px;border-radius:3px;font-size:12px}.media-addcomment{position:relative;width:252px;margin:-60px 0 0;padding:10px 11px 10px 50px}.media-addcomment label{display:none}.media-addcomment textarea{width:250px;margin-left:1px;resize:none;overflow:hidden;padding-bottom:5px;padding-left:7px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05),0 1px 0 rgba(255,255,255,.8);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.05),0 1px 0 rgba(255,255,255,.8);box-shadow:inset 0 1px 1px rgba(0,0,0,.05),0 1px 0 rgba(255,255,255,.8)}.media-addcomment textarea.comment-text{height:31px}.media-addcomment textarea.placeholder{height:31px;color:#999}.media-addcomment .img-inset{position:absolute;left:11px;top:10px}.cta-addcomment{position:relative;width:292px;margin:-60px 0 0;padding:7.5px 11px;background:#fff}.cta-addcomment p{margin:0;padding:6.5px 0 8.5px;-webkit-border-radius:3px;border-radius:3px;text-align:center}.mount-addcomment .media-comments ul{overflow:auto}.mount-addcomment .cta-addcomment,.mount-addcomment .media-addcomment{position:absolute;bottom:0;left:0;margin:0;background:#fdfdfd;background:rgba(255,255,255,.9);border-top:1px solid #ccc;border-top:1px solid rgba(255,255,255,0);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.2),0 -1px 0 rgba(0,0,0,.05),0 -2px 0 rgba(0,0,0,.02),0 -3px 0 rgba(0,0,0,.02);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.2),0 -1px 0 rgba(0,0,0,.05),0 -2px 0 rgba(0,0,0,.02),0 -3px 0 rgba(0,0,0,.02);box-shadow:inset 0 1px 0 rgba(255,255,255,.2),0 -1px 0 rgba(0,0,0,.05),0 -2px 0 rgba(0,0,0,.02),0 -3px 0 rgba(0,0,0,.02)}.media-bar{width:50px;height:610px;background-color:#5f8cb0;background-image:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/shared/noise-2.png),-webkit-gradient(linear,left center,right center,from(#5f8cb0),to(#4a7496));background-image:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/shared/noise-2.png),-webkit-linear-gradient(left,#5f8cb0,#4a7496);background-image:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/shared/noise-2.png),-moz-linear-gradient(left,#5f8cb0,#4a7496);background-image:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/shared/noise-2.png),-o-linear-gradient(left,#5f8cb0,#4a7496);background-image:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/shared/noise-2.png),-ms-linear-gradient(left,#5f8cb0,#4a7496);background-image:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/shared/noise-2.png),linear-gradient(left,#5f8cb0,#4a7496);background-position:50% 50%;position:absolute;right:0;top:0;margin:-1px 0 0;-webkit-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;-webkit-box-shadow:inset 0 0 0 1px rgba(255,255,255,.1),inset 1px 0 0 rgba(255,255,255,.05),0 1px 3px rgba(0,0,0,.15),-2px 0 2px rgba(0,0,0,.1);-moz-box-shadow:inset 0 0 0 1px rgba(255,255,255,.1),inset 1px 0 0 rgba(255,255,255,.05),0 1px 3px rgba(0,0,0,.15),-2px 0 2px rgba(0,0,0,.1);box-shadow:inset 0 0 0 1px rgba(255,255,255,.1),inset 1px 0 0 rgba(255,255,255,.05),0 1px 3px rgba(0,0,0,.15),-2px 0 2px rgba(0,0,0,.1);border:1px solid #1c5380}.media-bar ul{position:relative;min-height:102px;padding:0 0 1px;list-style:none;border-bottom:1px solid rgba(255,255,255,.12)}.media-bar li{position:relative;text-align:center;height:70px;margin:0 0 1px}.media-bar li strong b{display:none}.media-bar li a{display:block}.media-bar li a b,.media-bar li a i{display:block;height:100%;width:100%;position:absolute;top:0;left:0}.media-bar li a:hover{background-color:rgba(255,255,255,.1)}.media-bar li a:active{background-color:#1c5380;background-color:rgba(6,54,95,.35);-webkit-box-shadow:inset 0 0 1px rgba(6,54,95,.8);-moz-box-shadow:inset 0 0 1px rgba(6,54,95,.8);box-shadow:inset 0 0 1px rgba(6,54,95,.8)}.media-bar li.comment-control a,.media-bar li.like-control a,.media-bar li.embed-control a{width:100%;height:100%;position:absolute;left:0;top:0;text-indent:-9999em}.media-bar .count-badge{position:relative;z-index:25;display:inline-block;margin:44px auto 0;padding:0 7px;min-width:8px;line-height:16px;background:#1c5380;pointer-events:none;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.1),inset 0 1px 1px rgba(0,0,0,.2);-moz-box-shadow:0 1px 0 rgba(255,255,255,.1),inset 0 1px 1px rgba(0,0,0,.2);box-shadow:0 1px 0 rgba(255,255,255,.1),inset 0 1px 1px rgba(0,0,0,.2);-webkit-border-radius:12px;border-radius:12px}.media-bar .like-button,.media-bar .comment-button,.media-bar .embed-control a{border-bottom:1px solid #1c5380}.media-bar .like-button b{background:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/p/photo-page-assets.png) no-repeat 5px 5px;opacity:1}.media-bar .like-button i{background:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/p/photo-page-assets.png) no-repeat -195px 5px;opacity:0}html.no-csstransitions .media-bar .like-button i{display:none}.media-bar .like-button:hover b{background-position:-95px 5px}.media-bar .liked-button b{opacity:0}html.no-csstransitions .media-bar .liked-button b{display:none}.media-bar .liked-button i{opacity:1}html.no-csstransitions .media-bar .liked-button i{display:block}.media-bar .comment-button{border-top:1px solid rgba(255,255,255,.12)}.media-bar .comment-button b{background:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/p/photo-page-assets.png) no-repeat 5px -96px}.media-bar .comment-button:hover b{background-position:-95px -96px}.media-bar .comment-button:active{padding-top:1px;margin-top:-1px;border-top-color:transparent}.media-bar .comment-button:active b{background-position:-95px -95px}.media-bar .embed-control{height:49px;margin-bottom:2px}.media-bar .embed-control a{border-top:1px solid rgba(255,255,255,.12);margin-top:1px}.media-bar .embed-control a b{background:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/p/photo-page-assets.png) no-repeat -95px -193px}.media-bar .embed-control a:hover b{background-position:-95px -193px}.media-bar .embed-control a:active{padding-top:1px;margin-top:0;border-top-color:transparent}.media-bar .embed-control a:active b{background-position:-195px -192px}.media-bar .bar-handle{display:block;height:612px;width:50px;position:absolute;left:0;top:0;cursor:default}.can-open-media .media-bar .bar-handle{cursor:pointer}.media-bar .bar-glyph{position:absolute;bottom:0;right:0;height:50px;width:50px;display:block;background:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/p/photo-page-assets.png) no-repeat 10px -290px}.media-user,.media-photo{-webkit-transition:margin-left .4s ease-out;-moz-transition:margin-left .4s ease-out;-o-transition:margin-left .4s ease-out;transition:margin-left .4s ease-out}.media-info{-webkit-transition:margin-right .4s ease-out;-moz-transition:margin-right .4s ease-out;-o-transition:margin-right .4s ease-out;transition:margin-right .4s ease-out}.media-bar li{-webkit-transition:height .2s ease-out;-moz-transition:height .2s ease-out;-o-transition:height .2s ease-out;transition:height .2s ease-out;-webkit-transition-delay:0;-moz-transition-delay:0;-o-transition-delay:0;transition-delay:0}.media-bar .count-badge{-webkit-transition:opacity .2s ease-in;-moz-transition:opacity .2s ease-in;-o-transition:opacity .2s ease-in;transition:opacity .2s ease-in}.no-likes .like-control,.no-comments .comment-control{height:49px;-webkit-transition-delay:.1s;-moz-transition-delay:.1s;-o-transition-delay:.1s;transition-delay:.1s}.no-likes .like-control .count-badge,.no-comments .comment-control .count-badge{-moz-opacity:0;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";filter:alpha(opacity=0);opacity:0}.can-open-media .media-open .media-user,.can-open-media .media-open .media-photo{margin-left:-156px}.can-open-media .media-open .media-info{margin-right:-155px;-webkit-box-shadow:0 1px 3px rgba(0,0,0,.1);-moz-box-shadow:0 1px 3px rgba(0,0,0,.1);box-shadow:0 1px 3px rgba(0,0,0,.1)}.can-open-media .media-open .media-bar .like-control{height:50px;-webkit-transition-delay:.1s;-moz-transition-delay:.1s;-o-transition-delay:.1s;transition-delay:.1s}.can-open-media .media-open .media-bar .like-control .count-badge{-moz-opacity:0;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";filter:alpha(opacity=0);opacity:0}.can-open-media .media-open:not(.media-opened) .media-likes ul,.can-open-media .media-open:not(.media-opened) .media-comments ul,.can-open-media .media-open:not(.media-opened) .media-comments li,.can-open-media .media-open:not(.media-opened) .media-info form{-webkit-animation:fade-in .3s ease-out;-webkit-animation-fill-mode:backwards}.can-open-media .media-open .media-likes ul{-webkit-animation-delay:.1s}.can-open-media .media-open .media-comments ul{-webkit-animation-delay:.3s}.can-open-media .media-open .media-info form{-webkit-animation-delay:.6s}.can-open-media .media-open .few-comments form{-webkit-animation-delay:.4s}.media-open .media-comments li:nth-child(1){-webkit-animation-delay:.03s}.media-open .media-comments li:nth-child(2){-webkit-animation-delay:.06s}.media-open .media-comments li:nth-child(3){-webkit-animation-delay:.09s}.media-open .media-comments li:nth-child(4){-webkit-animation-delay:.12s}.media-open .media-comments li:nth-child(5){-webkit-animation-delay:.15s}.media-open .media-comments li:nth-child(6){-webkit-animation-delay:.18s}.media-open .media-comments li:nth-child(7){-webkit-animation-delay:.21s}.media-open .media-comments li:nth-child(8){-webkit-animation-delay:.24s}.media-open .media-comments li:nth-child(9){-webkit-animation-delay:.27s}.media-open .media-comments li:nth-child(10){-webkit-animation-delay:.3s}.media-open .media-comments li:nth-child(11){-webkit-animation-delay:.33s}.media-open .media-comments li:nth-child(12){-webkit-animation-delay:.36s}.i-like{display:block;width:81px;height:81px;position:absolute;right:0;top:0;margin:-17px -15px 0 0;background:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/p/glyph-heart-pop.png) no-repeat 50% 50%;-webkit-transform:scale(.5);-moz-transform:scale(.5);-o-transform:scale(.5);transform:scale(.5);-moz-opacity:0;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";filter:alpha(opacity=0);opacity:0;pointer-events:none}.no-csstransitions .i-like{display:none}.i-like-pop{-webkit-animation:like-pop .3s ease-out 0;-moz-animation:like-pop .3s ease-out 0s;-o-animation:like-pop .3s ease-out 0;animation:like-pop .3s ease-out 0s}@-webkit-keyframes 'like-pop'{0%{-webkit-background-size:40px 40px;background-size:40px 40px;opacity:.5}60%{opacity:1}100%{-webkit-background-size:60px 60px;background-size:60px 60px;opacity:0}}@-moz-keyframes like-pop{0%{-webkit-background-size:40px 40px;background-size:40px 40px;opacity:.5}60%{opacity:1}100%{-webkit-background-size:60px 60px;background-size:60px 60px;opacity:0}}@-ms-keyframes like-pop{0%{-webkit-background-size:40px 40px;background-size:40px 40px;opacity:.5}60%{opacity:1}100%{-webkit-background-size:60px 60px;background-size:60px 60px;opacity:0}}@-o-keyframes like-pop{0%{-webkit-background-size:40px 40px;background-size:40px 40px;opacity:.5}60%{opacity:1}100%{-webkit-background-size:60px 60px;background-size:60px 60px;opacity:0}}@keyframes 'like-pop'{0%{-webkit-background-size:40px 40px;background-size:40px 40px;opacity:.5}60%{opacity:1}100%{-webkit-background-size:60px 60px;background-size:60px 60px;opacity:0}}.media-photo .i-like-big{display:block;width:612px;height:612px;position:absolute;right:0;top:0;background:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/p/glyph-heart-pop-big.png) no-repeat 50% 50%;z-index:100;-webkit-transform:scale(.5);-moz-transform:scale(.5);-o-transform:scale(.5);transform:scale(.5);-moz-opacity:0;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";filter:alpha(opacity=0);opacity:0;pointer-events:none}.i-like-big-pop{-webkit-animation:like-big-pop .3s ease-out;-moz-animation:like-big-pop .3s ease-out;-o-animation:like-big-pop .3s ease-out;animation:like-big-pop .3s ease-out}@-webkit-keyframes 'like-big-pop'{0%{-webkit-transform:scale(.5);-moz-transform:scale(.5);-o-transform:scale(.5);transform:scale(.5);opacity:.25}50%{opacity:.75}100%{-webkit-transform:scale(1);-moz-transform:scale(1);-o-transform:scale(1);transform:scale(1);opacity:0}}@-moz-keyframes like-big-pop{0%{-webkit-transform:scale(.5);-moz-transform:scale(.5);-o-transform:scale(.5);transform:scale(.5);opacity:.25}50%{opacity:.75}100%{-webkit-transform:scale(1);-moz-transform:scale(1);-o-transform:scale(1);transform:scale(1);opacity:0}}@-ms-keyframes like-big-pop{0%{-webkit-transform:scale(.5);-moz-transform:scale(.5);-o-transform:scale(.5);transform:scale(.5);opacity:.25}50%{opacity:.75}100%{-webkit-transform:scale(1);-moz-transform:scale(1);-o-transform:scale(1);transform:scale(1);opacity:0}}@-o-keyframes like-big-pop{0%{-webkit-transform:scale(.5);-moz-transform:scale(.5);-o-transform:scale(.5);transform:scale(.5);opacity:.25}50%{opacity:.75}100%{-webkit-transform:scale(1);-moz-transform:scale(1);-o-transform:scale(1);transform:scale(1);opacity:0}}@keyframes 'like-big-pop'{0%{-webkit-transform:scale(.5);-moz-transform:scale(.5);-o-transform:scale(.5);transform:scale(.5);opacity:.25}50%{opacity:.75}100%{-webkit-transform:scale(1);-moz-transform:scale(1);-o-transform:scale(1);transform:scale(1);opacity:0}}.media-user{position:relative;height:40px;padding:20px 0 0 45px}.media-user h2{padding-left:0;z-index:15}.media-user h2,.media-user h2 a{position:relative;float:left;display:inline}.media-user h2 a{padding:0 12px 0 8px;margin:0}.user-tooltip-open .media-user h2 a:hover,.user-tooltip-open .media-user h2 a:active{background:0 0;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.user-tooltip-open .media-user h2 b{-moz-opacity:0;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";filter:alpha(opacity=0);opacity:0}.user-tooltip-open .user-tooltip{pointer-events:all;-moz-opacity:1;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";filter:alpha(opacity=100);opacity:1}.user-avatar{position:absolute;left:0;top:20px}.user-avatar img{visibility:hidden!important}.user-tooltip{position:absolute;top:20px;left:45px;padding:50px 1px 5px 3px;min-width:249px;max-width:319px;z-index:14;background:#fff;background:rgba(255,255,255,.2)url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/bg/tooltip-white.png);-webkit-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 5px rgba(0,0,0,.15),0 0 0 1px rgba(0,0,0,.1),inset 0 1px 0 rgba(255,255,255,.95);-moz-box-shadow:0 1px 5px rgba(0,0,0,.15),0 0 0 1px rgba(0,0,0,.1),inset 0 1px 0 rgba(255,255,255,.95);box-shadow:0 1px 5px rgba(0,0,0,.15),0 0 0 1px rgba(0,0,0,.1),inset 0 1px 0 rgba(255,255,255,.95);-moz-opacity:0;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";filter:alpha(opacity=0);opacity:0;pointer-events:none;word-wrap:break-word;-webkit-transition:opacity .2s ease-out;-moz-transition:opacity .2s ease-out;-o-transition:opacity .2s ease-out;transition:opacity .2s ease-out}.user-tooltip ul{list-style:none;padding:0}.user-tooltip li{float:left;display:inline;margin-right:10px}.user-tooltip .user-bio{padding-right:10px}.user-longname h2{margin-right:60px;padding:0 8px}.user-longname .user-tooltip{min-width:289px;max-width:329px}.user-longername h2{margin-right:60px}.user-longername .user-tooltip{min-width:309px;max-width:349px}.user-tooltip-inner{border-top:1px dotted #e6e6e6;margin:-10px 1px 0 0;padding:9px 8px 0}#following{position:absolute;right:10px;top:9px}#follow-indicator{position:relative;display:inline-block;top:-4px;right:-4px;width:30px}.media-info h2{font-size:14px;line-height:30px;margin:0;color:#3f729b}.media-info .likes-notice{color:#3f729b;font-weight:700}.media-info .tooltip{font-size:12px}.media-caption{font-size:14px;text-shadow:0 1px 1px rgba(0,0,0,.8)}.caption-location{color:#999}.media-comments{color:#444}.media-comments .failure-message{color:#000}.media-comments time{font-weight:700}.comment{font-size:14px;line-height:16px}.comment-meta{color:#bbb;font-size:12px}.cta-addcomment{color:#999}.media-bar .comment-count,.media-bar .like-count{font-size:12px;line-height:16px}.media-bar .comment-count strong,.media-bar .like-count strong{font-size:12px}.media-bar .comment-count,.media-bar .like-count,.media-bar .like-button{color:#fff}.media-user h2{line-height:40px;font-size:19px;color:#444}.media-user h2 a{text-decoration:none;color:inherit}.media-user h2 a:hover{text-decoration:none;color:#222}.user-longname h2{font-size:16px}.user-tooltip p,.user-tooltip ul{margin:0 0 5px;line-height:16px}.user-tooltip ul{color:#999;font-weight:700}.user-tooltip-open h2 a{color:#222}.modal-media .media-photo{background:#000}.modal-media .media-photo,.modal-media .media-photo .img,.modal-media .media-photo .Image{-webkit-border-radius:3px 0 0 3px;border-radius:3px 0 0 3px}.modal-media .media-photo .img,.modal-media .media-photo .Image{-webkit-box-shadow:inset -1px 0 0 0 rgba(6,54,95,.6),inset 0 0 0 1px rgba(255,255,255,.1);-moz-box-shadow:inset -1px 0 0 0 rgba(6,54,95,.6),inset 0 0 0 1px rgba(255,255,255,.1);box-shadow:inset -1px 0 0 0 rgba(6,54,95,.6),inset 0 0 0 1px rgba(255,255,255,.1)}.modal-media .media-info{height:612px;padding-right:51px}.modal-media .media-bar{border-color:#000;border-color:rgba(0,0,0,.8);border-left-color:#000;height:612px;-webkit-background-clip:padding-box;background-clip:padding-box;-webkit-border-radius:0 3px 3px 0;border-radius:0 3px 3px 0}.modal-meta{position:relative;margin:0 -110px}.modal-meta .media-caption{padding:25px 0 0}.modal-meta .caption-text{padding-right:.5em}.modal-meta .caption-location{background:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/p/photo-page-assets.png) no-repeat 1px -596px;display:inline-block}.modal-meta .caption-location strong{position:relative;top:1px}.modal-meta .caption-location>span{visibility:hidden;width:14px;display:inline-block}.modal-meta .dismiss{display:none}.modal-controls{padding:0;margin:0;list-style:none}.modal-controls li{position:absolute;top:20px;width:30px;height:30px}.modal-controls a{position:relative;display:block;width:100%;height:100%;background:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/shared/glyph-assets.png) no-repeat 1px -1200px;opacity:.75}.modal-controls a:hover{opacity:1}.modal-controls .nav-left{left:0;margin-left:-47px}.modal-controls .nav-right{right:0;margin-right:-47px}.modal-controls .nav-right a{background-position:1px -1100px}.modal-meta{color:#fff;text-align:center}.modal-meta .caption-location{-webkit-font-smoothing:antialiased;color:#ffeaba}@media only screen and (-webkit-min-device-pixel-ratio:2),only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (min--moz-device-pixel-ratio:2),only screen and (-o-min-device-pixel-ratio:2/1),only screen and (min-device-pixel-ratio:2),only screen and (min-resolution:192dpi),only screen and (min-resolution:2dppx){.media-user-private strong,.media-caption .caption-location,.modal-meta .caption-location,.media-likes h2,.media-bar .like-button b,.media-bar .like-button i,.media-bar .comment-button b,.media-bar .embed-control a b,.media-bar .bar-glyph{background-image:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/p/photo-page-assets@2x.png);background-size:300px 700px}.modal-controls a{background-image:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/shared/glyph-assets@2x.png);background-size:150px 1600px}}.modal-media{position:fixed;left:0;top:0;height:100%;width:100%!important;z-index:100;background-color:rgba(0,0,0,.8);overflow-x:visible;overflow-y:scroll}.modal-media .media-info{border:none;top:0}.page-profile-welcome,.page-profile-welcome .compWrapper{min-width:320px}.page-profile-welcome .feed-header .compContainer{margin-left:0}.page-profile-welcome .feed-header .compContainerLoading{background:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/profile/welcome-bg.jpg) no-repeat 50% 100%;-webkit-box-shadow:inset 0 0 0 1px rgba(255,255,255,.1),0 0 25px rgba(0,0,0,.6);-moz-box-shadow:inset 0 0 0 1px rgba(255,255,255,.1),0 0 25px rgba(0,0,0,.6);box-shadow:inset 0 0 0 1px rgba(255,255,255,.1),0 0 25px rgba(0,0,0,.6)}.page-profile-welcome .feed-header h1{position:absolute;top:50%;left:0;width:100%;margin:-35px 0 0}.page-profile-welcome .feed-header p{position:absolute;top:50%;left:0;width:100%;margin:15px 0 0}.profile-qa{padding:40px 15% 80px}.profile-qa h2{margin:35px 0 15px}.page-profile-welcome .feed-header{text-align:center;color:#fff;text-shadow:0 1px 5px rgba(0,0,0,.5)}.page-profile-welcome .feed-header h1{font-size:45px}.page-profile-welcome .feed-header p{font-size:23px}.profile-soon{color:#888;text-align:center;padding-bottom:39px;margin-bottom:60px;border-bottom:1px solid #aaa}.profile-soon h1{margin:0 0 10px}.profile-qa{font-size:16px;line-height:25px}.profile-qa h2{font-size:23px}@media only screen and (-webkit-min-device-pixel-ratio:2),only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (min--moz-device-pixel-ratio:2),only screen and (-o-min-device-pixel-ratio:2/1),only screen and (min-device-pixel-ratio:2),only screen and (min-resolution:192dpi),only screen and (min-resolution:2dppx){.status-private strong,.status-no-photos .no-photos-message{background-image:url(//d36xtkk24g8jdx.cloudfront.net/bluebar/c721923/images/profile/profile-page-assets-2@2x.png);-webkit-background-size:200px 400px;background-size:200px 400px}}@media screen and (max-width:1052px){.feed-header{padding:16px 0 0}}@media screen and (max-width:1040px){.feed-header{padding:8px 0 0}}@media screen and (max-width:1024px){.feed-header{padding:0}.compWrapper .compContainer,.compContainer .compPhoto1,.compContainer .compPhoto1 a,.compContainer .compPhoto1 .Image,.compContainer .compPhoto1 .compPhotoShadow,.compContainer .compPhoto6,.compContainer .compPhoto6 a,.compContainer .compPhoto6 .Image,.compContainer .compPhoto6 .compPhotoShadow{-webkit-border-radius:0;border-radius:0}}@media screen and (max-width:880px){.profile-qa{padding:40px 10% 80px}}@media screen and (max-width:600px){.page-profile-welcome .feed-header{text-align:center;color:#fff;text-shadow:0 1px 5px rgba(0,0,0,.5)}.page-profile-welcome .feed-header h1{font-size:25px;line-height:20px;margin-top:-20px}.page-profile-welcome .feed-header p{font-size:14px;line-height:20px;margin-top:5px}.profile-qa{padding:0 3% 20px}.profile-soon{padding-top:20px;padding-bottom:19px}.profile-soon h1{font-size:27px;line-height:25px}}@media screen and (max-width:480px){.profile-soon h1{font-size:23px}}</style><meta property="og:type" content="profile"><meta property="og:image" content="http://images.ak.instagram.com/profiles/anonymousUser.jpg"><meta property="og:title" content="clorox on Instagram"><meta property="og:url" content="http://instagram.com/clorox"></head>
41
+ <body class="page-profile can-open-media "><div class="root page-profile can-open-media noScroll" data-reactid=".0"><div class="page" data-reactid=".0.0"><header class="top-bar top-bar-new" data-reactid=".0.0.0"><span data-reactid=".0.0.0.0"></span><div class="top-bar-wrapper" data-reactid=".0.0.0.1"><h1 class="logo" data-reactid=".0.0.0.1.0"><a href="/" data-reactid=".0.0.0.1.0.0">Instagram</a></h1><div class="top-bar-left" data-reactid=".0.0.0.1.1"><ul class="top-bar-actions" data-reactid=".0.0.0.1.1.0"><li data-reactid=".0.0.0.1.1.0.0"><a class="top-bar-home" href="/" label="Home" data-reactid=".0.0.0.1.1.0.0.0"><i data-reactid=".0.0.0.1.1.0.0.0.0"></i></a></li></ul><ul class="bluebar-menu-items" data-reactid=".0.0.0.1.1.1"></ul></div><div class="top-bar-right account-state" id="top_bar_right" data-reactid=".0.0.0.1.2"><ul class="top-bar-actions" data-reactid=".0.0.0.1.2.0"><span data-reactid=".0.0.0.1.2.0.0"></span><li id="link_profile" class="link-signin" data-reactid=".0.0.0.1.2.0.1"><a href="javascript:;" class="loginLink" data-reactid=".0.0.0.1.2.0.1.0"><i data-reactid=".0.0.0.1.2.0.1.0.0"></i><strong data-reactid=".0.0.0.1.2.0.1.0.1"><span data-reactid=".0.0.0.1.2.0.1.0.1.0"><span data-reactid=".0.0.0.1.2.0.1.0.1.0.0">Log in</span></span></strong></a></li></ul><div data-reactid=".0.0.0.1.2.1"></div></div></div></header><div class="main" data-reactid=".0.0.1"><header class="feed-header" role="banner" data-reactid=".0.0.1.1"><div class="compWrapper" data-reactid=".0.0.1.1.$userheader343273354:0"><div class="compInnerWrapper" data-reactid=".0.0.1.1.$userheader343273354:0.0"><div class="compContainer" data-reactid=".0.0.1.1.$userheader343273354:0.0.0"><div class="compPhoto compPhoto1" data-reactid=".0.0.1.1.$userheader343273354:0.0.0.0"><a aria-haspopup="true" target="_blank" class="compFrontside compFrontside" href="http://instagram.com/p/gJDiAHNG5M/" role="img" aria-label="Happy Halloween!" data-reactid=".0.0.1.1.$userheader343273354:0.0.0.0.0"><div class="Image iLoaded" style="width:100%;height:100%;background-image:url(http://scontent-b.cdninstagram.com/hphotos-xaf1/t51.2885-15/1169348_1428649040683520_1366416087_n.jpg);" src="http://scontent-b.cdninstagram.com/hphotos-xaf1/t51.2885-15/1169348_1428649040683520_1366416087_n.jpg" alt="" data-reactid=".0.0.1.1.$userheader343273354:0.0.0.0.0.0"></div><b class="compPhotoShadow" data-reactid=".0.0.1.1.$userheader343273354:0.0.0.0.0.1"></b></a><a aria-haspopup="true" target="_blank" class="compFlipside compFlipside" href="http://instagram.com/p/XvCqdwNG1b/" role="img" aria-label="somethings not matching up with our window word play! visit icktionary.com to find out which icky words match its messy definition! #icktionary" data-reactid=".0.0.1.1.$userheader343273354:0.0.0.0.1"><div class="Image iLoaded" style="width:100%;height:100%;background-image:url(http://scontent-b.cdninstagram.com/hphotos-xpf1/outbound-distilleryimage11/t0.0-17/OBPTH/235ec57c9e2811e2a65722000a1fbb45_7.jpg);" src="http://scontent-b.cdninstagram.com/hphotos-xpf1/outbound-distilleryimage11/t0.0-17/OBPTH/235ec57c9e2811e2a65722000a1fbb45_7.jpg" alt="" data-reactid=".0.0.1.1.$userheader343273354:0.0.0.0.1.0"></div><b class="compPhotoShadow" data-reactid=".0.0.1.1.$userheader343273354:0.0.0.0.1.1"></b></a></div><div class="compPhoto compPhoto2" data-reactid=".0.0.1.1.$userheader343273354:0.0.0.1"><a aria-haspopup="true" target="_blank" class="compFrontside compFrontside" href="http://instagram.com/p/X-eHa7NG3x/" role="img" aria-label="We're here with #radioalice. There's a prize wheel. #icktionary" data-reactid=".0.0.1.1.$userheader343273354:0.0.0.1.0"><div class="Image iLoaded" style="width:100%;height:100%;background-image:url(http://scontent-a.cdninstagram.com/hphotos-xpa1/outbound-distilleryimage9/t0.0-17/OBPTH/863d6842a2dd11e293c522000a9f4d92_7.jpg);" src="http://scontent-a.cdninstagram.com/hphotos-xpa1/outbound-distilleryimage9/t0.0-17/OBPTH/863d6842a2dd11e293c522000a9f4d92_7.jpg" alt="" data-reactid=".0.0.1.1.$userheader343273354:0.0.0.1.0.0"></div><b class="compPhotoShadow" data-reactid=".0.0.1.1.$userheader343273354:0.0.0.1.0.1"></b></a><a aria-haspopup="true" target="_blank" class="compFlipside compFlipside" href="http://instagram.com/p/Xu2HeqtG0w/" role="img" aria-label="Bubbles and silly putty can be pretty icky! Parents, share your messy stories at icktionary.com! #icktionary" data-reactid=".0.0.1.1.$userheader343273354:0.0.0.1.1"><div class="Image iLoaded" style="width:100%;height:100%;background-image:url(http://scontent-b.cdninstagram.com/hphotos-xap1/outbound-distilleryimage8/t0.0-17/OBPTH/d2891cb09e1811e28b8322000a1f92ef_7.jpg);" src="http://scontent-b.cdninstagram.com/hphotos-xap1/outbound-distilleryimage8/t0.0-17/OBPTH/d2891cb09e1811e28b8322000a1f92ef_7.jpg" alt="" data-reactid=".0.0.1.1.$userheader343273354:0.0.0.1.1.0"></div><b class="compPhotoShadow" data-reactid=".0.0.1.1.$userheader343273354:0.0.0.1.1.1"></b></a></div><div class="compPhoto compPhoto3" data-reactid=".0.0.1.1.$userheader343273354:0.0.0.2"><a aria-haspopup="true" target="_blank" class="compFrontside compFrontside" href="http://instagram.com/p/X-VPZ1NG8v/" role="img" aria-label="Hanging out with the #icktionary team in SF!" data-reactid=".0.0.1.1.$userheader343273354:0.0.0.2.0"><div class="Image iLoaded" style="width:100%;height:100%;background-image:url(http://scontent-a.cdninstagram.com/hphotos-xfa1/outbound-distilleryimage7/t0.0-17/OBPTH/b0ba9ee2a2d211e2904b22000a1f8c1d_7.jpg);" src="http://scontent-a.cdninstagram.com/hphotos-xfa1/outbound-distilleryimage7/t0.0-17/OBPTH/b0ba9ee2a2d211e2904b22000a1f8c1d_7.jpg" alt="" data-reactid=".0.0.1.1.$userheader343273354:0.0.0.2.0.0"></div><b class="compPhotoShadow" data-reactid=".0.0.1.1.$userheader343273354:0.0.0.2.0.1"></b></a><a aria-haspopup="true" target="_blank" class="compFlipside compFlipside" href="http://instagram.com/p/Xu1kvntGz3/" role="img" aria-label="I spy an ick! Parents come get messy at the #icktionary truck in Nashville! Visit icktionary.com, your wiki for icky, and share your mess!" data-reactid=".0.0.1.1.$userheader343273354:0.0.0.2.1"><div class="Image iLoaded" style="width:100%;height:100%;background-image:url(http://scontent-b.cdninstagram.com/hphotos-xfp1/outbound-distilleryimage11/t0.0-17/OBPTH/28eea8829e1811e2851d22000a1fb71f_7.jpg);" src="http://scontent-b.cdninstagram.com/hphotos-xfp1/outbound-distilleryimage11/t0.0-17/OBPTH/28eea8829e1811e2851d22000a1fb71f_7.jpg" alt="" data-reactid=".0.0.1.1.$userheader343273354:0.0.0.2.1.0"></div><b class="compPhotoShadow" data-reactid=".0.0.1.1.$userheader343273354:0.0.0.2.1.1"></b></a></div><div class="compPhoto compPhoto4" data-reactid=".0.0.1.1.$userheader343273354:0.0.0.3"><a aria-haspopup="true" target="_blank" class="compFrontside compFrontside" href="http://instagram.com/p/X-TBL-tG6K/" role="img" aria-label="SF! We're hanging out on Powell &amp; Geary with our #icktionary truck. Come say hi!" data-reactid=".0.0.1.1.$userheader343273354:0.0.0.3.0"><div class="Image iLoaded" style="width:100%;height:100%;background-image:url(http://scontent-a.cdninstagram.com/hphotos-xpa1/outbound-distilleryimage6/t0.0-17/OBPTH/fa4f30caa2cf11e2837022000a1fa4bb_7.jpg);" src="http://scontent-a.cdninstagram.com/hphotos-xpa1/outbound-distilleryimage6/t0.0-17/OBPTH/fa4f30caa2cf11e2837022000a1fa4bb_7.jpg" alt="" data-reactid=".0.0.1.1.$userheader343273354:0.0.0.3.0.0"></div><b class="compPhotoShadow" data-reactid=".0.0.1.1.$userheader343273354:0.0.0.3.0.1"></b></a><a aria-haspopup="true" target="_blank" class="compFlipside compFlipside" href="http://instagram.com/p/Xu1FmetGzS/" role="img" aria-label="Hi parents! What's your favorite #icktionary word? Learn the new language of mess at icktionary.com." data-reactid=".0.0.1.1.$userheader343273354:0.0.0.3.1"><div class="Image iLoaded" style="width:100%;height:100%;background-image:url(http://scontent-b.cdninstagram.com/hphotos-xfp1/outbound-distilleryimage6/t0.0-17/OBPTH/90ddea6c9e1711e28d2722000a1f8fa0_7.jpg);" src="http://scontent-b.cdninstagram.com/hphotos-xfp1/outbound-distilleryimage6/t0.0-17/OBPTH/90ddea6c9e1711e28d2722000a1f8fa0_7.jpg" alt="" data-reactid=".0.0.1.1.$userheader343273354:0.0.0.3.1.0"></div><b class="compPhotoShadow" data-reactid=".0.0.1.1.$userheader343273354:0.0.0.3.1.1"></b></a></div><div class="compPhoto compPhoto5" data-reactid=".0.0.1.1.$userheader343273354:0.0.0.4"><a aria-haspopup="true" target="_blank" class="compFrontside compFrontside" href="http://instagram.com/p/XvDzddtG20/" role="img" aria-label="the #icktionary window word play game is heating up in Nashville! visit icktionary.com and show us what you got!" data-reactid=".0.0.1.1.$userheader343273354:0.0.0.4.0"><div class="Image iLoaded" style="width:100%;height:100%;background-image:url(http://scontent-b.cdninstagram.com/hphotos-xpf1/outbound-distilleryimage0/t0.0-17/OBPTH/87c9bb4c9e2911e28a7322000a1fa414_7.jpg);" src="http://scontent-b.cdninstagram.com/hphotos-xpf1/outbound-distilleryimage0/t0.0-17/OBPTH/87c9bb4c9e2911e28a7322000a1fa414_7.jpg" alt="" data-reactid=".0.0.1.1.$userheader343273354:0.0.0.4.0.0"></div><b class="compPhotoShadow" data-reactid=".0.0.1.1.$userheader343273354:0.0.0.4.0.1"></b></a><a aria-haspopup="true" target="_blank" class="compFlipside compFlipside" href="http://instagram.com/p/Xu0ryTNGyr/" role="img" aria-label="Hey Nashville! Come play words with your friend Clorox at the #icktionary truck! Next stop ... San Fran!" data-reactid=".0.0.1.1.$userheader343273354:0.0.0.4.1"><div class="Image iLoaded" style="width:100%;height:100%;background-image:url(http://scontent-b.cdninstagram.com/hphotos-xfp1/outbound-distilleryimage3/t0.0-17/OBPTH/12d0e7be9e1711e284c522000aa801df_7.jpg);" src="http://scontent-b.cdninstagram.com/hphotos-xfp1/outbound-distilleryimage3/t0.0-17/OBPTH/12d0e7be9e1711e284c522000aa801df_7.jpg" alt="" data-reactid=".0.0.1.1.$userheader343273354:0.0.0.4.1.0"></div><b class="compPhotoShadow" data-reactid=".0.0.1.1.$userheader343273354:0.0.0.4.1.1"></b></a></div><div class="compPhoto compPhoto6" data-reactid=".0.0.1.1.$userheader343273354:0.0.0.5"><a aria-haspopup="true" target="_blank" class="compFrontside compFrontside" href="http://instagram.com/p/X-Ukk4NG79/" role="img" aria-label="@howtobeadad explains the process of coming up with #icktionary words!" data-reactid=".0.0.1.1.$userheader343273354:0.0.0.5.0"><div class="Image iLoaded" style="width:100%;height:100%;background-image:url(http://scontent-a.cdninstagram.com/hphotos-xfa1/outbound-distilleryimage9/t0.0-17/OBPTH/df9b81b4a2d111e2a23322000aaa04c3_7.jpg);" src="http://scontent-a.cdninstagram.com/hphotos-xfa1/outbound-distilleryimage9/t0.0-17/OBPTH/df9b81b4a2d111e2a23322000aaa04c3_7.jpg" alt="" data-reactid=".0.0.1.1.$userheader343273354:0.0.0.5.0.0"></div><b class="compPhotoShadow" data-reactid=".0.0.1.1.$userheader343273354:0.0.0.5.0.1"></b></a><a aria-haspopup="true" target="_blank" class="compFlipside compFlipside" href="http://instagram.com/p/Xu0eOBtGyX/" role="img" aria-label="Some serious artistry at the Clorox #icktionary truck! Learn the new language of mess at icktionary.com !" data-reactid=".0.0.1.1.$userheader343273354:0.0.0.5.1"><div class="Image iLoaded" style="width:100%;height:100%;background-image:url(http://scontent-a.cdninstagram.com/hphotos-xfa1/outbound-distilleryimage11/t0.0-17/OBPTH/d091e9f29e1611e2bfae22000a9e0782_7.jpg);" src="http://scontent-a.cdninstagram.com/hphotos-xfa1/outbound-distilleryimage11/t0.0-17/OBPTH/d091e9f29e1611e2bfae22000a9e0782_7.jpg" alt="" data-reactid=".0.0.1.1.$userheader343273354:0.0.0.5.1.0"></div><b class="compPhotoShadow" data-reactid=".0.0.1.1.$userheader343273354:0.0.0.5.1.1"></b></a></div><div class="compPhoto compPhoto7" data-reactid=".0.0.1.1.$userheader343273354:0.0.0.6"><a aria-haspopup="true" target="_blank" class="compFrontside compFrontside" href="http://instagram.com/p/Xu30pStG3C/" role="img" aria-label="Introducing #Icktionary! Your new language for mess. Ever had a &quot;germs of endearment&quot; moment?" data-reactid=".0.0.1.1.$userheader343273354:0.0.0.6.0"><div class="Image iLoaded" style="width:100%;height:100%;background-image:url(http://scontent-b.cdninstagram.com/hphotos-xpf1/outbound-distilleryimage10/t0.0-17/OBPTH/e792d7ca9e1a11e296ed22000aaa0a30_7.jpg);" src="http://scontent-b.cdninstagram.com/hphotos-xpf1/outbound-distilleryimage10/t0.0-17/OBPTH/e792d7ca9e1a11e296ed22000aaa0a30_7.jpg" alt="" data-reactid=".0.0.1.1.$userheader343273354:0.0.0.6.0.0"></div><b class="compPhotoShadow" data-reactid=".0.0.1.1.$userheader343273354:0.0.0.6.0.1"></b></a><a aria-haspopup="true" target="_blank" class="compFlipside compFlipside" href="http://instagram.com/p/Xu0SI0tGyJ/" role="img" aria-label="Window Word Play at the Clorox #icktionary truck in Nashville!" data-reactid=".0.0.1.1.$userheader343273354:0.0.0.6.1"><div class="Image iLoaded" style="width:100%;height:100%;background-image:url(http://scontent-b.cdninstagram.com/hphotos-xfp1/outbound-distilleryimage9/t0.0-17/OBPTH/9593751e9e1611e2b95c22000a1fb82f_7.jpg);" src="http://scontent-b.cdninstagram.com/hphotos-xfp1/outbound-distilleryimage9/t0.0-17/OBPTH/9593751e9e1611e2b95c22000a1fb82f_7.jpg" alt="" data-reactid=".0.0.1.1.$userheader343273354:0.0.0.6.1.0"></div><b class="compPhotoShadow" data-reactid=".0.0.1.1.$userheader343273354:0.0.0.6.1.1"></b></a></div></div></div></div></header><div class="profile-user" data-reactid=".0.0.1.2"><div data-reactid=".0.0.1.2.$userprofile343273354:0"><div class="profile-options has-dropdown" data-reactid=".0.0.1.2.$userprofile343273354:0.0"><h1 data-reactid=".0.0.1.2.$userprofile343273354:0.0.0"><a href="javascript:;" data-reactid=".0.0.1.2.$userprofile343273354:0.0.0.0"><span data-reactid=".0.0.1.2.$userprofile343273354:0.0.0.0.0">clorox</span><b data-reactid=".0.0.1.2.$userprofile343273354:0.0.0.0.1"></b></a></h1><div class="dropdown" data-reactid=".0.0.1.2.$userprofile343273354:0.0.1"><i data-reactid=".0.0.1.2.$userprofile343273354:0.0.1.0"></i><ul data-reactid=".0.0.1.2.$userprofile343273354:0.0.1.1"><li class="negative" data-reactid=".0.0.1.2.$userprofile343273354:0.0.1.1.0"><a href="https://www.facebook.com/help/contact/?id=160831917393262" data-reactid=".0.0.1.2.$userprofile343273354:0.0.1.1.0.0">Report User</a></li></ul></div></div><span class="avatar-container" data-reactid=".0.0.1.2.$userprofile343273354:0.1"><span class="img img-inset user-avatar" data-reactid=".0.0.1.2.$userprofile343273354:0.1.0"><span class="img img-inset user-avatar" style="background-image:url(http://images.ak.instagram.com/profiles/anonymousUser.jpg);;" data-reactid=".0.0.1.2.$userprofile343273354:0.1.0.0"><img src="http://images.ak.instagram.com/profiles/anonymousUser.jpg" data-reactid=".0.0.1.2.$userprofile343273354:0.1.0.0.0"><b data-reactid=".0.0.1.2.$userprofile343273354:0.1.0.0.1"></b></span></span><span data-reactid=".0.0.1.2.$userprofile343273354:0.1.1"><span data-reactid=".0.0.1.2.$userprofile343273354:0.1.1.0"></span><span class="FollowButtonContainer" data-reactid=".0.0.1.2.$userprofile343273354:0.1.1.1"><span class="followButtonIndicator" style="display:none;" data-reactid=".0.0.1.2.$userprofile343273354:0.1.1.1.0"><div class="Spinner" data-reactid=".0.0.1.2.$userprofile343273354:0.1.1.1.0.0"></div></span><span class="followButtonActions" data-reactid=".0.0.1.2.$userprofile343273354:0.1.1.1.1"><a class="bbBaseButton Button FollowButton followButtonFollow" role="button" href="javascript:;" data-reactid=".0.0.1.2.$userprofile343273354:0.1.1.1.1.0"><span data-reactid=".0.0.1.2.$userprofile343273354:0.1.1.1.1.0.0"><span data-reactid=".0.0.1.2.$userprofile343273354:0.1.1.1.1.0.0.0">Follow</span></span></a></span></span></span></span><p class="user-bio" data-reactid=".0.0.1.2.$userprofile343273354:0.2"><strong data-reactid=".0.0.1.2.$userprofile343273354:0.2.0">Clorox Ick-tionary</strong><span data-reactid=".0.0.1.2.$userprofile343273354:0.2.1"> The sticky, icky, dictionary of hilarious mess. Brought to you by your friends at Clorox.</span><span data-reactid=".0.0.1.2.$userprofile343273354:0.2.2"><span data-reactid=".0.0.1.2.$userprofile343273354:0.2.2.0"> </span><a rel="nofollow me" href="http://www.clorox.com/laugh/ick-tionary" target="_blank" data-reactid=".0.0.1.2.$userprofile343273354:0.2.2.1">http://www.clorox.com/laugh/ick-tionary</a></span></p><ul class="user-stats" data-reactid=".0.0.1.2.$userprofile343273354:0.3"><li data-reactid=".0.0.1.2.$userprofile343273354:0.3.0"><span data-reactid=".0.0.1.2.$userprofile343273354:0.3.0.0"><span data-reactid=".0.0.1.2.$userprofile343273354:0.3.0.0.0"></span><span class="number-stat" data-reactid=".0.0.1.2.$userprofile343273354:0.3.0.0.1">14</span><span data-reactid=".0.0.1.2.$userprofile343273354:0.3.0.0.2"> posts</span></span></li><li data-reactid=".0.0.1.2.$userprofile343273354:0.3.1"><span data-reactid=".0.0.1.2.$userprofile343273354:0.3.1.0"><span data-reactid=".0.0.1.2.$userprofile343273354:0.3.1.0.0"></span><span class="number-stat" data-reactid=".0.0.1.2.$userprofile343273354:0.3.1.0.1">25</span><span data-reactid=".0.0.1.2.$userprofile343273354:0.3.1.0.2"> followers</span></span></li><li data-reactid=".0.0.1.2.$userprofile343273354:0.3.2"><span data-reactid=".0.0.1.2.$userprofile343273354:0.3.2.0"><span data-reactid=".0.0.1.2.$userprofile343273354:0.3.2.0.0"></span><span class="number-stat" data-reactid=".0.0.1.2.$userprofile343273354:0.3.2.0.1">0</span><span data-reactid=".0.0.1.2.$userprofile343273354:0.3.2.0.2"> following</span></span></li></ul></div></div><section class="feed-photos" role="main" data-reactid=".0.0.1.3"><div data-reactid=".0.0.1.3.$userphotos343273354:0"><div class="photo-grid" data-reactid=".0.0.1.3.$userphotos343273354:0.0"><ul class="photo-feed" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0"><li class="photo" tabindex="0" role="img" aria-label="2 likes, 1 comments" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.0"><div class="photo-wrapper" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.0.0"><h3 data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.0.0.0"><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.0.0.0.0">October</span><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.0.0.0.1"> </span><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.0.0.0.2">2013</span></h3><a aria-haspopup="true" target="_blank" href="http://instagram.com/p/gJDiAHNG5M/" class="bg bg" tabindex="-1" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.0.0.1"></a><time class="photo-date" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.0.0.2"><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.0.0.2.0"><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.0.0.2.0.0"></span><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.0.0.2.0.1">31</span><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.0.0.2.0.2"> </span><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.0.0.2.0.3">October</span><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.0.0.2.0.4"> </span><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.0.0.2.0.5">2013</span><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.0.0.2.0.6"></span></span></time><a aria-haspopup="true" target="_blank" href="http://instagram.com/p/gJDiAHNG5M/" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.0.0.3"><div class="Image iLoading tThumbImage" src="http://scontent-b.cdninstagram.com/hphotos-xaf1/t51.2885-15/1169348_1428649040683520_1366416087_a.jpg" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.0.0.3.0"></div><div class="photoShadow" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.0.0.3.1"></div></a><ul class="photo-stats" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.0.0.4"><li class="stat-likes" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.0.0.4.0"><b data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.0.0.4.0.0">2</b></li><li class="stat-comments" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.0.0.4.1"><b data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.0.0.4.1.0">1</b></li></ul></div></li><li class="photo" tabindex="0" role="img" aria-label="3 likes, 0 comments" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.1"><div class="photo-wrapper" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.1.0"><h3 data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.1.0.0"><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.1.0.0.0">April</span><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.1.0.0.1"> </span><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.1.0.0.2">2013</span></h3><a aria-haspopup="true" target="_blank" href="http://instagram.com/p/X-eHa7NG3x/" class="bg bg" tabindex="-1" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.1.0.1"></a><time class="photo-date" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.1.0.2"><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.1.0.2.0"><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.1.0.2.0.0"></span><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.1.0.2.0.1">11</span><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.1.0.2.0.2"> </span><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.1.0.2.0.3">April</span><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.1.0.2.0.4"> </span><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.1.0.2.0.5">2013</span><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.1.0.2.0.6"></span></span></time><a aria-haspopup="true" target="_blank" href="http://instagram.com/p/X-eHa7NG3x/" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.1.0.3"><div class="Image iLoading tThumbImage" src="http://scontent-a.cdninstagram.com/hphotos-xpa1/outbound-distilleryimage9/t0.0-17/OBPTH/863d6842a2dd11e293c522000a9f4d92_6.jpg" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.1.0.3.0"></div><div class="photoShadow" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.1.0.3.1"></div></a><ul class="photo-stats" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.1.0.4"><li class="stat-likes" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.1.0.4.0"><b data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.1.0.4.0.0">3</b></li><li class="stat-comments" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.1.0.4.1"><b data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.1.0.4.1.0">0</b></li></ul></div></li><li class="photo" tabindex="0" role="img" aria-label="2 likes, 0 comments" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.2"><div class="photo-wrapper" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.2.0"><a aria-haspopup="true" target="_blank" href="http://instagram.com/p/X-VPZ1NG8v/" class="bg bg" tabindex="-1" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.2.0.1"></a><time class="photo-date" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.2.0.2"><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.2.0.2.0"><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.2.0.2.0.0"></span><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.2.0.2.0.1">11</span><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.2.0.2.0.2"> </span><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.2.0.2.0.3">April</span><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.2.0.2.0.4"> </span><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.2.0.2.0.5">2013</span><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.2.0.2.0.6"></span></span></time><a aria-haspopup="true" target="_blank" href="http://instagram.com/p/X-VPZ1NG8v/" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.2.0.3"><div class="Image iLoading tThumbImage" src="http://scontent-a.cdninstagram.com/hphotos-xfa1/outbound-distilleryimage7/t0.0-17/OBPTH/b0ba9ee2a2d211e2904b22000a1f8c1d_6.jpg" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.2.0.3.0"></div><div class="photoShadow" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.2.0.3.1"></div></a><ul class="photo-stats" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.2.0.4"><li class="stat-likes" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.2.0.4.0"><b data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.2.0.4.0.0">2</b></li><li class="stat-comments" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.2.0.4.1"><b data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.2.0.4.1.0">0</b></li></ul></div></li><li class="photo" tabindex="0" role="img" aria-label="1 likes, 0 comments" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.3"><div class="photo-wrapper" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.3.0"><a aria-haspopup="true" target="_blank" href="http://instagram.com/p/X-Ukk4NG79/" class="bg bg" tabindex="-1" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.3.0.1"></a><time class="photo-date" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.3.0.2"><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.3.0.2.0"><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.3.0.2.0.0"></span><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.3.0.2.0.1">11</span><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.3.0.2.0.2"> </span><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.3.0.2.0.3">April</span><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.3.0.2.0.4"> </span><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.3.0.2.0.5">2013</span><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.3.0.2.0.6"></span></span></time><a aria-haspopup="true" target="_blank" href="http://instagram.com/p/X-Ukk4NG79/" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.3.0.3"><div class="Image iLoading tThumbImage" src="http://scontent-a.cdninstagram.com/hphotos-xfa1/outbound-distilleryimage9/t0.0-17/OBPTH/df9b81b4a2d111e2a23322000aaa04c3_6.jpg" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.3.0.3.0"></div><div class="photoShadow" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.3.0.3.1"></div></a><ul class="photo-stats" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.3.0.4"><li class="stat-likes" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.3.0.4.0"><b data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.3.0.4.0.0">1</b></li><li class="stat-comments" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.3.0.4.1"><b data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.3.0.4.1.0">0</b></li></ul></div></li><li class="photo" tabindex="0" role="img" aria-label="2 likes, 0 comments" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.4"><div class="photo-wrapper" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.4.0"><a aria-haspopup="true" target="_blank" href="http://instagram.com/p/X-TBL-tG6K/" class="bg bg" tabindex="-1" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.4.0.1"></a><time class="photo-date" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.4.0.2"><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.4.0.2.0"><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.4.0.2.0.0"></span><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.4.0.2.0.1">11</span><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.4.0.2.0.2"> </span><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.4.0.2.0.3">April</span><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.4.0.2.0.4"> </span><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.4.0.2.0.5">2013</span><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.4.0.2.0.6"></span></span></time><a aria-haspopup="true" target="_blank" href="http://instagram.com/p/X-TBL-tG6K/" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.4.0.3"><div class="Image iLoading tThumbImage" src="http://scontent-a.cdninstagram.com/hphotos-xpa1/outbound-distilleryimage6/t0.0-17/OBPTH/fa4f30caa2cf11e2837022000a1fa4bb_6.jpg" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.4.0.3.0"></div><div class="photoShadow" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.4.0.3.1"></div></a><ul class="photo-stats" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.4.0.4"><li class="stat-likes" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.4.0.4.0"><b data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.4.0.4.0.0">2</b></li><li class="stat-comments" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.4.0.4.1"><b data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.4.0.4.1.0">0</b></li></ul></div></li><li class="photo" tabindex="0" role="img" aria-label="2 likes, 0 comments" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.5"><div class="photo-wrapper" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.5.0"><a aria-haspopup="true" target="_blank" href="http://instagram.com/p/XvDzddtG20/" class="bg bg" tabindex="-1" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.5.0.1"></a><time class="photo-date" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.5.0.2"><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.5.0.2.0"><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.5.0.2.0.0"></span><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.5.0.2.0.1">5</span><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.5.0.2.0.2"> </span><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.5.0.2.0.3">April</span><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.5.0.2.0.4"> </span><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.5.0.2.0.5">2013</span><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.5.0.2.0.6"></span></span></time><a aria-haspopup="true" target="_blank" href="http://instagram.com/p/XvDzddtG20/" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.5.0.3"><div class="Image iLoading tThumbImage" src="http://scontent-b.cdninstagram.com/hphotos-xpf1/outbound-distilleryimage0/t0.0-17/OBPTH/87c9bb4c9e2911e28a7322000a1fa414_6.jpg" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.5.0.3.0"></div><div class="photoShadow" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.5.0.3.1"></div></a><ul class="photo-stats" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.5.0.4"><li class="stat-likes" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.5.0.4.0"><b data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.5.0.4.0.0">2</b></li><li class="stat-comments" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.5.0.4.1"><b data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.5.0.4.1.0">0</b></li></ul></div></li><li class="photo" tabindex="0" role="img" aria-label="0 likes, 0 comments" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.6"><div class="photo-wrapper" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.6.0"><a aria-haspopup="true" target="_blank" href="http://instagram.com/p/XvCqdwNG1b/" class="bg bg" tabindex="-1" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.6.0.1"></a><time class="photo-date" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.6.0.2"><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.6.0.2.0"><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.6.0.2.0.0"></span><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.6.0.2.0.1">5</span><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.6.0.2.0.2"> </span><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.6.0.2.0.3">April</span><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.6.0.2.0.4"> </span><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.6.0.2.0.5">2013</span><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.6.0.2.0.6"></span></span></time><a aria-haspopup="true" target="_blank" href="http://instagram.com/p/XvCqdwNG1b/" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.6.0.3"><div class="Image iLoading tThumbImage" src="http://scontent-b.cdninstagram.com/hphotos-xpf1/outbound-distilleryimage11/t0.0-17/OBPTH/235ec57c9e2811e2a65722000a1fbb45_6.jpg" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.6.0.3.0"></div><div class="photoShadow" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.6.0.3.1"></div></a><ul class="photo-stats" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.6.0.4"><li class="stat-likes" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.6.0.4.0"><b data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.6.0.4.0.0">0</b></li><li class="stat-comments" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.6.0.4.1"><b data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.6.0.4.1.0">0</b></li></ul></div></li><li class="photo" tabindex="0" role="img" aria-label="1 likes, 0 comments" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.7"><div class="photo-wrapper" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.7.0"><a aria-haspopup="true" target="_blank" href="http://instagram.com/p/Xu30pStG3C/" class="bg bg" tabindex="-1" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.7.0.1"></a><time class="photo-date" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.7.0.2"><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.7.0.2.0"><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.7.0.2.0.0"></span><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.7.0.2.0.1">5</span><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.7.0.2.0.2"> </span><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.7.0.2.0.3">April</span><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.7.0.2.0.4"> </span><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.7.0.2.0.5">2013</span><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.7.0.2.0.6"></span></span></time><a aria-haspopup="true" target="_blank" href="http://instagram.com/p/Xu30pStG3C/" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.7.0.3"><div class="Image iLoading tThumbImage" src="http://scontent-b.cdninstagram.com/hphotos-xpf1/outbound-distilleryimage10/t0.0-17/OBPTH/e792d7ca9e1a11e296ed22000aaa0a30_6.jpg" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.7.0.3.0"></div><div class="photoShadow" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.7.0.3.1"></div></a><ul class="photo-stats" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.7.0.4"><li class="stat-likes" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.7.0.4.0"><b data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.7.0.4.0.0">1</b></li><li class="stat-comments" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.7.0.4.1"><b data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.7.0.4.1.0">0</b></li></ul></div></li><li class="photo" tabindex="0" role="img" aria-label="0 likes, 0 comments" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.8"><div class="photo-wrapper" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.8.0"><a aria-haspopup="true" target="_blank" href="http://instagram.com/p/Xu2HeqtG0w/" class="bg bg" tabindex="-1" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.8.0.1"></a><time class="photo-date" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.8.0.2"><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.8.0.2.0"><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.8.0.2.0.0"></span><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.8.0.2.0.1">5</span><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.8.0.2.0.2"> </span><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.8.0.2.0.3">April</span><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.8.0.2.0.4"> </span><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.8.0.2.0.5">2013</span><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.8.0.2.0.6"></span></span></time><a aria-haspopup="true" target="_blank" href="http://instagram.com/p/Xu2HeqtG0w/" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.8.0.3"><div class="Image iLoading tThumbImage" src="http://scontent-b.cdninstagram.com/hphotos-xap1/outbound-distilleryimage8/t0.0-17/OBPTH/d2891cb09e1811e28b8322000a1f92ef_6.jpg" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.8.0.3.0"></div><div class="photoShadow" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.8.0.3.1"></div></a><ul class="photo-stats" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.8.0.4"><li class="stat-likes" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.8.0.4.0"><b data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.8.0.4.0.0">0</b></li><li class="stat-comments" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.8.0.4.1"><b data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.8.0.4.1.0">0</b></li></ul></div></li><li class="photo" tabindex="0" role="img" aria-label="0 likes, 0 comments" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.9"><div class="photo-wrapper" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.9.0"><a aria-haspopup="true" target="_blank" href="http://instagram.com/p/Xu1kvntGz3/" class="bg bg" tabindex="-1" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.9.0.1"></a><time class="photo-date" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.9.0.2"><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.9.0.2.0"><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.9.0.2.0.0"></span><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.9.0.2.0.1">5</span><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.9.0.2.0.2"> </span><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.9.0.2.0.3">April</span><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.9.0.2.0.4"> </span><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.9.0.2.0.5">2013</span><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.9.0.2.0.6"></span></span></time><a aria-haspopup="true" target="_blank" href="http://instagram.com/p/Xu1kvntGz3/" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.9.0.3"><div class="Image iLoading tThumbImage" src="http://scontent-b.cdninstagram.com/hphotos-xfp1/outbound-distilleryimage11/t0.0-17/OBPTH/28eea8829e1811e2851d22000a1fb71f_6.jpg" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.9.0.3.0"></div><div class="photoShadow" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.9.0.3.1"></div></a><ul class="photo-stats" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.9.0.4"><li class="stat-likes" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.9.0.4.0"><b data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.9.0.4.0.0">0</b></li><li class="stat-comments" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.9.0.4.1"><b data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.9.0.4.1.0">0</b></li></ul></div></li><li class="photo" tabindex="0" role="img" aria-label="0 likes, 0 comments" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.a"><div class="photo-wrapper" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.a.0"><a aria-haspopup="true" target="_blank" href="http://instagram.com/p/Xu1FmetGzS/" class="bg bg" tabindex="-1" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.a.0.1"></a><time class="photo-date" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.a.0.2"><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.a.0.2.0"><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.a.0.2.0.0"></span><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.a.0.2.0.1">5</span><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.a.0.2.0.2"> </span><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.a.0.2.0.3">April</span><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.a.0.2.0.4"> </span><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.a.0.2.0.5">2013</span><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.a.0.2.0.6"></span></span></time><a aria-haspopup="true" target="_blank" href="http://instagram.com/p/Xu1FmetGzS/" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.a.0.3"><div class="Image iLoading tThumbImage" src="http://scontent-b.cdninstagram.com/hphotos-xfp1/outbound-distilleryimage6/t0.0-17/OBPTH/90ddea6c9e1711e28d2722000a1f8fa0_6.jpg" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.a.0.3.0"></div><div class="photoShadow" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.a.0.3.1"></div></a><ul class="photo-stats" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.a.0.4"><li class="stat-likes" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.a.0.4.0"><b data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.a.0.4.0.0">0</b></li><li class="stat-comments" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.a.0.4.1"><b data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.a.0.4.1.0">0</b></li></ul></div></li><li class="photo" tabindex="0" role="img" aria-label="0 likes, 0 comments" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.b"><div class="photo-wrapper" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.b.0"><a aria-haspopup="true" target="_blank" href="http://instagram.com/p/Xu0ryTNGyr/" class="bg bg" tabindex="-1" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.b.0.1"></a><time class="photo-date" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.b.0.2"><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.b.0.2.0"><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.b.0.2.0.0"></span><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.b.0.2.0.1">5</span><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.b.0.2.0.2"> </span><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.b.0.2.0.3">April</span><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.b.0.2.0.4"> </span><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.b.0.2.0.5">2013</span><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.b.0.2.0.6"></span></span></time><a aria-haspopup="true" target="_blank" href="http://instagram.com/p/Xu0ryTNGyr/" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.b.0.3"><div class="Image iLoading tThumbImage" src="http://scontent-b.cdninstagram.com/hphotos-xfp1/outbound-distilleryimage3/t0.0-17/OBPTH/12d0e7be9e1711e284c522000aa801df_6.jpg" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.b.0.3.0"></div><div class="photoShadow" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.b.0.3.1"></div></a><ul class="photo-stats" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.b.0.4"><li class="stat-likes" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.b.0.4.0"><b data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.b.0.4.0.0">0</b></li><li class="stat-comments" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.b.0.4.1"><b data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.b.0.4.1.0">0</b></li></ul></div></li><li class="photo" tabindex="0" role="img" aria-label="0 likes, 0 comments" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.c"><div class="photo-wrapper" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.c.0"><a aria-haspopup="true" target="_blank" href="http://instagram.com/p/Xu0eOBtGyX/" class="bg bg" tabindex="-1" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.c.0.1"></a><time class="photo-date" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.c.0.2"><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.c.0.2.0"><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.c.0.2.0.0"></span><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.c.0.2.0.1">5</span><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.c.0.2.0.2"> </span><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.c.0.2.0.3">April</span><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.c.0.2.0.4"> </span><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.c.0.2.0.5">2013</span><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.c.0.2.0.6"></span></span></time><a aria-haspopup="true" target="_blank" href="http://instagram.com/p/Xu0eOBtGyX/" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.c.0.3"><div class="Image iLoading tThumbImage" src="http://scontent-a.cdninstagram.com/hphotos-xfa1/outbound-distilleryimage11/t0.0-17/OBPTH/d091e9f29e1611e2bfae22000a9e0782_6.jpg" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.c.0.3.0"></div><div class="photoShadow" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.c.0.3.1"></div></a><ul class="photo-stats" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.c.0.4"><li class="stat-likes" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.c.0.4.0"><b data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.c.0.4.0.0">0</b></li><li class="stat-comments" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.c.0.4.1"><b data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.c.0.4.1.0">0</b></li></ul></div></li><li class="photo" tabindex="0" role="img" aria-label="0 likes, 0 comments" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.d"><div class="photo-wrapper" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.d.0"><a aria-haspopup="true" target="_blank" href="http://instagram.com/p/Xu0SI0tGyJ/" class="bg bg" tabindex="-1" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.d.0.1"></a><time class="photo-date" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.d.0.2"><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.d.0.2.0"><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.d.0.2.0.0"></span><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.d.0.2.0.1">5</span><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.d.0.2.0.2"> </span><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.d.0.2.0.3">April</span><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.d.0.2.0.4"> </span><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.d.0.2.0.5">2013</span><span data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.d.0.2.0.6"></span></span></time><a aria-haspopup="true" target="_blank" href="http://instagram.com/p/Xu0SI0tGyJ/" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.d.0.3"><div class="Image iLoading tThumbImage" src="http://scontent-b.cdninstagram.com/hphotos-xfp1/outbound-distilleryimage9/t0.0-17/OBPTH/9593751e9e1611e2b95c22000a1fb82f_6.jpg" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.d.0.3.0"></div><div class="photoShadow" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.d.0.3.1"></div></a><ul class="photo-stats" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.d.0.4"><li class="stat-likes" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.d.0.4.0"><b data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.d.0.4.0.0">0</b></li><li class="stat-comments" data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.d.0.4.1"><b data-reactid=".0.0.1.3.$userphotos343273354:0.0.0.d.0.4.1.0">0</b></li></ul></div></li></ul></div><span class="more-photos" data-reactid=".0.0.1.3.$userphotos343273354:0.1"><a class="more-photos-disabled" data-reactid=".0.0.1.3.$userphotos343273354:0.1.0"><span class="loading-indicator" style="display:none;" data-reactid=".0.0.1.3.$userphotos343273354:0.1.0.0"><div class="Spinner" data-reactid=".0.0.1.3.$userphotos343273354:0.1.0.0.0"></div></span><span class="more-label" data-reactid=".0.0.1.3.$userphotos343273354:0.1.0.1"><span data-reactid=".0.0.1.3.$userphotos343273354:0.1.0.1.0"><span data-reactid=".0.0.1.3.$userphotos343273354:0.1.0.1.0.0">All items loaded</span></span></span></a></span></div></section><section class="profile-media-modal hidden" data-reactid=".0.0.1.4"></section><span data-reactid=".0.0.1.5"></span></div></div><footer class="page-footer" role="contentinfo" data-reactid=".0.1"><div class="wrapper" data-reactid=".0.1.0"><nav data-reactid=".0.1.0.0"><ul data-reactid=".0.1.0.0.0"><li data-reactid=".0.1.0.0.0.0"><a href="/about/us" data-reactid=".0.1.0.0.0.0.0"><span data-reactid=".0.1.0.0.0.0.0.0"><span data-reactid=".0.1.0.0.0.0.0.0.0">About us</span></span></a></li><li data-reactid=".0.1.0.0.0.1"><a href="http://help.instagram.com/" data-reactid=".0.1.0.0.0.1.0"><span data-reactid=".0.1.0.0.0.1.0.0"><span data-reactid=".0.1.0.0.0.1.0.0.0">Support</span></span></a></li><li data-reactid=".0.1.0.0.0.2"><a href="http://blog.instagram.com/" data-reactid=".0.1.0.0.0.2.0"><span data-reactid=".0.1.0.0.0.2.0.0"><span data-reactid=".0.1.0.0.0.2.0.0.0">Blog</span></span></a></li><li data-reactid=".0.1.0.0.0.3"><a href="/press" data-reactid=".0.1.0.0.0.3.0"><span data-reactid=".0.1.0.0.0.3.0.0"><span data-reactid=".0.1.0.0.0.3.0.0.0">Press</span></span></a></li><li data-reactid=".0.1.0.0.0.4"><a href="/developer/" data-reactid=".0.1.0.0.0.4.0">API</a></li><li data-reactid=".0.1.0.0.0.5"><a href="/about/jobs/" data-reactid=".0.1.0.0.0.5.0"><span data-reactid=".0.1.0.0.0.5.0.0"><span data-reactid=".0.1.0.0.0.5.0.0.0">Jobs</span></span></a></li><li data-reactid=".0.1.0.0.0.6"><a href="/about/legal/privacy/" data-reactid=".0.1.0.0.0.6.0"><span data-reactid=".0.1.0.0.0.6.0.0"><span data-reactid=".0.1.0.0.0.6.0.0.0">Privacy</span></span></a></li><li data-reactid=".0.1.0.0.0.7"><a href="/about/legal/terms/" data-reactid=".0.1.0.0.0.7.0"><span data-reactid=".0.1.0.0.0.7.0.0"><span data-reactid=".0.1.0.0.0.7.0.0.0">Terms</span></span></a></li></ul></nav><p class="copyright" data-reactid=".0.1.0.1"><span data-reactid=".0.1.0.1.0">©</span><span data-reactid=".0.1.0.1.1"> </span><span data-reactid=".0.1.0.1.2">2014</span><span data-reactid=".0.1.0.1.3"> </span><span data-reactid=".0.1.0.1.4">Instagram</span></p></div></footer></div>
42
+
43
+ </body>
@@ -0,0 +1,38 @@
1
+ require 'spec_helper'
2
+
3
+ describe Instagram::RssGenerator do
4
+
5
+ let(:generator) { Instagram::RssGenerator.new('clorox') }
6
+
7
+ context "call to instagram at a user name" do
8
+ before(:each) do
9
+ html = File.open('spec/fixtures/clorox_instagram_page.html','rb').read
10
+ allow(generator).to receive(:build_static_html).and_return(html)
11
+ end
12
+
13
+ it "builds static html using javascript" do
14
+ expect(generator.build_static_html).to match(/^<head>/)
15
+ end
16
+
17
+ it "takes an instgram user name and returns an rss feed" do
18
+ expect(generator.build_rss_feed).to match(/^<\?xml version="1.0"\?>/)
19
+ end
20
+
21
+ it "gets the items from the page" do
22
+ generator.call
23
+ expect(generator.items.count).to be > 0
24
+ end
25
+
26
+ it "can get the photo url from the item" do
27
+ generator.call
28
+ item = generator.items.first
29
+ expect(generator.get_photo_url(item)).to eq("http://instagram.com/p/gJDiAHNG5M/")
30
+ end
31
+
32
+ it "generates the date from the item" do
33
+ generator.call
34
+ item = generator.items.first
35
+ expect(generator.get_photo_date(item)).to eq("Thu, 31 Oct 2013 00:00:00 +0000")
36
+ end
37
+ end
38
+ end
@@ -0,0 +1,23 @@
1
+ begin
2
+ require 'simplecov'
3
+ rescue LoadError
4
+ #ignore
5
+ else
6
+ SimpleCov.start do
7
+ add_group 'Generator', 'lib/instagram-rss_generator'
8
+ end
9
+ end
10
+
11
+ require File.expand_path('../../lib/instagram-rss_generator', __FILE__)
12
+
13
+ require 'rspec'
14
+ RSpec.configure do |config|
15
+ end
16
+
17
+ def fixture_path
18
+ File.expand_path("..fixtures", __FILE__)
19
+ end
20
+
21
+ def fixture(file)
22
+ File.new(fixture_path + '/' + file)
23
+ end
metadata ADDED
@@ -0,0 +1,114 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: instagram-rss_generator
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Sharethrough Engineering
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-07-03 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: phantomjs
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.9'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.9'
27
+ - !ruby/object:Gem::Dependency
28
+ name: nokogiri
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.6'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.6'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rake
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rspec
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ description: Create an RSS feed for an Instagram user
70
+ email:
71
+ - engineers@sharethrough.com
72
+ executables: []
73
+ extensions: []
74
+ extra_rdoc_files: []
75
+ files:
76
+ - ".gitignore"
77
+ - Gemfile
78
+ - LICENSE.txt
79
+ - README.md
80
+ - Rakefile
81
+ - instagram-rss_generator.gemspec
82
+ - lib/instagram-rss_generator.rb
83
+ - lib/instagram-rss_generator/version.rb
84
+ - spec/fixtures/clorox_instagram_page.html
85
+ - spec/instagram-rss_generator_spec.rb
86
+ - spec/spec_helper.rb
87
+ homepage: https://github.com/sharethrough/instagram-rss-generator
88
+ licenses:
89
+ - MIT
90
+ metadata: {}
91
+ post_install_message:
92
+ rdoc_options: []
93
+ require_paths:
94
+ - lib
95
+ required_ruby_version: !ruby/object:Gem::Requirement
96
+ requirements:
97
+ - - ">="
98
+ - !ruby/object:Gem::Version
99
+ version: '0'
100
+ required_rubygems_version: !ruby/object:Gem::Requirement
101
+ requirements:
102
+ - - ">="
103
+ - !ruby/object:Gem::Version
104
+ version: '0'
105
+ requirements: []
106
+ rubyforge_project:
107
+ rubygems_version: 2.2.2
108
+ signing_key:
109
+ specification_version: 4
110
+ summary: Create Instagram RSS feed
111
+ test_files:
112
+ - spec/fixtures/clorox_instagram_page.html
113
+ - spec/instagram-rss_generator_spec.rb
114
+ - spec/spec_helper.rb