less 1.2.21 → 2.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (165) hide show
  1. data/.gitignore +4 -3
  2. data/.gitmodules +6 -0
  3. data/Gemfile +3 -0
  4. data/README.md +39 -46
  5. data/Rakefile +5 -50
  6. data/bin/lessc +1 -100
  7. data/less.gemspec +21 -125
  8. data/lib/less.rb +11 -30
  9. data/{LICENSE → lib/less/js/LICENSE} +1 -1
  10. data/lib/less/js/Makefile +56 -0
  11. data/lib/less/js/README.md +20 -0
  12. data/lib/less/js/benchmark/benchmark.less +3979 -0
  13. data/lib/less/js/benchmark/less-benchmark.js +49 -0
  14. data/lib/less/js/bin/lessc +105 -0
  15. data/lib/less/js/build/ecma-5.js +120 -0
  16. data/lib/less/js/build/header.js +7 -0
  17. data/lib/less/js/build/require.js +7 -0
  18. data/lib/less/js/dist/less-1.0.44.js +2655 -0
  19. data/lib/less/js/dist/less-1.1.0.js +2695 -0
  20. data/lib/less/js/dist/less-1.1.0.min.js +16 -0
  21. data/lib/less/js/dist/less-1.1.1.js +2710 -0
  22. data/lib/less/js/dist/less-1.1.1.min.js +16 -0
  23. data/lib/less/js/dist/less-1.1.2.js +2712 -0
  24. data/lib/less/js/dist/less-1.1.2.min.js +16 -0
  25. data/lib/less/js/dist/less-1.1.3.js +2721 -0
  26. data/lib/less/js/dist/less-1.1.3.min.js +16 -0
  27. data/lib/less/js/lib/less/browser.js +369 -0
  28. data/lib/less/js/lib/less/functions.js +174 -0
  29. data/lib/less/js/lib/less/index.js +137 -0
  30. data/lib/less/js/lib/less/parser.js +1098 -0
  31. data/lib/less/js/lib/less/tree.js +13 -0
  32. data/lib/less/js/lib/less/tree/alpha.js +17 -0
  33. data/lib/less/js/lib/less/tree/anonymous.js +13 -0
  34. data/lib/less/js/lib/less/tree/call.js +45 -0
  35. data/lib/less/js/lib/less/tree/color.js +98 -0
  36. data/lib/less/js/lib/less/tree/comment.js +14 -0
  37. data/lib/less/js/lib/less/tree/dimension.js +34 -0
  38. data/lib/less/js/lib/less/tree/directive.js +33 -0
  39. data/lib/less/js/lib/less/tree/element.js +32 -0
  40. data/lib/less/js/lib/less/tree/expression.js +23 -0
  41. data/lib/less/js/lib/less/tree/import.js +77 -0
  42. data/lib/less/js/lib/less/tree/javascript.js +51 -0
  43. data/lib/less/js/lib/less/tree/keyword.js +9 -0
  44. data/lib/less/js/lib/less/tree/mixin.js +106 -0
  45. data/lib/less/js/lib/less/tree/operation.js +32 -0
  46. data/lib/less/js/lib/less/tree/quoted.js +29 -0
  47. data/lib/less/js/lib/less/tree/rule.js +38 -0
  48. data/lib/less/js/lib/less/tree/ruleset.js +179 -0
  49. data/lib/less/js/lib/less/tree/selector.js +28 -0
  50. data/lib/less/js/lib/less/tree/url.js +25 -0
  51. data/lib/less/js/lib/less/tree/value.js +24 -0
  52. data/lib/less/js/lib/less/tree/variable.js +24 -0
  53. data/lib/less/js/package.json +13 -0
  54. data/lib/less/js/test/css/colors.css +42 -0
  55. data/lib/less/js/test/css/comments.css +52 -0
  56. data/lib/less/js/test/css/css-3.css +42 -0
  57. data/lib/less/js/test/css/css-escapes.css +20 -0
  58. data/lib/less/js/test/css/css.css +82 -0
  59. data/lib/less/js/test/css/functions.css +30 -0
  60. data/{spec → lib/less/js/test}/css/import.css +4 -2
  61. data/lib/less/js/test/css/javascript.css +22 -0
  62. data/lib/less/js/test/css/lazy-eval.css +3 -0
  63. data/lib/less/js/test/css/media.css +21 -0
  64. data/lib/less/js/test/css/mixins-args.css +61 -0
  65. data/lib/less/js/test/css/mixins-closure.css +9 -0
  66. data/lib/less/js/test/css/mixins-nested.css +14 -0
  67. data/lib/less/js/test/css/mixins-pattern.css +49 -0
  68. data/lib/less/js/test/css/mixins.css +50 -0
  69. data/{spec → lib/less/js/test}/css/operations.css +20 -2
  70. data/{spec → lib/less/js/test}/css/parens.css +0 -0
  71. data/lib/less/js/test/css/rulesets.css +29 -0
  72. data/{spec → lib/less/js/test}/css/scope.css +6 -2
  73. data/lib/less/js/test/css/selectors.css +32 -0
  74. data/lib/less/js/test/css/strings.css +38 -0
  75. data/lib/less/js/test/css/variables.css +24 -0
  76. data/lib/less/js/test/css/whitespace.css +36 -0
  77. data/lib/less/js/test/less-test.js +75 -0
  78. data/{spec → lib/less/js/test}/less/colors.less +13 -2
  79. data/{spec → lib/less/js/test}/less/comments.less +19 -2
  80. data/{spec → lib/less/js/test}/less/css-3.less +4 -1
  81. data/lib/less/js/test/less/css-escapes.less +28 -0
  82. data/{spec → lib/less/js/test}/less/css.less +10 -18
  83. data/lib/less/js/test/less/functions.less +35 -0
  84. data/{spec → lib/less/js/test}/less/import.less +1 -1
  85. data/{spec → lib/less/js/test}/less/import/import-test-a.less +0 -0
  86. data/{spec → lib/less/js/test}/less/import/import-test-b.less +0 -0
  87. data/{spec → lib/less/js/test}/less/import/import-test-c.less +0 -0
  88. data/{spec → lib/less/js/test}/less/import/import-test-d.css +0 -0
  89. data/lib/less/js/test/less/javascript.less +27 -0
  90. data/{spec → lib/less/js/test}/less/lazy-eval.less +0 -0
  91. data/lib/less/js/test/less/media.less +25 -0
  92. data/lib/less/js/test/less/mixins-args.less +118 -0
  93. data/lib/less/js/test/less/mixins-closure.less +26 -0
  94. data/lib/less/js/test/less/mixins-nested.less +22 -0
  95. data/lib/less/js/test/less/mixins-pattern.less +96 -0
  96. data/{spec → lib/less/js/test}/less/mixins.less +8 -4
  97. data/{spec → lib/less/js/test}/less/operations.less +19 -0
  98. data/{spec → lib/less/js/test}/less/parens.less +0 -0
  99. data/{spec → lib/less/js/test}/less/rulesets.less +2 -2
  100. data/{spec → lib/less/js/test}/less/scope.less +1 -1
  101. data/{spec → lib/less/js/test}/less/selectors.less +1 -1
  102. data/lib/less/js/test/less/strings.less +49 -0
  103. data/lib/less/js/test/less/variables.less +50 -0
  104. data/{spec → lib/less/js/test}/less/whitespace.less +3 -0
  105. data/lib/less/loader.rb +67 -0
  106. data/lib/less/parser.rb +46 -0
  107. data/lib/less/version.rb +3 -0
  108. data/spec/less/one/one.less +1 -0
  109. data/spec/less/parser_spec.rb +30 -0
  110. data/spec/less/two/two.less +1 -0
  111. data/spec/spec_helper.rb +2 -7
  112. metadata +156 -106
  113. data/CHANGELOG +0 -62
  114. data/VERSION +0 -1
  115. data/lib/less/command.rb +0 -110
  116. data/lib/less/engine.rb +0 -52
  117. data/lib/less/engine/grammar/common.tt +0 -29
  118. data/lib/less/engine/grammar/entity.tt +0 -144
  119. data/lib/less/engine/grammar/less.tt +0 -341
  120. data/lib/less/engine/nodes.rb +0 -9
  121. data/lib/less/engine/nodes/element.rb +0 -281
  122. data/lib/less/engine/nodes/entity.rb +0 -79
  123. data/lib/less/engine/nodes/function.rb +0 -93
  124. data/lib/less/engine/nodes/literal.rb +0 -171
  125. data/lib/less/engine/nodes/property.rb +0 -232
  126. data/lib/less/engine/nodes/ruleset.rb +0 -12
  127. data/lib/less/engine/nodes/selector.rb +0 -44
  128. data/lib/less/ext.rb +0 -60
  129. data/spec/command_spec.rb +0 -102
  130. data/spec/css/accessors.css +0 -18
  131. data/spec/css/big.css +0 -3768
  132. data/spec/css/colors.css +0 -14
  133. data/spec/css/comments.css +0 -9
  134. data/spec/css/css-3.css +0 -21
  135. data/spec/css/css.css +0 -50
  136. data/spec/css/dash-prefix.css +0 -12
  137. data/spec/css/functions.css +0 -6
  138. data/spec/css/import-with-extra-paths.css +0 -8
  139. data/spec/css/import-with-partial-in-extra-path.css +0 -6
  140. data/spec/css/lazy-eval.css +0 -1
  141. data/spec/css/mixins-args.css +0 -32
  142. data/spec/css/mixins.css +0 -28
  143. data/spec/css/rulesets.css +0 -17
  144. data/spec/css/selectors.css +0 -13
  145. data/spec/css/strings.css +0 -12
  146. data/spec/css/variables.css +0 -8
  147. data/spec/css/whitespace.css +0 -7
  148. data/spec/engine_spec.rb +0 -127
  149. data/spec/less/accessors.less +0 -20
  150. data/spec/less/big.less +0 -1264
  151. data/spec/less/dash-prefix.less +0 -21
  152. data/spec/less/exceptions/mixed-units-error.less +0 -3
  153. data/spec/less/exceptions/name-error-1.0.less +0 -3
  154. data/spec/less/exceptions/syntax-error-1.0.less +0 -3
  155. data/spec/less/extra_import_path/extra.less +0 -1
  156. data/spec/less/extra_import_path/import/import-test-a.css +0 -1
  157. data/spec/less/extra_import_path/import/import-test-a.less +0 -4
  158. data/spec/less/functions.less +0 -6
  159. data/spec/less/hidden.less +0 -25
  160. data/spec/less/import-with-extra-paths.less +0 -4
  161. data/spec/less/literal-css.less +0 -11
  162. data/spec/less/mixins-args.less +0 -59
  163. data/spec/less/strings.less +0 -14
  164. data/spec/less/variables.less +0 -29
  165. data/spec/spec.css +0 -50
data/lib/less/ext.rb DELETED
@@ -1,60 +0,0 @@
1
- module Treetop
2
- module Runtime
3
- class CompiledParser
4
- def failure_message color
5
- o = color ? Mutter.new.clear : lambda {|i, *args| i }
6
- return nil unless (tf = terminal_failures) && tf.size > 0
7
- msg = "on line #{failure_line}: expected " + (
8
- tf.size == 1 ?
9
- o[tf[0].expected_string, :yellow] :
10
- "one of #{o[tf.map {|f| f.expected_string }.uniq * ' ', :yellow]}"
11
- )
12
- f = input[failure_index]
13
- got = case f
14
- when "\n" then o['\n', :cyan]
15
- when nil then o["EOF", :cyan]
16
- when ' ' then o["white-space", :cyan]
17
- else o[f.chr, :yellow]
18
- end
19
- msg += " got #{got} after:\n\n#{input[index...failure_index]}\n"
20
- end
21
- end
22
- end
23
- end
24
-
25
- class Object
26
- def verbose
27
- $verbose = true
28
- yield
29
- ensure
30
- $verbose = false
31
- end
32
-
33
- def tap
34
- yield self
35
- self
36
- end
37
- end
38
-
39
- class Array
40
- def dissolve
41
- ary = flatten.compact
42
- case ary.size
43
- when 0 then []
44
- when 1 then first
45
- else ary
46
- end
47
- end
48
-
49
- def one?
50
- size == 1
51
- end
52
- end
53
-
54
- unless :symbol.respond_to?(:to_proc)
55
- class Symbol
56
- def to_proc
57
- Proc.new {|*args| args.shift.__send__(self, *args) }
58
- end
59
- end
60
- end
data/spec/command_spec.rb DELETED
@@ -1,102 +0,0 @@
1
- require File.dirname(__FILE__) + '/spec_helper'
2
-
3
- module LessCommandSpecHelper
4
- def required_options
5
- {:source => File.dirname(__FILE__) + '/less/css.less', :destination => File.dirname(__FILE__) + '/spec.css' }
6
- end
7
-
8
- def valid_options
9
- {:destination => File.dirname(__FILE__) + '/spec.css', :watch => true, :debug => false}.merge(required_options)
10
- end
11
- end
12
-
13
- describe Less::Command do
14
- include LessCommandSpecHelper
15
-
16
- describe "required options" do
17
- before(:each) do
18
- @command = Less::Command.new(required_options)
19
- end
20
-
21
- it "should set the source" do
22
- @command.source.should == required_options[:source]
23
- end
24
-
25
- it "should set the destination using a gsub" do
26
- @command.destination.should == valid_options[:destination]
27
- end
28
-
29
- it "should set the options with what was passed" do
30
- @command.options.should == required_options
31
- end
32
- end
33
-
34
- describe "valid options" do
35
- before(:each) do
36
- @command = Less::Command.new(valid_options)
37
- end
38
-
39
- it "should set the @source" do
40
- @command.source.should == required_options[:source]
41
- end
42
-
43
- it "should set the @destionation" do
44
- @command.destination.should == valid_options[:destination]
45
- end
46
-
47
- it "should set the watch" do
48
- @command.options[:watch].should == valid_options[:watch]
49
- end
50
-
51
- it "should set the debug" do
52
- @command.options[:debug].should == valid_options[:debug]
53
- end
54
-
55
- it "should set the options with what was passed" do
56
- @command.options.should == valid_options
57
- end
58
- end
59
-
60
- describe "executing run!" do
61
- before(:each) do
62
- @command = Less::Command.new(required_options)
63
- end
64
- after(:each) do
65
- @command.run!
66
- end
67
-
68
- describe "when not watching" do
69
- describe "and the destination file doesn't exist" do
70
- before(:each) do
71
- @command.stub!(:watch?).and_return(false)
72
- end
73
-
74
- it "should verify if we need to watch the file or not" do
75
- @command.should_receive(:watch?).and_return(false)
76
- end
77
-
78
- it "should attempt to re-compile" do
79
- @command.should_receive(:parse).with().once
80
- end
81
- end
82
-
83
- describe "and the destination file does exist" do
84
- it "should not attempt to create a new file"
85
- it "should attempt to re-compile"
86
- end
87
- end
88
-
89
- describe "when watching" do
90
- describe "and the destination file doesn't exist" do
91
- it "should attempt to compile to a new file"
92
- it "should begin to watch the file"
93
- end
94
-
95
- describe "and the destination file does exist" do
96
- it "should not attempt to compile to a new file"
97
- it "should begin to watch the existing file"
98
- it "should re-compile when the existing file changes"
99
- end
100
- end
101
- end
102
- end
@@ -1,18 +0,0 @@
1
- .magic-box {
2
- content: "gold";
3
- width: 60cm;
4
- height: 40cm;
5
- }
6
- .magic-box #lock { color: silver; }
7
- #accessors {
8
- content: "gold";
9
- width: 60cm;
10
- }
11
- .unlock {
12
- content: "gold";
13
- width: 60cm;
14
- height: 40cm;
15
- color: silver;
16
- border-color: orange;
17
- }
18
- .unlock #lock { color: silver; }
data/spec/css/big.css DELETED
@@ -1,3768 +0,0 @@
1
- html { background: #1F9EC9; }
2
- #doc4 {
3
- color: #333333;
4
- min-width: 974px;
5
- }
6
- #bd { background: #FFFFFF; }
7
- #yui-main { padding-top: .5em; }
8
- #cs-main { margin: 0 .5em; }
9
- .yui-t6 .yui-b { margin-right: .5em; }
10
- #moreHoods { display: block; }
11
- .js #location-navigation-form .form-submit { display: none; }
12
- .js #business-listing-form .form-submit { display: none; }
13
- .js #detailTabs ul { display: none; }
14
- .js #detailsEnhanced #addTags { display: none; }
15
- .js #locationSearchList { display: none; }
16
- .js #moreHoods { display: none; }
17
- #navListLeft { display: none; }
18
- .js #navListLeft { display: block; }
19
- .grey { color: #666666; }
20
- .light-grey { color: #CCCCCC; }
21
- .centerText { text-align: center; }
22
- .rightFloat {
23
- float: right;
24
- display: inline;
25
- }
26
- .leftFloat {
27
- float: left;
28
- display: inline;
29
- }
30
- .inline { display: inline; }
31
- .hide { display: none; }
32
- .clear {
33
- clear: both;
34
- height: 0;
35
- width: 0;
36
- margin: 0;
37
- padding: 0;
38
- }
39
- .zeroOut {
40
- margin: 0;
41
- padding: 0;
42
- }
43
- .pad { padding-top: .75em; }
44
- .indent { padding-left: .5em; }
45
- div.c1 { text-align: center; }
46
- .bigText { font-size: 123%; }
47
- .warning { color: red; }
48
- .separator {
49
- display: inline;
50
- overflow: hidden;
51
- width: 0;
52
- padding: 0;
53
- border-left: 1px solid #6ACBE8;
54
- border-right: 1px solid #FFFFFF;
55
- }
56
- .loading { background: url("http://static.csimg.com/img/loaders/cs-largeLoader.20081130.1.gif") no-repeat 50% 50%; }
57
- .formThrobbing { background: #FFFFFF url("http://static.csimg.com/img/single/cs-smallBlueLoader.20081130.1.gif") no-repeat 99% 50%; }
58
- div.messages {
59
- margin: .5em;
60
- padding: .5em;
61
- line-height: 150%;
62
- }
63
- div.messages .title {
64
- font-weight: bold;
65
- font-size: 153.9%;
66
- }
67
- div.messages ul {
68
- padding-left: 1em;
69
- list-style: none;
70
- }
71
- div.error {
72
- background: #FACC4C;
73
- border: 1px solid #E4AD05;
74
- color: #A05218;
75
- }
76
- div.error li {
77
- list-style: none;
78
- background: url("http://static.csimg.com/v2/img/icon-error.png") no-repeat left;
79
- padding-left: 24px;
80
- line-height: 24px;
81
- }
82
- div.status {
83
- background: #AAD08C url("http://static.csimg.com/v2/img/background-success.gif") repeat-x top;
84
- border: 1px solid #84B858;
85
- color: #466428;
86
- padding: 5px;
87
- }
88
- div.status li {
89
- list-style: none;
90
- background: url("http://static.csimg.com/v2/img/icon-success.png") no-repeat left;
91
- padding-left: 24px;
92
- line-height: 24px;
93
- }
94
- .cs-blue-fade {
95
- border: 1px solid #B6E6F3;
96
- background: #E6F7FB url("http://static.csimg.com/v2/img/cs-blueFadeUpBG.gif") repeat-x bottom left;
97
- padding: .5em;
98
- color: #1A85A8;
99
- font-size: 12px;
100
- margin: .5em;
101
- }
102
- .cs-blue-fade p { padding: .5em 0; }
103
- .cs-blue-fade img {
104
- padding: 0 1em 0 0;
105
- float: left;
106
- }
107
- .cs-green-solid {
108
- border: 4px solid #BDD685;
109
- background: #E2EDC9;
110
- padding: 1em;
111
- color: #647836;
112
- font-size: 12px;
113
- margin: .5em;
114
- }
115
- .cs-green-solid .pricing {
116
- font-size: 9px;
117
- margin: 0 .5em;
118
- float: left;
119
- width: 40%;
120
- }
121
- .cs-green-solid .pricing-top { font-size: 11px; }
122
- .cs-green-solid .pricing-top span {
123
- font-size: 31px;
124
- color: #3C3C3C;
125
- }
126
- .cs-green-solid .pricing-bottom {
127
- height: 50px;
128
- width: 78px;
129
- background: url("http://static.csimg.com/v2/img/cs-cta-pricing.png") no-repeat bottom left;
130
- margin: ;
131
- }
132
- h1 {
133
- font-size: 153.9%;
134
- font-weight: bold;
135
- color: #166C89;
136
- }
137
- h2 {
138
- font-size: 153.9%;
139
- font-weight: bold;
140
- color: #166C89;
141
- }
142
- h3 {
143
- font-size: 153.9%;
144
- font-weight: bold;
145
- color: #166C89;
146
- }
147
- h4 {
148
- font-size: 153.9%;
149
- font-weight: bold;
150
- color: #166C89;
151
- }
152
- h5 {
153
- font-size: 153.9%;
154
- font-weight: bold;
155
- color: #166C89;
156
- }
157
- h2 { font-size: 123.1%; }
158
- h3 {
159
- color: #1F9EC9;
160
- margin: .5em 0;
161
- }
162
- h4 { color: #666666; }
163
- h5 {
164
- text-transform: uppercase;
165
- font-size: 116%;
166
- color: #666666;
167
- padding: 0;
168
- margin: 0 .25em;
169
- }
170
- h6 {
171
- color: #666666;
172
- font-size: 100%;
173
- font-weight: bold;
174
- }
175
- .subtitle { color: #999999; }
176
- #homeMain #new h3 {
177
- margin: 0;
178
- padding: .2em 0 1em 0;
179
- font-size: 100%;
180
- color: #667B4C;
181
- }
182
- #mainHeader {
183
- background: #1F9EC9;
184
- padding: .5em;
185
- border-bottom: 3px solid #5FC5E7;
186
- }
187
- .logo {
188
- display: block;
189
- text-indent: -9999em;
190
- overflow: hidden;
191
- width: 181px;
192
- height: 26px;
193
- background: url("http://static.csimg.com/img/cs-bigIconSprite.20090316.1.png") no-repeat 0 0;
194
- float: left;
195
- }
196
- .tagline {
197
- text-indent: -9999px;
198
- overflow: hidden;
199
- display: block;
200
- float: left;
201
- background: url("http://static.csimg.com/img/cs-bigIconSprite.20090316.1.png") no-repeat 0 -26px;
202
- width: 160px;
203
- height: 17px;
204
- margin-top: .35em;
205
- }
206
- #userData {
207
- color: #ACE1F2;
208
- font-size: 93%;
209
- font-weight: bold;
210
- }
211
- #userData ul {
212
- padding: 0;
213
- margin: 0;
214
- }
215
- #userData ul li {
216
- float: right;
217
- padding: .5em .5em;
218
- }
219
- #headerSearch {
220
- background: #ACE1F2;
221
- padding: .5em .5em .5em .4em;
222
- color: #006581;
223
- font-weight: bold;
224
- font-size: 93%;
225
- }
226
- #headerSearch .item { float: left; }
227
- #headerSearch .form-text {
228
- padding-top: .4em;
229
- padding-bottom: .4em;
230
- padding-right: .4em;
231
- width: auto;
232
- background-color: #FFFFFF;
233
- border: 1px solid #69C8E7;
234
- }
235
- #headerSearch span.item { padding: .45em .5em 0 .5em; }
236
- #headerSearch .item .term { color: #156782; }
237
- #headerSearch .item .location { padding-left: .5em; }
238
- #headerSearch .termBG {
239
- background: #FFFFFF url("http://static.csimg.com/img/cs-iconSprite.20090316.4.png") no-repeat -623px 2px;
240
- border: 1px solid #69C8E7;
241
- padding-left: 22px;
242
- }
243
- #headerSearch .form-submit {
244
- float: left;
245
- width: auto;
246
- border-top: 1px solid #FF9933;
247
- border-right: 1px solid #5FC5E7;
248
- border-bottom: 1px solid #5FC5E7;
249
- border-left: 1px solid #FF9933;
250
- padding: .4em .5em .25em;
251
- margin: 0 0 0 .5em;
252
- color: #FFFFFF;
253
- background: #FF9933;
254
- -moz-border-radius: 2px;
255
- -webkit-border-radius: 2px;
256
- }
257
- #headerSearch #changeLocField {
258
- float: left;
259
- padding-left: .5em;
260
- }
261
- #headerSearch #cancelButton {
262
- display: block;
263
- float: left;
264
- font-size: 85%;
265
- margin: .75em 0 0 .75em;
266
- padding: 0;
267
- }
268
- #locationSearchList {
269
- padding: .5em;
270
- margin-top: -1px;
271
- color: #333333;
272
- background: #ACE1F2;
273
- }
274
- #locationSearchList img {
275
- margin: 0 auto;
276
- display: block;
277
- }
278
- #locationSearchList .cs-yellow-block {
279
- border: 1px solid #FECD57;
280
- margin: 0 0 .5em 0;
281
- }
282
- #locationSearchList .cs-blue-block {
283
- border: 1px solid #B6E6F3;
284
- margin: 0;
285
- }
286
- #locationSearchList ul {
287
- margin: 0;
288
- padding: .5em 0;
289
- color: #7E7E7E;
290
- }
291
- #locationSearchList ul li {
292
- padding: .25em 0;
293
- width: 100%;
294
- }
295
- #whatsNearbyButton { float: right; }
296
- #homeNavigation { background: #E9F3CF; }
297
- #mainNavigation { background: #E9F3CF; }
298
- #homeNavigation {
299
- color: #5F8134;
300
- font-size: 93%;
301
- }
302
- #homeNavigation a {
303
- display: block;
304
- padding: .65em .3em 0 0;
305
- float: right;
306
- color: #5F8134;
307
- text-decoration: none;
308
- }
309
- #homeNavigation ul {
310
- margin: 0;
311
- padding: 0;
312
- display: inline;
313
- }
314
- #homeNavigation ul li {
315
- display: block;
316
- padding: .65em .3em 0 0;
317
- float: right;
318
- }
319
- #homeNavigation ul li a {
320
- font-weight: bold;
321
- display: inline;
322
- float: none;
323
- padding: 0;
324
- }
325
- #navBar ul {
326
- padding: 0;
327
- margin: 0 0 0 0;
328
- }
329
- #navBar ul li {
330
- float: right;
331
- display: inline;
332
- }
333
- #navBar ul li a {
334
- display: block;
335
- padding: 1em;
336
- color: #5F8134;
337
- font-weight: bold;
338
- font-size: 93%;
339
- text-decoration: none;
340
- }
341
- #navBar ul li a:hover {
342
- color: #666666;
343
- background: #FFFFFF;
344
- }
345
- #navBar ul li.current a {
346
- color: #666666;
347
- background: #FFFFFF;
348
- }
349
- #navBar .navBackground {
350
- color: #666666;
351
- background: #FFFFFF;
352
- }
353
- .lavaLamp {
354
- position: relative;
355
- overflow: hidden;
356
- }
357
- .lavaLamp li.navBackground {
358
- z-index: 8;
359
- position: absolute;
360
- width: 0px;
361
- }
362
- .lavaLamp li a {
363
- z-index: 10;
364
- display: block;
365
- position: relative;
366
- overflow: hidden;
367
- }
368
- #navBar ul li.navSeparator {
369
- border-left: 1px solid #C1DE74;
370
- border-right: 1px solid #FFFFFF;
371
- margin: .8em .5em 0 .5em;
372
- display: inline;
373
- width: 0px;
374
- overflow: hidden;
375
- }
376
- #whereAmI h1 {
377
- margin: 0;
378
- padding: .65em 0 0 .5em;
379
- color: #608235;
380
- font-size: 123.1%;
381
- float: left;
382
- font-weight: bold;
383
- }
384
- #homeNavigation h1 {
385
- margin: 0;
386
- padding: .65em 0 0 .5em;
387
- color: #608235;
388
- font-size: 123.1%;
389
- float: left;
390
- font-weight: bold;
391
- }
392
- #whereAmI h2 {
393
- margin: 0;
394
- padding: .65em 0 0 .5em;
395
- color: #608235;
396
- font-size: 123.1%;
397
- float: left;
398
- font-weight: bold;
399
- }
400
- #homeNavigation h2 {
401
- margin: 0;
402
- padding: .65em 0 0 .5em;
403
- color: #608235;
404
- font-size: 123.1%;
405
- float: left;
406
- font-weight: bold;
407
- }
408
- #homeNavigation h1 {
409
- padding: .65em 0 .65em .5em;
410
- font-size: 100%;
411
- font-weight: normal;
412
- }
413
- #homeNavigation h2 {
414
- padding: .65em 0 .65em .5em;
415
- font-size: 100%;
416
- font-weight: normal;
417
- }
418
- #whereAmI h1 span { color: #666666; }
419
- #whereAmI h2 span { color: #666666; }
420
- #whereAmI h1 a {
421
- color: #608235;
422
- text-decoration: none;
423
- }
424
- #whereAmI h2 a {
425
- color: #608235;
426
- text-decoration: none;
427
- }
428
- #whereAmI a#changeLocation {
429
- display: block;
430
- float: left;
431
- color: #608235;
432
- font-size: 85%;
433
- margin: 1.4em 0 0 .75em;
434
- padding: 0;
435
- }
436
- #mainNavigation a#cancelButton {
437
- display: block;
438
- float: left;
439
- color: #608235;
440
- font-size: 85%;
441
- margin: 1.4em 0 0 .75em;
442
- padding: 0;
443
- }
444
- #homeNavigation a#cancelButton {
445
- display: block;
446
- float: left;
447
- color: #608235;
448
- font-size: 85%;
449
- margin: 1.4em 0 0 .75em;
450
- padding: 0;
451
- }
452
- #mainNavigation input {
453
- float: left;
454
- margin: .4em 0 0 .75em;
455
- width: auto;
456
- padding: .5em;
457
- border: 1px solid #5F8134;
458
- }
459
- #homeNavigation input {
460
- float: left;
461
- margin: .4em 0 0 .75em;
462
- width: auto;
463
- padding: .5em;
464
- border: 1px solid #5F8134;
465
- }
466
- #mainNavigation .form-submit {
467
- width: auto;
468
- border-top: 1px solid #FF9933;
469
- border-right: 1px solid #608235;
470
- border-bottom: 1px solid #608235;
471
- border-left: 1px solid #FF9933;
472
- padding: .4em .5em .4em;
473
- color: #FFFFFF;
474
- background: #FF9933;
475
- }
476
- #homeNavigation .form-submit {
477
- width: auto;
478
- border-top: 1px solid #FF9933;
479
- border-right: 1px solid #608235;
480
- border-bottom: 1px solid #608235;
481
- border-left: 1px solid #FF9933;
482
- padding: .4em .5em .4em;
483
- color: #FFFFFF;
484
- background: #FF9933;
485
- }
486
- .form-submit:hover { cursor: pointer; }
487
- #breadcrumb {
488
- border-bottom: 1px solid #E9E9E9;
489
- padding: .8em 0;
490
- margin: 0 .6em;
491
- color: #6e6e6e;
492
- font-size: 85%;
493
- }
494
- #breadcrumb a {
495
- color: #6e6e6e;
496
- text-decoration: none;
497
- }
498
- #breadcrumb a:hover { color: #333333; }
499
- #hoodNavList {
500
- border-bottom: 1px solid #E9E9E9;
501
- background: #F8FBF0;
502
- padding: .5em;
503
- }
504
- #moreHoods {
505
- border-bottom: 1px solid #E9E9E9;
506
- background: #F8FBF0;
507
- padding: .5em;
508
- }
509
- #hoodNavList { border-top: 1px solid #D9EAB0; }
510
- #navListLeft {
511
- background: #FFFFFF;
512
- border: 1px solid #D9EAB0;
513
- position: relative;
514
- }
515
- .distance {
516
- color: #7E7E7E;
517
- font-size: 85%;
518
- }
519
- #hoodMap { height: 20em; }
520
- a { color: #1F9EC9; }
521
- a:hover { text-decoration: none; }
522
- .cleanLinks a { text-decoration: none; }
523
- .cleanLinks a:hover { text-decoration: underline; }
524
- .greenLinks a { color: #557D33; }
525
- .whiteLinks a { color: #FFFFFF; }
526
- .darkBlueLinks a { color: #166C89; }
527
- .pointer:hover { cursor: pointer; }
528
- #hoodNavList a { color: #557D33; }
529
- #moreHoods a { color: #557D33; }
530
- #findLogin a {
531
- float: right;
532
- height: 34px;
533
- width: 150px;
534
- background: url("http://static.csimg.com/img/cs-homeSprite.20090410.1.png") no-repeat -458px -127px;
535
- display: block;
536
- }
537
- #homeMain #ownText a { font-weight: bold; }
538
- a#addBusinessButton {
539
- background-image: url("http://static.csimg.com/img/cs-homeSprite.20090410.1.png");
540
- background-repeat: no-repeat;
541
- }
542
- a#upgradeProfileButton {
543
- background-image: url("http://static.csimg.com/img/cs-homeSprite.20090410.1.png");
544
- background-repeat: no-repeat;
545
- }
546
- a#addBusinessButton {
547
- display: block;
548
- height: 42px;
549
- width: 175px;
550
- text-indent: -9999em;
551
- background-position: -0 -28px;
552
- float: left;
553
- }
554
- a#addBusinessButton:hover { background-position: -0 -75px; }
555
- a#addBusinessButton .click { background-position: -0 -123px; }
556
- a#upgradeProfileButton {
557
- display: block;
558
- height: 42px;
559
- width: 165px;
560
- text-indent: -9999em;
561
- background-position: -181px -28px;
562
- float: left;
563
- }
564
- a#upgradeProfileButton:hover { background-position: -181px -75px; }
565
- a#upgradeProfileButton .click { background-position: -181px -123px; }
566
- #claimBusiness a { font-size: 93%; }
567
- p.date {
568
- padding: 0;
569
- margin: 0 .5em 0 1em;
570
- width: 42px;
571
- background: url("http://static.csimg.com/v2/img/background-events-icon.gif") no-repeat;
572
- text-align: center;
573
- font-size: 10px;
574
- float: left;
575
- display: block;
576
- }
577
- p.date span.month {
578
- color: #FFFFFF;
579
- text-transform: uppercase;
580
- display: block;
581
- line-height: 18px;
582
- }
583
- p.date span.day {
584
- font-size: 16px;
585
- color: #666666;
586
- font-weight: bold;
587
- line-height: 26px;
588
- display: block;
589
- }
590
- p.date span.hour {
591
- font-size: 12px;
592
- color: #666666;
593
- font-weight: bold;
594
- line-height: 26px;
595
- display: block;
596
- }
597
- p.date span.date { display: block; }
598
- li.event { color: #6C6C6C; }
599
- li.event .info { padding-left: 65px; }
600
- hr {
601
- height: 0;
602
- border: none;
603
- }
604
- hr.blue {
605
- border: 1px solid #C0E9F5;
606
- margin: .2em 0 0 0;
607
- }
608
- hr.grey { background: #E1E1E1; }
609
- hr.fade {
610
- border-top: 1px solid #C0E9F5;
611
- border-bottom: 1px solid #FFFFFF;
612
- }
613
- hr.darkFade {
614
- border-top: 1px solid #7EDAF1;
615
- border-bottom: 1px solid #FFFFFF;
616
- }
617
- hr.greyFade {
618
- border-top: 1px solid #D9D7D5;
619
- border-bottom: 1px solid #FFFFFF;
620
- }
621
- .csButton {
622
- border: 1px solid;
623
- border-left-color: #FFFFFF;
624
- border-top-color: #FFFFFF;
625
- border-right-color: #61C6E7;
626
- border-bottom-color: #61C6E7;
627
- padding: .3em .5em;
628
- font-size: 93%;
629
- font-weight: bold;
630
- background: #EDF9FC;
631
- color: #1F9EC9;
632
- cursor: pointer;
633
- }
634
- .csButton:hover { background: #FFFFFF; }
635
- .csButton span {
636
- position: relative;
637
- top: .5em;
638
- margin-left: .4em;
639
- }
640
- .print {
641
- background: #D2E9AD;
642
- font-weight: bold;
643
- border: 1px solid #BADE85;
644
- border-radius: 5px;
645
- -moz-border-radius: 5px;
646
- -webkit-border-radius: 5px;
647
- color: #9A9A9A;
648
- font-size: 93%;
649
- padding: .3em .8em;
650
- margin: .5em;
651
- text-align: center;
652
- }
653
- .print a {
654
- color: #4F6B1F;
655
- text-decoration: none;
656
- display: block;
657
- width: 100%;
658
- }
659
- .cs-green-button {
660
- border: 1px solid;
661
- padding: .25em .5em;
662
- margin: .25em .25em;
663
- }
664
- .cs-grey-button {
665
- border: 1px solid;
666
- padding: .25em .5em;
667
- margin: .25em .25em;
668
- }
669
- .cs-green-button {
670
- background: #D2E9AD;
671
- border-color: #B1CE6F;
672
- }
673
- .cs-grey-button {
674
- background: #E0E0E0;
675
- border-color: #D4D4D4;
676
- }
677
- .cs-green-button a {
678
- font-size: 85%;
679
- font-weight: bold;
680
- text-decoration: none;
681
- }
682
- .cs-grey-button a {
683
- font-size: 85%;
684
- font-weight: bold;
685
- text-decoration: none;
686
- }
687
- .cs-green-button a { color: #627632; }
688
- .cs-grey-button a { color: #666666; }
689
- #tooltip {
690
- float: left;
691
- font-size: 85%;
692
- max-width: 15em;
693
- padding: .5em;
694
- position: absolute;
695
- z-index: 99999;
696
- font-weight: normal;
697
- }
698
- .cs-button {
699
- outline: 0;
700
- margin: 0 4px 0 0;
701
- padding: .4em 1em;
702
- text-decoration: none;
703
- cursor: pointer;
704
- position: relative;
705
- text-align: center;
706
- zoom: 1;
707
- }
708
- .cs-button .ui-icon {
709
- position: absolute;
710
- top: 50%;
711
- margin-top: -8px;
712
- left: 50%;
713
- margin-left: -8px;
714
- }
715
- a.cs-button { float: left; }
716
- button.cs-button {
717
- width: auto;
718
- overflow: visible;
719
- }
720
- .cs-button-small {
721
- outline: 0;
722
- margin: 0 4px 0 0;
723
- padding: .5em 1em;
724
- text-decoration: none;
725
- cursor: pointer;
726
- position: relative;
727
- text-align: center;
728
- zoom: 1;
729
- font-size: 85%;
730
- }
731
- .cs-button-small .ui-icon {
732
- position: absolute;
733
- top: 50%;
734
- margin-top: -8px;
735
- left: 50%;
736
- margin-left: -8px;
737
- }
738
- a.cs-button-small { float: left; }
739
- button.cs-button-small {
740
- width: auto;
741
- overflow: visible;
742
- }
743
- .cs-buttonset { float: left; }
744
- .cs-buttonset a { text-decoration: none; }
745
- .cs-buttonset .cs-button {
746
- float: left;
747
- margin-right: -1px;
748
- }
749
- .cs-toolbar {
750
- padding: .5em;
751
- margin: 0;
752
- }
753
- .cs-toolbar .cs-buttonset {
754
- margin-right: 1.5em;
755
- padding-left: 1px;
756
- }
757
- .cs-toolbar .cs-button { font-size: 93%; }
758
- .ui-state-default-grey {
759
- border: 1px solid #E3E1DF;
760
- background: #FCFCFC;
761
- color: #909090;
762
- outline: none;
763
- }
764
- .ui-widget-content-grey .ui-state-default-grey {
765
- border: 1px solid #E3E1DF;
766
- background: #FCFCFC;
767
- color: #909090;
768
- outline: none;
769
- }
770
- .ui-state-default-grey a {
771
- color: #1F9EC9;
772
- text-decoration: none;
773
- outline: none;
774
- }
775
- .ui-state-hover-grey {
776
- border: 1px solid #E3E1DF;
777
- background: #FFFFFF;
778
- color: #666666;
779
- outline: none;
780
- }
781
- .ui-widget-content-grey .ui-state-hover-grey {
782
- border: 1px solid #E3E1DF;
783
- background: #FFFFFF;
784
- color: #666666;
785
- outline: none;
786
- }
787
- .ui-state-focus-grey {
788
- border: 1px solid #E3E1DF;
789
- background: #FFFFFF;
790
- color: #666666;
791
- outline: none;
792
- }
793
- .ui-widget-content-grey .ui-state-focus-grey {
794
- border: 1px solid #E3E1DF;
795
- background: #FFFFFF;
796
- color: #666666;
797
- outline: none;
798
- }
799
- .ui-state-default-grey:hover {
800
- border: 1px solid #E3E1DF;
801
- background: #FFFFFF;
802
- color: #666666;
803
- outline: none;
804
- }
805
- .ui-state-default-grey a:hover {
806
- color: #1F9EC9;
807
- text-decoration: none;
808
- outline: none;
809
- }
810
- .ui-state-hover-grey a {
811
- color: #666666;
812
- text-decoration: none;
813
- outline: none;
814
- }
815
- .ui-state-active-grey {
816
- border: 1px solid #E3E1DF;
817
- background: #FFFFFF;
818
- font-weight: bold;
819
- color: #666666;
820
- outline: none;
821
- }
822
- .ui-widget-content-grey .ui-state-active-grey {
823
- border: 1px solid #E3E1DF;
824
- background: #FFFFFF;
825
- font-weight: bold;
826
- color: #666666;
827
- outline: none;
828
- }
829
- .ui-state-active-grey a {
830
- color: #666666;
831
- outline: none;
832
- text-decoration: none;
833
- }
834
- .ui-state-highlight-grey {
835
- border: 1px solid #fad42e;
836
- background: #fbec88;
837
- color: #363636;
838
- }
839
- .ui-widget-content-grey .ui-state-highlight-grey {
840
- border: 1px solid #fad42e;
841
- background: #fbec88;
842
- color: #363636;
843
- }
844
- .ui-state-error-grey {
845
- border: 1px solid #cd0a0a;
846
- background: #fef1ec;
847
- color: #cd0a0a;
848
- }
849
- .ui-widget-content-grey .ui-state-error-grey {
850
- border: 1px solid #cd0a0a;
851
- background: #fef1ec;
852
- color: #cd0a0a;
853
- }
854
- .ui-state-error-text-grey { color: #cd0a0a; }
855
- .ui-widget-content-grey .ui-state-error-text-grey { color: #cd0a0a; }
856
- .ui-state-disabled-grey {
857
- opacity: .35;
858
- filter: Alpha(Opacity=35);
859
- background-image: none;
860
- }
861
- .ui-widget-content-grey .ui-state-disabled-grey {
862
- opacity: .35;
863
- filter: Alpha(Opacity=35);
864
- background-image: none;
865
- }
866
- .ui-priority-primary-grey { font-weight: bold; }
867
- .ui-widget-content-grey .ui-priority-primary-grey { font-weight: bold; }
868
- .ui-priority-secondary-grey {
869
- opacity: .7;
870
- filter: Alpha(Opacity=70);
871
- font-weight: normal;
872
- }
873
- .ui-widget-content-grey .ui-priority-secondary-grey {
874
- opacity: .7;
875
- filter: Alpha(Opacity=70);
876
- font-weight: normal;
877
- }
878
- .ui-state-highlight-grey {
879
- border: 1px solid #fad42e;
880
- background: #fbec88;
881
- color: #363636;
882
- }
883
- .ui-widget-content-grey .ui-state-highlight-grey {
884
- border: 1px solid #fad42e;
885
- background: #fbec88;
886
- color: #363636;
887
- }
888
- .ui-state-error-grey {
889
- border: 1px solid #cd0a0a;
890
- background: #fef1ec;
891
- color: #cd0a0a;
892
- }
893
- .ui-state-error-grey:hover {
894
- border: 1px solid #cd0a0a;
895
- background: #fef1ec;
896
- color: #cd0a0a;
897
- }
898
- .ui-widget-content-grey .ui-state-error-grey {
899
- border: 1px solid #cd0a0a;
900
- background: #fef1ec;
901
- color: #cd0a0a;
902
- }
903
- .ui-state-error-text-grey { color: #cd0a0a; }
904
- .ui-state-error-text-grey:hover { color: #cd0a0a; }
905
- .ui-widget-content-grey .ui-state-error-text-grey { color: #cd0a0a; }
906
- .ui-state-error-text-grey:hover { background: #fef1ec; }
907
- .ui-state-default:hover {
908
- border: 1px solid #A2DEF0;
909
- background: #fcfdfd;
910
- font-weight: bold;
911
- color: #1F9EC9;
912
- outline: none;
913
- }
914
- .ui-state-default a:hover {
915
- color: #1F9EC9;
916
- text-decoration: none;
917
- outline: none;
918
- }
919
- .ui-state-highlight {
920
- border: 1px solid #fad42e;
921
- background: #fbec88;
922
- color: #363636;
923
- }
924
- .ui-widget-content .ui-state-highlight {
925
- border: 1px solid #fad42e;
926
- background: #fbec88;
927
- color: #363636;
928
- }
929
- .ui-state-error {
930
- border: 1px solid #cd0a0a;
931
- background: #fef1ec;
932
- color: #cd0a0a;
933
- }
934
- .ui-state-error:hover {
935
- border: 1px solid #cd0a0a;
936
- background: #fef1ec;
937
- color: #cd0a0a;
938
- }
939
- .ui-widget-content .ui-state-error {
940
- border: 1px solid #cd0a0a;
941
- background: #fef1ec;
942
- color: #cd0a0a;
943
- }
944
- .ui-state-error-text { color: #cd0a0a; }
945
- .ui-state-error-text:hover { color: #cd0a0a; }
946
- .ui-widget-content .ui-state-error-text { color: #cd0a0a; }
947
- .ui-state-error-text:hover {
948
- color: #cd0a0a;
949
- background: #fef1ec;
950
- cursor: pointer;
951
- }
952
- .ui-state-default-green {
953
- border: 1px solid #D3E8A4;
954
- background: #F5F9E9;
955
- color: #3F8300;
956
- outline: none;
957
- }
958
- .ui-widget-content-green .ui-state-default-green {
959
- border: 1px solid #D3E8A4;
960
- background: #F5F9E9;
961
- color: #3F8300;
962
- outline: none;
963
- }
964
- .ui-state-default-green a {
965
- color: #3F8300;
966
- text-decoration: none;
967
- outline: none;
968
- }
969
- .ui-state-hover-green {
970
- border: 1px solid #D3E8A4;
971
- background: #FFFFFF;
972
- color: #666666;
973
- outline: none;
974
- }
975
- .ui-widget-content-green .ui-state-hover-green {
976
- border: 1px solid #D3E8A4;
977
- background: #FFFFFF;
978
- color: #666666;
979
- outline: none;
980
- }
981
- .ui-state-focus-green {
982
- border: 1px solid #D3E8A4;
983
- background: #FFFFFF;
984
- color: #666666;
985
- outline: none;
986
- }
987
- .ui-widget-content-green .ui-state-focus-green {
988
- border: 1px solid #D3E8A4;
989
- background: #FFFFFF;
990
- color: #666666;
991
- outline: none;
992
- }
993
- .ui-state-default-green:hover {
994
- border: 1px solid #D3E8A4;
995
- background: #FFFFFF;
996
- color: #666666;
997
- outline: none;
998
- }
999
- .ui-state-default-green a:hover {
1000
- color: #3F8300;
1001
- text-decoration: none;
1002
- outline: none;
1003
- }
1004
- .ui-state-hover-green a {
1005
- color: #666666;
1006
- text-decoration: none;
1007
- outline: none;
1008
- }
1009
- .ui-state-active-green {
1010
- border: 1px solid #D3E8A4;
1011
- background: #FFFFFF;
1012
- font-weight: bold;
1013
- color: #666666;
1014
- outline: none;
1015
- }
1016
- .ui-widget-content-green .ui-state-active-green {
1017
- border: 1px solid #D3E8A4;
1018
- background: #FFFFFF;
1019
- font-weight: bold;
1020
- color: #666666;
1021
- outline: none;
1022
- }
1023
- .ui-state-active-green a {
1024
- color: #666666;
1025
- outline: none;
1026
- text-decoration: none;
1027
- }
1028
- .icon {
1029
- height: 25px;
1030
- width: 25px;
1031
- margin: .2em;
1032
- background-image: url("http://static.csimg.com/img/cs-iconSprite.20090316.4.png");
1033
- background-repeat: no-repeat;
1034
- }
1035
- .small-icon {
1036
- height: 16px;
1037
- width: 16px;
1038
- background-image: url("http://static.csimg.com/img/cs-iconSprite.20090316.4.png");
1039
- background-repeat: no-repeat;
1040
- }
1041
- .icon a {
1042
- text-indent: -9999em;
1043
- display: block;
1044
- height: 25px;
1045
- width: 25px;
1046
- }
1047
- .cat-arts-entertainment { background-position: -225px -25px; }
1048
- .cat-1 { background-position: -225px -25px; }
1049
- .cat-automotive { background-position: -100px 0; }
1050
- .cat-2 { background-position: -100px 0; }
1051
- .cat-business-professional-services { background-position: -150px 0; }
1052
- .cat-3 { background-position: -150px 0; }
1053
- .cat-computers-and-internet { background-position: -400px -25px; }
1054
- .cat-4 { background-position: -400px -25px; }
1055
- .cat-contractors-construction-equipment { background-position: -200px 0; }
1056
- .cat-5 { background-position: -200px 0; }
1057
- .cat-education { background-position: -425px -25px; }
1058
- .cat-6 { background-position: -425px -25px; }
1059
- .cat-finance-insurance { background-position: -425px 0; }
1060
- .cat-7 { background-position: -425px 0; }
1061
- .cat-health-medicine { background-position: -175px 0; }
1062
- .cat-8 { background-position: -175px 0; }
1063
- .cat-home-garden { background-position: -200px -25px; }
1064
- .cat-9 { background-position: -200px -25px; }
1065
- .cat-legal { background-position: -450px 0; }
1066
- .cat-10 { background-position: -450px 0; }
1067
- .cat-manufacturing-production-wholesale { background-position: -525px 0; }
1068
- .cat-11 { background-position: -525px 0; }
1069
- .cat-other { background-position: -475px 0; }
1070
- .cat-12 { background-position: -475px 0; }
1071
- .cat-personal-services-care { background-position: -25px 0; }
1072
- .cat-13 { background-position: -25px 0; }
1073
- .cat-pets { background-position: -350px -25px; }
1074
- .cat-14 { background-position: -350px -25px; }
1075
- .cat-real-estate-moving-storage { background-position: -225px 0; }
1076
- .cat-15 { background-position: -225px 0; }
1077
- .cat-religious-organizations { background-position: -500px 0; }
1078
- .cat-16 { background-position: -500px 0; }
1079
- .cat-restaurants-food-beverages { background-position: 0 0; }
1080
- .cat-17 { background-position: 0 0; }
1081
- .cat-retail-shopping { background-position: -75px 0; }
1082
- .cat-18 { background-position: -75px 0; }
1083
- .cat-sports-recreation { background-position: -375px -25px; }
1084
- .cat-19 { background-position: -375px -25px; }
1085
- .cat-telecommunications { background-position: -525px -25px; }
1086
- .cat-20 { background-position: -525px -25px; }
1087
- .cat-travel-transportation { background-position: -500px -25px; }
1088
- .cat-21 { background-position: -500px -25px; }
1089
- .feed-add_photo { background-position: -250px -25px; }
1090
- .feed-1 { background-position: -250px -25px; }
1091
- .feed-new_review { background-position: -300px -25px; }
1092
- .feed-2 { background-position: -300px -25px; }
1093
- .feed-all_star { background-position: -50px -50px; }
1094
- .feed-4 { background-position: -50px -50px; }
1095
- .feed-new_video { background-position: -100px -25px; }
1096
- .feed-5 { background-position: -100px -25px; }
1097
- .feed-profile_update { background-position: -25px -25px; }
1098
- .feed-7 { background-position: -25px -25px; }
1099
- .feed-add_tag { background-position: 0 -25px; }
1100
- .feed-8 { background-position: 0 -25px; }
1101
- .feed-new_vote { background-position: -75px -25px; }
1102
- .feed-11 { background-position: -75px -25px; }
1103
- a.video {
1104
- background-image: url("http://static.csimg.com/img/cs-iconSprite.20090316.4.png");
1105
- background-repeat: no-repeat;
1106
- background-position: -625px -75px;
1107
- padding-left: 20px;
1108
- }
1109
- a.allstar {
1110
- background-image: url("http://static.csimg.com/img/cs-iconSprite.20090316.4.png");
1111
- background-repeat: no-repeat;
1112
- background-position: -625px -50px;
1113
- padding-left: 17px;
1114
- }
1115
- #businessHeading a.allstar { background: none; }
1116
- a.add {
1117
- background-image: url("http://static.csimg.com/img/cs-iconSprite.20090316.4.png");
1118
- background-repeat: no-repeat;
1119
- background-position: -625px -98px;
1120
- padding-left: 15px;
1121
- }
1122
- .icon-number {
1123
- background-position: -550px 0;
1124
- color: #FFFFFF;
1125
- font-size: 11px;
1126
- font-weight: bold;
1127
- text-align: center;
1128
- }
1129
- .icon-number-hover { background-position: -550px -25px; }
1130
- a.blue-close {
1131
- background: url("http://static.csimg.com/img/cs-iconSprite.20090316.4.png") no-repeat -133px 0;
1132
- display: block;
1133
- width: 14px;
1134
- height: 15px;
1135
- }
1136
- a.green-close {
1137
- background: url("http://static.csimg.com/img/cs-iconSprite.20090316.4.png") no-repeat -255px 0;
1138
- display: block;
1139
- width: 14px;
1140
- height: 15px;
1141
- }
1142
- .cs-wwiaftm {
1143
- height: 66px;
1144
- width: 66px;
1145
- background: url("http://static.csimg.com/img/cs-bigIconSprite.20090316.1.png") no-repeat -270px 0;
1146
- }
1147
- .smallLoader {
1148
- background: url("http://static.csimg.com/img/loaders/cs-smallLoader.20081130.1.gif") no-repeat 50% 50%;
1149
- height: 16px;
1150
- width: 16px;
1151
- display: block;
1152
- }
1153
- .smallBlueLoader {
1154
- background: url("http://static.csimg.com/img/single/cs-smallBlueLoader.20081130.1.gif") no-repeat 50% 50%;
1155
- height: 16px;
1156
- width: 16px;
1157
- display: block;
1158
- }
1159
- .icon-country {
1160
- background: url("http://static.csimg.com/img/cs-iconSprite.20090316.4.png") no-repeat -595px 0;
1161
- height: 25px;
1162
- width: 25px;
1163
- }
1164
- .icon-country a {
1165
- display: block;
1166
- height: 25px;
1167
- width: 25px;
1168
- }
1169
- .icon-dropdown {
1170
- background-image: url("http://static.csimg.com/img/cs-iconSprite.20090316.4.png");
1171
- background-repeat: no-repeat;
1172
- background-position: -600px -25px;
1173
- height: 15px;
1174
- width: 15px;
1175
- float: left;
1176
- display: inline;
1177
- margin-left: .5em;
1178
- margin-top: .7em;
1179
- cursor: pointer;
1180
- }
1181
- .icon-dropdownUp {
1182
- background-image: url("http://static.csimg.com/img/cs-iconSprite.20090316.4.png");
1183
- background-repeat: no-repeat;
1184
- background-position: -600px -25px;
1185
- height: 15px;
1186
- width: 15px;
1187
- float: left;
1188
- display: inline;
1189
- margin-left: .5em;
1190
- margin-top: .7em;
1191
- cursor: pointer;
1192
- }
1193
- .icon-dropdownUp { background-position: -600px -50px; }
1194
- .icon-greenArrow {
1195
- background-position: -25px -50px;
1196
- float: left;
1197
- }
1198
- .icon-rss {
1199
- background-position: -475px -25px;
1200
- float: right;
1201
- height: 15px;
1202
- width: 15px;
1203
- }
1204
- .icon-fb { background-position: -225px -50px; }
1205
- .icon-sms { background-position: -250px -50px; }
1206
- .icon-leave-review { background-position: -300px -50px; }
1207
- .icon-posted-on { background-position: -350px -50px; }
1208
- .icon-send-message { background-position: -375px -50px; }
1209
- .icon-flag { background-position: -400px -50px; }
1210
- .icon-about-us {
1211
- background-position: -425px -50px;
1212
- display: block;
1213
- float: left;
1214
- }
1215
- .icon-menu { background-position: -450px -50px; }
1216
- .icon-coupons { background-position: -475px -50px; }
1217
- .icon-fans { background-position: -500px -50px; }
1218
- .icon-print { background-position: -400px 0; }
1219
- .icon-local-badge { background-position: -530px -55px; }
1220
- .js .icon-local-badge { text-indent: -99999em; }
1221
- .icon-reviews {
1222
- background-position: -278px -54px;
1223
- float: left;
1224
- padding-right: .3em;
1225
- }
1226
- .icon-location-pin {
1227
- background-position: -328px -55px;
1228
- display: block;
1229
- float: left;
1230
- }
1231
- .icon-tags {
1232
- background-position: -203px -53px;
1233
- float: left;
1234
- padding-right: .3em;
1235
- }
1236
- .icon-claim-alert {
1237
- background-position: -353px -3px;
1238
- float: left;
1239
- padding-right: .5em;
1240
- }
1241
- .icon-right-arrow { background-position: -300px -2px; }
1242
- .icon-paper {
1243
- background: url("http://static.csimg.com/img/cs-iconSprite.20090316.4.png") no-repeat -525px -75px;
1244
- width: 32px;
1245
- height: 32px;
1246
- float: left;
1247
- }
1248
- .icon-downArrow { background: url("http://static.csimg.com/img/cs-iconSprite.20090316.4.png") no-repeat -300px -75px; }
1249
- .icon-upArrow { background: url("http://static.csimg.com/img/cs-iconSprite.20090316.4.png") no-repeat -315px -75px; }
1250
- .cs-blue-fade {
1251
- border: 1px solid #B6E6F3;
1252
- background: #E6F7FB;
1253
- padding: .5em;
1254
- color: #1A85A8;
1255
- }
1256
- .cs-blue-fade p { padding: .5em 0; }
1257
- .cs-blue-fade img {
1258
- padding: 0 1em 0 0;
1259
- float: left;
1260
- display: inline;
1261
- }
1262
- .cs-green-solid {
1263
- border: 4px solid #BDD685;
1264
- background: #E2EDC9;
1265
- padding: .5em;
1266
- color: #647836;
1267
- }
1268
- .cs-light-blue {
1269
- color: #6C6C6C;
1270
- background: #E1F5FB;
1271
- padding: .5em;
1272
- }
1273
- .cs-green-block {
1274
- padding: .5em;
1275
- border-top: 2px solid;
1276
- margin: 1em 0;
1277
- }
1278
- .cs-yellow-block {
1279
- padding: .5em;
1280
- border-top: 2px solid;
1281
- margin: 1em 0;
1282
- }
1283
- .cs-blue-block {
1284
- padding: .5em;
1285
- border-top: 2px solid;
1286
- margin: 1em 0;
1287
- }
1288
- .cs-yellow-block .title {
1289
- font-size: 93%;
1290
- color: #C0A316;
1291
- padding: 0 0 .5em;
1292
- }
1293
- .cs-green-block .title {
1294
- font-size: 93%;
1295
- color: #C0A316;
1296
- padding: 0 0 .5em;
1297
- }
1298
- .cs-blue-block .title {
1299
- font-size: 93%;
1300
- color: #C0A316;
1301
- padding: 0 0 .5em;
1302
- }
1303
- .cs-green-block {
1304
- background: #EAF1D8;
1305
- border-top-color: #D8E6B5;
1306
- }
1307
- .cs-green-block h5 {
1308
- font-size: 120%;
1309
- color: #668333;
1310
- }
1311
- .cs-yellow-block {
1312
- background: #FFF1D1;
1313
- border-top-color: #FECD57;
1314
- }
1315
- .cs-yellow-block h5 {
1316
- font-size: 120%;
1317
- color: #73630C;
1318
- }
1319
- .cs-blue-block {
1320
- background: #E6F7FB;
1321
- border-top-color: #B6E6F3;
1322
- }
1323
- .cs-blue-block h5 {
1324
- font-size: 120%;
1325
- color: #1F9EC9;
1326
- }
1327
- .ad-container {
1328
- padding: 3px 0 0;
1329
- text-align: center;
1330
- z-index: 0;
1331
- position: relative;
1332
- }
1333
- .zoneA {
1334
- margin: .5em 1em 1em .5em;
1335
- border: 1px solid #E0E0E0;
1336
- }
1337
- .zoneB {
1338
- border: 1px solid #E0E0E0;
1339
- padding: 0;
1340
- margin: auto;
1341
- width: 300px;
1342
- height: 250px;
1343
- margin-bottom: 3px;
1344
- }
1345
- .ad-bottom img { border: none; }
1346
- ul.blue-separator li.adHover:hover { background: #FFFFFF; }
1347
- #categoryList { padding: 1em 0 .5em 0; }
1348
- #categoryList .title { font-weight: bold; }
1349
- #detailsContainer #detailTabs { margin-top: 1em; }
1350
- #detailsContainer {
1351
- color: #666666;
1352
- margin-right: 1em;
1353
- margin-bottom: .5em;
1354
- margin-left: .5em;
1355
- }
1356
- .detailsItem {
1357
- margin: 1em 0 0 0;
1358
- border-top: 1px solid #EFEEED;
1359
- padding: 1em .5em;
1360
- }
1361
- #detailsContainer h1 {
1362
- margin: 0;
1363
- padding: 0;
1364
- color: #FF6600;
1365
- font-size: 161.6%;
1366
- }
1367
- #detailsContainer h1 a {
1368
- text-decoration: none;
1369
- color: #FF6600;
1370
- }
1371
- #detailsStandard h1 {
1372
- display: inline;
1373
- float: left;
1374
- }
1375
- #detailsStandard .icon-local-badge {
1376
- float: left;
1377
- margin: .2em 0 0 .75em;
1378
- }
1379
- #detailsStandard { position: relative; }
1380
- #claimBusiness {
1381
- position: absolute;
1382
- right: .75em;
1383
- display: block;
1384
- padding: .5em .75em;
1385
- background: #FFFFFF;
1386
- -moz-border-radius-bottomleft: 3px;
1387
- -moz-border-radius-bottomright: 3px;
1388
- -webkit-border-bottom-left-radius: 3px;
1389
- -webkit-border-bottom-right-radius: 3px;
1390
- }
1391
- #detailsGeneral {
1392
- background-color: #EFEEED;
1393
- padding: .75em;
1394
- margin-top: .5em;
1395
- }
1396
- #detailsStandard {
1397
- background-color: #EFEEED;
1398
- padding: .75em;
1399
- margin-top: .5em;
1400
- }
1401
- #detailsGeneral .yui-g { background-color: #FFFFFF; }
1402
- #detailsStandard #mainBizContent { background-color: #FFFFFF; }
1403
- .detailsAmenities .title { color: #A5A5A5; }
1404
- #detailsHours .title { color: #A5A5A5; }
1405
- #detailsHours .head {
1406
- padding-bottom: .5em;
1407
- display: block;
1408
- }
1409
- .detailsAmenities ul {
1410
- margin: .5em 0;
1411
- padding: 0;
1412
- }
1413
- #detailsContainer #businessHeading ul {
1414
- margin: 0;
1415
- padding: .5em 0;
1416
- }
1417
- #detailsContainer #businessHeading ul li {
1418
- float: left;
1419
- border-left: 1px solid #EEEEEE;
1420
- padding: 0 .5em 0 .5em;
1421
- display: block;
1422
- }
1423
- #detailsContainer #businessHeading ul:first-child {
1424
- border: none;
1425
- padding-left: 0;
1426
- }
1427
- #detailsContainer #servicesBrands {
1428
- background: #EFEEED;
1429
- padding-top: .5em;
1430
- }
1431
- #detailsContainer #votes {
1432
- clear: both;
1433
- text-align: center;
1434
- padding: .5em .75em 0;
1435
- color: #BFBFBF;
1436
- font-size: 93%;
1437
- }
1438
- #detailsContainer #starRatings {
1439
- border-left: 1px solid #EEEEEE;
1440
- padding-top: .5em;
1441
- }
1442
- #detailsEnhanced #starRatings .fivestar-container { margin-left: 25px; }
1443
- #detailsStandard #starRatings .fivestar-container {
1444
- margin-top: 5px;
1445
- margin-right: 5px;
1446
- }
1447
- #detailsStandard #votes {
1448
- float: left;
1449
- clear: none;
1450
- padding-top: 11px;
1451
- padding-left: 0;
1452
- }
1453
- #detailsStandard #starRatings {
1454
- border: none;
1455
- padding: 0;
1456
- }
1457
- #detailsInfo {
1458
- line-height: 1.5em;
1459
- padding-top: .5em;
1460
- }
1461
- #detailsStandard #detailsInfo { padding: .5em; }
1462
- #detailsInfo .title {
1463
- color: #A5A5A5;
1464
- margin-top: 1em;
1465
- display: block;
1466
- }
1467
- #detailsStandard #detailsInfo .title {
1468
- margin: 0;
1469
- display: inline;
1470
- }
1471
- #detailsStandard #detailsInfo .phone { line-height: 1.75em; }
1472
- #detailsInfo .phone {
1473
- font-size: 123.1%;
1474
- font-weight: bold;
1475
- }
1476
- #detailsEnhanced #detailsInfo ul {
1477
- padding: 0;
1478
- margin: 0 .5em .5em 0;
1479
- }
1480
- #detailsEnhanced #detailsInfo ul li {
1481
- background: url("http://static.csimg.com/img/cs-iconSprite.20090316.4.png") no-repeat -625px -19px;
1482
- padding: .2em 0 0 8px;
1483
- }
1484
- #detailsStandard ul#buttonList {
1485
- margin: 0;
1486
- padding: 0;
1487
- }
1488
- #detailsStandard ul#buttonList li {
1489
- margin: 1.5em .5em .5em 0;
1490
- float: left;
1491
- display: inline;
1492
- font-weight: normal;
1493
- }
1494
- #detailsStandard ul#buttonList li a { text-decoration: none; }
1495
- .juliesTables br { display: none; }
1496
- #toggleTagWrap { padding: .5em .5em 0 0; }
1497
- #toggleTagAdd { float: right; }
1498
- #addTags {
1499
- padding: .5em .5em;
1500
- margin-top: .5em;
1501
- background: #FFFFFF;
1502
- border: 1px solid #dddddd;
1503
- text-align: ;
1504
- }
1505
- #tagCloudWrap { margin-top: .5em; }
1506
- #tagCloud ul { margin: 0; }
1507
- #tagCloud ul li {
1508
- float: left;
1509
- margin-left: .2em;
1510
- }
1511
- #tagCloud ul li.title { margin: 0; }
1512
- #moreTagsContainer {
1513
- height: 0;
1514
- overflow: hidden;
1515
- }
1516
- #addTagTitle {
1517
- font-size: 85%;
1518
- padding-bottom: .5em;
1519
- }
1520
- #chart {
1521
- width: 100%;
1522
- height: 30em;
1523
- background: url("http://static.csimg.com/img/loaders/cs-largeLoader.20081130.1.gif") no-repeat 50% 50%;
1524
- }
1525
- #detailsVideo {
1526
- padding: 1em;
1527
- margin: 1em 0;
1528
- border: 0;
1529
- }
1530
- #detailsVideo #video { float: left; }
1531
- #detailsVideo #description {
1532
- float: left;
1533
- color: #333333;
1534
- padding: 0 1em;
1535
- }
1536
- #detailsMap { position: relative; }
1537
- #standardMap { position: relative; }
1538
- #bizMap {
1539
- z-index: 1;
1540
- position: relative;
1541
- height: 18.5em;
1542
- overflow: hidden;
1543
- background: url("http://static.csimg.com/img/loaders/cs-largeLoader.20081130.1.gif") no-repeat 50% 50%;
1544
- }
1545
- #standardMap {
1546
- padding: .3em;
1547
- margin: .75em;
1548
- border: 1px solid #E0E0E0;
1549
- }
1550
- #standardMap #bizMap { height: 10em; }
1551
- #mapOverlay {
1552
- background-color: #333333;
1553
- opacity: .75;
1554
- filter: alpha(opacity=75);
1555
- -moz-opacity: 0.75;
1556
- width: 100%;
1557
- z-index: 9;
1558
- position: relative;
1559
- margin-top: -45px;
1560
- height: 45px;
1561
- }
1562
- #overlayText {
1563
- color: #FFFFFF;
1564
- text-align: center;
1565
- background: transparent;
1566
- position: relative;
1567
- margin-top: -3em;
1568
- z-index: 9;
1569
- padding: .8em 0 1em;
1570
- font-weight: bold;
1571
- }
1572
- #agendizeLinks .yui-u {
1573
- text-align: center;
1574
- border: 1px solid #FEE9B8;
1575
- margin-top: .5em;
1576
- }
1577
- #agendizeLinks a {
1578
- background: #FFF5DF;
1579
- color: #74630C;
1580
- font-weight: bold;
1581
- display: block;
1582
- padding: .5em 0;
1583
- text-decoration: none;
1584
- font-size: 93%;
1585
- }
1586
- #agendizeLinks a:hover {
1587
- background: #FFF5DF;
1588
- text-decoration: underline;
1589
- }
1590
- #toggleReviewForm {
1591
- float: right;
1592
- display: inline;
1593
- cursor: pointer;
1594
- }
1595
- #reviewsContainer {
1596
- color: #6C6C6C;
1597
- margin-top: 2em;
1598
- margin-right: 1em;
1599
- margin-bottom: .5em;
1600
- margin-left: .5em;
1601
- }
1602
- #reviewsContainer h5 { color: #137292; }
1603
- #reviewsContainer .title {
1604
- color: #999999;
1605
- font-size: 93%;
1606
- }
1607
- #reviewsList {
1608
- margin-top: 1em;
1609
- border-top: 2px solid #C0E9F5;
1610
- padding-top: .5em;
1611
- }
1612
- #noReviews {
1613
- margin: 1em 0 1em;
1614
- font-size: 100%;
1615
- font-weight: bold;
1616
- }
1617
- #addReview {
1618
- padding-top: 1em;
1619
- border-top: 2px solid #C0E9F5;
1620
- }
1621
- .review {
1622
- border-bottom: 1px solid #DFDFDF;
1623
- margin: 1em 0;
1624
- }
1625
- .review .photo {
1626
- float: left;
1627
- display: inline;
1628
- text-align: center;
1629
- padding: 0 1em;
1630
- font-weight: bold;
1631
- font-size: 93%;
1632
- }
1633
- .review .photo a { text-decoration: none; }
1634
- .review .photo img { border: 5px solid #EFEEED; }
1635
- .review .reviewOptions { padding-left: 9.5em; }
1636
- .review .reviewOptions ul {
1637
- margin: 0;
1638
- padding: 0;
1639
- }
1640
- .review .reviewOptions ul li {
1641
- float: left;
1642
- display: inline;
1643
- margin: .5em 0;
1644
- padding: 0 1em;
1645
- font-size: 85%;
1646
- }
1647
- .review .reviewOptions ul li:first-child { border-right: 1px solid #DFDFDF; }
1648
- .review .reviewText { padding-left: 125px; }
1649
- #editBiz { border: 2px solid #1F9EC9; }
1650
- #editBiz .title {
1651
- background: #1F9EC9;
1652
- padding: .5em 1em;
1653
- }
1654
- #editBiz .title h4 {
1655
- color: #FFFFFF;
1656
- font-size: 123.1%;
1657
- }
1658
- #editBiz .content { padding: 1.5em 1em 1em 1em; }
1659
- #editBiz .icon-paper {
1660
- margin-top: -.5em;
1661
- margin-right: .5em;
1662
- }
1663
- #adminLinks .content { padding: .5em; }
1664
- #businessLogo {
1665
- border-color: #EFEEED;
1666
- border-width: 5px;
1667
- border-style: solid;
1668
- }
1669
- #businessLogo img { display: block; }
1670
- #detailDeal .cs-deal { background: #FFFFFF; }
1671
- #detailPhotos .content { text-align: center; }
1672
- #detailPhotos img {
1673
- margin: 2px;
1674
- border-width: 2px;
1675
- border-style: solid;
1676
- border-color: #DDDDDD;
1677
- }
1678
- #detailPhotos img:hover { border-color: #AAAAAA; }
1679
- #detailPhotos a {
1680
- text-decoration: none;
1681
- font-size: 93%;
1682
- color: #C0A316;
1683
- }
1684
- #detailPhotos a:hover { text-decoration: underline; }
1685
- #ccNewsletter .content {
1686
- background: #FFFFFF;
1687
- color: #666666;
1688
- padding: .5em;
1689
- }
1690
- #ccNewsletter .content form { margin: .5em; }
1691
- #ccNewsletter .content form label { display: block; }
1692
- #ccNewsletter .content form input {
1693
- width: 90%;
1694
- margin: .5em;
1695
- }
1696
- #ccNewsletter .content form #edit-submit { width: auto; }
1697
- #showChart { cursor: pointer; }
1698
- #ft { font-size: 93%; }
1699
- #ft .logo {
1700
- float: left;
1701
- margin: 1em 0 1em 1em;
1702
- }
1703
- #ftTop {
1704
- background: #1F9EC9;
1705
- font-weight: bold;
1706
- padding: .5em;
1707
- text-align: center;
1708
- }
1709
- #ftBottom {
1710
- background: #5FC5E7;
1711
- color: #FFFFFF;
1712
- }
1713
- #ftBottom span {
1714
- font-weight: bold;
1715
- color: #006581;
1716
- }
1717
- #ftBottom #stateLinks {
1718
- background: #ACE1F2;
1719
- margin: 0 .75em;
1720
- padding: .75em;
1721
- }
1722
- #copyright {
1723
- display: block;
1724
- padding: 1.5em 1em;
1725
- float: left;
1726
- }
1727
- #findLogin {
1728
- padding: 1em .5em 1em;
1729
- background: #FFFFFF;
1730
- text-indent: -9999em;
1731
- border-bottom: 1px solid #EEEEEE;
1732
- margin: 0 .5em;
1733
- }
1734
- #findYourBusiness {
1735
- font-size: 93%;
1736
- padding: 0;
1737
- margin: 0;
1738
- height: 26px;
1739
- width: 685px;
1740
- display: block;
1741
- margin-top: .5em;
1742
- background: url("http://static.csimg.com/img/cs-homeSprite.20090410.1.png") no-repeat 0 0;
1743
- }
1744
- #homeSearch {
1745
- background: #FEFDD6;
1746
- margin: 1em .5em;
1747
- padding: 0;
1748
- color: #FF9933;
1749
- font-size: 93%;
1750
- font-weight: bold;
1751
- border: 1px solid #FDFBAA;
1752
- }
1753
- #homeSearch #bg {
1754
- float: right;
1755
- width: 330px;
1756
- height: 87px;
1757
- background: url("http://static.csimg.com/img/cs-homeSprite.20090410.1.png") no-repeat -355px -30px;
1758
- }
1759
- #homeSearch span {
1760
- display: block;
1761
- padding: 1em 0 0 1.2em;
1762
- }
1763
- #homeSearch #location-jump-form { margin: .5em 0 0 1em; }
1764
- #homeSearch #location-jump-form .form-text {
1765
- padding: .75em;
1766
- font-size: 108%;
1767
- }
1768
- #homeSearch #location-jump-form .form-submit {
1769
- width: auto;
1770
- border: 1px solid #707070;
1771
- padding: 1em 1em .8em;
1772
- margin: 0 0 0 .5em;
1773
- color: #000000;
1774
- background: #F0F0F0;
1775
- -moz-border-radius: 3px;
1776
- -webkit-border-radius: 3px;
1777
- }
1778
- #homeSearch #location-jump-form .form-submit:hover { background: #D1D1D1; }
1779
- #homeMain {
1780
- border-top: 1px solid #EEEEEE;
1781
- border-bottom: 1px solid #EEEEEE;
1782
- margin: .5em .5em;
1783
- padding-bottom: 1.5em;
1784
- }
1785
- #homeMain #owner {
1786
- height: 268px;
1787
- width: 455px;
1788
- background: #FFFFFF url("http://static.csimg.com/img/cs-homeOwner.20090403.1.png") no-repeat;
1789
- margin: 0 auto;
1790
- position: relative;
1791
- }
1792
- #homeMain #owner span {
1793
- display: block;
1794
- float: left;
1795
- padding: 1em 1.5em 0 1em;
1796
- }
1797
- #homeMain #ownText {
1798
- position: absolute;
1799
- top: 73px;
1800
- left: 25px;
1801
- width: 265px;
1802
- color: #005771;
1803
- font-size: 93%;
1804
- line-height: 1.5em;
1805
- }
1806
- #homeMain #ownButtons {
1807
- position: absolute;
1808
- top: 215px;
1809
- left: 15px;
1810
- color: #FFFFFF;
1811
- font-weight: bold;
1812
- }
1813
- #homeMain #new {
1814
- background: #DFEBCB;
1815
- padding: 1em;
1816
- margin-top: 18px;
1817
- }
1818
- #homeMain #new #list {
1819
- background: #FFFFFF;
1820
- padding: .5em;
1821
- }
1822
- .spyWrapper {
1823
- overflow: hidden;
1824
- position: relative;
1825
- }
1826
- #homeLocations { margin: 1.5em 0 1em .5em; }
1827
- #topCityPic {
1828
- display: block;
1829
- overflow: hidden;
1830
- height: 350px;
1831
- width: 455px;
1832
- margin: 0 auto;
1833
- background: url("http://mw2.google.com/mw-panoramio/photos/medium/3011660.jpg") no-repeat;
1834
- }
1835
- #cityOverlay {
1836
- background-color: #1F9EC9;
1837
- opacity: .75;
1838
- filter: alpha(opacity=75);
1839
- -moz-opacity: 0.75;
1840
- width: 425px;
1841
- z-index: 9;
1842
- position: relative;
1843
- margin-top: 225px;
1844
- margin-left: auto;
1845
- margin-right: auto;
1846
- color: #FFFFFF;
1847
- font-size: 182%;
1848
- font-weight: bold;
1849
- padding: 15px;
1850
- }
1851
- #cityOverlay a {
1852
- color: #FFFFFF;
1853
- text-decoration: none;
1854
- }
1855
- #picInfo {
1856
- width: 455px;
1857
- margin: 0 auto;
1858
- color: #666666;
1859
- padding: .5em .5em 0 .5em;
1860
- }
1861
- #edit-standardname { width: 600px; }
1862
- #edit-user-name { width: 600px; }
1863
- #edit-cityname { width: 470px; }
1864
- #standard-submit-button {
1865
- display: block;
1866
- margin: 0 auto;
1867
- }
1868
- .no-business-results {
1869
- background: url("http://static.csimg.com/img/cs-iconSprite.20090316.4.png") no-repeat -625px -25px;
1870
- padding: 0 0 0 10px;
1871
- }
1872
- .search-description {
1873
- font-size: 85%;
1874
- color: #777777;
1875
- width: 500px;
1876
- padding: 0 1em;
1877
- }
1878
- #business-add-form { padding-bottom: 6px; }
1879
- #business-add-standard-form { padding-bottom: 6px; }
1880
- #eventful-add-event-form { padding-bottom: 6px; }
1881
- #business-add-form label {
1882
- padding-top: 6px;
1883
- display: block;
1884
- }
1885
- #eventful-add-event-form label {
1886
- padding-top: 6px;
1887
- display: block;
1888
- }
1889
- #business-add-form .description {
1890
- font-size: 11px;
1891
- color: #777777;
1892
- padding-left: 0;
1893
- }
1894
- #eventful-add-event-form .description {
1895
- font-size: 11px;
1896
- color: #777777;
1897
- padding-left: 0;
1898
- }
1899
- #business-add-form fieldset {
1900
- background: #F3FBFE;
1901
- border: 1px solid #C2E2EC;
1902
- width: 90%;
1903
- margin: .5em;
1904
- padding: .5em;
1905
- }
1906
- #eventful-add-event-form fieldset {
1907
- background: #F3FBFE;
1908
- border: 1px solid #C2E2EC;
1909
- width: 90%;
1910
- margin: .5em;
1911
- padding: .5em;
1912
- }
1913
- #business-add-form fieldset fieldset {
1914
- background: #FFFFFF;
1915
- border: 3px double #C2E2EC;
1916
- width: 95%;
1917
- }
1918
- #eventful-add-event-form fieldset fielset {
1919
- background: #FFFFFF;
1920
- border: 3px double #C2E2EC;
1921
- width: 95%;
1922
- }
1923
- #business-add-form fieldset fieldset legend {
1924
- font-size: 14px;
1925
- color: #333333;
1926
- font-weight: bold;
1927
- }
1928
- #eventful-add-event-form fieldset fieldset legend {
1929
- font-size: 14px;
1930
- color: #333333;
1931
- font-weight: bold;
1932
- }
1933
- #business-add-form legend {
1934
- font: normal 20px 'Trebuchet MS', Trebuchet, sans-serif;
1935
- color: #166C89;
1936
- text-transform: capitalize;
1937
- }
1938
- #eventful-add-event-form legend {
1939
- font: normal 20px 'Trebuchet MS', Trebuchet, sans-serif;
1940
- color: #166C89;
1941
- text-transform: capitalize;
1942
- }
1943
- #business-add-form legend a {
1944
- font: normal 20px 'Trebuchet MS', Trebuchet, sans-serif;
1945
- color: #166C89;
1946
- text-transform: capitalize;
1947
- }
1948
- #eventful-add-event-form legend a {
1949
- font: normal 20px 'Trebuchet MS', Trebuchet, sans-serif;
1950
- color: #166C89;
1951
- text-transform: capitalize;
1952
- }
1953
- .cs-form .item { padding: .5em; }
1954
- .cs-form .item label {
1955
- color: #656565;
1956
- display: block;
1957
- padding: .25em 0;
1958
- }
1959
- .cs-form .item .form-text { padding: .25em; }
1960
- .cs-blue-form {
1961
- background: #E2F6FA;
1962
- border: 1px solid #B6E6F3;
1963
- padding: .5em;
1964
- }
1965
- .cs-grey-form { background: #EFEFEF; }
1966
- fieldset {
1967
- float: left;
1968
- display: inline;
1969
- }
1970
- .description { font-size: 85%; }
1971
- .featuredVideo {
1972
- text-align: center;
1973
- padding: .5em;
1974
- }
1975
- .featuredVideo .biz-name {
1976
- color: #F08711;
1977
- font-size: 14px;
1978
- font-weight: bold;
1979
- }
1980
- .featuredVideo .address {
1981
- color: #666666;
1982
- font-size: 12px;
1983
- }
1984
- .featuredVideo .phone {
1985
- color: #666666;
1986
- font-size: 12px;
1987
- }
1988
- .featuredVideo .phone { font-weight: bold; }
1989
- .newsletter {
1990
- padding-top: 3em;
1991
- text-align: center;
1992
- }
1993
- div#corp-pages { padding: .5em; }
1994
- div.corp-pages-menu { padding: .5em; }
1995
- #map { background: url("http://static.csimg.com/img/loaders/cs-largeLoader.20081130.1.gif") no-repeat 50% 50%; }
1996
- #gmap-tooltip-map {
1997
- width: 500px;
1998
- position: relative;
1999
- }
2000
- #gmap-infowindow img {
2001
- display: inline;
2002
- float: left;
2003
- margin-right: 10px;
2004
- }
2005
- #gmap-tt-float { float: left; }
2006
- .gmap-tt-text {
2007
- font: bold 9px Verdana, Arial, Helvetica, sans-serif;
2008
- color: #333333;
2009
- padding: .5em .65em 0 0;
2010
- }
2011
- .gmap-clear-left { clear: left; }
2012
- .gmap-tt-left {
2013
- background: url("http://static.csimg.com/img/gmap/tt-left.png") no-repeat;
2014
- height: 26px;
2015
- width: 7px;
2016
- }
2017
- .gmap-tt-middle {
2018
- background: url("http://static.csimg.com/img/gmap/tt-middle.png") repeat-x;
2019
- height: 26px;
2020
- }
2021
- .gmap-tt-right {
2022
- background: url("http://static.csimg.com/img/gmap/tt-right.png") no-repeat;
2023
- width: 30px;
2024
- height: 26px;
2025
- }
2026
- .gmap-tt-pointer {
2027
- background: url("http://static.csimg.com/img/gmap/tt-pointer.png") no-repeat;
2028
- width: 16px;
2029
- height: 9px;
2030
- position: absolute;
2031
- top: -7px;
2032
- left: 13px;
2033
- }
2034
- .video-pane {
2035
- text-align: center;
2036
- display: none;
2037
- position: relative;
2038
- padding-top: .5em;
2039
- }
2040
- .video-pane a.blue-close {
2041
- position: absolute;
2042
- top: 0;
2043
- right: 5px;
2044
- }
2045
- div.vote-count {
2046
- float: right;
2047
- height: 40px;
2048
- width: 72px;
2049
- color: #75630D;
2050
- font-size: 16px;
2051
- text-align: center;
2052
- padding-top: 8px;
2053
- padding-left: 3px;
2054
- margin-right: .5em;
2055
- line-height: 12px;
2056
- font-weight: bold;
2057
- background: url("http://static.csimg.com/img/cs-bigIconSprite.20090316.1.png") no-repeat -190px 0;
2058
- }
2059
- div.vote-count span.desc {
2060
- font-size: 8px;
2061
- color: #D7B61A;
2062
- text-transform: uppercase;
2063
- margin-top: -5px;
2064
- }
2065
- .votesCount {
2066
- float: left;
2067
- border-left: 1px solid #CCCCCC;
2068
- padding-left: .5em;
2069
- margin-left: .5em;
2070
- }
2071
- div.pager {
2072
- padding-left: 1em;
2073
- color: #1F9EC9;
2074
- margin-bottom: 1em;
2075
- text-align: center;
2076
- }
2077
- div.pager .active {
2078
- padding: .4em .5em;
2079
- text-decoration: none;
2080
- margin: 0 .25em;
2081
- text-transform: uppercase;
2082
- }
2083
- span.pager-list a.active {
2084
- padding: .4em .5em;
2085
- text-decoration: none;
2086
- margin: 0 .25em;
2087
- text-transform: uppercase;
2088
- }
2089
- span.pager-list .pager-current {
2090
- padding: .4em .5em;
2091
- text-decoration: none;
2092
- margin: 0 .25em;
2093
- text-transform: uppercase;
2094
- }
2095
- div.pager .active {
2096
- border: 1px solid #60C5E7;
2097
- color: #1F9EC9;
2098
- }
2099
- span.pager-list a.active {
2100
- border: 1px solid #60C5E7;
2101
- color: #1F9EC9;
2102
- }
2103
- span.pager-list a.active { background-color: #E9F8FC; }
2104
- span.pager-list .pager-current {
2105
- font-size: 153.9%;
2106
- color: #333333;
2107
- margin: 0;
2108
- padding: .4em .3em;
2109
- }
2110
- span.pager-list a.active:hover { background-color: #FFFFFF; }
2111
- #cs-listing-options { color: #6C6C6C; }
2112
- #cs-listing-options h1 {
2113
- font-size: 123.1%;
2114
- color: #666666;
2115
- }
2116
- #filters {
2117
- background: #F3FCFE;
2118
- border-top: 2px solid #C0E9F5;
2119
- border-bottom: 2px solid #C0E9F5;
2120
- color: #6C6C6C;
2121
- padding: .5em;
2122
- }
2123
- li.business {
2124
- color: #6C6C6C;
2125
- line-height: 1.5em;
2126
- }
2127
- li.business .cs-blogo {
2128
- float: left;
2129
- margin-right: 1em;
2130
- }
2131
- li.business .cs-blogo img {
2132
- border: 1px solid #DDDDDD;
2133
- padding: 6px;
2134
- background: #FFFFFF;
2135
- }
2136
- li.business .cs-sblogo {
2137
- float: left;
2138
- margin-right: 1em;
2139
- text-align: center;
2140
- height: 80px;
2141
- width: 72px;
2142
- background: url("http://static.csimg.com/img/cs-bigIconSprite.20090316.1.png") no-repeat -326px 0;
2143
- }
2144
- li.business .cs-sblogo a {
2145
- font-size: 11px;
2146
- font-weight: bold;
2147
- text-decoration: none;
2148
- color: #828282;
2149
- display: block;
2150
- width: 72px;
2151
- height: 21px;
2152
- border: 1px solid #DDDDDD;
2153
- border-radius: 5px;
2154
- -moz-border-radius: 5px;
2155
- -webkit-border-radius: 5px;
2156
- padding-top: 5px;
2157
- background: #FFFFFF;
2158
- }
2159
- li.business a.name {
2160
- font-size: 116%;
2161
- font-weight: bold;
2162
- float: left;
2163
- }
2164
- li.business .info { text-align: left; }
2165
- li.business .phone { font-weight: bold; }
2166
- li.business .bIcons {
2167
- width: 40px;
2168
- float: left;
2169
- padding: 8px 0 0 7px;
2170
- }
2171
- #business-add-results { margin: 1em 0; }
2172
- .business-add-search-result {
2173
- border-bottom: 1px solid #C0E9F5;
2174
- line-height: 1.5em;
2175
- padding: .5em;
2176
- color: #666666;
2177
- }
2178
- div.fivestar-container {
2179
- background: url("http://static.csimg.com/img/cs-iconSprite.20090316.4.png") no-repeat -125px -55px;
2180
- width: 70px;
2181
- height: 16px;
2182
- float: left;
2183
- display: inline;
2184
- }
2185
- div.fivestar-container .star {
2186
- display: block;
2187
- float: left;
2188
- width: 14px;
2189
- height: 15px;
2190
- background-image: url("http://static.csimg.com/img/cs-iconSprite.20090316.4.png");
2191
- background-repeat: no-repeat;
2192
- background-position: -575px 0;
2193
- cursor: pointer;
2194
- overflow: hidden;
2195
- }
2196
- div.fivestar-container .on { background-position: -575px -16px; }
2197
- div.fivestar-container .hover { background-position: -575px -32px; }
2198
- #detailsContainer div.fivestar-container {
2199
- background: none;
2200
- width: 100px;
2201
- height: 20px;
2202
- float: left;
2203
- }
2204
- #detailsContainer div.fivestar-container .star {
2205
- display: block;
2206
- float: left;
2207
- width: 20px;
2208
- height: 20px;
2209
- background-image: url("http://static.csimg.com/img/cs-iconSprite.20090316.4.png");
2210
- background-repeat: no-repeat;
2211
- background-position: -575px -50px;
2212
- cursor: pointer;
2213
- overflow: hidden;
2214
- }
2215
- #detailsContainer div.fivestar-container .on { background-position: -575px -75px; }
2216
- #detailsContainer div.fivestar-container .hover { background-position: -575px -100px; }
2217
- .cs-block {
2218
- margin: 0;
2219
- color: #8A8A8A;
2220
- }
2221
- .cs-block-title { padding: .5em 0 0 0; }
2222
- .cs-block-control {
2223
- color: #999999;
2224
- text-align: right;
2225
- }
2226
- .cs-block-title .moreLink { font-size: 87%; }
2227
- .pad-block { margin-top: .5em; }
2228
- .selected {
2229
- text-decoration: none;
2230
- color: #666666;
2231
- font-weight: bold;
2232
- }
2233
- #biz-status {
2234
- display: none;
2235
- margin-left: .5em;
2236
- }
2237
- #location-status {
2238
- display: none;
2239
- margin-left: .5em;
2240
- }
2241
- #biz-status { float: left; }
2242
- #location-status {
2243
- float: left;
2244
- display: none;
2245
- margin-left: .5em;
2246
- margin-top: .25em;
2247
- }
2248
- .hot-title {
2249
- color: #177797;
2250
- font-weight: bold;
2251
- padding: 0 .5em;
2252
- }
2253
- .hot-title .icon {
2254
- float: right;
2255
- display: inline;
2256
- }
2257
- .hot-title span {
2258
- color: #999999;
2259
- font-size: 90%;
2260
- font-weight: normal;
2261
- }
2262
- .hot-title span a { font-size: 80%; }
2263
- .hot-cat-name {
2264
- float: left;
2265
- display: inline;
2266
- padding-top: .75em;
2267
- }
2268
- .cs-block .hot-name { width: 100%; }
2269
- .cs-block .hot-biz-name { color: #1F9EC9; }
2270
- .cs-block .hot-biz-name a { font-weight: bold; }
2271
- .cs-block .fivestar-container { float: right; }
2272
- .cs-block .fivestar-container .description { display: none; }
2273
- .cs-deal {
2274
- border: 3px dashed #CCCCCC;
2275
- color: #666666;
2276
- padding: .1em;
2277
- margin: .5em 0;
2278
- }
2279
- .cs-deal .address {
2280
- background: #F4F4F4;
2281
- padding: .5em .75em;
2282
- color: #666666;
2283
- }
2284
- .cs-deal .address span { font-size: 85%; }
2285
- .cs-deal .cs-deal-text {
2286
- font-size: 123.1%;
2287
- padding: 1em;
2288
- }
2289
- .cs-deal .id {
2290
- color: #9A9A9A;
2291
- font-size: 93%;
2292
- padding: .3em .8em;
2293
- margin: .5em;
2294
- text-align: center;
2295
- }
2296
- .cs-deal .id {
2297
- float: left;
2298
- display: inline;
2299
- margin-left: 0;
2300
- }
2301
- .talk-bubble { display: block; }
2302
- .talk-bubble * {
2303
- display: block;
2304
- height: 1px;
2305
- overflow: hidden;
2306
- font-size: .01em;
2307
- background: #FEFEFE;
2308
- }
2309
- .talk-bubble1 {
2310
- margin-left: 3px;
2311
- margin-right: 3px;
2312
- padding-left: 1px;
2313
- padding-right: 1px;
2314
- border-left: 1px solid #edf9fc;
2315
- border-right: 1px solid #edf9fc;
2316
- background: #f7fcfe;
2317
- }
2318
- .talk-bubble2 {
2319
- margin-left: 1px;
2320
- margin-right: 1px;
2321
- padding-right: 1px;
2322
- padding-left: 1px;
2323
- border-left: 1px solid #e4f6fb;
2324
- border-right: 1px solid #e4f6fb;
2325
- background: #f9fdfe;
2326
- }
2327
- .talk-bubble3 {
2328
- margin-left: 1px;
2329
- margin-right: 1px;
2330
- border-left: 1px solid #f9fdfe;
2331
- border-right: 1px solid #f9fdfe;
2332
- }
2333
- .talk-bubble4 {
2334
- border-left: 1px solid #edf9fc;
2335
- border-right: 1px solid #edf9fc;
2336
- }
2337
- .talk-bubble5 {
2338
- border-left: 1px solid #f7fcfe;
2339
- border-right: 1px solid #f7fcfe;
2340
- }
2341
- .talk-bubblefg { background: #FEFEFE; }
2342
- .review-header img {
2343
- border: 1px solid #DDDDDD;
2344
- padding: 2px;
2345
- background: #FFFFFF;
2346
- float: left;
2347
- display: inline;
2348
- margin: 0 .5em 0 0;
2349
- }
2350
- .review-bubble {
2351
- position: relative;
2352
- margin: 20px 0 0 0;
2353
- }
2354
- .review-bubble-text { padding: .5em .5em .5em 25px; }
2355
- .review-bubble .talkie {
2356
- position: absolute;
2357
- top: -25px;
2358
- left: 35px;
2359
- background: url("http://static.csimg.com/img/cs-iconSprite.20090316.4.png") no-repeat -125px -25px;
2360
- width: 25px;
2361
- height: 25px;
2362
- }
2363
- .review-bubble .quote {
2364
- margin: .5em 0 0 .5em;
2365
- height: 25px;
2366
- width: 20px;
2367
- background: url("http://static.csimg.com/img/cs-iconSprite.20090316.4.png") no-repeat -150px -25px;
2368
- float: left;
2369
- display: inline;
2370
- }
2371
- .topCities { padding: .5em; }
2372
- #aboutHood {
2373
- background: #E1F5FB;
2374
- padding: .5em;
2375
- color: #156782;
2376
- }
2377
- #aboutHood .teaser { margin: .25em .5em; }
2378
- #addPhotoContainer { padding: .5em 0; }
2379
- #hoodAddPhoto {
2380
- float: right;
2381
- padding: .5em .5em 0 1em;
2382
- margin-top: -1.65em;
2383
- background: #E1F5FB;
2384
- }
2385
- .panoramio-copy {
2386
- margin: 0 auto;
2387
- text-align: center;
2388
- color: #333333;
2389
- font-size: 75%;
2390
- padding: 1em;
2391
- }
2392
- .panoramio-copy a { color: #167392; }
2393
- ul.navList {
2394
- margin: 0;
2395
- padding: .5em 0;
2396
- color: #7E7E7E;
2397
- }
2398
- ul.navList li {
2399
- padding: .25em 0;
2400
- width: 100%;
2401
- }
2402
- .xdebug-var-dump { text-align: left; }
2403
- .eventful-badge {
2404
- margin: 0;
2405
- padding: 0;
2406
- border: 0;
2407
- text-align: center;
2408
- color: #CCCCCC;
2409
- font-family: Arial;
2410
- text-decoration: none;
2411
- float: right;
2412
- }
2413
- .eventful-small {
2414
- position: relative;
2415
- width: 100px;
2416
- font-size: 11px;
2417
- line-height: 11px;
2418
- }
2419
- .eventful-badge a {
2420
- color: #CCCCCC;
2421
- text-decoration: none;
2422
- }
2423
- #nearbyUpcomingEvents { background: #FFFFFF; }
2424
- .content-item {
2425
- width: 100%;
2426
- border: 1px #999999 solid;
2427
- margin: 1em 0 1em 0;
2428
- padding: .5em;
2429
- margin: .5em;
2430
- }
2431
- .content-item .address {
2432
- color: #666666;
2433
- padding: 0;
2434
- margin: 0;
2435
- }
2436
- .content-item .phone {
2437
- color: #666666;
2438
- padding: 0;
2439
- margin: 0;
2440
- }
2441
- .content-item .address {
2442
- display: block;
2443
- text-transform: capitalize;
2444
- }
2445
- .content-item .phone { color: #666666; }
2446
- .content-item .alt-phone {
2447
- padding: 0;
2448
- margin: 0;
2449
- text-transform: capitalize;
2450
- font-weight: normal;
2451
- }
2452
- .content-item .hide-content-link {
2453
- float: right;
2454
- margin: 0 5px 10px 10px;
2455
- clear: both;
2456
- }
2457
- .content-item .full-content {
2458
- position: relative;
2459
- border: 1px #999999 dotted;
2460
- padding: .3em;
2461
- }
2462
- #edit-biz-message { color: #cccccc; }
2463
- #root-cta {
2464
- font: bold 18px Arial, Helvetica, sans-serif;
2465
- color: #ffffff;
2466
- width: 926px;
2467
- height: 128px;
2468
- background: url("http://static.csimg.com/v2/img/root-cta-background.png") no-repeat;
2469
- margin: 0 auto;
2470
- position: relative;
2471
- }
2472
- #root-cta-big-text {
2473
- margin-left: 20px;
2474
- padding-top: 25px;
2475
- }
2476
- #root-cta-big-text span {
2477
- margin: 0 4px 0 4px;
2478
- padding: .2em 0 0 0;
2479
- color: #167696;
2480
- float: left;
2481
- }
2482
- #root-cta-button { float: left; }
2483
- .root-cta-button-left {
2484
- background: url("http://static.csimg.com/v2/img/root-cta-button-bg-left.png") no-repeat;
2485
- float: left;
2486
- height: 32px;
2487
- width: 5px;
2488
- }
2489
- .root-cta-button-right {
2490
- background: url("http://static.csimg.com/v2/img/root-cta-button-bg-right.png") no-repeat;
2491
- float: left;
2492
- height: 32px;
2493
- width: 5px;
2494
- }
2495
- .root-cta-button-middle {
2496
- height: 32px;
2497
- background: url("http://static.csimg.com/v2/img/root-cta-button-bg.png") repeat-x;
2498
- padding: .2em 5px 0 5px;
2499
- float: left;
2500
- }
2501
- #root-talk-bubble {
2502
- background: url("http://static.csimg.com/v2/img/root-cta-talk-bubble.png") no-repeat;
2503
- height: 54px;
2504
- width: 720px;
2505
- position: absolute;
2506
- top: 70px;
2507
- left: 27px;
2508
- font: 12px Arial, Helvetica, sans-serif;
2509
- color: #666666;
2510
- padding: 10px 75px 0 35px;
2511
- }
2512
- #root-cta-account {
2513
- height: 34px;
2514
- width: 231px;
2515
- float: left;
2516
- margin-left: 35px;
2517
- }
2518
- #root-cta-close-button {
2519
- position: absolute;
2520
- top: 18px;
2521
- right: 8px;
2522
- width: 21px;
2523
- height: 15px;
2524
- }
2525
- #root-search {
2526
- background: url("http://static.csimg.com/v2/img/root-search-bar-bg.png") repeat-x;
2527
- width: 926px;
2528
- height: 105px;
2529
- margin: 5px auto;
2530
- border: #f2e79b 2px solid;
2531
- }
2532
- .root-search-box {
2533
- margin: 0px auto;
2534
- margin-top: 35px;
2535
- margin-left: 60px;
2536
- color: #8D7E12;
2537
- font-family: Arial, Helvetica, sans-serif;
2538
- font-size: 14px;
2539
- font-weight: normal;
2540
- height: 40px;
2541
- }
2542
- .root-search-holder {
2543
- float: left;
2544
- padding-right: 7px;
2545
- }
2546
- #root-search #edit-search-term {
2547
- border: 1px solid #cdcdcd;
2548
- background: #ffffff url("http://static.csimg.com/v2/img/root-search-text-bar-bg.gif") repeat-x top left;
2549
- display: inline;
2550
- height: 20px;
2551
- padding-top: 5px;
2552
- font-weight: bold;
2553
- font-family: Arial, Helvetica, sans-serif;
2554
- font-size: 14px;
2555
- padding-left: 24px;
2556
- letter-spacing: -.06em;
2557
- }
2558
- .form-text .root-form-input { background: url("http://static.csimg.com/v2/img/root-search-magicon.gif") no-repeat left; }
2559
- .root-search-button {
2560
- background: url("http://static.csimg.com/v2/img/root-search-button.gif") repeat-x;
2561
- color: #ffffff;
2562
- font: bold 10px Tahoma;
2563
- letter-spacing: -.01em;
2564
- border: 2px solid #FF8C26;
2565
- text-transform: uppercase;
2566
- height: 27px;
2567
- padding: 4px;
2568
- width: 76px;
2569
- }
2570
- .root-loki-search {
2571
- width: 90px;
2572
- height: 27px;
2573
- float: left;
2574
- }
2575
- #root-search .form-text {
2576
- border: 1px solid #cdcdcd;
2577
- background: #ffffff url("http://static.csimg.com/v2/img/root-search-input-bg.png") repeat-x top left;
2578
- display: inline;
2579
- height: 20px;
2580
- padding-top: 5px;
2581
- font-weight: bold;
2582
- font-family: Arial, Helvetica, sans-serif;
2583
- font-size: 14px;
2584
- padding-left: 4px;
2585
- color: #666666;
2586
- letter-spacing: -.06em;
2587
- }
2588
- #root-region-dropdown-arrow {
2589
- float: left;
2590
- margin-left: 5px;
2591
- border: 1px solid #cdcdcd;
2592
- position: relative;
2593
- }
2594
- #root-region-list {
2595
- position: absolute;
2596
- top: 24;
2597
- right: 0;
2598
- background: #ffffff;
2599
- width: 300px;
2600
- z-index: 9999;
2601
- border: 1px solid #cdcdcd;
2602
- }
2603
- #map-root {
2604
- border: #c0e9f8 7px solid;
2605
- margin-top: 5px;
2606
- }
2607
- #region-list h1 {
2608
- height: 20px;
2609
- width: 266px;
2610
- background: #ffffff url("http://static.csimg.com/v2/img/root-region-bg.png") repeat-x bottom left;
2611
- font: bold 14px Arial, Helvetica, sans-serif;
2612
- padding: 5px;
2613
- border-bottom: 1px solid #c0e9f8;
2614
- }
2615
- .region-list-hoods {
2616
- clear: both;
2617
- margin: 5px;
2618
- float: right;
2619
- padding-left: 8px;
2620
- font-size: 11px;
2621
- font-style: italic;
2622
- }
2623
- .region-list-title {
2624
- font-weight: bold;
2625
- color: #F08711;
2626
- }
2627
- #region-list ul {
2628
- padding: 0;
2629
- margin: 5px 10px 0 0;
2630
- list-style: none;
2631
- }
2632
- #region-list ul li {
2633
- padding: 5px;
2634
- border: 1px solid #ffffff;
2635
- margin-bottom: 2px;
2636
- }
2637
- #region-list ul li:hover {
2638
- background: #f5fbfd;
2639
- border: 1px solid #c0e9f8;
2640
- }
2641
- #region-list .city-highlight {
2642
- background: #f5fbfd;
2643
- border: 1px solid #c0e9f8;
2644
- }
2645
- #region-list ul li img {
2646
- float: left;
2647
- margin-right: 5px;
2648
- padding: 2px;
2649
- border: 1px solid #cccccc;
2650
- }
2651
- .root-num-hoods {
2652
- font-size: 11px;
2653
- color: #666666;
2654
- padding-left: 13px;
2655
- background: url("http://static.csimg.com/v2/img/small-green-arrow.png") no-repeat;
2656
- background-position: 0% 50%;
2657
- }
2658
- .root-num-biz {
2659
- font-size: 11px;
2660
- color: #666666;
2661
- padding-left: 13px;
2662
- background: url("http://static.csimg.com/v2/img/small-green-arrow.png") no-repeat;
2663
- background-position: 0% 50%;
2664
- }
2665
- .quick-look-trigger {
2666
- font-size: 11px;
2667
- padding-left: 8px;
2668
- }
2669
- .sort-type {
2670
- font-size: 11px;
2671
- color: #999999;
2672
- }
2673
- .sort-text {
2674
- font-size: 11px;
2675
- color: #999999;
2676
- }
2677
- .state-select {
2678
- font-size: 11px;
2679
- color: #999999;
2680
- }
2681
- .sort-type { padding: 2px; }
2682
- .sort-text { font-style: italic; }
2683
- .state-select { font-style: italic; }
2684
- .sort-selected {
2685
- text-decoration: none;
2686
- background: #209fca;
2687
- color: #ffffff;
2688
- }
2689
- #region-city-sort-options { margin: 5px 0 5px 0; }
2690
- .root-add-image {
2691
- background: url("http://static.csimg.com/v2/img/root-no-image.png") no-repeat 2px 2px;
2692
- height: 60px;
2693
- width: 60px;
2694
- padding: 2px;
2695
- border: 1px solid #cccccc;
2696
- float: left;
2697
- margin-right: 5px;
2698
- }
2699
- .root-add-image-link {
2700
- height: 17px;
2701
- font-size: 10px;
2702
- text-align: center;
2703
- margin: 0 auto;
2704
- line-height: 17px;
2705
- }
2706
- .root-vote-now-link {
2707
- height: 17px;
2708
- font-size: 10px;
2709
- text-align: center;
2710
- margin: 0 auto;
2711
- line-height: 17px;
2712
- }
2713
- .root-add-image-link {
2714
- background: url("http://static.csimg.com/v2/img/root-add-one-sprite.gif") no-repeat top left;
2715
- margin-top: 38px;
2716
- width: 52px;
2717
- }
2718
- .root-vote-now-link {
2719
- background: url("http://static.csimg.com/v2/img/root-vote-now-sprite.gif") no-repeat top left;
2720
- margin-top: 4px;
2721
- width: 56px;
2722
- }
2723
- .root-add-image-link:hover { background-position: 0 -17px; }
2724
- .root-vote-now-link:hover { background-position: 0 -17px; }
2725
- .root-add-image-link a {
2726
- color: #ffffff;
2727
- display: block;
2728
- height: 17px;
2729
- }
2730
- .root-vote-now-link a {
2731
- color: #ffffff;
2732
- display: block;
2733
- height: 17px;
2734
- }
2735
- .root-vote-now-link { color: #ffffff; }
2736
- .root-add-image-link a { width: 52px; }
2737
- .root-vote-now-link a { width: 56px; }
2738
- .root-vote {
2739
- background: url("http://static.csimg.com/v2/img/root-vote-bg.png") no-repeat;
2740
- height: 68px;
2741
- width: 68px;
2742
- float: right;
2743
- margin-right: 10px;
2744
- }
2745
- #root-state-list {
2746
- width: 635px;
2747
- background: url("http://static.csimg.com/v2/img/root-state-list-bg.png") repeat-x bottom left;
2748
- border-bottom: 1px solid #bddaa3;
2749
- padding: 10px 0 0 5px;
2750
- margin: 0 auto;
2751
- }
2752
- #root-state-list a {
2753
- color: #6b9e41;
2754
- padding: 3px 5px 3px 5px;
2755
- float: left;
2756
- margin: 3px 5px 10px 0;
2757
- }
2758
- #root-state-list a.selected {
2759
- text-decoration: none;
2760
- color: #ffffff;
2761
- background: #6b9e41;
2762
- font-weight: bold;
2763
- }
2764
- #content-right { border-left: 1px solid #bddaa3; }
2765
- #root-state-region-list {
2766
- font-family: Arial, Helvetica, sans-serif;
2767
- width: 630px;
2768
- margin: 0 auto;
2769
- margin-bottom: 40px;
2770
- padding: 5px;
2771
- }
2772
- #root-state-region-list h2 {
2773
- color: #6b9e41;
2774
- font-size: 14px;
2775
- }
2776
- #root-state-region-list ul.region-list {
2777
- padding: 0;
2778
- margin: 0;
2779
- list-style: none;
2780
- }
2781
- #root-state-region-list ul.city-list {
2782
- padding: 0;
2783
- margin: 0;
2784
- list-style: none;
2785
- }
2786
- ul.region-list li {
2787
- background: #ffffff url("http://static.csimg.com/v2/img/root-region-bg.png") repeat-x bottom left;
2788
- padding: 5px;
2789
- }
2790
- ul.region-list li h3 {
2791
- font-weight: bold;
2792
- color: #15718f;
2793
- font-size: 12px;
2794
- }
2795
- ul.city-list li {
2796
- float: left;
2797
- padding: 5px 0 5px 8px;
2798
- margin: 0 0 0 10px;
2799
- background: url("http://static.csimg.com/v2/img/tiny-right-arrow.gif") no-repeat;
2800
- background-position: 0% 50%;
2801
- }
2802
- #root-state-region-list .see-more-link {
2803
- float: right;
2804
- font-size: 10px;
2805
- }
2806
- #quick-look-container {
2807
- width: 606px;
2808
- height: 620px;
2809
- padding-top: 25px;
2810
- border: #c0e9f8 7px solid;
2811
- padding: 10px;
2812
- overflow: auto;
2813
- position: relative;
2814
- margin-top: 5px;
2815
- }
2816
- .standard-container { background: url("http://static.csimg.com/v2/img/quick-look-bg.png") repeat-x top left; }
2817
- .container-loading { background: url("http://static.csimg.com/v2/img/blue-loader.gif") no-repeat 50% 50%; }
2818
- .quick-look-close {
2819
- position: absolute;
2820
- top: 5px;
2821
- right: 5px;
2822
- }
2823
- #quick-look-city-header { border-bottom: 1px solid #dfdfdf; }
2824
- #quick-look .business-name {
2825
- float: left;
2826
- display: block;
2827
- width: 100%;
2828
- }
2829
- #quick-look .address {
2830
- padding: 2px;
2831
- font-size: 12px;
2832
- clear: both;
2833
- }
2834
- #quick-look .phone {
2835
- font-size: 14px;
2836
- font-weight: bold;
2837
- color: #666666;
2838
- float: left;
2839
- padding: 2px;
2840
- }
2841
- #quick-look .ratings {
2842
- float: left;
2843
- margin-left: 10px;
2844
- margin-top: 2px;
2845
- }
2846
- #quick-look .reviews {
2847
- font-style: italic;
2848
- margin-left: 5px;
2849
- }
2850
- .dest { font-weight: bold; }
2851
- #quick-look .dest {
2852
- font-weight: normal;
2853
- font-style: italic;
2854
- display: inline;
2855
- font-size: 11px;
2856
- }
2857
- #quick-look .headline { border-bottom: 1px solid #DFDFDF; }
2858
- .extra-row .video-link { float: left; }
2859
- .extra-row .ratings { float: left; }
2860
- #quick-look .stars { float: left; }
2861
- #quick-look .title { float: left; }
2862
- #quick-look .sub-title { float: left; }
2863
- .video-link { margin-left: 5px; }
2864
- #quick-look .sub-title { clear: left; }
2865
- .extra-row .video-link { margin-top: 2px; }
2866
- #quick-look .view-all {
2867
- float: right;
2868
- margin: 5px;
2869
- padding-left: 8px;
2870
- background: url("http://static.csimg.com/v2/img/tiny-right-arrow.gif") no-repeat;
2871
- background-position: 0% 50%;
2872
- font-size: 11px;
2873
- }
2874
- #quick-look .view-all-bottom {
2875
- float: right;
2876
- margin: 5px;
2877
- padding-left: 8px;
2878
- background: url("http://static.csimg.com/v2/img/tiny-right-arrow.gif") no-repeat;
2879
- background-position: 0% 50%;
2880
- font-size: 11px;
2881
- }
2882
- #quick-look .view-all-bottom { font-size: 12px; }
2883
- #quick-look .biz-count {
2884
- font-size: 14px;
2885
- color: #666666;
2886
- padding-top: 10px;
2887
- }
2888
- #quick-look .biz-count-num {
2889
- color: #2685A4;
2890
- font-weight: bold;
2891
- }
2892
- #quick-look .description { width: 340px; }
2893
- #quick-look .video-link {
2894
- background: url("http://static.csimg.com/v2/img/control_play_blue.gif") no-repeat;
2895
- padding-left: 20px;
2896
- }
2897
- #quick-look-navigation {
2898
- border-bottom: 1px solid #dfdfdf;
2899
- padding: 10px 0 0 5px;
2900
- margin: 0 auto;
2901
- }
2902
- #quick-look-navigation a {
2903
- color: #2685A4;
2904
- padding: 3px 5px 3px 5px;
2905
- float: left;
2906
- margin: 3px 5px 10px 0;
2907
- }
2908
- #quick-look-navigation a.selected {
2909
- text-decoration: none;
2910
- color: #ffffff;
2911
- background: #2685A4;
2912
- font-weight: bold;
2913
- }
2914
- ul.root-featured li:hover { background-color: #EDF9FC; }
2915
- ul.root-featured div.icon {
2916
- width: 60px;
2917
- height: 60px;
2918
- margin-left: 10px;
2919
- border: 1px solid #cccccc;
2920
- background: none;
2921
- padding: 5px;
2922
- }
2923
- ul.root-featured div.icon img {
2924
- padding: 0;
2925
- margin: 0;
2926
- }
2927
- ul.root-featured {
2928
- margin: 0;
2929
- padding: 0;
2930
- list-style: none;
2931
- font-size: 11px;
2932
- color: #6F6F6F;
2933
- line-height: 17px;
2934
- }
2935
- ul.root-featured li {
2936
- width: 100%;
2937
- padding: 15px 0 15px 0;
2938
- overflow: hidden;
2939
- border-bottom: 1px solid #DFDFDF;
2940
- }
2941
- ul.root-featured strong.head { font-size: 16px; }
2942
- ul.root-featured div.columns {
2943
- width: 100%;
2944
- overflow: hidden;
2945
- padding-bottom: 4px;
2946
- }
2947
- ul.root-featured div.columns div.left {
2948
- width: 250px;
2949
- padding-right: 38px;
2950
- float: left;
2951
- }
2952
- ul.root-featured div.columns div.right {
2953
- width: 200px;
2954
- float: right;
2955
- }
2956
- ul.root-featured dl.info {
2957
- margin: 0;
2958
- padding: 0;
2959
- width: 100%;
2960
- overflow: hidden;
2961
- }
2962
- ul.root-featured dl.info dt {
2963
- display: block;
2964
- float: left;
2965
- clear: left;
2966
- margin: 0;
2967
- padding: 0 0px 0 0;
2968
- }
2969
- ul.root-featured dl.info dd {
2970
- margin: 0;
2971
- padding: 0;
2972
- display: block;
2973
- text-transform: capitalize;
2974
- }
2975
- ul.root-featured dl.info dd a { color: #1C8BB0; }
2976
- ul.root-featured p.contact {
2977
- padding: 0;
2978
- font-size: 12px;
2979
- }
2980
- ul.root-featured p.contact span { display: block; }
2981
- ul.root-featured p.contact span.phone { color: #1C8BB0; }
2982
- ul.root-featured p.comment {
2983
- color: #525252;
2984
- padding: 0;
2985
- }
2986
- ul.root-featured p.rate {
2987
- padding: 0 0 3px 0;
2988
- width: 100%;
2989
- overflow: hidden;
2990
- }
2991
- ul.root-featured p.rate a { font-style: italic; }
2992
- ul.root-featured p.rate span.stars {
2993
- float: left;
2994
- margin-right: 5px;
2995
- }
2996
- #root-tabs {
2997
- font: bold 14px Arial, Helvetica, sans-serif;
2998
- color: #167696;
2999
- width: 640px;
3000
- text-align: center;
3001
- }
3002
- .root-tab-border { border-bottom: 1px solid #C0E9F8; }
3003
- #root-tabs ul { display: inline; }
3004
- #root-tabs li {
3005
- list-style: none;
3006
- display: inline;
3007
- margin-right: 5px;
3008
- text-align: center;
3009
- }
3010
- #root-tabs a {
3011
- background: url("http://static.csimg.com/v2/img/root-tab-bg.gif") repeat-x;
3012
- text-decoration: none;
3013
- display: block;
3014
- float: left;
3015
- overflow: hidden;
3016
- height: 33px;
3017
- width: 64px;
3018
- color: #167696;
3019
- line-height: 30px;
3020
- margin-left: 3px;
3021
- position: relative;
3022
- bottom: -1px;
3023
- border-left: 1px solid #C0E9F8;
3024
- border-right: 1px solid #C0E9F8;
3025
- border-top: 1px solid #C0E9F8;
3026
- }
3027
- #root-tabs .active a {
3028
- border-bottom: 1px solid #ffffff;
3029
- background: #ffffff;
3030
- }
3031
- #root-tabs .navigate {
3032
- font: 11px Arial, Helvetica, sans-serif;
3033
- font-weight: normal;
3034
- text-decoration: none;
3035
- display: block;
3036
- float: left;
3037
- overflow: hidden;
3038
- height: 33px;
3039
- color: #167696;
3040
- line-height: 33px;
3041
- margin-left: 10px;
3042
- }
3043
- .form-text label {
3044
- padding-top: 6px;
3045
- display: block;
3046
- }
3047
- .user-form { padding-bottom: 6px; }
3048
- .user-form label { display: block; }
3049
- #user-edit label {
3050
- padding-top: 6px;
3051
- display: block;
3052
- }
3053
- #user-edit .description {
3054
- font-size: 11px;
3055
- color: #777777;
3056
- padding-left: 0;
3057
- }
3058
- #user-edit fieldset {
3059
- background: #FFFFFF;
3060
- border: 3px double #C2E2EC;
3061
- }
3062
- #user-edit legend {
3063
- font-size: 14px;
3064
- color: #333333;
3065
- font-weight: bold;
3066
- }
3067
- .user-form-off {
3068
- color: #858585;
3069
- background-color: #EAEAEA;
3070
- }
3071
- #node-form label {
3072
- padding-top: 6px;
3073
- display: block;
3074
- }
3075
- #node-form fieldset {
3076
- background: #FFFFFF;
3077
- border: 3px double #C2E2EC;
3078
- }
3079
- #node-form legend {
3080
- font-size: 14px;
3081
- color: #333333;
3082
- font-weight: bold;
3083
- }
3084
- #node-form .description {
3085
- font-size: 11px;
3086
- color: #777777;
3087
- padding-left: 0;
3088
- }
3089
- #profile-edit ul {
3090
- padding: 8px 0 22px 0;
3091
- margin: 0;
3092
- list-style: none;
3093
- }
3094
- #profile-edit ul li {
3095
- display: inline;
3096
- list-style: none;
3097
- margin-right: 6px;
3098
- }
3099
- #profile-edit ul li {
3100
- background: url("http://static.csimg.com/v2/img/button-profile-basic-on-bg.gif") repeat-x;
3101
- border: 1px solid #C2E2EC;
3102
- color: #166C89;
3103
- padding-top: 6px;
3104
- padding-bottom: 6px;
3105
- padding-left: 10px;
3106
- padding-right: 10px;
3107
- font-size: 11px;
3108
- font-weight: normal;
3109
- }
3110
- #profile-edit ul li a { color: #1A83A6; }
3111
- #profile-edit ul li a.active {
3112
- color: #1A83A6;
3113
- font-weight: bold;
3114
- text-decoration: none;
3115
- }
3116
- #claim-notice {
3117
- border: 1px solid #B1E4F1;
3118
- background: url("http://static.csimg.com/v2/img/claim-biz-bg.gif") repeat-x;
3119
- width: 622px;
3120
- height: 37px;
3121
- font-size: 12px;
3122
- color: #2186B1;
3123
- padding: 7px 0 0 8px;
3124
- margin: 0px 0px 10px 10px;
3125
- }
3126
- #claim-notice img {
3127
- float: left;
3128
- padding: 0 15px 0 0;
3129
- }
3130
- #claim-notice a { color: #19BDE7; }
3131
- #fail-notice {
3132
- border: 1px solid #E0A3A3;
3133
- background: url("http://static.csimg.com/v2/img/fail-biz-bg.gif") repeat-x;
3134
- width: 600px;
3135
- height: 37px;
3136
- font-size: 12px;
3137
- color: #BB3E3E;
3138
- padding: 7px 0px 0px 15px;
3139
- margin: 0 0 10px 0;
3140
- }
3141
- #fail-notice img {
3142
- float: left;
3143
- padding: 0 15px 0 0;
3144
- }
3145
- #fail-notice a { color: #19BDE7; }
3146
- #contract-cta {
3147
- background: #E2EDC9 url("http://static.csimg.com/v2/img/contract-cta.png") no-repeat;
3148
- height: 122px;
3149
- width: 624px;
3150
- border: 4px solid #BDD685;
3151
- margin: 0 0 0 10px;
3152
- position: relative;
3153
- }
3154
- #contract-cta-price {
3155
- position: absolute;
3156
- top: 15px;
3157
- left: 13px;
3158
- }
3159
- #contract-cta-price .price {
3160
- color: #3C3C3C;
3161
- font-size: 31px;
3162
- }
3163
- #contract-cta-price .terms {
3164
- color: #5F7627;
3165
- font-size: 11px;
3166
- }
3167
- #owner-info {
3168
- font-size: 12px;
3169
- font-style: italic;
3170
- color: #777777;
3171
- }
3172
- #commerce-claim-business-form {
3173
- padding: .5em;
3174
- margin-bottom: 1em;
3175
- }
3176
- #commerce-claim-business-form .description {
3177
- font-size: 12px;
3178
- color: #444444;
3179
- width: auto;
3180
- padding-top: 2em;
3181
- }
3182
- #commerce-claim-business-form label {
3183
- font-weight: normal;
3184
- color: #777777;
3185
- }
3186
- #commerce-claim-business-form .form-checkbox {
3187
- width: auto;
3188
- display: inline;
3189
- }
3190
- #commerce-claim-business-form input {
3191
- font-size: 16px;
3192
- padding: 4px;
3193
- color: #444444;
3194
- display: table;
3195
- width: 70%;
3196
- font-weight: bold;
3197
- }
3198
- #commerce-claim-business-form select {
3199
- font-size: 16px;
3200
- padding: 4px;
3201
- color: #444444;
3202
- font-weight: bold;
3203
- }
3204
- #commerce-claim-business-form fieldset {
3205
- display: block;
3206
- width: 100%;
3207
- border: 1px solid #B1E4F1;
3208
- padding: .5em;
3209
- }
3210
- #commerce-claim-business-form #edit-submit {
3211
- width: auto;
3212
- padding: 0;
3213
- display: inline;
3214
- }
3215
- #details div.amenities dl {
3216
- margin: 0;
3217
- padding: 0;
3218
- line-height: 22px;
3219
- }
3220
- #details div.amenities dl.left {
3221
- width: 220px;
3222
- float: left;
3223
- }
3224
- #details div.amenities dl.right {
3225
- padding-left: 10px;
3226
- width: 150px;
3227
- float: left;
3228
- }
3229
- #details div.amenities dl dt {
3230
- margin: 0;
3231
- padding: 0;
3232
- display: block;
3233
- float: left;
3234
- clear: left;
3235
- }
3236
- #details div.amenities dl.left dt { width: 145px; }
3237
- #details div.amenities dl.right dt { width: 85px; }
3238
- #details div.amenities dl dd {
3239
- margin: 0;
3240
- padding: 0;
3241
- display: block;
3242
- float: left;
3243
- }
3244
- * html #details div.amenities dl dd { float: none; }
3245
- * + html #details div.amenities dl dd { float: none; }
3246
- #details div.amenities span.yes { margin-top: 3px; }
3247
- #details div.amenities span.no { margin-top: 3px; }
3248
- a.remove_amenity { text-decoration: none; }
3249
- a.remove_amenity:hover { color: #FF0000; }
3250
- .amenity_content {
3251
- margin: 10px;
3252
- display: inline;
3253
- }
3254
- .amenities_options { margin-left: 10px; }
3255
- #details div.amenities {
3256
- width: 100%;
3257
- overflow: hidden;
3258
- }
3259
- div.testimonial { margin-bottom: 40px; }
3260
- div.testimonial div.box {
3261
- margin-bottom: 0;
3262
- padding-bottom: 35px;
3263
- background-image: url("http://static.csimg.com/v2/img/box-bottom-testimonial.gif");
3264
- color: #6F6F6F;
3265
- font-style: italic;
3266
- font-size: 13px;
3267
- }
3268
- div.testimonial div.box div.box-body { padding: 15px 25px 0 25px; }
3269
- div.testimonial p.author {
3270
- padding: 0 0 0 130px;
3271
- margin: -15px 0 0 0;
3272
- color: #6F6F6F;
3273
- }
3274
- #quick-search {
3275
- padding: 20px 0 30px 0;
3276
- width: 100%;
3277
- overflow: hidden;
3278
- }
3279
- #quick-search p {
3280
- width: 100%;
3281
- overflow: hidden;
3282
- margin: 0;
3283
- padding: 0 0 10px 0;
3284
- }
3285
- #quick-search label {
3286
- display: block;
3287
- float: left;
3288
- width: 150px;
3289
- }
3290
- #quick-search input.text {
3291
- width: 200px;
3292
- display: block;
3293
- margin: 0 0 0 150px;
3294
- }
3295
- #quick-search input.submit {
3296
- margin: 0 0 0 150px;
3297
- float: left;
3298
- display: inline;
3299
- }
3300
- #faceted-search { padding: 2px; }
3301
- #faceted-search #distance-bar {
3302
- padding-top: 8px;
3303
- padding-bottom: 8px;
3304
- text-align: center;
3305
- font-weight: normal;
3306
- color: #666666;
3307
- }
3308
- #faceted-search #distance-text {
3309
- text-align: center;
3310
- font-weight: normal;
3311
- color: #666666;
3312
- }
3313
- #faceted-search #distance-text span {
3314
- color: #2383A3;
3315
- font-weight: normal;
3316
- font-size: 170%;
3317
- }
3318
- #faceted-search #star-5 { background: url("http://static.csimg.com/v2/img/star-rating-5.gif") no-repeat right; }
3319
- #faceted-search #star-4 { background: url("http://static.csimg.com/v2/img/star-rating-4.gif") no-repeat right; }
3320
- #faceted-search #star-3 { background: url("http://static.csimg.com/v2/img/star-rating-3.gif") no-repeat right; }
3321
- #faceted-search #star-2 { background: url("http://static.csimg.com/v2/img/star-rating-2.gif") no-repeat right; }
3322
- #faceted-search #star-1 { background: url("http://static.csimg.com/v2/img/star-rating-1.gif") no-repeat right; }
3323
- #faceted-search div.toggle {
3324
- padding-right: 12px;
3325
- text-align: right;
3326
- background: url("http://static.csimg.com/v2/img/arrow-more-blue-fs.gif") no-repeat right;
3327
- }
3328
- #faceted-search div.toggle a {
3329
- color: #2CA4CB;
3330
- font-weight: normal;
3331
- text-decoration: underline;
3332
- }
3333
- #faceted-search div.toggle a:hover { color: #666666; }
3334
- #faceted-search h4 {
3335
- color: #F08711;
3336
- font-size: 100%;
3337
- }
3338
- #faceted-search #holder {
3339
- color: #1C6882;
3340
- font-size: 85%;
3341
- font-weight: bold;
3342
- padding-top: 10px;
3343
- padding-bottom: 10px;
3344
- border-bottom: 1px solid #E4E4E4;
3345
- }
3346
- #faceted-search #holder ul {
3347
- text-align: left;
3348
- margin: 0;
3349
- padding: 0;
3350
- list-style: none;
3351
- padding-top: 4px;
3352
- }
3353
- #faceted-search #holder li {
3354
- font-weight: normal;
3355
- color: #666666;
3356
- list-style: none;
3357
- line-height: 1.4em;
3358
- }
3359
- #faceted-search #holder span.fq-selected {
3360
- font-weight: bold;
3361
- padding-left: 12px;
3362
- background: url("http://static.csimg.com/v2/img/arrow-right-fs.gif") no-repeat left;
3363
- color: #666666;
3364
- }
3365
- #faceted-search #holder li a {
3366
- color: #2CA4CB;
3367
- text-decoration: underline;
3368
- }
3369
- #faceted-search #holder li a:hover {
3370
- color: #666666;
3371
- text-decoration: underline;
3372
- }
3373
- #faceted-search li span {
3374
- font-weight: normal;
3375
- color: #949494;
3376
- text-decoration: none;
3377
- }
3378
- #faceted-search li span a {
3379
- font-weight: normal;
3380
- color: #949494;
3381
- text-decoration: none;
3382
- }
3383
- #faceted-search #holder-alpha {
3384
- color: #1C6882;
3385
- font-size: 85%;
3386
- font-weight: bold;
3387
- padding-top: 10px;
3388
- padding-bottom: 10px;
3389
- border-bottom: 1px solid #E4E4E4;
3390
- }
3391
- #faceted-search #holder-alpha ul {
3392
- list-style: none;
3393
- text-align: left;
3394
- margin: 0;
3395
- padding: 0;
3396
- padding-top: 4px;
3397
- }
3398
- #faceted-search #holder-alpha li {
3399
- list-style: none;
3400
- float: left;
3401
- font-weight: normal;
3402
- color: #666666;
3403
- padding-right: 6px;
3404
- line-height: 1.4em;
3405
- }
3406
- #faceted-search #holder-alpha span.location {
3407
- font-weight: normal;
3408
- color: #666666;
3409
- font-size: 90%;
3410
- }
3411
- #faceted-search #holder-alpha li.fq-selected {
3412
- font-weight: bold;
3413
- padding-left: 12px;
3414
- background: url("http://static.csimg.com/v2/img/arrow-right-fs.gif") no-repeat left;
3415
- }
3416
- #faceted-search #holder-alpha li a {
3417
- color: #2CA4CB;
3418
- text-decoration: underline;
3419
- }
3420
- #faceted-search #holder-alpha li a:hover {
3421
- color: #666666;
3422
- text-decoration: underline;
3423
- }
3424
- #faceted-search #holder-alpha .clear-left { clear: left; }
3425
- .faceted-search-remove-filter {
3426
- padding-right: 15px;
3427
- background: url("http://static.csimg.com/v2/img/close-fs.gif") no-repeat right;
3428
- }
3429
- div.message-send {
3430
- width: 100%;
3431
- overflow: hidden;
3432
- margin-bottom: 19px;
3433
- font-size: 11px;
3434
- }
3435
- div.message-send strong.head {
3436
- color: #1C8BB0;
3437
- font-size: 12px;
3438
- padding-bottom: 0;
3439
- }
3440
- div.message-send label {
3441
- display: block;
3442
- font-weight: bold;
3443
- color: #4D4D4D;
3444
- padding-top: 10px;
3445
- padding-bottom: 2px;
3446
- }
3447
- div.message-send label.disabled { color: #A6A6A6; }
3448
- div.message-send textarea {
3449
- width: 98%;
3450
- border: 1px solid #E9E7E3;
3451
- margin: 0 0 8px 0;
3452
- padding: 0;
3453
- color: #4D4D4D;
3454
- display: block;
3455
- background-color: #FFFFFF;
3456
- height: 105px;
3457
- }
3458
- div.comments { background: none !important; }
3459
- div.comments div.box-body {
3460
- margin-left: 6px;
3461
- padding-left: 10px;
3462
- background-image: none !important;
3463
- margin-bottom: 4px;
3464
- width: 637px;
3465
- }
3466
- div.comments .headline h2 {
3467
- padding-left: 18px;
3468
- font-size: 12px;
3469
- color: #666666;
3470
- }
3471
- ul.clist {
3472
- margin: 0;
3473
- padding: 0;
3474
- list-style: none;
3475
- font-size: 12px;
3476
- color: #4A4A4A;
3477
- }
3478
- ul.clist a { color: #1A83A6; }
3479
- ul.clist li {
3480
- width: 100%;
3481
- overflow: hidden;
3482
- padding-bottom: 22px;
3483
- }
3484
- ul.clist div.icon {
3485
- font-size: 11px;
3486
- font-weight: bold;
3487
- text-align: center;
3488
- }
3489
- ul.clist div.icon img {
3490
- padding: 3px;
3491
- border: 1px solid #B7D2DF;
3492
- background-color: #FFFFFF;
3493
- margin-top: 3px;
3494
- }
3495
- ul.clist p.date {
3496
- display: block;
3497
- font-size: 11px;
3498
- color: #017294;
3499
- font-weight: bold;
3500
- padding-bottom: 8px;
3501
- }
3502
- #user-login .box-body .user-form { padding-left: 10px; }
3503
- #user-login .box-body p { padding-left: 10px; }
3504
- #user-login #edit-submit { margin-left: 10px; }
3505
- #user-login h1 {
3506
- margin: 0;
3507
- padding-bottom: 6px;
3508
- }
3509
- #user-register .box-body .user-form { padding-left: 10px; }
3510
- #user-register .box-body p {
3511
- padding-left: 10px;
3512
- text-align: left;
3513
- }
3514
- #user-register fieldset {
3515
- display: table;
3516
- color: #166C89;
3517
- }
3518
- #user-register #edit-submit { margin-left: 10px; }
3519
- #user-register h1 {
3520
- margin: 0;
3521
- padding-bottom: 6px;
3522
- }
3523
- .box-bg { padding-left: .5em; }
3524
- .box-body {
3525
- overflow: hidden;
3526
- font-size: 12px;
3527
- color: #666666;
3528
- border-top: 2px solid #C0E9F5;
3529
- border-bottom: 2px solid #C0E9F5;
3530
- background-color: #F1FCFE;
3531
- }
3532
- .box-body .headline {
3533
- padding-left: 10px;
3534
- padding-top: 10px;
3535
- }
3536
- .box-body .headline h1 {
3537
- font-size: 182%;
3538
- padding: 0;
3539
- margin: 0;
3540
- }
3541
- form #edit-cs-firstname { display: none; }
3542
- form #edit-cs-lastname { display: none; }
3543
- form #edit-cs-firstname .form-text { display: none; }
3544
- form #edit-cs-lastname .form-text { display: none; }
3545
- #userLogin { color: #666666; }
3546
- #userLogin h3 {
3547
- font-size: 167%;
3548
- font-weight: bold;
3549
- color: #666666;
3550
- padding: 0;
3551
- margin: 0;
3552
- }
3553
- #userLogin label {
3554
- display: block;
3555
- font-weight: bold;
3556
- width: 100%;
3557
- padding: .5em 0;
3558
- }
3559
- #userLogin .form-text {
3560
- display: block;
3561
- float: left;
3562
- padding: .2em;
3563
- color: #156782;
3564
- font-weight: bold;
3565
- font-size: 93%;
3566
- width: 50%;
3567
- }
3568
- #userLogin .form-required { display: none; }
3569
- #userLogin #userLinks {
3570
- width: 50%;
3571
- text-align: center;
3572
- }
3573
- #userLogin .loginItem {
3574
- float: left;
3575
- display: block;
3576
- padding: .5em;
3577
- width: 100%;
3578
- }
3579
- #userSubmit { width: 50%; }
3580
- #userSubmit #edit-submit {
3581
- border: 1px solid #999999;
3582
- padding: .3em .5em;
3583
- background: #DDDDDD;
3584
- color: #333333;
3585
- margin: 0 auto;
3586
- position: relative;
3587
- display: block;
3588
- width: 33%;
3589
- }
3590
- #userSubmit #edit-submit:hover { background: #EEEEEE; }
3591
- #facebox .form-text { width: 90%; }
3592
- #facebox #userLinks { width: 90%; }
3593
- #facebox #userSubmit { width: 90%; }
3594
- #ftTop ul {
3595
- margin: 0;
3596
- list-style: none;
3597
- }
3598
- #ftTop ul li {
3599
- display: inline;
3600
- padding: 0 .5em;
3601
- line-height: 1.5em;
3602
- }
3603
- #ftBottom ul {
3604
- margin: 0;
3605
- list-style: none;
3606
- }
3607
- #ftBottom ul li {
3608
- display: block;
3609
- padding: .25em .75em .25em 0;
3610
- line-height: 1.5em;
3611
- float: left;
3612
- }
3613
- ul.blue-arrow li {
3614
- background: url("http://static.csimg.com/img/cs-iconSprite.20090316.4.png") no-repeat -625px -22px;
3615
- padding: .2em 0 0 10px;
3616
- }
3617
- ol.blue-arrow li {
3618
- background: url("http://static.csimg.com/img/cs-iconSprite.20090316.4.png") no-repeat -625px -22px;
3619
- padding: .2em 0 0 10px;
3620
- }
3621
- ul.blue-bg {
3622
- margin: .3em 0 0 0;
3623
- border-top: 6px solid #1F9EC9;
3624
- }
3625
- ol.blue-bg {
3626
- margin: .3em 0 0 0;
3627
- border-top: 6px solid #1F9EC9;
3628
- }
3629
- ul.blue-bg li {
3630
- border-bottom: 1px solid #FFFFFF;
3631
- background: #EDF8FC;
3632
- padding: .8em .5em;
3633
- margin: 0;
3634
- }
3635
- ol.blue-bg li {
3636
- border-bottom: 1px solid #FFFFFF;
3637
- background: #EDF8FC;
3638
- padding: .8em .5em;
3639
- margin: 0;
3640
- }
3641
- ul.blue-bg li:hover { background: #FFFFFF; }
3642
- ol.blue-bg li:hover { background: #FFFFFF; }
3643
- ul.blue-bg li .icon {
3644
- float: left;
3645
- display: inline;
3646
- }
3647
- ol.blue-bg li .icon {
3648
- float: left;
3649
- display: inline;
3650
- }
3651
- ul.blue-separator {
3652
- margin: 0;
3653
- padding: 0;
3654
- }
3655
- ol.blue-separator {
3656
- margin: 0;
3657
- padding: 0;
3658
- }
3659
- #aboutHood ul {
3660
- margin: 0;
3661
- padding: 0;
3662
- }
3663
- ul.blue-separator li {
3664
- border-bottom: 1px solid #C0E9F5;
3665
- padding: .7em 0;
3666
- margin: 0;
3667
- }
3668
- ol.blue-separator li {
3669
- border-bottom: 1px solid #C0E9F5;
3670
- padding: .7em 0;
3671
- margin: 0;
3672
- }
3673
- ul.blue-separator li:hover { background: #EDF8FC; }
3674
- ol.blue-separator li:hover { background: #EDF8FC; }
3675
- ul.blue-separator li .icon {
3676
- float: left;
3677
- display: inline;
3678
- }
3679
- ol.blue-separator li .icon {
3680
- float: left;
3681
- display: inline;
3682
- }
3683
- ul.spacer li { padding: .2em 0; }
3684
- ol.spacer li { padding: .2em 0; }
3685
- #homeMain ul.blue-separator li { border-bottom: 1px solid #EEEEEE; }
3686
- #homeMain ol.blue-separator li { border-bottom: 1px solid #EEEEEE; }
3687
- #homeMain ul.blue-separator li .icon { margin-top: -2px; }
3688
- #homeMain ol.blue-separator li .icon { margin-top: -2px; }
3689
- #homeLocations .navList {
3690
- float: left;
3691
- width: 33%;
3692
- }
3693
- #aboutHood ul.photos li {
3694
- float: left;
3695
- padding: 4px 4px 0 4px;
3696
- border: 2px solid #C0E9F5;
3697
- margin: 3px 10px;
3698
- background: #FFFFFF;
3699
- }
3700
- #aboutHood ul.photos li:hover { border: 2px solid #1F9EC9; }
3701
- html.js fieldset.collapsed {
3702
- border-bottom-width: 0;
3703
- border-left-width: 0;
3704
- border-right-width: 0;
3705
- margin-bottom: 0;
3706
- height: 1em;
3707
- }
3708
- html.js fieldset.collapsed * { display: none; }
3709
- html.js fieldset.collapsed legend { display: block; }
3710
- html.js fieldset.collapsible legend a {
3711
- padding-left: 15px;
3712
- background: url("../../misc/menu-expanded.png") 5px 75% no-repeat;
3713
- }
3714
- html.js fieldset.collapsed legend a {
3715
- background-image: url("../../misc/menu-collapsed.png");
3716
- background-position: 5px 50%;
3717
- }
3718
- * html.js fieldset.collapsed legend { display: inline; }
3719
- * html.js fieldset.collapsed legend * { display: inline; }
3720
- * html.js fieldset.collapsed table * { display: inline; }
3721
- html.js fieldset.collapsible legend a { display: block; }
3722
- html.js fieldset.collapsible .fieldset-wrapper { overflow: auto; }
3723
- #autocomplete {
3724
- position: absolute;
3725
- border: 1px solid;
3726
- overflow: hidden;
3727
- z-index: 100;
3728
- }
3729
- #autocomplete ul {
3730
- margin: 0;
3731
- padding: 0;
3732
- list-style: none;
3733
- }
3734
- #autocomplete li {
3735
- background: #ffffff;
3736
- color: #000000;
3737
- white-space: pre;
3738
- cursor: default;
3739
- }
3740
- #autocomplete li.selected {
3741
- background: #0072b9;
3742
- color: #ffffff;
3743
- }
3744
- .resizable-textarea { width: 95%; }
3745
- .resizable-textarea .grippie {
3746
- height: 9px;
3747
- overflow: hidden;
3748
- background: #eeeeee url("../../misc/grippie.png") no-repeat center 2px;
3749
- border: 1px solid #dddddd;
3750
- border-top-width: 0;
3751
- cursor: s-resize;
3752
- }
3753
- html.js .resizable-textarea textarea {
3754
- margin-bottom: 0;
3755
- width: 100%;
3756
- display: block;
3757
- }
3758
- #blocks { border: 1px solid #CCCCCC; }
3759
- #blocks thead { display: none; }
3760
- #blocks td { border-bottom: 1px solid #CCCCCC; }
3761
- #blocks tr:hover { background: #FFF1D1; }
3762
- #blocks .region {
3763
- font-weight: bold;
3764
- border-bottom: 2px solid #CCCCCC;
3765
- text-transform: uppercase;
3766
- text-align: center;
3767
- }
3768
- #blocks .odd { background: #eaeaea; }