-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapplication.css
2303 lines (2030 loc) · 153 KB
/
application.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* @group Basic Elements */
*{margin:0;padding:0;outline:none;}
*:focus { outline:0;}
html{vertical-align:bottom;font-size:100%;}
a{color:#149cb7;text-decoration:none;font-weight:bold;cursor:pointer;vertical-align:baseline;}
a:hover{color:#0a6e88;text-decoration:none;}
h1, h2, h3, h4, h5, h6{padding:0;margin:0}
h2{font:26px normal Georgia,"Times New Roman",Times,serif}
h3{font:20px normal Georgia,"Times New Roman",Times,serif}
h4{font:14px normal Georgia,"Times New Roman",Times,serif}
h5{ margin:0px; padding:0px; font-family:normal Georgia,"Times New Roman",Times,serif; font-size:26px; font-size-adjust:none; font-weight:normal; line-height:normal; color:#0a6e88;}
h6{font:bold 14px normal Georgia,"Times New Roman",Times,serif;}
p{font:12px/18px Verdana,Geneva,sans-serif}
li{padding:5px 0;}
ol{margin-left:5px;padding-left:2em;} /*-- Needs to be deleted after the transformation.css get updated. This used to make the numericals inline with --*/
ul{list-style:none;}
ul.default{list-style-image:none;list-style-type:disc;list-style-position:outside;margin-left:5px;padding-left:2em;}
fieldset{border:none}
img{border:none;}
form th{background-color:#EEF9FB;}
.lowOpacity{filter:alpha(opacity=30);-moz-opacity:0.3;-khtml-opacity: 0.3;opacity: 0.3;}
textarea {resize: none;}
siv{}
/* @end */
/* @group Progress */
#progress {background: #eef9fb;border: 1px solid #23afc4;border-top: none;margin: 0 !important;position: fixed;padding: 5px;top: -30px;right: 1px;z-index: 999999;
-moz-border-radius-bottomleft: 5px;
-moz-border-radius-bottomright: 5px;
-webkit-border-bottom-left-radius: 5px;
-webkit-border-bottom-right-radius: 5px;}
#progress img { vertical-align: middle;margin: 0 2px;}
/* @end */
/* @group Tender App */
div #tender_toggler{position:fixed;}
#tender_toggle < div {color:red;}
.clusterList .mathml{vertical-align:middle}
div #tender_window {height:585px;position:fixed;}
/*div #tender_window #discussion_body{height:150px;}
div #tender_window .content{height:435px;}*/
/* @end */
/* @group Generalised Elements */
.resetContent{}
.AddChildtabs{list-style: decimal outside;} /* ************* */
.resetContent ol{list-style: decimal outside;}
.resetContent ul{list-style: disc outside;}
.resetContent {}
.moveCursor{cursor:move;}
.cursorDefault{cursor:default;}
.monotype{font-family:courier;}
.beta{background:url(/images/solaroTeens/theme1/icons/betaIcon.png) no-repeat 0 0;width:85px;height:85px;position:fixed;top:0;left:0;z-index:99999;}
.title1{background-color:#EEF9FB;border:1px solid #BDE5EE;padding:5px 5px 5px 10px;position:relative;margin:10px 0;}
.title3{font:20px normal Georgia,"Times New Roman",Times,serif;display:block;}
.title4{font-size:16px;font-family:"Gill Sans","Myriad Pro",Calibri,"Helvetica Neue",Helvetica,Arial,Verdana,sans-serif;font-weight:normal;display:block;}
.title5{font-size:14px;font-family:"Gill Sans","Myriad Pro",Calibri,"Helvetica Neue",Helvetica,Arial,Verdana,sans-serif;font-weight:normal;}
.legendTitle{font-size:16px;font-family:"Gill Sans","Myriad Pro",Calibri,"Helvetica Neue",Helvetica,Arial,Verdana,sans-serif;font-weight:normal;margin-left:40px;}
.sqBullet li{background:url(/images/solaroTeens/theme1/icons/bullet-desc.gif) no-repeat 0 1em;list-style-position:outside;padding-left:15px;}
.squareBullets{background:url(/images/solaroTeens/theme1/icons/bullet-desc.gif) no-repeat 0 6px;padding-left:15px;font:14px/18px "Gill Sans","Myriad Pro",Calibri,"Helvetica Neue",Helvetica,Arial,Verdana,sans-serif;display:block;color:#149cb7;text-decoration:none;}
.attentionIco{background:url(/images/solaroTeens/theme1/icons/notification24x24.png) no-repeat scroll 0 50%;padding-left:30px;}
.blueBg{background-color:#B9F2F7;}
.whiteTint{border:1px solid #bde5ee;background-color:#fff}
.blueTint{background-color:#EEF9FB;border:1px solid #bde5ee}
.blueTintHead{background-color:#b0f1f5; border:1px solid #a3c6ce}
.yellowTint{background-color:#fffdbb;border:1px solid #f7f1ac}
.blueTB{background-color:#f8fdfd;border-top:1px solid #e6f6f9;border-bottom:1px solid #e6f6f9}
a.linkButton{background:url(/images/solaroTeens/theme1/buttons/buttonBg.png) no-repeat 0 0;line-height:22px;font-size:10px;color:#FFF;display:block;float:left;height:22px;padding:0 0 0 10px;text-decoration:none;cursor:pointer;}
a.linkButton span{background:url(/images/solaroTeens/theme1/buttons/buttonBg.png) no-repeat right 0;overflow:hidden;display:block;height:22px;padding-right:10px}
a:hover.linkButton{background:url(/images/solaroTeens/theme1/buttons/buttonBg.png) no-repeat 0 -22px;text-decoration:none;color:white}
a:hover.linkButton span{background:url(/images/solaroTeens/theme1/buttons/buttonBg.png) no-repeat right -22px;}
.roundedTop_layer1{padding:0;}
.layer1_topLeft,.layer1_topRight,.layer1_top,.layer1_botLeft,.layer1_botRight,.layer1_content{display:block;background:transparent url(/images/solaroTeens/theme1/global/rounded_layer1.png) no-repeat;}
.layer1_topLeft{background-position:0 0;float:left;width:5px;height:5px;}
.layer1_topRight{background-position:-15px 0;float:right;width:5px;height:5px;}
.layer1_top{background-position:0 -15px;background-repeat:repeat-x;margin:0 5px;height:5px;}
.layer1_botLeft{background-position:-30px -5px;height:5px;width:5px;float:left;}
.layer1_botRight{background-position:-35px -5px;height:5px;width:5px;float:right;}
.layer1_bot{display:block;background-color:#b9f2f7;height:5px;margin:0 5px;}
.layer1_content{background-position:0 -25px;background-color:#b9f2f7;background-repeat:repeat-x;padding:0 5px 5px;min-height:30px;zoom:1;}
.layer1_content:after{content: ".";display: block;height: 0;clear: both;visibility: hidden}
.layer2_topLeft,.layer2_topRight,.layer2_botLeft,.layer2_botRight{display:block;background:transparent url(/images/solaroTeens/theme1/global/rounded_layer2.png) no-repeat;height:10px;width:10px;}
.layer2_topLeft{background-position:0 0;float:left;}
.layer2_topRight{background-position:-10px 0;float:right;}
.layer2_botLeft{background-position:0 -10px;float:left;}
.layer2_botRight{background-position:-10px -10px;float:right;}
.layer2_top{display:block;background:url(/images/solaroTeens/theme1/global/layer2_top_bottom.png) repeat-x left top;height:10px;margin:0 10px;}
.layer2_bot{display:block;background:url(/images/solaroTeens/theme1/global/layer2_top_bottom.png) repeat-x left bottom;height:10px;margin:0 10px;}
.layer2_body{background:url(/images/solaroTeens/theme1/global/rounded_layer2.png) repeat-y -20px 0;}
.layer2_innerBody{background:url(/images/solaroTeens/theme1/global/rounded_layer2.png) repeat-y right 0;}
.layer2_content{background-color:#daf8fb;margin:0 10px;}
.layer3{background:url(/images/solaroTeens/theme1/global/layer3.png) repeat-x left top;padding:5px;line-height:normal;font-size:11px;zoom:1;}
.layer3:after{content: ".";display: block;height: 0;clear: both;visibility: hidden}
.minMax{width:16px;height:16px;cursor:pointer}
.minimise{background:url(/images/solaroTeens/theme1/icons/minimizeBtn.png) no-repeat}
.maximise{background:url(/images/solaroTeens/theme1/icons/maximizeBtn.png) no-repeat}
.close{background:url(/images/solaroTeens/theme1/icons/closeBtn.png) no-repeat;cursor:pointer;width:16px;height:16px;}
.close:hover{background:url(/images/solaroTeens/theme1/icons/closeBtnHover.png) no-repeat}
.title1 .minMax{position:absolute;top:5px;right:5px}
/* @group Needs to be deleted */
.roundedBlock{background:url(/images/solaroTeens/theme1/global/roundedBlock.png) no-repeat;}
.roundedBlock > div {display:block;background:url(/images/solaroTeens/theme1/global/inner_roundedBlock.png) no-repeat right top;margin-left:15px;}
.roundedBlock > div .rounded_block_content{margin-right:15px;padding-top:15px;min-height:50px;}
.rounded_block_content{zoom:1}
.rounded_block_content:after{content: ".";display: block;height: 0;clear: both;visibility: hidden}
span.roundedBlock_bot {display:block;background:url(/images/solaroTeens/theme1/global/roundedBlock_bot.png) no-repeat;height:10px;}
span.roundedBlock_bot > span{display:block;background:url(/images/solaroTeens/theme1/global/inner_roundedBlock_bot.png) no-repeat right top;height:10px;margin-left:15px;}
/* @end */
.curvedHeader1,
.curvedHeader2,
.curvedHeader3,
.curvedHeader1 > span,
.curvedHeader2 > span,
.curvedHeader3 > span {background:url(/images/solaroTeens/theme1/global/titleHeader.png) no-repeat 0 0;height:35px;display:block;color:#fff;line-height:35px;}
.curvedHeader1{background-position:0 0;padding-left:20px;}
.curvedHeader2{background-position:0 -70px;padding-left:20px;}
.curvedHeader3{background-position:0 -140px;padding-left:20px;}
.curvedHeader1 > span{background-position:right -35px;}
.curvedHeader2 > span{background-position:right -105px;}
.curvedHeader3 > span{background-position:right -175px;}
.lilFloat li {float:left;margin-right:5px;margin-bottom:5px;}
.correct1{background:url(/images/solaroTeens/theme1/icons/croosandTick.png) no-repeat 0 0;padding:0;width:24px;height:24px;}
.inCorrect1{background:url(/images/solaroTeens/theme1/icons/croosandTick.png) no-repeat 0 -50px;padding:0;width:24px;height:24px;}
/* @end */
/* @group Body */
body{background:#2cb6d2 url(/images/solaroTeens/theme1/global/page-BG.png) repeat-x top;font:11px/18px Verdana,Geneva,sans-serif;}
#container{width:100%;background:#f2f2f2 url(/images/solaroTeens/theme1/global/body-BG.jpg) no-repeat 50% 0}
#contentWrapper{margin:0 auto;width:980px;position:relative}
#outerMainBody{background:url(/images/solaroTeens/theme1/global/mainBody_bg.png) no-repeat top;position:relative;width:960px;padding:20px 10px 0}
#mainBody{background-color:#fff;position:relative;padding:5px 15px;min-height:500px;width:930px}
#leftBodyPart{width:510px;float:left;margin:20px 30px 0 0;padding-left:20px}
#rightBodyPart{width:360px;float:left;margin-top:20px}
#login{width:30%;margin:30px auto 10px;border:1px solid #BDE5EE;padding:30px;background-color:#EEF9FB;}
#login label{font:normal 16px "Gill Sans","Myriad Pro",Calibri,"Helvetica Neue",Helvetica,Arial,Verdana,sans-serif;}
#login input{background-color:#fff;border:1px solid #bde5ee;font:normal 16px "Gill Sans","Myriad Pro",Calibri,"Helvetica Neue",Helvetica,Arial,Verdana,sans-serif;padding:5px;}
#login .iButton{padding:0 0 2px 0;border:none;font:normal 12px verdana,helvetica,sans-serif;margin:10px 0;}
#login h2{background:url(/images/solaroTeens/theme1/icons/login-icon.png) no-repeat;padding:15px 0 0 80px;margin-bottom:10px;line-height:50px;}
#smallDescription{width:50%;float:left;margin:30px 0 0 30px}
#smallDescription h2{background:url(/images/solaroTeens/theme1/icons/description-icon.png) no-repeat;padding:15px 0 25px 80px}
#smallDescription ul{padding:10px 0 10px 15px;line-height:20px}
.registerForm div.registerAs{padding:10px;background-color:#EEF9FB;border:1px solid #BDE5EE;/*margin-bottom:20px;*/font-size:12px;}
.registerForm{background:url(/images/solaroTeens/theme1/global/registerForm.jpg) no-repeat 70% top;}
.registerForm h3{background:url(/images/solaroTeens/theme1/icons/regIcon.gif) no-repeat 15px 0;height:69px;padding-left:80px;line-height:100px;}
.studentReg,.parentReg{border:1px solid #BDE5EE;margin:10px 0 0 0;padding:10px;min-height:350px;}
.studentReg{background:url(/images/solaroTeens/theme1/global/studentsPic.png) no-repeat right bottom;}
.parentReg{background:url(/images/solaroTeens/theme1/global/parentsPic.png) no-repeat right bottom;}
.registerForm label{font:14px Georgia,"Times New Roman",Times,serif;width:35%;text-align:right;display:block;float:left;margin-right:15px;}
.registerForm input[type=text],.registerForm input[type=password]{border:1px solid #bde5ee;background-color:#eef9fb;padding:3px;font:12px Georgia,"Times New Roman",Times,serif;width:53%;}
.registerForm fieldset{width:580px;padding:20px;margin:0;}
#new_school .registerForm input[type=text],#new_school .registerForm input[type=password] {width:25%;}
#new_school .registerForm h3{line-height:50px;}
/*.registerForm fieldset{width:580px;border:1px solid #bde5ee;padding:20px;margin:20px 0 20px 20px;}*/
/*.registerForm #newStudentUserForm fieldset{width:auto;margin:0;}*/
.registerForm fieldset>div{margin-bottom:10px;}
.textInfo{text-align:right;}
.textInfo,.textInfo a{font-size:12px;font-weight:normal;}
.registerForm label.error{font-size:12px;}
.registerForm input.iButtonL{position:relative;left:50%;margin-left:-50px;}
#recaptcha_table input,#recaptcha_table label{position:static;float:none;}
.registerForm div.registerAs label{float:left;width:auto;display:inline;}
.registerForm div.registerAs label.w70{width:70px;}
.registerForm div.registerAs label.w130{width:130px;}
.registerAs > div {width:365px;margin:0 auto;}
/* @end */
/* @group Logo */
#contentWrapper h1.logoHome{background:url(/images/solaroTeens/theme1/logo/logo.png) no-repeat;width:398px;height:155px;position:absolute;top:50px;left:20px}
#contentWrapper h1.logoHome span{display:none}
.logo{height:90px;}
h1.logo a{display:block;background:url(/images/solaroTeens/theme1/logo/logoSmall.png) no-repeat;width:229px;height:69px;}
h1.logo span{display:none}
#tagInfo{background:url(/images/solaroTeens/theme1/logo/tagImage.png) no-repeat;height:55px;width:352px;position:absolute;left:600px;top:10px}
/* @end */
/* @group Header and Navigation */
#header{background:url(/images/solaroTeens/theme1/global/friendsBanner.png) no-repeat;height:246px;width:607px;position:relative;top:10px;left:340px}
.mainNavigation,.mainNavigation ul,.mainNavigation ul li,.mainNavigation li>a:hover, .mainNavigation a.selected,.mainNavigation li>a:hover span, .mainNavigation a.selected span{background:url(/images/solaroTeens/theme1/buttons/mainNavBg.png) no-repeat 0 0;}
.mainNavigation{background-position:0 -100px; height:50px; position:absolute; padding-left:7px; top:-45px; right:20px; }
.mainNavigation ul{list-style:none;background-position:right -200px; height:50px; padding-right:7px;}
.mainNavigation ul li{margin:0;background-position:0 -150px;background-repeat:repeat-x;height:43px; float:left; padding:7px 0 0 0;}
.mainNavigation li>a{display:block; height:30px; line-height:normal; color:#000;cursor:pointer; padding-left:10px;}
.mainNavigation li>a span{display:block; height:23px; padding-right:10px;padding-top:7px;}
.mainNavigation li>a:hover, .mainNavigation a.selected{background-repeat:repeat-x;color:#fff;text-decoration:none;}
.mainNavigation li>a:hover span, .mainNavigation a.selected span{background-position:right -40px;}
.mainNavigation li>a.selected{cursor:default;}
.mainNavigation>a{color:#000;}
.mainNavigation>a:hover{text-decoration:none;color:#fff;}
.mainNavigation li>a.disable{color:#ccc;}
.mainNavigation li>a.disable:hover,.mainNavigation li>a.disable:hover span{background:none;cursor:default;}
/* @end */
/* @group Main Navigations for Old Pages ... Needs to be Deleted */
#mainNavigations_old{background:url(/images/solaroTeens/theme1/global/mainNavigations_bg.gif) no-repeat;width:930px;height:67px;text-align:center}
#mainNavigations_old ul{text-align:left;width:910px;margin:0 auto}
#mainNavigations_old ul li{float:left}
#mainNavigations_old ul li a{display:block;background:url(/images/solaroTeens/theme1/global/divider.png) no-repeat;color:#fff;height:50px;padding:17px 0 0 20px;overflow:hidden}
#mainNavigations_old ul li a span.navSubBlock{display:block;font-size:24px;font-weight:normal;padding-right:20px;font-family:Arial,Helvetica,sans-serif}
#mainNavigations_old ul li a span{font-size:11px;font-weight:bold;font-family:Arial,Helvetica,sans-serif;display:block;line-height:1.5em;}
#mainNavigations_old ul li a:hover{text-decoration:none;background:url(/images/solaroTeens/theme1/global/mainNavigations_hover.gif) no-repeat}
#mainNavigations_old ul li a#selected{background:url(/images/solaroTeens/theme1/global/mainNavigations_hover.gif) no-repeat}
#mainNavigations_old ul li a#selected span{color:#f9c72e}
#mainNavigations_old ul li a#selected span span{color:#fff}
/* @end */
/* @group Lesson Browser */
#lessonBrowser li{background:none;padding:0;zoom:1;}
#lessonBrowser li:after{content:".";display:block;height:0;clear:both;visibility:hidden}
#lessonBrowser li a {color:#000;display:block;background-color:#c8f5fa;margin-bottom:2px;padding:8px 5px 8px 35px;text-align:left;}
#lessonBrowser li a:hover{text-decoration:none;background-color:#8CE9FF;}
#lessonBrowser .layer3 {padding:0 0 5px;}
#lessonBrowser .layer3 ul{margin:5px;height:170px;overflow:auto;}
#lessonBrowser #passages .layer3 ul,#lessonBrowser #lessons .layer3 ul{margin-left:0;}
#lessonBrowser .layer3 h3{background-color:#d9f8fd;padding:0 5px 5px 10px;}
#lessonBrowser li a.selected{text-decoration:none;background-color:#8CE9FF;}
.courseIcon,.topicIcon,.clusterIcon,.lessonIcon{list-style:none;}
.courseIcon li,.courseIcon li.viewed,.courseIcon li.notViewed,.courseIcon li.completed,
.topicIcon li,.topicIcon li.viewed,.topicIcon li.notViewed,.topicIcon li.completed,
.clusterIcon li,.clusterIcon li.viewed,.clusterIcon li.notViewed,.clusterIcon li.completed,
.lessonIcon li,.lessonIcon li.viewed,.lessonIcon li.notViewed,.lessonIcon li.completed{background:none;padding:0;margin:0;}
.courseIcon li span{background:url(/images/solaroTeens/theme1/icons/24x24iconSet.png) no-repeat 5px 5px;width:19px;height:19px;float:left;padding:5px;}
.courseIcon li.viewed span{background-position:5px -115px;text-align:left;}
.courseIcon li.notViewed span{background-position:5px 5px;text-align:left;}
.courseIcon li.completed span{background-position:5px -55px;text-align:left;}
.topicIcon li span{background:url(/images/solaroTeens/theme1/icons/24x24iconSet.png) no-repeat;width:24px;height:24px;float:left;padding:5px;}
.topicIcon li.viewed span{background-position:5px -295px;text-align:left;}
.topicIcon li.notViewed span{background-position:5px -175px;text-align:left;}
.topicIcon li.completed span{background-position:5px -235px;text-align:left;}
.clusterIcon li span{background:url(/images/solaroTeens/theme1/icons/24x24iconSet.png) no-repeat;width:24px;height:24px;float:left;padding:5px;}
.clusterIcon li.available span{background-position:5px -955px;text-align:left;}
.clusterIcon li.inProgress span{background-position:5px -1015px;text-align:left;}
.clusterIcon li.completed span{background-position:5px -1075px;text-align:left;}
.lessonIcon li span{background:url(/images/solaroTeens/theme1/icons/24x24iconSet.png) no-repeat;width:24px;height:24px;float:left;padding:5px;}
.lessonIcon li.viewed span{background-position:5px -475px;text-align:left;}
.lessonIcon li.notViewed span{background-position:5px -355px;text-align:left;}
.lessonIcon li.completed span{background-position:5px -415px;text-align:left;}
#lessonBrowser .width70{position:relative;}
#lessonBrowser .width70 .rounded_layer2{margin-left:36px;}
ul.courseTab{position:absolute; width:37px; height:210px;left:4px;top:20px;padding:0;margin:0;list-style:none;}
#lessonBrowser ul.courseTab li{width:37px; background:none; padding:0;margin:0;line-height:0;font-size:0;}
#lessonBrowser ul.courseTab li a{background:none;padding:0;margin:0;height:98px; display:block; text-indent:-9000px;}
#lessonBrowser ul.courseTab li.lessons a{background:url(/images/solaroTeens/theme1/global/passageLesson.png) no-repeat 0 0; }
#lessonBrowser ul.courseTab li.lessons a:hover{ background-position:-38px 0;}
#lessonBrowser ul.courseTab li.lessons a.select{ background-position:-38px 0; cursor:default;}
#lessonBrowser ul.courseTab li.passages a{background:url(/images/solaroTeens/theme1/global/passageLesson.png) no-repeat -38px -98px;}
#lessonBrowser ul.courseTab li.passages a:hover{ background-position:0 -98px;}
#lessonBrowser ul.courseTab li.passages a.select{ background-position:0 -98px; cursor:default;}
.viewedLesson,.notViewedLesson{display:block;width:24px;height:24px;background:url(/images/solaroTeens/theme1/icons/24x24iconSet.png) no-repeat;}
.viewedLesson>span,.notViewedLesson>span{display:none;}
.viewedLesson{background-position:0 -415px;}
.notViewedLesson{background-position:0 -355px;}
.courseBrowse h3, .topicBrowse h3, .lessonBrowse h3{margin:7px 0 0 15px;}
.courseBrowse ul, .topicBrowse ul, .lessonBrowse ul{margin:10px 10px 0 10px;overflow:auto;height:125px;}
.courseBrowse ul li, .topicBrowse ul li, .lessonBrowse ul li{cursor:pointer;padding:5px 0 5px 25px;margin:2px 0;}
.courseBrowse ul li a, .topicBrowse ul li a, .lessonBrowse ul li a{color:#000;display:block;padding-right:18px;}
.courseBrowse ul li p, .topicBrowse ul li p, .lessonBrowse ul li p{padding-right:18px;}
.courseBrowse ul li a:hover, .topicBrowse ul li a:hover, .lessonBrowse ul li a:hover{text-decoration:none;color:#000;}
.courseBrowse ul li:hover, .courseBrowse ul li.itemSelected, .topicBrowse ul li:hover, .topicBrowse ul li.itemSelected, .lessonBrowse ul li:hover, .lessonBrowse ul li.itemSelected{background-color:#a7eef3}
.courseBrowse ul li.itemSelected a, .topicBrowse ul li.itemSelected a, .lessonBrowse ul li.itemSelected a{background:url(/images/solaroTeens/theme1/icons/rightArrow.png) no-repeat right 2px;}
.courseBrowse, .topicBrowse{background:url(/images/solaroTeens/theme1/global/course_topic_browse_bg.png) no-repeat;width:278px;float:left;margin-left:1px;}
.courseBot, .topicBot{background:url(/images/solaroTeens/theme1/global/course_topic_browse_bot.png) no-repeat;width:278px;height:15px;}
.courseBrowse ul li{background:url(/images/solaroTeens/theme1/icons/courseIcon.png) no-repeat 5px 5px;}
.topicBrowse ul li{background:#caf5f8 url(/images/solaroTeens/theme1/icons/topicIcon.png) no-repeat 5px 5px;}
.lessonBrowse ul li{background:#caf5f8 url(/images/solaroTeens/theme1/icons/lessonIcon.png) no-repeat 5px 5px;}
.lessonBrowse{background:url(/images/solaroTeens/theme1/global/lesson_browse_bg.png) no-repeat;width:350px;float:left;margin-left:1px;}
.lessonBot{background:url(/images/solaroTeens/theme1/global/lesson_browse_bot.png) no-repeat;width:350px;height:15px;}
.collapse{background:url(/images/solaroTeens/theme1/global/collapseBg.png) no-repeat;margin-bottom:10px;height:26px;position:relative}
a.hideBtn,a.showBtn{display:block;position:absolute;width:179px;height:26px;background:url(/images/solaroTeens/theme1/buttons/collapseBtnBg.png) no-repeat;right:10px;top:0;text-align:center;color:#000;font-size:10px}
.collapse a:hover{text-decoration:none}
a.hideBtn span{background:url(/images/solaroTeens/theme1/buttons/hideBtn.png) no-repeat 20px 7px;display:block;padding-top:4px;}
a.showBtn span{background:url(/images/solaroTeens/theme1/buttons/showBtn.png) no-repeat 20px 7px;display:block;padding-top:4px;}
.selectedName{background-color:#EEF9FB;border:1px solid #bde5ee}
/* @end */
/* @group Footer */
#footer{background:#2cb6d2 url(/images/solaroTeens/theme1/global/footer-Shaddow.jpg) no-repeat center top;color:#FFF;text-align:center;padding:10px 0}
#footer a{color:#fff;font-size:12px;font-weight:normal;font-family:verdana,geneva,arial;}
#footer a:hover{color:#0a6e88}
#footer h3{background:url(/images/solaroTeens/theme1/global/footer-logo.png) no-repeat;height:46px;width:160px;margin:0 auto;text-indent:-9999px}
/* @end */
/* @group Scroll To Top */
a#toTop{background:url(/images/solaroTeens/theme1/icons/up.gif) no-repeat;width:48px;height:48px;position:fixed;bottom:10px;right:10px;cursor:pointer;display:block}
a#toTop span{display:none}
/* @end */
/* @group Tool Tip Info */
a.toolTipInfo{text-decoration:none}
#tooltip{position:absolute;z-index:3000;padding:10px;opacity:0.9;background-color:#d0fcfe;border-radius:5px;-moz-border-radius:5px;border:1px solid #93dbe6;width:120px;text-align:center;
box-shadow: 0px 0px 8px #000;
-webkit-box-shadow: 0px 0px 8px #000;
-moz-box-shadow: 0px 0px 8px #000;
filter: progid:DXImageTransform.Microsoft.dropShadow(color=#000, offX=0, offY=0, positive=true);
}
#tooltip h3, #tooltip div{margin:0;font-size:16px}
/* @end */
/* TOPICS/LESSONS/QUESTION PAGE */
/*-----------------------TOPIC VIEW------------------------------*/
#topics{width:170px;float:left;background-color:#a1f0f6;border:1px solid #bde5ee}
#innerTopics{background:url(/images/solaroTeens/theme1/global/topicRepeat.png) repeat-x left top}
/*-----------------------COURSE VIEW >LESSON HEADING------------------------------*/
#lessonHeadingTest{background:url(/images/solaroTeens/theme1/global/lessonHeading.gif) no-repeat;width:715px;height:70px;padding:10px 15px 0 15px;margin-bottom:20px}
#lessonHeadingTest h2{background:url(/images/solaroTeens/theme1/icons/chapterIcon.png) no-repeat;height:50px;padding-left:40px;font-size:240%;font-weight:normal;color:#000;line-height:35px}
#lessonHeading{background:url(/images/solaroTeens/theme1/global/lessonsHeading.gif) no-repeat;width:860px;height:48px;padding:10px 15px 0 15px;margin-bottom:10px}
#lessonHeading h2{background:url(/images/solaroTeens/theme1/icons/chapterIcon.png) no-repeat;height:50px;padding-left:40px;font-size:240%;font-weight:normal;color:#000;line-height:30px;text-align:left}
.breadCrumb{background-color:#cef2f7;border:1px solid #48dde0;position:relative;top:-10px;padding:2px 2px 2px 10px;color:#000;height:15px;line-height:14px}
.breadCrumb a:hover{text-decoration:none}
/*-----------------------COURSE VIEW >LESSON CONTENT------------------------------*/
.section h3{border:1px solid #bde5ee;padding:5px 10px}
.section ul{margin-left:10px;line-height:30px}
.section ul li{padding:0}
.section ul li a:hover{text-decoration:none}
.accepted{background-image:url(/images/solaroTeens/theme1/icons/tick.png);background-position:99% 50%;background-repeat:no-repeat;}
.tick{background-image:url(/images/solaroTeens/theme1/icons/tick.png);background-position:2px 50%;background-repeat:no-repeat;padding-left:30px;}
.acceptedL{background-image:url(/images/solaroTeens/theme1/icons/tickL.png);background-repeat:no-repeat;width:32px;height:32px;}
.rejected{background-image:url(/images/solaroTeens/theme1/icons/cross.png);background-position:99% 50%;background-repeat:no-repeat;}
.rejectedL{background-image:url(/images/solaroTeens/theme1/icons/crossL.png);background-repeat:no-repeat;width:32px;height:32px;}
.reminder{background-image:url(/images/solaroTeens/theme1/icons/reminder.png);background-position:99% 50%;background-repeat:no-repeat;}
.notAnswered{background-image:url(/images/solaroTeens/theme1/icons/unAnswered.png);background-position:99% 50%;background-repeat:no-repeat;}
.unknown{background-image:url(/images/solaroTeens/theme1/icons/exclamation.gif);background-position:99% 50%;background-repeat:no-repeat;}
/*-----------------------SEARCH ITEM-----------------------------*/
.searchItem{margin-bottom:20px}
/*-----------------------APPROVE ITEM-----------------------------*/
#approval{position:fixed;right:10px;bottom:90px}
/*-----------------------QUESTION VIEW------------------------------*/
#questionContent{margin-bottom:10px}
.source{border:1px solid #bde5ee;background-color:#EEF9FB;padding:5px 15px}
/* INSTRUCTION PAGE */
.instDescription{background-color:#EEF9FB;border:1px solid #bde5ee;padding:10px 10px 0 10px;margin-bottom:10px}
.block1{background:#A5F1F7 url(/images/solaroTeens/theme1/global/solaroInfoBg.png) repeat-x;border:4px solid #A5F1F7}
/* QUESTION TYPE PAGE */
/* @group User Account Profile */
#userAccountProfile .rounded_layer2 .layer3 {position:relative;}
#userAccountProfile .width40 .rounded_layer2 .layer3 > ul {margin:10px 0;}
#userAccountProfile .width40 .rounded_layer2 .layer3 > a {float:none;margin-bottom:10px;}
/* @end */
/* @group User Short Summary */
#userShortSummary {margin-bottom:10px;}
#userShortSummary .layer3{font-size:11px;min-height:77px;}
#userShortSummary .layer3 #child_selection{float:left;margin-left:10px;}
#child_detail_information_nav {margin-bottom:10px;}
#child_detail_information_nav .width65 .layer3{min-height:285px;}
#child_detail_information_nav .width35 {height:315px;overflow:auto;}
#flipChildBox > ul .progressBarHolder{width:460px;margin:1px 10px 0 0;}
#child_detail_information_nav .layer3 {background-color:#fff;}
#child_detail_information_nav .layer3.selectedChild{background-color:#FFFFCC;border:1px solid #999999;}
#requestedChanges{clear:both;}
/* @end */
/* @group Star Rating */
.star-rating, .star-rating a:hover, .star-rating a:active, .star-rating a:focus, .star-rating .current-rating{background:url(/images/solaroTeens/theme1/notes/starRating.png) left -1000px repeat-x}
.star-rating{position:relative; width:85px; height:17px; overflow:hidden; list-style:none; margin:0; padding:0; background-position:top left; float:left}
.star-rating li{display:inline; list-style:none;padding:0;}
.star-rating a, .star-rating .current-rating{position:absolute; top:0; left:0; text-indent:-1000em; height:17px; line-height:17px; outline:none; overflow:hidden; border:none;margin:0;padding:0;}
.star-rating a:hover, .star-rating a:active, .star-rating a:focus{background-position:center left}
.star-rating a.one-stars{width:20%; z-index:6}
.star-rating a.two-stars{width:40%; z-index:5}
.star-rating a.three-stars{width:60%; z-index:4}
.star-rating a.four-stars{width:80%; z-index:3}
.star-rating a.five-stars{width:100%; z-index:2}
.star-rating .current-rating{z-index:1; background-position:bottom left}
.star-ratings-block{width:100%}
.result-value{font-size:.75em; text-align:left}
/* @end */
/* @group My SOLARO Page ... Needs Review and DELETED */
.achievementsIcon, .bookmarkIcon, .forumReplyIcon, .dollarosIcon, .rewardsIcon{height:16px;display:block;padding-left:20px;margin-right:20px}
.milestonesIcon, .goalsIcon, .progressIcon{height:16px;display:block;padding-left:5px;margin-right:5px}
a.achievementsIcon, a.bookmarkIcon, a.forumReplyIcon, a.dollarosIcon, a.rewardsIcon, a.milestonesIcon, a.goalsIcon, a.progressIcon{text-decoration:none;color:#000;margin-bottom:5px}
a.achievementsIcon span, a.bookmarkIcon span, a.forumReplyIcon span, a.dollarosIcon span, a.rewardsIcon span, a.milestonesIcon span, a.goalsIcon span, a.progressIcon span{color:#0a6e88}
a.achievementsIcon:hover, a.bookmarkIcon:hover, a.forumReplyIcon:hover, a.dollarosIcon:hover, a.rewardsIcon:hover, a.milestonesIcon:hover, a.goalsIcon:hover, a.progressIcon:hover{text-decoration:none}
.achievementsIcon{background:url(/images/solaroTeens/theme1/icons/achievementsIcon.png) no-repeat}
.bookmarkIcon{background:url(/images/solaroTeens/theme1/icons/bookmarkIcon.gif) no-repeat}
.forumReplyIcon{background:url(/images/solaroTeens/theme1/icons/forumReplyIcon.gif) no-repeat}
.dollarosIcon{background:url(/images/solaroTeens/theme1/icons/dollarosIcon.png) no-repeat;padding-left:20px;}
.rewardsIcon{background:url(/images/solaroTeens/theme1/icons/rewardsIcon.png) no-repeat}
.createGoal{display:block;background:url(/images/solaroTeens/theme1/icons/createGoals-Btn.png) no-repeat 0 0;width:275px;height:35px;text-align:center;}
.createGoal:hover{background-position:0 -35px;text-decoration:none;}
.createGoal span{color:#000;line-height:30px;}
.table {overflow-x:hidden;}
.table >h2{color:#108796}
.tableRow, .tableRow1, .tableRow_alt{width:890px;border-top:2px solid #fff}
.tableRow{background-color:#dcfafb}
.tableRow1{background-color:#f8f8f8}
.tableRow_alt{background-color:#caf5f8}
.tableCell_1, .tableCell_2, .tableCell_3, .tableCell_4, .tableCell_6, .tableCell_7, .tableCell_8, .tableCell_9{min-height:60px;float:left;padding:10px}
.tableCell_1{width:650px}
.tableCell_2, .tableCell_3{width:90px}
.tableCell_4{width:50px}
.tableCell_5{float:left;padding:10px;width:480px}
.tableCell_6{width:150px}
.tableCell_7{width:125px}
.tableCell_8{width:710px}
.tableCell_9{width:210px}
.tableCell_1 a, .tableCell_2 a, .tableCell_3 a, .tableCell_4 a, .tableCell_5 a, .tableCell_6 a, .tableCell_7 a, .tableCell_8 a, .tableCell_9 a{color:#000;font-size:10px}
.tableCell_1 a:hover, .tableCell_2 a:hover, .tableCell_3 a:hover, .tableCell_4 a:hover, .tableCell_5 a:hover, .tableCell_6 a:hover, .tableCell_7 a:hover, .tableCell_8 a:hover, .tableCell_9 a:hover{text-decoration:none}
.tableCell_1 p, .tableCell_2 p, .tableCell_3 p{margin-left:25px}
#toggleTitle > h3{border:1px solid #BDE5EE;background-color:#EEF9FB;padding:3px 3px 3px 10px;font-size:16px;font-family:"Gill Sans","Myriad Pro",Calibri,"Helvetica Neue",Helvetica,Arial,Verdana,sans-serif;font-weight:normal;}
#toggleTitle{position:relative;}
#toggleTitle > .minMax{top:7px;right:7px;position:absolute;}
.scienceIco{background:url(/images/solaroTeens/theme1/icons/scienceIco.png) no-repeat 18px 24%}
.chemistryIco{background:url(/images/solaroTeens/theme1/icons/chemistryIco.png) no-repeat 18px 24%}
.mathematicsIco{background:url(/images/solaroTeens/theme1/icons/mathIco.png) no-repeat 18px 24%}
.physicsIco{background:url(/images/solaroTeens/theme1/icons/physicsIco.png) no-repeat 18px 24%}
.englishIco{background:url(/images/solaroTeens/theme1/icons/elaIco.png) no-repeat 18px 24%}
.biologyIco{background:url(/images/solaroTeens/theme1/icons/biologyIco.png) no-repeat 18px 24%}
.socialIco{background:url(/images/solaroTeens/theme1/icons/socialIco.png) no-repeat 18px 24%}
.tableCell_1 a.lessonTitle{font-size:11px}
.lessonTitle{background:url(/images/solaroTeens/theme1/icons/courseIcon.png) no-repeat;padding-left:25px;margin:2px 0;display:block}
.lessonTitle h4 p{font-weight:bold;}
.read{background:url(/images/solaroTeens/theme1/icons/readIcon.png) no-repeat center top;text-align:center;display:block;padding-top:30px}
.done{background:url(/images/solaroTeens/theme1/icons/doneIcon.png) no-repeat center top;text-align:center;display:block;padding-top:30px}
.certified{background:url(/images/solaroTeens/theme1/icons/certifiedIcon.png) no-repeat center top;text-align:center;display:block;padding-top:30px}
.reward{background:url(/images/solaroTeens/theme1/icons/rewards.png) no-repeat;height:160px;width:130px;margin-left:20px}
.info{margin:20px 0 0 180px}
/* @end */
/* @group Avatars ... Needs to be Deleted */
.avatar{padding:5px;border:1px solid #63bfc8;background-color:#fff;float:left}
.avatarHolder{float:left}
.avatarM{background:#fff url(/images/solaroTeens/theme1/avtars/avatarM.jpg) no-repeat;width:55px;height:62px}
.avatarL{background:#fff url(/images/solaroTeens/theme1/avtars/avatarL.jpg) no-repeat;width:80px;height:90px}
/* @end */
.rotateEdit{background:url(/images/solaroTeens/theme1/icons/editField.png) no-repeat;display:block;float:right;width:31px;height:31px}
.rotateCancel{background:url(/images/solaroTeens/theme1/icons/editField.png) no-repeat 0 -37px;display:block;float:right;width:31px;height:31px;}
.rotateCancelrequest{background:url(/images/solaroTeens/theme1/icons/cross.png) no-repeat 0 0;display:block;float:right;width:16px;height:16px;}
.prfoileIcons{clear:both;margin-top:5px;}
.prfoileIcons li{background:#ECFAFD url(/images/solaroTeens/theme1/icons/profileIcons.png) no-repeat 0 0;padding-left:0;margin-bottom:5px;}
.prfoileIcons .icoDollaro{background-position:0 -88px;padding-left:20px;}
.prfoileIcons .icoReward{background-position:0 -174px;padding-left:20px;}
.prfoileIcons .icoAchieve{background-position:0 -268px;padding-left:20px;}
.prfoileIcons .icoGoal{background-position:0 -448px;padding-left:20px;}
.prfoileIcons .icoPrgoress{background-position:0 -356px;padding-left:20px;}
.fullCart, .emptyCart{background:url(/images/solaroTeens/theme1/icons/cart.png) no-repeat;width:150px;height:125px;top:-20px}
.fullCart{background-position:0 0}
.emptyCart{background-position:0 -125px}
#solaroSaysWrapper{background-color:#076373;width:960px;margin:0 auto;position:relative}
#solaroSaysWrapper a.closeBut{position:absolute; right:15px; top:20px; width:24px; height:24px; display:block; text-indent:-5000px; background:url(/images/solaroTeens/theme1/buttons/closeBtn_24x24.png) repeat-x 0 0;}
#solaroSaysWrapper a.closeBut:hover{background:url(/images/solaroTeens/theme1/buttons/closeBtnHover_24x24.png) repeat-x 0 0;}
#solaroSays{background:url(/images/solaroTeens/theme1/global/solaroSaysBg.png) repeat-x;margin:0 4px;padding:10px;}
.aloud{background:url(/images/solaroTeens/theme1/global/logoStdntProf.png) no-repeat;width:auto;height:30px; padding:10px 0 0 170px; color:#fff;}
.aloud span{font-size:1.5em; color:#ff9900;}
.aloud a{ color:#42d6e7; font-weight:normal;}
.dateTime{background:url(/images/solaroTeens/theme1/global/timeBg.png) no-repeat;width:133px;height:62px;}
.solaroInfoWrapper{background-color:#a5f1f7;padding:4px}
.solaroInfo{background:url(/images/solaroTeens/theme1/global/solaroInfoBg.png) repeat-x;min-height:30px}
.solaroBtnHolder{width:960px;margin:0 auto;border-top:2px solid #076373}
.solaroBtnHide{display:block;width:60px;height:18px;text-align:center;background:url(/images/solaroTeens/theme1/buttons/solaroBtn.png) no-repeat;position:relative;left:870px;top:-2px;color:#fff;}
.solaroBtnHide:hover{text-decoration:none;color:#fff;}
.myDetails{float:left;margin-top:10px}
.details{margin-left:100px;width:220px;position:relative}
.details a{margin-right:10px;margin-top:15px}
.profile div.details{margin-left:75px;width:auto}
.leftWidgetHolder{float:left;width:455px;margin-right:20px}
.rightWidgetHolder{float:right;width:455px}
.widgets{background-color:#B9F2F7;margin-bottom:10px;padding:10px;width:435px}
.widgets >div >h3{background-color:#fff;padding:5px 30px 5px 10px;}
.widgets >div >.minMax{position:absolute;top:8px;right:5px;}
.infoHolder{background-color:#fff;padding:10px;margin-top:10px}
.ht186{height:186px;}
.mHeight602{min-height:602px;}
.infoHolder div p{margin-bottom:10px}
.widgets .whatnewIcon{background:url(/images/solaroTeens/theme1/global/whatNew.jpg) no-repeat;width:105px;height:106px;float:left;margin-right:10px}
.widgets .messageIcon{background:url(/images/solaroTeens/theme1/icons/messageIcon.jpg) no-repeat;width:105px;height:106px;float:left;margin-right:10px}
.courseName{width:35%;float:left;overflow:auto;}
.courseName ul li{background:url(/images/solaroTeens/theme1/icons/courseIcon.png) no-repeat 0 7px;padding-left:25px;line-height:10px}
.courseName ul li a{display:block;padding:5px;color:#000;font-weight:normal}
.courseName ul li a:hover, .selectedCourse{background-color:#a7eef3;text-decoration:none}
.subjectName{margin:0 0 10px 0;height:283px;overflow:auto;width:58%;padding:5px 5px 5px 10px;float:right;}
.subjectName ul li{background:none;padding-left:0}
.button{clear:both;float:right;margin-right:20px}
.footnote{background:url(/images/solaroTeens/theme1/global/widgitBtnBg.png) repeat-x;border:1px solid #ccc;height:21px;font-weight:bold;padding:10px 0 5px 10px;margin-top:10px}
/* For Rails error messages */
#errorExplanation{background-color:#eef9fb;border:1px solid #bde5ee;padding:10px;margin-bottom:10px;min-height:0;}
#errorExplanation p{color:#FF5D4A}
#errorExplanation ul{background:#fff;list-style-type:none;padding:5px;font-weight:bold}
#errorExplanation ul li{background:url(/images/solaroTeens/theme1/icons/cross-bullet.gif) no-repeat left top;padding:0 0 0 30px;margin-bottom:5px;list-style:none;font:normal 14px verdana;}
/*-------------------- Reporting Page ----------------------*/
.report{background:url(/images/solaroTeens/theme1/global/reportBg.png) no-repeat top;padding-top:5px;}
.innerReport{background:url(/images/solaroTeens/theme1/global/innerReportBg.gif) repeat-y;padding:5px 10px;}
.reportWrapper{background-color:#fff;padding:10px;}
.reportWrapper h3>p{font:inherit;padding:5px 5px 5px 10px;}
.testTitle > a,
.testTitle > a:hover,
.testTitle > a > p {font:inherit;color:#000;font-weight:normal;text-decoration:none;}
ul.lessonList li{float:none;}
ul.lessonList li a {background:none;height:auto;line-height:19px;padding:0;}
ul.lessonList li a:hover {background:none;}
.headBg{background:url(/images/solaroTeens/theme1/global/headBg.gif) repeat-x;height:50px;border:1px solid #eaeaea;clear:both;margin:0 20px;}
.alert{background:url(/images/solaroTeens/theme1/icons/notification24x24.png) 5px -1px no-repeat;padding:3px 0 0 30px;}
.alertL{background-image:url(/images/solaroTeens/theme1/icons/alert.png);background-repeat:no-repeat;background-position:0 60%;padding-left:40px;line-height:40px;}
.customizeReport{padding:15px 0 0 15px;height:35px;}
.customizeReport h3{float:left;margin-right:10px;}
.reportContent h3{color:#2382a0;margin:10px 0;}
.reportContent ul li{padding:5px 0;}
.botReport{background:url(/images/solaroTeens/theme1/global/botReportBg.png) no-repeat bottom;height:5px;}
.drag{background:url(/images/solaroTeens/theme1/global/dragDropBg.png) no-repeat;width:445px;float:left;margin:15px 0 10px 5px;}
.dragContent{height:715px;margin:5px;overflow:auto;}
.lessonHeader{background:#caf5f8 url(/images/solaroTeens/theme1/icons/courseIcon.png) no-repeat 5px 5px;padding-left:25px;margin:2px 0;line-height:25px;border:1px solid #b5e2e5;position:relative}
.lessonHeader:after{content:".";display: block;height: 0;clear: both;visibility:hidden;}
.lessonHeader > strong{display:block;float:left;}
.lessonHeader:hover, .topics ul li.topicSelected{background-color:#a7eef3}
.lessonHeader .minMax{float:right;margin:5px 5px 0 0;}
.lessonHeader .close{float:right;margin:5px 5px 0 0;}
.lessonHeader .close span{display:none}
.dragContent a, .dropContent a{display:block;color:#000}
.dragContent a:hover, .dropContent a:hover{text-decoration:none}
.drop{background:url(/images/solaroTeens/theme1/global/dragDropBg.png) no-repeat;width:445px;margin-left:10px;float:left;margin-top:15px;}
.dropContent{height:186px;margin:5px;overflow:auto}
.dropAreaWatermark{background:url(/images/solaroTeens/theme1/global/dropArea.png) no-repeat 50% 50%;}
.drBot{background:url(/images/solaroTeens/theme1/global/drBot.png) no-repeat;width:445px;height:10px}
.itemHeader{margin:0 0 2px 0;border:1px solid #b5e2e5;background-color:#d7f8fa;padding:5px 0 5px 10px;cursor:move;}
.itemHeader a:hover{text-decoration:none}
.quizLegend li{width:127px;line-height:1em;float:left;padding-left:35px;}
/* @Topic, Section and Passage quizzes icons */
.quizNew{background:url(/images/solaroTeens/theme1/icons/quizStatusIcons24x24.png) no-repeat 0 0;width:24px;height:24px;display:block;margin-left:10px;}
.quizComplete{background:url(/images/solaroTeens/theme1/icons/quizStatusIcons24x24.png) no-repeat 0 -50px;width:24px;height:24px;display:block;margin-left:10px;}
.quizAvailable{background:url(/images/solaroTeens/theme1/icons/quizStatusIcons24x24.png) no-repeat 0 -103px;width:24px;height:24px;display:block;margin-left:10px;}
.quizForReview{background:url(/images/solaroTeens/theme1/icons/quizStatusIcons24x24.png) no-repeat 0 -150px;width:24px;height:24px;display:block;margin-left:10px;}
.quizPerfect{background:url(/images/solaroTeens/theme1/icons/quizStatusIcons24x24.png) no-repeat 0 -200px;width:24px;height:24px;display:block;margin-left:10px;}
.resultValue{position:absolute;top:-6px;left:29px;font-size:9px;font-weight:bold;}
.quizNew > span, .quizPerfect > span, .quizForReview > span, .quizAvailable > span, .quizComplete > span {display:none;}
.quizBg .quizNew,.quizBg .quizComplete,.quizBg .quizAvailable,.quizBg .quizForReview,.quizBg .quizPerfect{margin:0 auto;}
.quizNotAttempted, .quizReviewRequired, .quizCompleted{display:block;height:30px;line-height:15px;padding-top:2px;text-align:center;}
.quizNotAttempted{color:#000000;}
.quizReviewRequired{color: red;}
.quizCompleted{color: green;}
/* @end*/
.lessonNew{background:url(/images/solaroTeens/theme1/icons/lessonStatusIcons24x24.png) no-repeat 0 0;width:24px;height:24px;display:block;margin-right:5px;}
.lessonComplete{background:url(/images/solaroTeens/theme1/icons/lessonStatusIcons24x24.png) no-repeat 0 -50px;width:24px;height:24px;display:block;margin-right:5px;}
.lessonAvailable{background:url(/images/solaroTeens/theme1/icons/lessonStatusIcons24x24.png) no-repeat 0 -100px;width:24px;height:24px;display:block;margin-right:5px;}
.lessonForReview{background:url(/images/solaroTeens/theme1/icons/lessonStatusIcons24x24.png) no-repeat 0 -150px;width:24px;height:24px;display:block;margin-right:5px;}
.lessonPerfect{background:url(/images/solaroTeens/theme1/icons/lessonStatusIcons24x24.png) no-repeat 0 -200px;width:24px;height:24px;display:block;margin-right:5px;}
.lessonNew>span,.lessonPerfect>span,.lessonForReview>span,.lessonAvailable>span,.lessonComplete>span{display:none;}
/* @group Form Elements */
.iText,
.iTextArea,
.iSelect{border:1px solid #bde5ee;background-color:#eef9fb;padding:3px;font:12px Georgia,"Times New Roman",Times,serif}
.iText, .iTextArea, .iSelect{border:1px solid #bde5ee;background-color:#eef9fb;padding:3px;font:12px Georgia,"Times New Roman",Times,serif}
/*
@media screen and (-webkit-min-device-pixel-ratio:0){
.iSelect:focus{ outline: 1px dotted black; }
}
*/
.iTextArea2{border:1px solid #bde5ee;background-color:#FFEEEC;padding:3px;font:12px Georgia,"Times New Roman",Times,serif}
.iLabel{font:14px Georgia,"Times New Roman",Times,serif}
input.iButton,input:hover.iButton,input.iButtonL,input:hover.iButtonL,.iButtonDisabled,input.iButtonXL,input:hover.iButtonXL,.iButtonLDisabled{background:url(/images/solaroTeens/theme1/buttons/buttonBg.png) no-repeat;font:bold 10px verdana,Helvetica,sans-serif;cursor:pointer;outline:none;border:none;padding-bottom:2px;color:#fff;height:22px;}
input.iButton{background-position:0 -88px;width:70px;}
input:hover.iButton{background-position:0 -110px}
input.iButtonL{background-position:0 -44px;width:100px;}
input:hover.iButtonL{background-position:0 -66px;}
input.iButtonXL{background-position:0 -176px;width:130px;}
input:hover.iButtonXL{background-position:0 -198px;}
.iButtonDisabled{background-position:0 -132px;width:70px;}
.iButtonLDisabled{background-position:0 -154px;width:100px;}
.iButtonDisabled:hover,.iButtonLDisabled:hover{cursor:default;}
/* @end */
/* @group After Registration */
.congratInfo{padding-top:170px}
/* @end */
/* @group Flash Message */
.breakOut{position:absolute;bottom:-80px;left:0}
.breakOut div .iButton{margin-top:10px}
label.error{width:100%;display:block;color:#FF5D4A;font-style:italic}
#newParentUserForm label.error, #newStudentUserDetailForm label.error, #newStudentUserForm label.error{text-align:right; padding-top:4px;width:92%;float:none;}
#newStudentUserForm.addChildForm label.error{text-align:left;width:auto;}
#screen-name-availability{width:92%;height:auto;display:none;}
#notifications{top:-60px;overflow:visible;position:fixed;z-index:9999;width:100%;padding-left:30px;color:#fff;font-size:17px;border-bottom:1px solid #fff;background:#333;font-weight:normal}
.notifications a{ color:#42d6e7; font-weight:normal;}
.notification-bar{color:#000;cursor:pointer;left:0;position:absolute;top:0;width:100%}
.notification-bar-bkg{background-color:#DDEAF3;border-bottom:1px solid #B8D1E3;opacity:0.95;position:static;overflow:hidden;display:block;height:25px;margin-top:0px;margin-bottom:0px;padding-top:15px;padding-bottom:15px}
.notification-bar, .notification-bar-bkg{padding:1.2em 0}
.notification-bar-container{display:block;overflow:visible;position:relative;width:100%}
.notification-bar-contents{font-size:150%;margin:0 auto;position:relative;text-align:left;width:960px}
.notificationIcon{background:url(/images/solaroTeens/theme1/icons/notification32x32.png) no-repeat 30px 0; color:#fff; font-size:1.1em; padding:5px; padding-left:40px; margin-bottom:10px;}
.errorNotificationIcon{background:url(/images/solaroTeens/theme1/icons/alert.png) no-repeat 30px 0; color:#fff; font-size:1.1em; padding:5px; padding-left:40px; margin-bottom:10px;}
#successExplanation{color:#000;background-color:#eef9fb;border:1px solid #bde5ee;padding:10px;margin-bottom:10px}
#successExplanation ul{background:#fff;color:#666;list-style-type:none;padding:5px;font-weight:bold}
/* @end */
/*-------------------------------------- STAR PROGRESS ------------------------------------------------*/
.noGoal, .easyGoal, .moderateGoal, .hardGoal{background:url(/images/solaroTeens/theme1/icons/stars.png) no-repeat;height:0;display:block;text-align:center;padding-top:30px}
.noGoal{background-position:50% 0}
.easyGoal{background-position:50% -30px}
.moderateGoal{background-position:50% -60px}
.hardGoal{background-position:50% -90px}
.restartGoal{background:url(/images/solaroTeens/theme1/icons/restartGoal.png) no-repeat 50% 0;height:0;display:block;text-align:center;padding-top:30px;}
.lesson_level0{background:#EEF9FB url(/images/solaroTeens/theme1/icons/lesson_level0.png) no-repeat 99% 50%;}
.lesson_level1{background:#EEF9FB url(/images/solaroTeens/theme1/icons/lesson_level1.png) no-repeat 99% 50%;}
.lesson_level2{background:#EEF9FB url(/images/solaroTeens/theme1/icons/lesson_level2.png) no-repeat 99% 50%;}
.lesson_level3{background:#EEF9FB url(/images/solaroTeens/theme1/icons/lesson_level3.png) no-repeat 99% 50%;}
.lesson_legend li{margin-right:5px;}
.lesson_legend0{background:url(/images/solaroTeens/theme1/icons/lesson_level0.png) no-repeat 0 50%;padding-left:20px;}
.lesson_legend1{background:url(/images/solaroTeens/theme1/icons/lesson_level1.png) no-repeat 0 50%;padding-left:20px;}
.lesson_legend2{background:url(/images/solaroTeens/theme1/icons/cross.png) no-repeat 0 50%;padding-left:20px;}
.lesson_legend3{background:url(/images/solaroTeens/theme1/icons/tick.png) no-repeat 0 50%;padding-left:20px;}
/*--------------------------------------PREM ADDED... MODIFIED BY VIJAY 07/07/2009 ------------------------------------------------*/
.setGoal{background:url(/images/solaroTeens/theme1/icons/goalsIcon.png) 0 0 no-repeat; padding:10px 0 0 35px;}
.loginIcons{background:url(/images/solaroTeens/theme1/icons/loginM-icon.png) center top no-repeat}
.dollarosS{background:url(/images/solaroTeens/theme1/icons/dollarosS.png) 50% 0 no-repeat;height:30px}
.dollarosM{background:url(/images/solaroTeens/theme1/icons/dollarosM.png) 50% 0 no-repeat;height:30px}
.dollarosL{background:url(/images/solaroTeens/theme1/icons/dollarosL.png) 50% 0 no-repeat;height:30px}
.piggibankM{background:url(/images/solaroTeens/theme1/icons/piggibankM.jpg) left top no-repeat}
.notCompletedIcon{background:url(/images/solaroTeens/theme1/icons/waitingIcon.png) 10px 5px no-repeat}
.completedIcon{background:url(/images/solaroTeens/theme1/icons/completedIcon.png) 10px 5px no-repeat}
.pLeft150{padding-left:150px}
.W750{width:750px}
.parentPoints{background:url(/images/solaroTeens/theme1/global/aboveNavParentBg.png) no-repeat;float:left;margin-left:7px;width:590px}
.progressBarHolder{float:right;width:190px;}
.linkContainer h2>p{font:26px normal Georgia,"Times New Roman",Times,serif}
.launchPad_BG{background:url(/images/solaroTeens/theme1/global/inner_Level_1_top.png) no-repeat;}
.launchPad{background:url(/images/solaroTeens/theme1/icons/launchPad.png) no-repeat right top; min-height:150px;}
.LaunchPadBot{background:url(/images/solaroTeens/theme1/global/inner_Level_1_bot.png) no-repeat;width:910px;height:10px;}
#profile{width:885px;}
.parentInvitation{background:#047694 url(/images/solaroTeens/theme1/global/layer3.png) repeat-x left -146px; color:#fff; padding:10px; margin-bottom:10px; border:3px solid #047694;}
.parentInvitation>.notifications{font-weight:bold;font-size:12px;font-family:verdana,helvetica,arial;}
.parentInvitation>.notifications a{color:#ffff00;font:inherit;}
.parentInvitation>.notifications a:hover{color:#000;text-decoration:none;}
/* @group Account Page */
.piggibank{background:url(/images/solaroTeens/theme1/icons/piggibank.png) no-repeat;padding-left:50px;line-height:55px;}
.accounts{background:#b9f2f7 url(/images/solaroTeens/theme1/global/navPanelBg.png) repeat-x left top;padding-bottom:10px;}
.level3Block{background:url(/images/solaroTeens/theme1/global/Level_3_top.png) no-repeat;width:303px;float:left;margin-top:10px;}
.innerLevel3Block{height:285px;padding:15px 15px 10px 15px}
.level3Block_bot{background:url(/images/solaroTeens/theme1/global/level_3_bot.png) no-repeat;height:10px;}
.changePassword{background:url(/images/solaroTeens/theme1/icons/24x24iconSet.png) no-repeat 0 -600px;padding:5px 5px 5px 30px;}
.changeEmail{background:url(/images/solaroTeens/theme1/icons/24x24iconSet.png) no-repeat 0 -540px;padding:5px 5px 5px 30px;}
a.childApproval,
a.addChild_parent,
a.viewReport,
a.password,
a.idChange,
a.accountInfo,
a.billInfo,
a.editprofile,
a.closechild,
a.editchild,
a.region,
a.upgradeAc,
a.makePmt,
a.suspendPmt,
a.cancelPmt,
a.changeCr,
a.viewPmtHistory{height:50px;display:block;background:url(/images/solaroTeens/theme1/buttons/cngPassBg.png) no-repeat right 0;margin-left:70px;color:#000;cursor:pointer;}
a.password_gray,
a.idChange_gray,
a.accountInfo_gray,
a.billInfo_gray,
a.editprofile_gray,
a.closechild_gray,
a.editchild_gray,
a.region_gray,
a.upgradeAc_gray,
a.makePmt_gray,
a.suspendPmt_gray,
a.cancelPmt_gray,
a.changeCr_gray,
a.viewPmtHistory_gray,
a.childApproval_gray,
a.addChild_parent_gray,
a.viewReport_gray{height:50px;display:block;background:url(/images/solaroTeens/theme1/buttons/cngPassBg.png) no-repeat right -150px;margin-left:70px;cursor:default;color:#ccc;}
a.childApproval:hover,
a.addChild_parent:hover,
a.viewReport:hover,
a.password:hover,
a.idChange:hover,
a.accountInfo:hover,
a.billInfo:hover,
a.editprofile:hover,
a.closechild:hover,
a.editchild:hover,
a.region:hover,
a.upgradeAc:hover,
a.makePmt:hover,
a.suspendPmt:hover,
a.cancelPmt:hover,
a.changeCr:hover,
a.viewPmtHistory:hover{background-position:right -50px;}
a.password_gray:hover,
a.idChange_gray:hover,
a.accountInfo_gray:hover,
a.billInfo_gray:hover,
a.editprofile_gray:hover,
a.closechild_gray:hover,
a.editchild_gray:hover,
a.region_gray:hover,
a.upgradeAc_gray:hover,
a.makePmt_gray:hover,
a.suspendPmt_gray:hover,
a.cancelPmt_gray:hover,
a.changeCr_gray:hover,
a.viewPmtHistory_gray:hover,
a.childApproval_gray:hover,
a.addChild_parent_gray:hover,
a.viewReport_gray:hover{background-position:right -150px;}
a.password.selected,
a.idChange.selected,
a.accountInfo.selected,
a.billInfo.selected,
a.editprofile.selected,
a.closechild.selected,
a.editchild.selected,
a.region.selected,
a.upgradeAc.selected,
a.makePmt.selected,
a.suspendPmt.selected,
a.cancelPmt.selected,
a.changeCr.selected,
a.viewPmtHistory.selected,
a.childApproval.selected,
a.addChild_parent.selected,
a.viewReport.selected{background-position:right -100px;cursor:default;}
span.innerBtn/*,span.innerBtn_gray*/{height:50px;display:block;background:url(/images/solaroTeens/theme1/buttons/cngPassBg.png) no-repeat;}
span.innerBtn{background-position:right 0;font:bold 1em;line-height:50px;padding:0 10px 0 80px;margin-left:-70px;}
/*span.innerBtn_gray{background-position:right -150px;font:bold 1em;color:#cccccc;line-height:50px;padding-right:10px; cursor:default;}*/
span.moreTxt{display:block;line-height:14px;padding-top:12px;height:40px;}
a.password>span{background-position:0 -200px;}
a.idChange>span{background-position:0 -250px;}
a.accountInfo>span{background-position:0 -300px;}
a.billInfo>span{background-position:0 -350px;}
a.editprofile>span {background-position:0 -400px;}
a.closechild>span {background-position: 0 -450px;}
a.editchild>span {background-position: 0 -500px;}
a.region>span {background-position: 0 -550px;}
a.upgradeAc>span{background-position: 0 -600px;}
a.makePmt>span{background-position: 0 -650px;}
a.suspendPmt>span{background-position: 0 -700px;}
a.cancelPmt>span{background-position: 0 -750px;}
a.changeCr>span{background-position: 0 -800px;}
a.viewPmtHistory>span{background-position: 0 -850px;}
a.childApproval>span{background-position: 0 -900px;}
a.addChild_parent>span{background-position: 0 -950px;}
a.viewReport>span{background-position: 0 -1000px;}
a.password_gray>span{background-position: 0 -1600px;}
a.idChange_gray>span{background-position: 0 -1650px;color:#ccc;}
a.accountInfo_gray>span{background-position: 0 -1700px;color:#ccc;}
a.billInfo_gray>span{background-position: 0 -1750px;color:#ccc;}
a.editprofile_gray>span{background-position: 0 -1800px;color:#ccc;}
a.closechild_gray>span{background-position: 0 -1850px;color:#ccc;}
a.editchild_gray>span{background-position: 0 -1900px;color:#ccc;}
a.region_gray>span{background-position: 0 -1950px;color:#ccc;}
a.upgradeAc_gray>span{background-position: 0 -2000px;color:#ccc;}
a.makePmt_gray>span{background-position: 0 -2050px;color:#ccc;}
a.suspendPmt_gray>span{background-position: 0 -2100px;color:#ccc;}
a.cancelPmt_gray>span{background-position: 0 -2150px;color:#ccc;}
a.changeCr_gray>span{background-position: 0 -2200px;color:#ccc;}
a.viewPmtHistory_gray>span{background-position: 0 -2250px;color:#ccc;}
a.childApproval_gray>span{background-position: 0 -2300px;color:#ccc;}
a.addChild_parent_gray>span{background-position: 0 -2350px;color:#ccc;}
a.viewReport_gray>span{background-position: 0 -2400px;color:#ccc;}
.redd1 {color:red;}
.buttonSaveaccountText {color:#CCCCCC;cursor:pointer;text-decoration:none;}
.noLock{background:none;padding:0;margin-bottom:5px;}
.dollarosAccount{background:#b9f2f7 url(/images/solaroTeens/theme1/global/navPanelBg.png) repeat-x left top;padding-bottom:10px;}
.level1Block{background:url(/images/solaroTeens/theme1/global/level_1_top.png) no-repeat;width:910px;float:left;margin-top:10px;}
.innerLevel1Block{padding:15px 15px 10px 15px}
.level1Block_bot{background:url(/images/solaroTeens/theme1/global/level_1_bot.png) no-repeat;height:10px;}
.addDollaros, .minusDollaros, .balDollaros{background-image:url(/images/solaroTeens/theme1/icons/Dollaros.png);background-repeat:no-repeat;width:30px;height:30px;}
.addDollaros{background-position:0 0;}
.minusDollaros{background-position:0 -30px;}
.balDollaros{background-position:0 -60px;}
/* @end */
/* @group FAQ page */
#faqHead{background:url(/images/solaroTeens/theme1/global/lessonHeadingRepeat.png) repeat-x;height:48px;padding:10px 15px 0 15px;margin-bottom:10px;border-left:2px solid #d8f8fb;border-right:2px solid #d8f8fb}
#faqHead h2{background:url(/images/solaroTeens/theme1/icons/faq.png) no-repeat;height:50px;padding-left:40px;font-size:240%;font-weight:normal;line-height:35px}
.faqPost{background:#EEF9FB; border:1px solid #BDE5EE;padding:5px; font-weight:bold;}
#contactHead{background:url(/images/solaroTeens/theme1/global/lessonHeadingRepeat.png) repeat-x;height:48px;padding:10px 15px 0 15px;margin-bottom:10px;border-left:2px solid #d8f8fb;border-right:2px solid #d8f8fb}
#contactHead h2{background:url(/images/solaroTeens/theme1/icons/contact.png) no-repeat;height:50px;padding-left:40px;font-size:240%;font-weight:normal;line-height:35px}
.contactWidgets{background-color:#daf8fb;margin-bottom:10px;padding:10px;width:420px;}
.contactLeftWidgetHolder{float:left;width:420px;margin-right:20px;}
.contactRightWidgetHolder{float:right;width:420px; margin-right:20px}
.faq h2{background:url(/images/solaroTeens/theme1/icons/faq.png) no-repeat 5px 0; padding:0 0 10px 45px; font-size:240%; font-weight:normal; line-height:35px}
.faq .faqContent{background:#FFF; padding:10px; padding-bottom:0;}
.faq .faqContent .faqQus{position:relative;}
.faq .faqContent .faqQus .minMax{right:9px; top:9px; position:absolute;}
.faq .faqContent .faqQus a{background:#EEF9FB; border:1px solid #BDE5EE;padding:8px; padding-right:30px; font-weight:bold; display:block;}
.faq .faqContent .faqAns{background-color:#fff;padding:8px 8px 0 8px; display:none;}
.faq .faqContent .faqAns p{ padding-bottom:8px;}
.faq .faqContent .faqAns p a{font-weight:normal;}
.faq .padB10{padding-bottom:10px;}
/* @end */
/* @group Trial Account */
.trialAccount{background-color:#333333; padding:4px; height:45px; color:#c0c0c0;}
.trialAccountcase{border:1px solid #808080; padding:4px; height:35px;}
.trialAccounticon{background:url(/images/solaroTeens/theme1/icons/alert.png) 0 0 no-repeat; width:35px; height:34px;}
.buttonTrialaccountLeft{background:url(/images/solaroTeens/theme1/buttons/trial_accountImg.png) 0 0 no-repeat; display:block; width:8px; height:36px; float:left;}
.buttonTrialaccountMid{background:url(/images/solaroTeens/theme1/buttons/trial_accountImg.png) 0 -52px repeat-x; display:block; line-height:36px; float:left; text-align:center; font-size:12px; font-weight:bold; padding:0 10px;}
.buttonTrialaccountRight{background:url(/images/solaroTeens/theme1/buttons/trial_accountImg.png) -238px 0 no-repeat; display:block; width:8px; height:36px; float:left;}
.buttonTrialaccountText{color:#000000; text-decoration:none; cursor:pointer;}
.buttonTrialaccountText:hover{text-decoration:none;}
/* @end */
/* legends */
.goal_legend{ border:1px solid #DAF8FB; background:#F1FBFB; padding-left:10px;}
.goal_legend li{padding-left:22px; margin-right:10px; float:left;}
.goal_legend01{background:url(/images/solaroTeens/theme1/icons/reminder.png) no-repeat 0 50%;}
.goal_legend02{background:url(/images/solaroTeens/theme1/icons/tick.png) no-repeat 0 50%;}
.goal_legend03{background:url(/images/solaroTeens/theme1/icons/cross.png) no-repeat 0 50%;}
.goal_legend04{background:url(/images/solaroTeens/theme1/icons/inProgress.png) no-repeat 0 50%;}
.lesson_statLegend{margin-top:5px;}
.lesson_statLegend li{float:left;padding:0 0 0 26px;height:24px;margin-right:10px;width:65px;}
.lesson_statLegend01{background:url(/images/solaroTeens/theme1/icons/24x24iconSet.png) no-repeat 0px -1140px;}
.lesson_statLegend02{background:url(/images/solaroTeens/theme1/icons/24x24iconSet.png) no-repeat 0px -1200px;}
.lesson_statLegend03{background:url(/images/solaroTeens/theme1/icons/24x24iconSet.png) no-repeat 0px -1260px;}
.lesson_statLegend04{background:url(/images/solaroTeens/theme1/icons/24x24iconSet.png) no-repeat 0px -1320px;}
.lesson_statLegend05{background:url(/images/solaroTeens/theme1/icons/24x24iconSet.png) no-repeat 0px -1380px;}
.lesson_statLegend06{background:url(/images/solaroTeens/theme1/icons/24x24iconSet.png) no-repeat 0px -1440px;}
.status1{background:url(/images/solaroTeens/theme1/icons/tick.png) no-repeat 0 50%;padding-left:30px;}
.status2{background:url(/images/solaroTeens/theme1/icons/cross.png) no-repeat 0 50%;padding-left:30px;}
ul.tabs{margin-left:20px;position:relative; z-index:1;display:block; top:1px;}
ul.tabs li{float:left; margin-left:2px; height:47px; background:none; padding:0;}
ul.tabs li a{display:block;color:#000;background:url(/images/solaroTeens/theme1/buttons/tabLinkBg.png) no-repeat 0 -190px; padding:0 0 0 10px; margin-top:10px; height:35px; font:bold 14px/35px Verdana,Geneva,sans-serif;}
ul.tabs li a span{display:block;background:url(/images/solaroTeens/theme1/buttons/tabLinkBg.png) no-repeat right -55px; height:35px; padding-right:10px;white-space:nowrap;}
ul.tabs li a:hover{text-decoration:none;background:url(/images/solaroTeens/theme1/buttons/tabLinkBg.png) no-repeat 0 -235px}
ul.tabs li a:hover span{text-decoration:none;background:url(/images/solaroTeens/theme1/buttons/tabLinkBg.png) no-repeat right -100px; cursor:pointer;}
ul.tabs li a.reportSelected{background:url(/images/solaroTeens/theme1/buttons/tabLinkBg.png) no-repeat 0 -135px; margin-top:2px; height:45px; cursor:default; line-height:45px;}
ul.tabs li a.reportSelected span{background:url(/images/solaroTeens/theme1/buttons/tabLinkBg.png) no-repeat right 0; height:45px;}
/* @group Search Box */
#searchBox{background:url(/images/solaroTeens/theme1/buttons/search_bg.png) no-repeat 0 0;width:277px;height:29px;position:absolute;top:-84px;right:0;}
#searchBox input{border:none;float:left;}
#search{background:none;margin-top:8px;width:229px;padding:2px 2px 2px 15px;font-size:12px;vertical-align:middle;}
input#go{background:url(/images/solaroTeens/theme1/buttons/searchBtn_bg.png) no-repeat 0 0;width:31px;height:29px;float:right;cursor:pointer;font-size:0;line-height:0;text-indent:-999px;}
input#go:hover{background-position:0 -29px;}
/* @end */
/* @group Breadcrumb */
#crummy{padding:10px 0;font:bold 12px Verdana, Geneva, sans-serif;zoom:1;height:24px;}
#crummy:after{content: ".";display: block;height: 0;clear: both;visibility: hidden}
#crummy > a,#crummy > span {font:inherit;color:#00707f;display:block;float:left;padding-top:5px;}
#crummy a:hover {color:#032A2F;}
.cr_last{position:relative;z-index:1;float:left;}
.cr_last>a,.cr_last>a>span,.cr_last>a:hover,.cr_last>a>span:hover{display:block;float:left;background:url(/images/solaroTeens/theme1/global/navCorners_top.png) no-repeat;color:#fff;cursor:pointer;}
.cr_last>a{background-position:0 0;padding-left:5px;height:24px;}
.cr_last>a>span{background-position:right -24px;padding-right:5px;height:21px;padding-top:3px;}
.cr_last>a:hover,.cr_last:hover>a{background-position:0 -48px;}
.cr_last>a:hover>span,.cr_last>a>span:hover,.cr_last:hover>a>span{background-position:right -72px;}
.cr_top_left,.cr_top_right,.cr_bot_left,.cr_bot_right{display:block;background:url(/images/solaroTeens/theme1/global/navCorners.png) no-repeat;width:5px;height:5px;}
.cr_top_left{float:left;background-position:left top;}
.cr_top_right{float:right;background-position:right top;}
.cr_bot_left{float:left;background-position:left bottom;}
.cr_bot_right{float:right;background-position:right bottom;}
div.cr_last:hover > div >.cr_bot_right,div.cr_last:hover > div > .cr_bot_left,.cr_hover .cr_top_right{background-color:#58c4e8;}
div.cr_last:hover .cr_hover{display:block;}
.cr_top,.cr_bot{background-color:#58c4e8;margin:0 5px;height:5px;display:block;}
.cr_content{padding:0 10px;color:#fff;background-color:#58c4e8;margin:-1px 0;cursor:pointer;}
.cr_hover{clear:both;width:500px;position:absolute;right:0;display:none;top:24px;}
.cr_hover_content{background-color:#58c4e8;min-height:150px;padding:0 5px;}
.cr_inner_content{padding:5px;background-color:#fff;}
.cr_hover_content h4{color:#fff;font:14px Verdana, Geneva, sans-serif;padding-bottom:5px;}
.cr_inner_content ul>li>a {font:normal 12px/2em Verdana, Geneva, sans-serif;color:#000;display:block;}
.cr_inner_content ul>li {padding:0 5px;border:1px solid #fff;cursor:pointer;}
.cr_inner_content ul>li:hover{background-color:#ececec;border:1px solid #c6c6c6;padding:0 5px;}
.cr_inner_content ul>li.selected:hover{cursor:default;background-color:#fff;border:1px solid #fff}
.cr_inner_content ul>li.selected>a,
#crummy .cr_inner_content ul>li.selected>a:hover{color:#ccc;cursor:default;}
/* @end */
/*Account Student Page*/
#cancelEditProfileClk,#cancelParentEditProfileClk,#editParentProfileClk,#editProfileClk{background:url(/images/solaroTeens/theme1/icons/editField.png) no-repeat 0 0;position:absolute;top:12px;right:5px;width:32px;height:20px;text-indent:-99999px;}
#editProfileClk,#editParentProfileClk{background-position:0 -5px;}
#cancelEditProfileClk,#cancelParentEditProfileClk{background-position:0 -37px;}
/* Written by Rajat */
.hidden {display:none !important;}
/*My Goals / Challenges widget profile page*/
.Upcoming{background-image:url(/images/solaroTeens/theme1/icons/reminder.png);background-position:99% 50%;background-repeat:no-repeat;}
.Restart{background-image:url(/images/solaroTeens/theme1/icons/cross.png);background-position:99% 50%;background-repeat:no-repeat;}
.InProgress{background-image:url(/images/solaroTeens/theme1/icons/inProgress.png);background-position:99% 50%;background-repeat:no-repeat;}
.Accomplished{background-image:url(/images/solaroTeens/theme1/icons/tick.png);background-position:99% 50%;background-repeat:no-repeat;}
.Unaccomplished{background-image:url(/images/solaroTeens/theme1/icons/cross.png);background-position:99% 50%;background-repeat:no-repeat;}
/*end*/
/* @group Terms and Conditions */
.termsCondition h2{padding-left:10px;}
.termsConditionContent{background:#fff;padding:10px;border:1px solid #BDE5EE;line-height:18px;font-size:12px;}
.termsConditionContent ul.default{line-height:0.8em;}
.termsConditionContent p{margin-bottom:10px;}
.termsCondition > a {margin-left:425px;}
/* @end */
/* Lesson Status */
li.viewed,li.notViewed,li.completed{background:url(/images/solaroTeens/theme1/icons/24x24iconSet.png) no-repeat;padding:5px 0 0 5px;}
li.viewed{background-position:5px -115px}
li.notViewed{background-position:5px 0px}
li.completed{background-position:5px -55px}
/* End----Lesson Status */
/* CSS added for 09/09/2009 cluster */
ul.clusterList li{list-style:none;margin:0;display:block;zoom:1;}
ul.clusterList li:after{content: ".";display: block;height: 0;clear: both;visibility: hidden}
.textHead{font-size:16px;display:block;font-weight:normal;}
.textHead:hover{text-decoration:none;}
.milestoneInComplete,.milestoneComplete,
.courseAvailable,.courseInProgress,.courseComplete,
.clusterAvailable,.clusterInProgress,.clusterComplete,
.topicAvailable,.topicComplete,.topicViewed{background:url(/images/solaroTeens/theme1/icons/32x32iconSet.png) no-repeat;width:32px;height:26px;display:block;}
.milestoneInComplete{background-position:0 -400px;}
.milestoneComplete{background-position:0 -450px;}
.courseAvailable{background-position:0 -560px;}
.courseInProgress{background-position:0 -620px;}
.courseComplete{background-position:0 -680px;}
.clusterAvailable{background-position:0 0;}
.clusterInProgress{background-position:0 -50px;}
.clusterComplete{background-position:0 -100px;}
.topicAvailable{background-position:0 -200px;}
.topicComplete{background-position:0 -250px;}
.topicViewed{background-position:0 -300px;}
.courseAvailable > span,.courseInProgress > span,.courseComplete > span,
.clusterAvailable > span,.clusterInProgress > span,.clusterComplete > span,
.topicAvailable > span,.topicComplete > span,.topicViewed > span{display:none}
.lessonsForm{padding:10px;}
.quizBg{background:url(/images/solaroTeens/theme1/icons/quizBg.png) no-repeat;width:84px;height:94px;padding:0;list-style:none;margin:0 10px 0 0;}
.quizNumber{display:block;font:bold 1.5em Georgia, "Times New Roman", Times, serif;color:#000;}
ul.lessonLegendStat{list-style:none;margin:0;}
ul.lessonStatusBar{background:url(/images/solaroTeens/theme1/icons/lessonViewStat.png) no-repeat;height:25px;}
ul.lessonLegendStat li{background:url(/images/solaroTeens/theme1/icons/lessonViewStat.png) no-repeat;padding-left:25px;margin-right:10px;}
ul.lessonStatusBar li{background:url(/images/solaroTeens/theme1/icons/lessonViewStat.png) no-repeat 0 -25px;width:27px;height:25px;padding:0;}
ul.lessonStatusBar li.lessonNotAvailble,ul.lessonLegendStat li.lessonNotAvailble{background-position:-2px -232px;}
ul.lessonStatusBar li.lessonAsterix,ul.lessonLegendStat li.lessonAsterix{background-position:-2px -262px;}
ul.lessonStatusBar li.lessonViewed,ul.lessonLegendStat li.lessonViewed{background-position:-2px -52px;}
ul.lessonStatusBar li.lessonClozed,ul.lessonLegendStat li.lessonClozed{background-position:-2px -112px;}