[x]
Posted via EE Mobile

Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again.

Question
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

7.0

using themed css files requires a header control on the page.

Asked by mathieu_cupryk in Programming for ASP.NET

Tags: css, header, themed, files, requires

Using themed css files requires a header control on the page. (e.g. <head runat="server" />).
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.InvalidOperationException: Using themed css files requires a header control on the page. (e.g. <head runat="server" />).

Source Error:

An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.  

Stack Trace:


[InvalidOperationException: Using themed css files requires a header control on the page. (e.g. <head runat="server" />).]
   System.Web.UI.PageTheme.SetStyleSheet() +444
   System.Web.UI.Page.OnInit(EventArgs e) +55
   System.Web.UI.Control.InitRecursive(Control namingContainer) +345
   System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +1799

 
The above is the error:

And attached is the code.
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:
1001:
1002:
1003:
1004:
1005:
1006:
1007:
1008:
1009:
1010:
1011:
1012:
1013:
1014:
1015:
1016:
1017:
1018:
1019:
1020:
1021:
1022:
1023:
1024:
1025:
1026:
1027:
1028:
1029:
1030:
1031:
1032:
1033:
1034:
1035:
1036:
1037:
1038:
1039:
1040:
1041:
1042:
1043:
1044:
1045:
1046:
1047:
1048:
1049:
1050:
1051:
1052:
1053:
1054:
1055:
1056:
1057:
1058:
1059:
1060:
1061:
1062:
1063:
1064:
1065:
1066:
1067:
1068:
1069:
1070:
1071:
1072:
1073:
1074:
1075:
1076:
1077:
1078:
1079:
1080:
1081:
1082:
1083:
1084:
1085:
1086:
1087:
1088:
1089:
1090:
1091:
1092:
1093:
1094:
1095:
1096:
1097:
1098:
1099:
1100:
1101:
1102:
1103:
1104:
1105:
1106:
1107:
1108:
1109:
1110:
1111:
1112:
1113:
1114:
1115:
1116:
1117:
1118:
1119:
1120:
1121:
1122:
1123:
1124:
1125:
1126:
1127:
1128:
1129:
1130:
1131:
1132:
1133:
1134:
1135:
1136:
1137:
1138:
1139:
1140:
1141:
1142:
1143:
1144:
1145:
1146:
1147:
1148:
1149:
1150:
1151:
1152:
1153:
1154:
1155:
1156:
1157:
1158:
1159:
1160:
1161:
1162:
1163:
1164:
1165:
1166:
1167:
1168:
1169:
1170:
1171:
1172:
1173:
1174:
1175:
1176:
1177:
1178:
1179:
1180:
1181:
1182:
1183:
1184:
1185:
1186:
1187:
1188:
1189:
1190:
1191:
1192:
1193:
1194:
1195:
1196:
1197:
1198:
1199:
1200:
1201:
1202:
1203:
1204:
1205:
1206:
1207:
1208:
1209:
1210:
1211:
1212:
1213:
1214:
1215:
1216:
1217:
1218:
1219:
1220:
1221:
1222:
1223:
1224:
1225:
1226:
1227:
1228:
1229:
1230:
1231:
1232:
1233:
1234:
1235:
1236:
1237:
1238:
1239:
1240:
1241:
1242:
1243:
1244:
1245:
1246:
1247:
1248:
1249:
1250:
1251:
1252:
1253:
1254:
1255:
1256:
1257:
1258:
1259:
1260:
1261:
1262:
1263:
1264:
1265:
1266:
1267:
1268:
1269:
1270:
1271:
1272:
1273:
1274:
1275:
1276:
<fieldset>
					<asp:CreateUserWizard ID="CreateUserWizardControl" runat="server" OnCreatedUser="CreateUserWizardControl_CreatedUser"
						CreateUserButtonText="Submit" TitleTextStyle-Height="50px" FinishDestinationPageUrl="~/Default.aspx"
						ContinueDestinationPageUrl="~/Default.aspx" ContinueButtonText="Continue to Homepage"
						ContinueButtonType="Link" ActiveStepIndex="0" CssClass="register_text" OnCreateUserError="CreateUserWizardControl_CreateUserError">
						<WizardSteps>
							<asp:CreateUserWizardStep ID="CreateUserWizardStep1" runat="server" Title="Account Details:">
								<ContentTemplate>
									
									<legend>First Name:</legend><span>
									
										<asp:TextBox runat="server" ID="FirstName" CssClass="user_info"></asp:TextBox></span>
									<asp:RequiredFieldValidator runat="server" ControlToValidate="FirstName" ValidationGroup="CreateUserWizardControl" ErrorMessage="First name is required." ToolTip="First name is required." ID="FirstNameRequired" Display="Dynamic"></asp:RequiredFieldValidator>
									<asp:CustomValidator ID="FirstNameRequiredFormat" runat="server" ValidationGroup="CreateUserWizardControl" ControlToValidate="FirstName" ErrorMessage="First name is required and must be less than 40 characters long and contain apostrophes, spaces, or periods." Display="Dynamic" OnServerValidate="FirstNameValidator_ServerValidate" ToolTip="A valid first name is required."></asp:CustomValidator>
									
									<legend>Last Name:</legend>
									<asp:TextBox runat="server" ID="LastName" CssClass="user_info"></asp:TextBox></span>
									<asp:RequiredFieldValidator runat="server" ControlToValidate="LastName" ValidationGroup="CreateUserWizardControl" ErrorMessage="Last name is required." ToolTip="Last name is required." ID="LastNameRequired"
										Display="Dynamic"></asp:RequiredFieldValidator>
									<asp:CustomValidator ID="LastNameRequiredFormat" runat="server" ValidationGroup="CreateUserWizardControl" ControlToValidate="LastName" ErrorMessage="Last name is required and must be less than 40 characters long and contain apostrophes, spaces, or periods."	Display="Dynamic" OnServerValidate="LastNameValidator_ServerValidate" ToolTip="A valid last name is required."> </asp:CustomValidator>
									
									<legend>Email:</legend><span>
										<asp:TextBox runat="server" ID="Email" CssClass="user_info"></asp:TextBox></span>
									<asp:RequiredFieldValidator runat="server" ControlToValidate="Email" ValidationGroup="CreateUserWizardControl" ErrorMessage="Email is required." ToolTip="Email is required." ID="EmailRequired"
										Display="Dynamic"></asp:RequiredFieldValidator>
									<asp:RegularExpressionValidator runat="server" ControlToValidate="Email" ValidationGroup="CreateUserWizardControl" ValidationExpression="^([0-9a-zA-Z]([-.\w]*[0-9a-zA-Z])*@([0-9a-zA-Z][-\w]*[0-9a-zA-Z]\.)+[a-zA-Z]{2,9})$" ErrorMessage="A valid email is required." ToolTip="A valid email is required."
										ID="EmailRequiredFormat" Display="dynamic">
									</asp:RegularExpressionValidator>
									
									
									<legend>User Name:</legend><span>
										<asp:TextBox runat="server" ID="UserName" CssClass="user_info"></asp:TextBox></span>
									<asp:RequiredFieldValidator runat="server" ControlToValidate="UserName" ValidationGroup="CreateUserWizardControl" ErrorMessage="User name is required." ToolTip="User name is required." ID="UserNameRequired"
										Display="Dynamic"></asp:RequiredFieldValidator>
									<asp:RegularExpressionValidator runat="server" ControlToValidate="UserName" ValidationGroup="CreateUserWizardControl" ValidationExpression="^[0-9a-zA-Z''-'\s]{1,40}$" ErrorMessage="User name is required and must be less than 40 characters long and contain only alphanumerics, apostrophes, spaces, or periods."
										ToolTip="A valid user name is required." ID="UserNameRequiredFormat" Display="Dynamic"></asp:RegularExpressionValidator>
									
									<legend>Password:</legend><span>
										<asp:TextBox runat="server" TextMode="Password" ID="Password" CssClass="register_password"></asp:TextBox></span>
									<asp:RequiredFieldValidator runat="server" ControlToValidate="Password" ValidationGroup="CreateUserWizardControl"
										ErrorMessage="Password is required." ToolTip="Password is required." ID="PasswordRequired">
									</asp:RequiredFieldValidator>
									
									<legend>Confirm Password:</legend><span>
										<asp:TextBox runat="server" TextMode="Password" ID="ConfirmPassword" CssClass="register_password"></asp:TextBox></span>
									<asp:RequiredFieldValidator runat="server" ControlToValidate="ConfirmPassword" ValidationGroup="CreateUserWizardControl" ErrorMessage="Confirm password is required." ToolTip="Confirm password is required."
										ID="ConfirmPasswordRequired">
									</asp:RequiredFieldValidator>
									
									<asp:CompareValidator runat="server" ControlToValidate="ConfirmPassword" ValidationGroup="CreateUserWizardControl" ID="PasswordCompare" Display="Dynamic" ErrorMessage="The password and confirmation password must match."	ControlToCompare="Password"></asp:CompareValidator>
									
									<legend>Country:</legend>
									    <asp:dropdownlist runat="server" id="ddlCountry">
                                        <asp:ListItem Value="Canada">Canada</asp:ListItem>
                                        <asp:ListItem Value="United States">United States</asp:ListItem>
                                        <asp:ListItem Value="Afghanistan">Afghanistan</asp:ListItem>
                                        <asp:ListItem Value="Albania">Albania</asp:ListItem>
                                        <asp:ListItem Value="Algeria">Algeria</asp:ListItem>
                                        <asp:ListItem Value="American Samoa">American Samoa</asp:ListItem>
                                        <asp:ListItem Value="Andorra">Andorra</asp:ListItem>
                                        <asp:ListItem Value="Angola">Angola</asp:ListItem>
                                        <asp:ListItem Value="Anguilla">Anguilla</asp:ListItem>
                                        <asp:ListItem Value="Antarctica">Antarctica</asp:ListItem>
                                        <asp:ListItem Value="Antigua and Barbuda">Antigua and Barbuda</asp:ListItem>
                                        <asp:ListItem Value="Argentina">Argentina</asp:ListItem>
                                        <asp:ListItem Value="Armenia">Armenia</asp:ListItem>
                                        <asp:ListItem Value="Aruba">Aruba</asp:ListItem>
                                        <asp:ListItem Value="Australia">Australia</asp:ListItem>
                                        <asp:ListItem Value="Austria">Austria</asp:ListItem>
                                        <asp:ListItem Value="Azerbaijan">Azerbaijan</asp:ListItem>
                                        <asp:ListItem Value="Bahrain">Bahrain</asp:ListItem>
                                        <asp:ListItem Value="Bangladesh">Bangladesh</asp:ListItem>
                                        <asp:ListItem Value="Barbados">Barbados</asp:ListItem>
                                        <asp:ListItem Value="Belarus">Belarus</asp:ListItem>
                                        <asp:ListItem Value="Belgium">Belgium</asp:ListItem>
                                        <asp:ListItem Value="Belize">Belize</asp:ListItem>
                                        <asp:ListItem Value="Benin">Benin</asp:ListItem>
                                        <asp:ListItem Value="Bermuda">Bermuda</asp:ListItem>
                                        <asp:ListItem Value="Bhutan">Bhutan</asp:ListItem>
                                        <asp:ListItem Value="Bolivia">Bolivia</asp:ListItem>
                                        <asp:ListItem Value="Bosnia and Herzegovina">Bosnia and Herzegovina</asp:ListItem>
                                        <asp:ListItem Value="Botswana">Botswana</asp:ListItem>
                                        <asp:ListItem Value="Bo vet Island">Bo vet Island</asp:ListItem>
                                        <asp:ListItem Value="Brazil">Brazil</asp:ListItem>
                                        <asp:ListItem Value="British Indian Ocean Territory">British Indian Ocean Territory</asp:ListItem>
                                        <asp:ListItem Value="Brunei Darussalam">Brunei Darussalam</asp:ListItem>
                                        <asp:ListItem Value="Bulgaria">Bulgaria</asp:ListItem>
                                        <asp:ListItem Value="Burkina Faso">Burkina Faso</asp:ListItem>
                                        <asp:ListItem Value="Burundi">Burundi</asp:ListItem>
                                        <asp:ListItem Value="Cambodia">Cambodia</asp:ListItem>
                                        <asp:ListItem Value="Cameroon">Cameroon</asp:ListItem>
                                        <asp:ListItem Value="Cape Verde">Cape Verde</asp:ListItem>
                                        <asp:ListItem Value="Cayman Islands">Cayman Islands</asp:ListItem>
                                        <asp:ListItem Value="Central African Republic">Central African Republic</asp:ListItem>
                                        <asp:ListItem Value="Chad">Chad</asp:ListItem>
                                        <asp:ListItem Value="Chile">Chile</asp:ListItem>
                                        <asp:ListItem Value="China">China</asp:ListItem>
                                        <asp:ListItem Value="Christmas Island">Christmas Island</asp:ListItem>
                                        <asp:ListItem Value="Cocos (Keeling Islands)">Cocos (Keeling Islands)</asp:ListItem>
                                        <asp:ListItem Value="Colombia">Colombia</asp:ListItem>
                                        <asp:ListItem Value="Comoros">Comoros</asp:ListItem>
                                        <asp:ListItem Value="Congo">Congo</asp:ListItem>
                                        <asp:ListItem Value="Cook Islands">Cook Islands</asp:ListItem>
                                        <asp:ListItem Value="Costa Rica">Costa Rica</asp:ListItem>
                                        <asp:ListItem Value="Cote D'Ivoire (Ivory Coast)">Cote D'Ivoire (Ivory Coast)</asp:ListItem>
                                        <asp:ListItem Value="Croatia (Hrvatska)">Croatia (Hrvatska)</asp:ListItem>
                                        <asp:ListItem Value="Cuba">Cuba</asp:ListItem>
                                        <asp:ListItem Value="Cyprus">Cyprus</asp:ListItem>
                                        <asp:ListItem Value="Czech Republic">Czech Republic</asp:ListItem>
                                        <asp:ListItem Value="Denmark">Denmark</asp:ListItem>
                                        <asp:ListItem Value="Djibouti">Djibouti</asp:ListItem>
                                        <asp:ListItem Value="Dominican Republic">Dominican Republic</asp:ListItem>
                                        <asp:ListItem Value="Dominica">Dominica</asp:ListItem>
                                        <asp:ListItem Value="East Timor">East Timor</asp:ListItem>
                                        <asp:ListItem Value="Ecuador">Ecuador</asp:ListItem>
                                        <asp:ListItem Value="Egypt">Egypt</asp:ListItem>
                                        <asp:ListItem Value="El Salvador">El Salvador</asp:ListItem>
                                        <asp:ListItem Value="Equatorial Guinea">Equatorial Guinea</asp:ListItem>
                                        <asp:ListItem Value="Eritrea">Eritrea</asp:ListItem>
                                        <asp:ListItem Value="Estonia">Estonia</asp:ListItem>
                                        <asp:ListItem Value="Ethiopia">Ethiopia</asp:ListItem>
                                        <asp:ListItem Value="Falkland Islands (Malvinas)">Falkland Islands (Malvinas)</asp:ListItem>
                                        <asp:ListItem Value="Faroe Islands">Faroe Islands</asp:ListItem>
                                        <asp:ListItem Value="Fiji">Fiji</asp:ListItem>
                                        <asp:ListItem Value="Finland">Finland</asp:ListItem>
                                        <asp:ListItem Value="France, Metropolitan">France, Metropolitan</asp:ListItem>
                                        <asp:ListItem Value="France">France</asp:ListItem>
                                        <asp:ListItem Value="French Guiana">French Guiana</asp:ListItem>
                                        <asp:ListItem Value="French Polynesia">French Polynesia</asp:ListItem>
                                        <asp:ListItem Value="French Southern Territories">French Southern Territories</asp:ListItem>
                                        <asp:ListItem Value="Gabon">Gabon</asp:ListItem>
                                        <asp:ListItem Value="Gambia">Gambia</asp:ListItem>
                                        <asp:ListItem Value="Georgia">Georgia</asp:ListItem>
                                        <asp:ListItem Value="Germany">Germany</asp:ListItem>
                                        <asp:ListItem Value="Ghana">Ghana</asp:ListItem>
                                        <asp:ListItem Value="Gibraltar">Gibraltar</asp:ListItem>
                                        <asp:ListItem Value="Greece">Greece</asp:ListItem>
                                        <asp:ListItem Value="Greenland">Greenland</asp:ListItem>
                                        <asp:ListItem Value="Grenada">Grenada</asp:ListItem>
                                        <asp:ListItem Value="Guadeloupe">Guadeloupe</asp:ListItem>
                                        <asp:ListItem Value="Guam">Guam</asp:ListItem>
                                        <asp:ListItem Value="Guatemala">Guatemala</asp:ListItem>
                                        <asp:ListItem Value="Guine-Bissau">Guine-Bissau</asp:ListItem>
                                        <asp:ListItem Value="Guinea">Guinea</asp:ListItem>
                                        <asp:ListItem Value="Guyana">Guyana</asp:ListItem>
                                        <asp:ListItem Value="Haiti">Haiti</asp:ListItem>
                                        <asp:ListItem Value="Heard and McDonald Islands">Heard and McDonald Islands</asp:ListItem>
                                        <asp:ListItem Value="Honduras">Honduras</asp:ListItem>
                                        <asp:ListItem Value="Hong Kong">Hong Kong</asp:ListItem>
                                        <asp:ListItem Value="Hungary">Hungary</asp:ListItem>
                                        <asp:ListItem Value="Iceland">Iceland</asp:ListItem>
                                        <asp:ListItem Value="India">India</asp:ListItem>
                                        <asp:ListItem Value="Indonesia">Indonesia</asp:ListItem>
                                        <asp:ListItem Value="Iran">Iran</asp:ListItem>
                                        <asp:ListItem Value="Iraq">Iraq</asp:ListItem>
                                        <asp:ListItem Value="Ireland">Ireland</asp:ListItem>
                                        <asp:ListItem Value="Israel">Israel</asp:ListItem>
                                        <asp:ListItem Value="Italy">Italy</asp:ListItem>
                                        <asp:ListItem Value="Jamaica">Jamaica</asp:ListItem>
                                        <asp:ListItem Value="Japan">Japan</asp:ListItem>
                                        <asp:ListItem Value="Jordan">Jordan</asp:ListItem>
                                        <asp:ListItem Value="Kazakhstan">Kazakhstan</asp:ListItem>
                                        <asp:ListItem Value="Kenya">Kenya</asp:ListItem>
                                        <asp:ListItem Value="Kiribati">Kiribati</asp:ListItem>
                                        <asp:ListItem Value="Korea (North)">Korea (North)</asp:ListItem>
                                        <asp:ListItem Value="Korea (South)">Korea (South)</asp:ListItem>
                                        <asp:ListItem Value="Kuwait">Kuwait</asp:ListItem>
                                        <asp:ListItem Value="Kyrgystan">Kyrgystan</asp:ListItem>
                                        <asp:ListItem Value="Laos">Laos</asp:ListItem>
                                        <asp:ListItem Value="Latvian">Latvian</asp:ListItem>
                                        <asp:ListItem Value="Lebanon">Lebanon</asp:ListItem>
                                        <asp:ListItem Value="Lesotho">Lesotho</asp:ListItem>
                                        <asp:ListItem Value="Liberia">Liberia</asp:ListItem>
                                        <asp:ListItem Value="Libya">Libya</asp:ListItem>
                                        <asp:ListItem Value="Liechtenstein">Liechtenstein</asp:ListItem>
                                        <asp:ListItem Value="Lithuania">Lithuania</asp:ListItem>
                                        <asp:ListItem Value="Luxembourg">Luxembourg</asp:ListItem>
                                        <asp:ListItem Value="Macau">Macau</asp:ListItem>
                                        <asp:ListItem Value="Macedonia">Macedonia</asp:ListItem>
                                        <asp:ListItem Value="Madagascar">Madagascar</asp:ListItem>
                                        <asp:ListItem Value="Malawi">Malawi</asp:ListItem>
                                        <asp:ListItem Value="Malaysia">Malaysia</asp:ListItem>
                                        <asp:ListItem Value="Maldives">Maldives</asp:ListItem>
                                        <asp:ListItem Value="Mali">Mali</asp:ListItem>
                                        <asp:ListItem Value="Male">Male</asp:ListItem>
                                        <asp:ListItem Value="Malta">Malta</asp:ListItem>
                                        <asp:ListItem Value="Marshall Islands">Marshall Islands</asp:ListItem>
                                        <asp:ListItem Value="Martinique">Martinique</asp:ListItem>
                                        <asp:ListItem Value="Mauritania">Mauritania</asp:ListItem>
                                        <asp:ListItem Value="Mauritius">Mauritius</asp:ListItem>
                                        <asp:ListItem Value="Mayotte">Mayotte</asp:ListItem>
                                        <asp:ListItem Value="Mexico">Mexico</asp:ListItem>
                                        <asp:ListItem Value="Micronesia">Micronesia</asp:ListItem>
                                        <asp:ListItem Value="Moldova">Moldova</asp:ListItem>
                                        <asp:ListItem Value="Monaco">Monaco</asp:ListItem>
                                        <asp:ListItem Value="Mongolia">Mongolia</asp:ListItem>
                                        <asp:ListItem Value="Montserrat">Montserrat</asp:ListItem>
                                        <asp:ListItem Value="Morocco">Morocco</asp:ListItem>
                                        <asp:ListItem Value="Mozambique">Mozambique</asp:ListItem>
                                        <asp:ListItem Value="Myanmar">Myanmar</asp:ListItem>
                                        <asp:ListItem Value="Namibia">Namibia</asp:ListItem>
                                        <asp:ListItem Value="Nauru">Nauru</asp:ListItem>
                                        <asp:ListItem Value="Nepal">Nepal</asp:ListItem>
                                        <asp:ListItem Value="Netherlands Antilles">Netherlands Antilles</asp:ListItem>
                                        <asp:ListItem Value="Netherlands">Netherlands</asp:ListItem>
                                        <asp:ListItem Value="New Caledonia">New Caledonia</asp:ListItem>
                                        <asp:ListItem Value="New Zealand">New Zealand</asp:ListItem>
                                        <asp:ListItem Value="Nicaragua">Nicaragua</asp:ListItem>
                                        <asp:ListItem Value="Nigeria">Nigeria</asp:ListItem>
                                        <asp:ListItem Value="Niger">Niger</asp:ListItem>
                                        <asp:ListItem Value="Niue">Niue</asp:ListItem>
                                        <asp:ListItem Value="Norfolk Island">Norfolk Island</asp:ListItem>
                                        <asp:ListItem Value="Northern Mariana Islands">Northern Mariana Islands</asp:ListItem>
                                        <asp:ListItem Value="Norway">Norway</asp:ListItem>
                                        <asp:ListItem Value="Oman">Oman</asp:ListItem>
                                        <asp:ListItem Value="Pakistan">Pakistan</asp:ListItem>
                                        <asp:ListItem Value="Palau">Palau</asp:ListItem>
                                        <asp:ListItem Value="Panama">Panama</asp:ListItem>
                                        <asp:ListItem Value="Papua New Guinea">Papua New Guinea</asp:ListItem>
                                        <asp:ListItem Value="Paraguay">Paraguay</asp:ListItem>
                                        <asp:ListItem Value="Peru">Peru</asp:ListItem>
                                        <asp:ListItem Value="Philippines">Philippines</asp:ListItem>
                                        <asp:ListItem Value="Pitcairn">Pitcairn</asp:ListItem>
                                        <asp:ListItem Value="Poland">Poland</asp:ListItem>
                                        <asp:ListItem Value="Portugal">Portugal</asp:ListItem>
                                        <asp:ListItem Value="Puerto Rico">Puerto Rico</asp:ListItem>
                                        <asp:ListItem Value="Qatar">Qatar</asp:ListItem>
                                        <asp:ListItem Value="Reunion">Reunion</asp:ListItem>
                                        <asp:ListItem Value="Russian Federation">Russian Federation</asp:ListItem>
                                        <asp:ListItem Value="Rwanda">Rwanda</asp:ListItem>
                                        <asp:ListItem Value="S. Georgia and S. Sandwich Isls.">S. Georgia and S. Sandwich Isls.</asp:ListItem>
                                        <asp:ListItem Value="Saint Kitts and Nevis">Saint Kitts and Nevis</asp:ListItem>
                                        <asp:ListItem Value="Saint Lucia">Saint Lucia</asp:ListItem>
                                        <asp:ListItem Value="Saint Vincent and The Grenadines">Saint Vincent and The Grenadines</asp:ListItem>
                                        <asp:ListItem Value="Samoa">Samoa</asp:ListItem>
                                        <asp:ListItem Value="San Marino">San Marino</asp:ListItem>
                                        <asp:ListItem Value="Sao Tome and Principe">Sao Tome and Principe</asp:ListItem>
                                        <asp:ListItem Value="Saudi Arabia">Saudi Arabia</asp:ListItem>
                                        <asp:ListItem Value="Senegal">Senegal</asp:ListItem>
                                        <asp:ListItem Value="Seychelles">Seychelles</asp:ListItem>
                                        <asp:ListItem Value="Sierra Leone">Sierra Leone</asp:ListItem>
                                        <asp:ListItem Value="Singapore">Singapore</asp:ListItem>
                                        <asp:ListItem Value="Slovak Republic">Slovak Republic</asp:ListItem>
                                        <asp:ListItem Value="Slovenia">Slovenia</asp:ListItem>
                                        <asp:ListItem Value="Solomon Islands">Solomon Islands</asp:ListItem>
                                        <asp:ListItem Value="Somalia">Somalia</asp:ListItem>
                                        <asp:ListItem Value="South Africa">South Africa</asp:ListItem>
                                        <asp:ListItem Value="Spain">Spain</asp:ListItem>
                                        <asp:ListItem Value="Sri Lanka">Sri Lanka</asp:ListItem>
                                        <asp:ListItem Value="St. Helena">St. Helena</asp:ListItem>
                                        <asp:ListItem Value="St. Pierre and Milquelon">St. Pierre and Milquelon</asp:ListItem>
                                        <asp:ListItem Value="Sudan">Sudan</asp:ListItem>
                                        <asp:ListItem Value="Suriname">Suriname</asp:ListItem>
                                        <asp:ListItem Value="Svalbard and Jan Mayen Islands">Svalbard and Jan Mayen Islands</asp:ListItem>
                                        <asp:ListItem Value="Swaziland">Swaziland</asp:ListItem>
                                        <asp:ListItem Value="Sweden">Sweden</asp:ListItem>
                                        <asp:ListItem Value="Switzerland">Switzerland</asp:ListItem>
                                        <asp:ListItem Value="Syria">Syria</asp:ListItem>
                                        <asp:ListItem Value="Taiwan">Taiwan</asp:ListItem>
                                        <asp:ListItem Value="Tajikistan">Tajikistan</asp:ListItem>
                                        <asp:ListItem Value="Tanzania">Tanzania</asp:ListItem>
                                        <asp:ListItem Value="Thailand">Thailand</asp:ListItem>
                                        <asp:ListItem Value="Togo">Togo</asp:ListItem>
                                        <asp:ListItem Value="Tonga">Tonga</asp:ListItem>
                                        <asp:ListItem Value="Trinidad &amp; Tobago">Trinidad &amp; Tobago</asp:ListItem>
                                        <asp:ListItem Value="Tunisia">Tunisia</asp:ListItem>
                                        <asp:ListItem Value="Turkey">Turkey</asp:ListItem>
                                        <asp:ListItem Value="Turkmenistan">Turkmenistan</asp:ListItem>
                                        <asp:ListItem Value="Turks/Calcos Islands">Turks/Calcos Islands</asp:ListItem>
                                        <asp:ListItem Value="Tuvalu">Tuvalu</asp:ListItem>
                                        <asp:ListItem Value="United Arab Emirates">United Arab Emirates</asp:ListItem>
                                        <asp:ListItem Value="Uganda">Uganda</asp:ListItem>
                                        <asp:ListItem Value="Ukraine">Ukraine</asp:ListItem>
                                        <asp:ListItem Value="United Kingdom">United Kingdom</asp:ListItem>
                                        <asp:ListItem Value="Upper Volta">Upper Volta</asp:ListItem>
                                        <asp:ListItem Value="Uruguay">Uruguay</asp:ListItem>
                                        <asp:ListItem Value="Uzbekistan">Uzbekistan</asp:ListItem>
                                        <asp:ListItem Value="Vanuatu">Vanuatu</asp:ListItem>
                                        <asp:ListItem Value="Vatican City State">Vatican City State</asp:ListItem>
                                        <asp:ListItem Value="Venezuela">Venezuela</asp:ListItem>
                                        <asp:ListItem Value="Vietnam">Vietnam</asp:ListItem>
                                        <asp:ListItem Value="Virgin Islands">Virgin Islands</asp:ListItem>
                                        <asp:ListItem Value="Wallis/Futuna ISL">Wallis/Futuna ISL</asp:ListItem>
                                        <asp:ListItem Value="Western Samoa">Western Samoa</asp:ListItem>
                                        <asp:ListItem Value="Western Somoa ISL">Western Somoa ISL</asp:ListItem>
                                        <asp:ListItem Value="Yemen Arab Rep">Yemen Arab Rep</asp:ListItem>
                                        <asp:ListItem Value="Yugoslavia">Yugoslavia</asp:ListItem>
                                        <asp:ListItem Value="Zaire">Zaire</asp:ListItem>
                                        <asp:ListItem Value="Zambia">Zambia</asp:ListItem>
                                        <asp:ListItem Value="Zimbabwe">Zimbabwe</asp:ListItem>
                                    </asp:dropdownlist>
                                    
									<asp:Literal runat="server" ID="FailureText" EnableViewState="True"></asp:Literal>
								</ContentTemplate>
							</asp:CreateUserWizardStep>
							<asp:CompleteWizardStep runat="server">
							</asp:CompleteWizardStep>
						</WizardSteps>
						<FinishNavigationTemplate>
							<asp:Button runat="server" CausesValidation="False" Text="Previous" CommandName="MovePrev"
								ID="FinishPreviousButton" />
							<asp:Button runat="server" Text="Finish" CommandName="MoveToFinish" ID="FinishButton" />
						</FinishNavigationTemplate>
						<TitleTextStyle Height="50px"></TitleTextStyle>
					</asp:CreateUserWizard>
				</fieldset>
-----------------------------------------------------------------------
 
The css file:
#title h1 a:link, #title h1 a:visited
{
	text-decoration: none;
	color: #B4161A;
}
 
a:link, a:visited, #search a:visited, th a:visited
{
	color: #B4161A;
}
 
#title h1
{
	color: #B4161A;
}
 
#color_bar
{
	background: #971B1E;
}
 
h3
{
	color: #990000;
}
 
/*
   COMMON THEME PROPERTIES FOLLOW
   (they contain no information specific to a theme color)
*/
 
 
body
{
	font-family: Tahoma,Verdana,Helvetica,Helvetica-Narrow,sans-serif;
	margin-top: 0px;
	margin-left: 0px;
	background: #D8D5C2 url(images/background_main.jpg) repeat-x top;
}
 
a:hover
{
	text-decoration: none;
}
 
a:active
{
	text-decoration: none;
}
 
.none
{
	display: none;
}
 
#title h1
{
	font-size: 18px;
	font-weight: bold;
	display: inline;
}
 
.item_list h3, .item_list h4, .item_list h5, .item_list h6
{
	font-size: 1em;
	font-weight: normal;
}
 
/* begin main layout divs */
 
#title
{
	height: 24px;
	width: 770px;
	padding-top: 17px;
	padding-left: 10px;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 5px;
	background: url(images/background_title.jpg) no-repeat center top;
}
 
#nav_header
{
	margin: 0 auto;
	background: #75746E url(images/background_nav_top.gif) repeat-x top;
	line-height: normal;
	width: 780px;
	height: 40px;
}
#nav_header ul
{
	margin: 0;
	padding: 0px 0;
	list-style: none;
	float: right;
	background: url(images/nav_top_filler.gif) repeat-x left top;
}
#nav_header li
{
	float: left;
	background: url(images/nav_top_left.gif) no-repeat left top;
	margin: 0;
	padding: 0;
}
#nav_header a
{
	color: #fff;
	text-decoration: none;
	font-size: 11px;
	font-weight: bold;
	float: left;
	display: block;
	text-decoration: none;
	font-weight: bold;
	margin-bottom: 5px;
	background: url(images/nav_top_right.gif) no-repeat right top;
	padding: 13px 25px 13px 15px;
}
 
#nav_header a span
{
	border-bottom: #ccc 1px solid;
	padding-bottom: 54px; /* hide the underline in normal state, required for hover effect in IE */
}
 
#nav_header a:hover span
{
	border-bottom: #c0c0c0 1px solid;
	padding-bottom: 2px;
}
 
#color_bar
{
	font-size: 10px;
	font-weight: bold;
	width: 760px;
	border-bottom: #ccc 1px solid;
	padding-right: 10px;
	padding-left: 10px;
	margin-right: auto;
	margin-left: auto;
	height: 27px;
	padding-top: 13px;
	color: #FFFFFF;
}
 
#crumbs
{
	font-size: 10px;
	font-weight: bold;
	color: #FFFFFF;
	height: 26px;
	width: 760px;
	padding-right: 10px;
	padding-left: 10px;
	vertical-align: middle;
	background: #75746E url(images/background_crumbs.jpg) repeat-x top;
	margin: 0px auto 5px;
}
 
#crumbs h2, #crumbs h3
{
	font-size: 10px;
	display: inline;
}
 
#crumbs_search
{
	float: left;
	font-size: 12px;
}
 
#whats_new
{
	float: right;
	font-size: 12px;
	width: 280px;
	text-align: right;
}
 
 
 
 
 
 
#crumbs p
{
	display: inline;
	vertical-align: middle;
}
 
#crumbs .search_box
{
	margin: 0px;
	padding: 0px;
	height: 15px;
	font-size: 11px;
	width: 170px;
}
 
#crumbs #category_select
{
	margin: 0px;
	padding: 0px;
	height: 17px;
	font-size: 11px;
	width: 170px;
}
 
#crumbs select
{
	padding: 0px;
	height: 17px;
	font-size: 11px;
	width: 160px;
	margin-top: 2px;
}
 
#crumbs .submit, #crumbs .go
{
	margin: 0px;
	padding: 0px;
	height: 20px;
	font-size: 11px;
	margin-top: 0px;
}
 
#crumbs_text
{
	padding-top: 5px;
}
 
input .submit
{
	font-size: 11px;
	width: 70px;
}
 
#nav_browse
{
	font-size: 11px;
	float: right;
}
 
#nav_login
{
	font-size: 11px;
	float: left;
}
 
#body
{
	display: table;
	width: 780px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #B6B3A6;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 5px;
	background: #F7F6F2;
}
 
#col_main_left
{
	width: 198px;
	float: left;
	border-right: 3px solid #DFDCCB;
	background: #E1DFCF;
}
 
#col_main_right
{
	border-left: 3px solid #DFDCCB;
	margin-left: 198px;
	border-right: 1px solid #CAC7B8;
	background: #F7F6F2;
}
 
#content
{
	width: 739px;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #B6B3A6;
	padding: 20px;
}
 
#content .display_left
{
	margin-top: -20px;
}
 
#content_header
{
	font-size: 0.8em;
	color: #000000;
	height: 129px;
	width: 177px;
	padding-top: 10px;
	padding-right: 7px;
	padding-left: 10px;
}
 
#content_header ul
{
	list-style-position: outside;
	margin-top: 10px;
	list-style-image: url(images/ul_bullet.gif);
}
 
#content_header li
{
	list-style-position: outside;
	margin-left: -17px;
}
 
#content_header h2, #content_header h3
{
	display: inline;
	font-weight: bold;
	font-size: 1em;
}
 
#featured_item
{
	height: 200px;
	width: 176px;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #FFFFFF;
	border-right-color: #A29F93;
	border-bottom-color: #A29F93;
	border-left-color: #FFFFFF;
	text-align: center;
	padding: 10px;
	font-size: 0.8em;
	margin-bottom: 3px;
	margin-right: 0px;
	background: #DCDACE url(images/background_feature.jpg) repeat-x top;
}
 
.display_left #featured_item
{
	width: 160px;
	font-size: 1em;
}
 
 
#featured_item h2
{
	font-size: 1em;
	font-weight: bold;
	display: inline;
}
 
.row1 a:link img, .row2 a:link img, .display_left a:link img, #featured_item a:link img
{
	border: 1px solid #666;
}
 
.row1 a:visited img, .row2 a:visited img, .display_left a:visited img, #featured_item a:visited img
{
	border: 1px solid #666;
}
 
 
 
#announcements
{
	font-size: 0.8em;
	padding: 10px;
	height: 100%;
	background: #F7F6F2;
}
 
#announcements ul
{
	margin-top: 0px;
}
 
#announcements li
{
	list-style-position: outside;
	list-style-image: url(images/ul_arrow.gif);
	margin-bottom: 15px;
	margin-left: -24px;
}
 
#user_assistance
{
	color: #7F4728;
	padding: 10px;
	font-size: 0.8em;
	float: left;
	width: 178px;
	background: #F9F9F8 url(images/background_user_assist.jpg) repeat-x top;
}
 
#user_assistance h2, #user_assistance h3
{
	color: #000000;
	font-size: 1em;
}
 
.post_title
{
	margin: 0px;
	padding: 0px;
}
 
.post_dollars
{
	width: 50px;
}
 
#post_cents
{
	width: 25px;
}
 
.post_url, .post_title, .post_description
{
	width: 250px;
}
 
.post_description
{
	height: 90px;
}
 
.section
{
	padding: 10px;
	height: 17px;
	font-size: 0.8em;
	font-weight: bold;
	border-bottom: 2px solid #E4E2D5;
	margin-bottom: 0px;
}
 
h3.section
{
	font-size: 1.2em;
}
 
.content_right
{
	padding: 10px;
	font-size: 0.8em;
}
 
.content_right form, .content_right fieldset
{
	border: none;
	padding: 0px;
	margin: 0px;
}
 
.content_right legend
{
	color: #000000;
	font-size: 1em;
	font-weight: bold;
	margin: 0px;
	padding: 0px;
	padding-bottom: 5px;
}
 
.content_right td, .category_browse td
{
	padding-right: 20px;
}
 
.category_browse td h4
{
	font-size: 1em;
	display: inline;
}
 
.category_browse td h4 a:link, .category_browse td h4 a:visited
{
	text-decoration: none;
	color: #000000;
}
 
.category_browse td h4 a:hover, .category_browse td h4 a:active
{
	text-decoration: underline;
}
 
.category_browse td ul a:link, .category_browse td ul a:visited
{
	text-decoration: none;
}
 
.category_browse td ul a:hover, .category_browse td ul a:active
{
	text-decoration: underline;
}
 
.category_browse td ul
{
	list-style-position: outside;
	margin-top: 10px;
	list-style-image: url(images/ul_bullet.gif);
}
 
.category_browse td li, .category_browse td li
{
	list-style-position: outside;
	margin-left: -17px;
}
 
#search_n_browse
{
	height: 139px;
	width: 577px;
	padding-bottom: 3px;
	padding-left: 3px;
	float: right;
}
 
#search_n_no_browse
{
	height: 139px;
	width: 288px;
	padding-bottom: 3px;
	padding-left: 3px;
	float: right;
	background: #E1DFCF;
}
 
#search_n_browse div#search
{
	float: left;
	background: url(images/background_search.jpg) #d6d3c4 repeat-x;
}
 
#search_n_browse div#browse
{
	float: right;
	background: url(images/background_browse.jpg) #d2d4bf repeat-x;
}
 
#search a
{
	font-size: 11px;
}
 
#search legend, #browse legend
{
	color: #333333;
	font-size: 13px;
	font-weight: bold;
}
 
#search select, #search .search_box, #browse select, #browse ul
{
	font-size: 11px;
	margin-top: 2px;
}
 
#search select, #search .search_box
{
	width: 240px;
}
 
#browse select
{
	width: 190px;
	vertical-align: middle;
	border: none;
	display: inline;
}
 
#search, #browse
{
	height: 125px;
	width: 265px;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #FFFFFF;
	border-right-color: #A29F93;
	border-bottom-color: #A29F93;
	border-left-color: #FFFFFF;
	background: repeat-x top;
	padding: 7px 10px 10px;
}
 
#search form, #browse form
{
	display: inline;
	border: none;
}
 
#search .search_box, #search select
{
	margin-bottom: 8px;
}
 
/* begin admin panel (similar to search boxes) */
#admin_panel
{
	width: 577px;
	padding-bottom: 3px;
	padding-left: 3px;
	float: right;
	font-size: .7em;
}
#admin_panel div
{
	padding-top: 5px;
}
 
#admin_panel #query span.input_label
{
	float: left;
	text-align: right;
	width: 70px;
}
 
 
#admin_panel #query input
{
	width: 170px;
}
 
 
 
#admin_panel #query select
{
	width: 175px;
}
 
#admin_panel #status span.input_label
{
	float: left;
	text-align: right;
	width: 100px;
}
 
#admin_panel #status select
{
	width: 145px;
}
 
#admin_panel #status input
{
	width: 145px;
}
 
#admin_panel span.input_control
{
	float: right;
	text-align: left;
}
 
#admin_panel div#query
{
	float: left;
	background: #F9F9F8 url(images/background_user_assist.jpg) repeat-x top;
}
 
#admin_panel div#status
{
	float: right;
	background: #F9F9F8 url(images/background_user_assist.jpg) repeat-x top;
}
 
#admin_panel #query a
{
	font-size: 11px;
}
 
#admin_panel #query legend, #admin_panel #status legend
{
	color: #333333;
	font-size: 13px;
	font-weight: bold;
}
 
#admin_panel #query select, #admin_panel #query .search_box, #admin_panel #status select, #admin_panel #status ul
{
	font-size: 11px;
	margin-top: 2px;
}
 
#admin_panel #query select, #admin_panel #query .search_box
{
	/* width: 290px; */
}
 
#admin_panel #status select
{
	/* width: 190px; */
	vertical-align: middle;
	border: none;
	display: inline;
}
 
#admin_panel #query, #admin_panel #status
{
	height: 185px;
	width: 265px;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #FFFFFF;
	border-right-color: #A29F93;
	border-bottom-color: #A29F93;
	border-left-color: #FFFFFF;
	background: repeat-x top;
	padding: 7px 10px 10px;
}
 
 
 
.login_box input.text
{
	width: 150px;
}
 
input.user_info
{
	width: 200px;
}
 
input.register_password
{
	width: 100px;
}
 
input.register_question
{
	width: 250px;
}
 
/* begin item grid */
 
 
#item_images
{
	text-align: center;
	float: left;
	width: 161px;
	clear: none;
}
 
.item_list
{
	width: 100%;
	font-size: .7em;
	padding-left: 5px;
	padding-right: 5px;
}
 
.item_list th
{
	height: 25px;
	background: #DEDDD3;
}
 
.item_list_footer
{
	height: 20px;
	width: 100%;
	margin-top: 5px;
	text-align: center;
	padding-top: 5px;
	font-weight: bold;
	background: #DEDDD3;
}
 
.item_list_footer li
{
	list-style-type: none;
	white-space: nowrap;
	display: inline;
	margin: 0px 3px;
}
 
.item_list_footer ul
{
	margin: 0;
	padding: 0;
}
 
.display_left
{
	text-align: center;
	float: left;
	clear: none;
	font-size: .8em;
}
 
 
.display_right
{
	text-align: left;
	padding-left: 181px;
	font-size: .8em;
}
 
.display_right#ad_details h3, .display_right#ad_details h4, .display_right#ad_details h5
{
	text-align: left;
	font-size: 1.1em;
	padding: 10px;
	display: block;
	background: #E5E2CC;
}
 
.display_right#ad_details h5.action
{
	padding: 5px 10px;
	font-size: 0.9em;
}
 
 
/* begin footer */
 
#footer
{
	font-size: 11px;
	font-weight: bold;
	height: 23px;
	width: 740px;
	margin-right: auto;
	margin-bottom: 10px;
	margin-left: auto;
	padding-top: 10px;
	padding-right: 20px;
	padding-left: 20px;
	color: #FFFFFF;
	text-align: center;
	background: #75746E url(images/background_nav_footer.jpg);
}
 
#footer_nav
{
	width: 100%;
}
 
#footer_nav a
{
	list-style-type: none;
	white-space: nowrap;
	display: inline-block;
	margin: 0px 10px 0px 0px;
	text-decoration: underline;
}
 
#footer_nav a, #nav_login a, #nav_browse a, #crumbs a
{
	font-size: 1em;
	color: #FFFFFF;
}
 
#disclaimer
{
	font-size: 0.6em;
	color: #888679;
	text-align: center;
	width: 400px;
	margin-right: auto;
	margin-left: auto;
}
 
 
/* begin classes */
 
legend.select_category
{
	display: inline;
}
 
.col_select, .col_photo, .col_photo_nopreview, .col_startdate, .col_price, .col_type, .col_location, .col_category, .col_general, .col_checkbox
{
	text-align: center;
}
 
.col_title
{
	text-align: left;
	width: 325px;
}
 
#ad_details td.col_heading
{
	color: #7F4728;
	vertical-align: top;
}
 
#ad_details td.col_detail
{
	padding-left: 10px;
}
 
#ad_details .ad_description_text td.col_detail
{
	font-weight: bold;
}
 
.ad_description_text
{
	padding-top: 20px;
}
 
 
 
.col_checkbox, .col_photo_nopreview
{
	width: 30px;
}
 
 
.row1, .row2
{
	height: 60px;
}
 
.row2
{
	background: #E8E7E1 url(images/background_table_row.gif) repeat-x top;
}
 
.small_text
{
	font-size: 0.8em;
	color: #666666;
	font-weight: normal;
}
 
.normal_weight
{
	font-weight: normal;
}
 
 
tr.new_section
{
	padding-top: 1em;
}
 
p.new_section
{
	margin-top: 1em;
}
[+][-]12/09/07 10:34 AM, ID: 20437644Accepted Solution

View this solution now by starting your 30-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

About this solution

Zone: Programming for ASP.NET
Tags: css, header, themed, files, requires
Sign Up Now!
Solution Provided By: GreenGhost
Participating Experts: 2
Solution Grade: B
 
[+][-]12/08/07 03:55 PM, ID: 20435556Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]12/08/07 03:58 PM, ID: 20435563Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]12/08/07 05:37 PM, ID: 20435776Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]12/09/07 09:00 AM, ID: 20437396Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]12/09/07 09:14 AM, ID: 20437414Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]12/09/07 09:20 AM, ID: 20437430Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]12/09/07 10:01 AM, ID: 20437542Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]12/09/07 10:09 AM, ID: 20437566Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]12/09/07 10:50 AM, ID: 20437694Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
 
Loading Advertisement...
20091111-EE-VQP-92 / EE_QW_2_20070628