MediaWiki:Common.css
From Game Detectives Wiki
/* CSS placed here will be applied to all skins */ body.page-Main_Page.action-view h1.firstHeading, body.page-Main_Page.action-submit h1.firstHeading { display: none; } /* Cell sizes for ambox/tmbox/imbox/cmbox/ombox/fmbox/dmbox message boxes */ th.mbox-text, td.mbox-text { /* The message body cell(s) */ border: none; /* @noflip */ padding: 0.25em 0.9em; /* 0.9em left/right */ width: 100%; /* Make all mboxes the same width regardless of text length */ } td.mbox-image { /* The left image cell */ border: none; /* @noflip */ padding: 2px 0 2px 0.9em; /* 0.9em left, 0px right */ text-align: center; } td.mbox-imageright { /* The right image cell */ border: none; /* @noflip */ padding: 2px 0.9em 2px 0; /* 0px left, 0.9em right */ text-align: center; } td.mbox-empty-cell { /* An empty narrow cell */ border: none; padding: 0; width: 1px; } /* Article message box styles */ table.ambox { margin: 0 10%; /* 10% = Will not overlap with other elements */ border: 1px solid #a2a9b1; /* @noflip */ border-left: 10px solid #36c; /* Default "notice" blue */ background: #fbfbfb; } table.ambox + table.ambox { /* Single border between stacked boxes. */ margin-top: -1px; } .ambox th.mbox-text, .ambox td.mbox-text { /* The message body cell(s) */ padding: 0.25em 0.5em; /* 0.5em left/right */ } .ambox td.mbox-image { /* The left image cell */ /* @noflip */ padding: 2px 0 2px 0.5em; /* 0.5em left, 0px right */ } .ambox td.mbox-imageright { /* The right image cell */ /* @noflip */ padding: 2px 0.5em 2px 0; /* 0px left, 0.5em right */ } table.ambox-notice { /* @noflip */ border-left: 10px solid #36c; /* Blue */ } table.ambox-speedy { /* @noflip */ border-left: 10px solid #b32424; /* Red */ background: #fee7e6; /* Pink */ } table.ambox-delete { /* @noflip */ border-left: 10px solid #b32424; /* Red */ } table.ambox-content { /* @noflip */ border-left: 10px solid #f28500; /* Orange */ } table.ambox-style { /* @noflip */ border-left: 10px solid #fc3; /* Yellow */ } table.ambox-move { /* @noflip */ border-left: 10px solid #9932cc; /* Purple */ } table.ambox-protection { /* @noflip */ border-left: 10px solid #a2a9b1; /* Gray-gold */ } /* These mbox-small classes must be placed after all other ambox/tmbox/ombox etc classes. "html body.mediawiki" is so they override "table.ambox + table.ambox" above. */ html body.mediawiki .mbox-small { /* For the "small=yes" option. */ /* @noflip */ clear: right; /* @noflip */ float: right; /* @noflip */ margin: 4px 0 4px 1em; box-sizing: border-box; width: 238px; font-size: 88%; line-height: 1.25em; } html body.mediawiki .mbox-small-left { /* For the "small=left" option. */ /* @noflip */ margin: 4px 1em 4px 0; box-sizing: border-box; overflow: hidden; width: 238px; border-collapse: collapse; font-size: 88%; line-height: 1.25em; } /* Style for compact ambox */ /* Hide the images */ .compact-ambox table .mbox-image, .compact-ambox table .mbox-imageright, .compact-ambox table .mbox-empty-cell { display: none; } /* Remove borders, backgrounds, padding, etc. */ .compact-ambox table.ambox { border: none; border-collapse: collapse; background: transparent; margin: 0 0 0 1.6em !important; padding: 0 !important; width: auto; display: block; } body.mediawiki .compact-ambox table.mbox-small-left { font-size: 100%; width: auto; margin: 0; } /* Style the text cell as a list item and remove its padding */ .compact-ambox table .mbox-text { padding: 0 !important; margin: 0 !important; } .compact-ambox table .mbox-text-span { display: list-item; line-height: 1.5em; list-style-type: square; list-style-image: url(/w/skins/MonoBook/bullet.gif); } .skin-vector .compact-ambox table .mbox-text-span { list-style-type: disc; list-style-image: url(/w/skins/Vector/images/bullet-icon.svg); list-style-image: url(/w/skins/Vector/images/bullet-icon.png)\9; } /* Allow for hiding text in compact form */ .compact-ambox .hide-when-compact { display: none; } /* Other pages message box styles */ table.ombox { margin: 4px 10%; border-collapse: collapse; border: 1px solid #a2a9b1; /* Default "notice" gray */ background: #f8f9fa; box-sizing: border-box; } table.ombox-notice { border: 1px solid #a2a9b1; /* Gray */ } table.ombox-speedy { border: 2px solid #b32424; /* Red */ background: #fee7e6; /* Pink */ } table.ombox-delete { border: 2px solid #b32424; /* Red */ } table.ombox-content { border: 1px solid #f28500; /* Orange */ } table.ombox-style { border: 1px solid #fc3; /* Yellow */ } table.ombox-move { border: 1px solid #9932cc; /* Purple */ } table.ombox-protection { border: 2px solid #a2a9b1; /* Gray-gold */ } /* SMW table styles */ .smwtable .row-even { background-color: #fff; } .smwtable .row-odd { background-color: #e6e6e6; } .smwtable .smwtype_txt{ text-align: center; } .smwtable .smwtype_dat{ text-align: center; } @keyframes flashOdd { 25% {background-color: #ffcccc;} 50% {background-color: #eee;} 75% {background-color: #ffcccc;} 100% {background-color: #eee;} } @keyframes flashEven { 25% {background-color: #ffcccc;} 50% {background-color: #fff;} 75% {background-color: #ffcccc;} 100% {background-color: #fff;} } @keyframes fadeIn { 0% {opacity: 0;} 100% {opacity: 0.3;} } @keyframes PulseOdd { 0% {background-color: #ffcccc;} 25% {background-color: #eee;} 50% {background-color: #ffcccc;} 75% {background-color: #fff;} 100% {background-color: #ffcccc;} } @keyframes PulseEven { 0% {background-color: #ffcccc;} 25% {background-color: #fff;} 50% {background-color: #ffcccc;} 75% {background-color: #fff;} 100% {background-color: #ffcccc;} } @keyframes PulseCP { 0.0% {background-color: #ffcccc;} 0.5% {background-color: #eee;} 1.0% {background-color: #ffcccc;} 1.5% {background-color: #eee;} 2.0% {background-color: #ffcccc;} 2.5% {background-color: #eee;} 2.050000% {background-color: #eee;} 2.050001% {background-color: #ffcccc;} 2.200001% {background-color: #ffcccc;} 2.200002% {background-color: #eee;} 2.250002% {background-color: #eee;} 2.250003% {background-color: #ffcccc;} 2.300003% {background-color: #ffcccc;} 2.300004% {background-color: #eee;} 2.350004% {background-color: #eee;} 2.350005% {background-color: #ffcccc;} 2.400005% {background-color: #ffcccc;} 2.400006% {background-color: #eee;} 2.450006% {background-color: #eee;} 2.450007% {background-color: #ffcccc;} 2.500007% {background-color: #ffcccc;} 2.500008% {background-color: #eee;} 2.650008% {background-color: #eee;} 2.700008% {background-color: #eee;} 2.700009% {background-color: #ffcccc;} 2.750009% {background-color: #ffcccc;} 2.750010% {background-color: #eee;} 2.900010% {background-color: #eee;} 2.950010% {background-color: #eee;} 2.950011% {background-color: #ffcccc;} 3.000011% {background-color: #ffcccc;} 3.000012% {background-color: #eee;} 3.150012% {background-color: #eee;} 3.200012% {background-color: #eee;} 3.200013% {background-color: #ffcccc;} 3.250013% {background-color: #ffcccc;} 3.250014% {background-color: #eee;} 3.300014% {background-color: #eee;} 3.300015% {background-color: #ffcccc;} 3.450015% {background-color: #ffcccc;} 3.450016% {background-color: #eee;} 3.500016% {background-color: #eee;} 3.500017% {background-color: #ffcccc;} 3.650017% {background-color: #ffcccc;} 3.650018% {background-color: #eee;} 3.700018% {background-color: #eee;} 3.700019% {background-color: #ffcccc;} 3.750019% {background-color: #ffcccc;} 3.750020% {background-color: #eee;} 4.100020% {background-color: #eee;} 4.150020% {background-color: #eee;} 4.150021% {background-color: #ffcccc;} 4.200021% {background-color: #ffcccc;} 4.200022% {background-color: #eee;} 4.250022% {background-color: #eee;} 4.250023% {background-color: #ffcccc;} 4.300023% {background-color: #ffcccc;} 4.300024% {background-color: #eee;} 4.350024% {background-color: #eee;} 4.350025% {background-color: #ffcccc;} 4.400025% {background-color: #ffcccc;} 4.400026% {background-color: #eee;} 4.550026% {background-color: #eee;} 4.600026% {background-color: #eee;} 4.600027% {background-color: #ffcccc;} 4.650027% {background-color: #ffcccc;} 4.650028% {background-color: #eee;} 4.800028% {background-color: #eee;} 4.850028% {background-color: #eee;} 4.850029% {background-color: #ffcccc;} 4.900029% {background-color: #ffcccc;} 4.900030% {background-color: #eee;} 5.050030% {background-color: #eee;} 5.100030% {background-color: #eee;} 5.100031% {background-color: #ffcccc;} 5.150031% {background-color: #ffcccc;} 5.150032% {background-color: #eee;} 5.200032% {background-color: #eee;} 5.200033% {background-color: #ffcccc;} 5.350033% {background-color: #ffcccc;} 5.350034% {background-color: #eee;} 5.400034% {background-color: #eee;} 5.400035% {background-color: #ffcccc;} 5.550035% {background-color: #ffcccc;} 5.550036% {background-color: #eee;} 5.600036% {background-color: #eee;} 5.600037% {background-color: #ffcccc;} 5.650037% {background-color: #ffcccc;} 5.650038% {background-color: #eee;} 6.000038% {background-color: #eee;} 6.050038% {background-color: #eee;} 6.050039% {background-color: #ffcccc;} 6.100039% {background-color: #ffcccc;} 6.100040% {background-color: #eee;} 6.150040% {background-color: #eee;} 6.150041% {background-color: #ffcccc;} 6.200041% {background-color: #ffcccc;} 6.200042% {background-color: #eee;} 6.250042% {background-color: #eee;} 6.250043% {background-color: #ffcccc;} 6.300043% {background-color: #ffcccc;} 6.300044% {background-color: #eee;} 6.450044% {background-color: #eee;} 6.500044% {background-color: #eee;} 6.500045% {background-color: #ffcccc;} 6.550045% {background-color: #ffcccc;} 6.550046% {background-color: #eee;} 6.700046% {background-color: #eee;} 6.750046% {background-color: #eee;} 6.750047% {background-color: #ffcccc;} 6.800047% {background-color: #ffcccc;} 6.800048% {background-color: #eee;} 6.950048% {background-color: #eee;} 7.000048% {background-color: #eee;} 7.000049% {background-color: #ffcccc;} 7.050049% {background-color: #ffcccc;} 7.050050% {background-color: #eee;} 7.100050% {background-color: #eee;} 7.100051% {background-color: #ffcccc;} 7.250051% {background-color: #ffcccc;} 7.250052% {background-color: #eee;} 7.300052% {background-color: #eee;} 7.300053% {background-color: #ffcccc;} 7.450053% {background-color: #ffcccc;} 7.450054% {background-color: #eee;} 7.500054% {background-color: #eee;} 7.500055% {background-color: #ffcccc;} 7.550055% {background-color: #ffcccc;} 7.550056% {background-color: #eee;} 7.900056% {background-color: #eee;} 7.950056% {background-color: #eee;} 7.950057% {background-color: #ffcccc;} 8.000057% {background-color: #ffcccc;} 8.000058% {background-color: #eee;} 8.050058% {background-color: #eee;} 8.050059% {background-color: #ffcccc;} 8.100059% {background-color: #ffcccc;} 8.100060% {background-color: #eee;} 8.150060% {background-color: #eee;} 8.150061% {background-color: #ffcccc;} 8.200061% {background-color: #ffcccc;} 8.200062% {background-color: #eee;} 8.350062% {background-color: #eee;} 8.400062% {background-color: #eee;} 8.400063% {background-color: #ffcccc;} 8.450063% {background-color: #ffcccc;} 8.450064% {background-color: #eee;} 8.600064% {background-color: #eee;} 8.650064% {background-color: #eee;} 8.650065% {background-color: #ffcccc;} 8.700065% {background-color: #ffcccc;} 8.700066% {background-color: #eee;} 8.850066% {background-color: #eee;} 8.900066% {background-color: #eee;} 8.900067% {background-color: #ffcccc;} 8.950067% {background-color: #ffcccc;} 8.950068% {background-color: #eee;} 9.000068% {background-color: #eee;} 9.000069% {background-color: #ffcccc;} 9.150069% {background-color: #ffcccc;} 9.150070% {background-color: #eee;} 9.200070% {background-color: #eee;} 9.200071% {background-color: #ffcccc;} 9.350071% {background-color: #ffcccc;} 9.350072% {background-color: #eee;} 9.400072% {background-color: #eee;} 9.400073% {background-color: #ffcccc;} 9.450073% {background-color: #ffcccc;} 9.450074% {background-color: #eee;} 9.800074% {background-color: #eee;} 9.850074% {background-color: #eee;} 9.850075% {background-color: #ffcccc;} 9.900075% {background-color: #ffcccc;} 9.900076% {background-color: #eee;} 9.950076% {background-color: #eee;} 9.950077% {background-color: #ffcccc;} 10.000077% {background-color: #ffcccc;} 10.000078% {background-color: #eee;} 10.050078% {background-color: #eee;} 10.050079% {background-color: #ffcccc;} 10.100079% {background-color: #ffcccc;} 10.100080% {background-color: #eee;} 10.250080% {background-color: #eee;} 10.300080% {background-color: #eee;} 10.300081% {background-color: #ffcccc;} 10.350081% {background-color: #ffcccc;} 10.350082% {background-color: #eee;} 10.500082% {background-color: #eee;} 10.550082% {background-color: #eee;} 10.550083% {background-color: #ffcccc;} 10.600083% {background-color: #ffcccc;} 10.600084% {background-color: #eee;} 10.750084% {background-color: #eee;} 10.800084% {background-color: #eee;} 10.800085% {background-color: #ffcccc;} 10.850085% {background-color: #ffcccc;} 10.850086% {background-color: #eee;} 10.900086% {background-color: #eee;} 10.900087% {background-color: #ffcccc;} 11.050087% {background-color: #ffcccc;} 11.050088% {background-color: #eee;} 11.100088% {background-color: #eee;} 11.100089% {background-color: #ffcccc;} 11.250089% {background-color: #ffcccc;} 11.250090% {background-color: #eee;} 11.300090% {background-color: #eee;} 11.300091% {background-color: #ffcccc;} 11.350091% {background-color: #ffcccc;} 11.350092% {background-color: #eee;} 11.700092% {background-color: #eee;} 11.750092% {background-color: #eee;} 11.750093% {background-color: #ffcccc;} 11.800093% {background-color: #ffcccc;} 11.800094% {background-color: #eee;} 11.850094% {background-color: #eee;} 11.850095% {background-color: #ffcccc;} 11.900095% {background-color: #ffcccc;} 11.900096% {background-color: #eee;} 11.950096% {background-color: #eee;} 11.950097% {background-color: #ffcccc;} 12.000097% {background-color: #ffcccc;} 12.000098% {background-color: #eee;} 12.150098% {background-color: #eee;} 12.200098% {background-color: #eee;} 12.200099% {background-color: #ffcccc;} 12.250099% {background-color: #ffcccc;} 12.250100% {background-color: #eee;} 12.400100% {background-color: #eee;} 12.450100% {background-color: #eee;} 12.450101% {background-color: #ffcccc;} 12.500101% {background-color: #ffcccc;} 12.500102% {background-color: #eee;} 12.650102% {background-color: #eee;} 12.700102% {background-color: #eee;} 12.700103% {background-color: #ffcccc;} 12.750103% {background-color: #ffcccc;} 12.750104% {background-color: #eee;} 12.800104% {background-color: #eee;} 12.800105% {background-color: #ffcccc;} 12.950105% {background-color: #ffcccc;} 12.950106% {background-color: #eee;} 13.000106% {background-color: #eee;} 13.000107% {background-color: #ffcccc;} 13.150107% {background-color: #ffcccc;} 13.150108% {background-color: #eee;} 13.200108% {background-color: #eee;} 13.200109% {background-color: #ffcccc;} 13.250109% {background-color: #ffcccc;} 13.250110% {background-color: #eee;} 13.600110% {background-color: #eee;} 13.650110% {background-color: #eee;} 13.650111% {background-color: #ffcccc;} 13.700111% {background-color: #ffcccc;} 13.700112% {background-color: #eee;} 13.750112% {background-color: #eee;} 13.750113% {background-color: #ffcccc;} 13.800113% {background-color: #ffcccc;} 13.800114% {background-color: #eee;} 13.850114% {background-color: #eee;} 13.850115% {background-color: #ffcccc;} 13.900115% {background-color: #ffcccc;} 13.900116% {background-color: #eee;} 14.050116% {background-color: #eee;} 14.100116% {background-color: #eee;} 14.100117% {background-color: #ffcccc;} 14.150117% {background-color: #ffcccc;} 14.150118% {background-color: #eee;} 14.300118% {background-color: #eee;} 14.350118% {background-color: #eee;} 14.350119% {background-color: #ffcccc;} 14.400119% {background-color: #ffcccc;} 14.400120% {background-color: #eee;} 14.550120% {background-color: #eee;} 14.600120% {background-color: #eee;} 14.600121% {background-color: #ffcccc;} 14.650121% {background-color: #ffcccc;} 14.650122% {background-color: #eee;} 14.700122% {background-color: #eee;} 14.700123% {background-color: #ffcccc;} 14.850123% {background-color: #ffcccc;} 14.850124% {background-color: #eee;} 14.900124% {background-color: #eee;} 14.900125% {background-color: #ffcccc;} 15.050125% {background-color: #ffcccc;} 15.050126% {background-color: #eee;} 15.100126% {background-color: #eee;} 15.100127% {background-color: #ffcccc;} 15.150127% {background-color: #ffcccc;} 15.150128% {background-color: #eee;} 15.500128% {background-color: #eee;} 15.550128% {background-color: #eee;} 15.550129% {background-color: #ffcccc;} 15.600129% {background-color: #ffcccc;} 15.600130% {background-color: #eee;} 15.650130% {background-color: #eee;} 15.650131% {background-color: #ffcccc;} 15.700131% {background-color: #ffcccc;} 15.700132% {background-color: #eee;} 15.750132% {background-color: #eee;} 15.750133% {background-color: #ffcccc;} 15.800133% {background-color: #ffcccc;} 15.800134% {background-color: #eee;} 15.950134% {background-color: #eee;} 16.000134% {background-color: #eee;} 16.000135% {background-color: #ffcccc;} 16.050135% {background-color: #ffcccc;} 16.050136% {background-color: #eee;} 16.200136% {background-color: #eee;} 16.250136% {background-color: #eee;} 16.250137% {background-color: #ffcccc;} 16.300137% {background-color: #ffcccc;} 16.300138% {background-color: #eee;} 16.450138% {background-color: #eee;} 16.500138% {background-color: #eee;} 16.500139% {background-color: #ffcccc;} 16.550139% {background-color: #ffcccc;} 16.550140% {background-color: #eee;} 16.600140% {background-color: #eee;} 16.600141% {background-color: #ffcccc;} 16.750141% {background-color: #ffcccc;} 16.750142% {background-color: #eee;} 16.800142% {background-color: #eee;} 16.800143% {background-color: #ffcccc;} 16.950143% {background-color: #ffcccc;} 16.950144% {background-color: #eee;} 17.000144% {background-color: #eee;} 17.000145% {background-color: #ffcccc;} 17.050145% {background-color: #ffcccc;} 17.050146% {background-color: #eee;} 17.400146% {background-color: #eee;} 17.450146% {background-color: #eee;} 17.450147% {background-color: #ffcccc;} 17.500147% {background-color: #ffcccc;} 17.500148% {background-color: #eee;} 17.550148% {background-color: #eee;} 17.550149% {background-color: #ffcccc;} 17.600149% {background-color: #ffcccc;} 17.600150% {background-color: #eee;} 17.650150% {background-color: #eee;} 17.650151% {background-color: #ffcccc;} 17.700151% {background-color: #ffcccc;} 17.700152% {background-color: #eee;} 17.850152% {background-color: #eee;} 17.900152% {background-color: #eee;} 17.900153% {background-color: #ffcccc;} 17.950153% {background-color: #ffcccc;} 17.950154% {background-color: #eee;} 18.100154% {background-color: #eee;} 18.150154% {background-color: #eee;} 18.150155% {background-color: #ffcccc;} 18.200155% {background-color: #ffcccc;} 18.200156% {background-color: #eee;} 18.350156% {background-color: #eee;} 18.400156% {background-color: #eee;} 18.400157% {background-color: #ffcccc;} 18.450157% {background-color: #ffcccc;} 18.450158% {background-color: #eee;} 18.500158% {background-color: #eee;} 18.500159% {background-color: #ffcccc;} 18.650159% {background-color: #ffcccc;} 18.650160% {background-color: #eee;} 18.700160% {background-color: #eee;} 18.700161% {background-color: #ffcccc;} 18.850161% {background-color: #ffcccc;} 18.850162% {background-color: #eee;} 18.900162% {background-color: #eee;} 18.900163% {background-color: #ffcccc;} 18.950163% {background-color: #ffcccc;} 18.950164% {background-color: #eee;} 19.300164% {background-color: #eee;} 19.350164% {background-color: #eee;} 19.350165% {background-color: #ffcccc;} 19.400165% {background-color: #ffcccc;} 19.400166% {background-color: #eee;} 19.450166% {background-color: #eee;} 19.450167% {background-color: #ffcccc;} 19.500167% {background-color: #ffcccc;} 19.500168% {background-color: #eee;} 19.550168% {background-color: #eee;} 19.550169% {background-color: #ffcccc;} 19.600169% {background-color: #ffcccc;} 19.600170% {background-color: #eee;} 19.750170% {background-color: #eee;} 19.800170% {background-color: #eee;} 19.800171% {background-color: #ffcccc;} 19.850171% {background-color: #ffcccc;} 19.850172% {background-color: #eee;} 20.000172% {background-color: #eee;} 20.050172% {background-color: #eee;} 20.050173% {background-color: #ffcccc;} 20.100173% {background-color: #ffcccc;} 20.100174% {background-color: #eee;} 20.250174% {background-color: #eee;} 20.300174% {background-color: #eee;} 20.300175% {background-color: #ffcccc;} 20.350175% {background-color: #ffcccc;} 20.350176% {background-color: #eee;} 20.400176% {background-color: #eee;} 20.400177% {background-color: #ffcccc;} 20.550177% {background-color: #ffcccc;} 20.550178% {background-color: #eee;} 20.600178% {background-color: #eee;} 20.600179% {background-color: #ffcccc;} 20.750179% {background-color: #ffcccc;} 20.750180% {background-color: #eee;} 20.800180% {background-color: #eee;} 20.800181% {background-color: #ffcccc;} 20.850181% {background-color: #ffcccc;} 20.850182% {background-color: #eee;} 21.200182% {background-color: #eee;} 21.250182% {background-color: #eee;} 21.250183% {background-color: #ffcccc;} 21.300183% {background-color: #ffcccc;} 21.300184% {background-color: #eee;} 21.350184% {background-color: #eee;} 21.350185% {background-color: #ffcccc;} 21.400185% {background-color: #ffcccc;} 21.400186% {background-color: #eee;} 21.450186% {background-color: #eee;} 21.450187% {background-color: #ffcccc;} 21.500187% {background-color: #ffcccc;} 21.500188% {background-color: #eee;} 21.650188% {background-color: #eee;} 21.700188% {background-color: #eee;} 21.700189% {background-color: #ffcccc;} 21.750189% {background-color: #ffcccc;} 21.750190% {background-color: #eee;} 21.900190% {background-color: #eee;} 21.950190% {background-color: #eee;} 21.950191% {background-color: #ffcccc;} 22.000191% {background-color: #ffcccc;} 22.000192% {background-color: #eee;} 22.150192% {background-color: #eee;} 22.200192% {background-color: #eee;} 22.200193% {background-color: #ffcccc;} 22.250193% {background-color: #ffcccc;} 22.250194% {background-color: #eee;} 22.300194% {background-color: #eee;} 22.300195% {background-color: #ffcccc;} 22.450195% {background-color: #ffcccc;} 22.450196% {background-color: #eee;} 22.500196% {background-color: #eee;} 22.500197% {background-color: #ffcccc;} 22.650197% {background-color: #ffcccc;} 22.650198% {background-color: #eee;} 22.700198% {background-color: #eee;} 22.700199% {background-color: #ffcccc;} 22.750199% {background-color: #ffcccc;} 22.750200% {background-color: #eee;} 23.100200% {background-color: #eee;} 23.150200% {background-color: #eee;} 23.150201% {background-color: #ffcccc;} 23.200201% {background-color: #ffcccc;} 23.200202% {background-color: #eee;} 23.250202% {background-color: #eee;} 23.250203% {background-color: #ffcccc;} 23.300203% {background-color: #ffcccc;} 23.300204% {background-color: #eee;} 23.350204% {background-color: #eee;} 23.350205% {background-color: #ffcccc;} 23.400205% {background-color: #ffcccc;} 23.400206% {background-color: #eee;} 23.550206% {background-color: #eee;} 23.600206% {background-color: #eee;} 23.600207% {background-color: #ffcccc;} 23.650207% {background-color: #ffcccc;} 23.650208% {background-color: #eee;} 23.800208% {background-color: #eee;} 23.850208% {background-color: #eee;} 23.850209% {background-color: #ffcccc;} 23.900209% {background-color: #ffcccc;} 23.900210% {background-color: #eee;} 24.050210% {background-color: #eee;} 24.100210% {background-color: #eee;} 24.100211% {background-color: #ffcccc;} 24.150211% {background-color: #ffcccc;} 24.150212% {background-color: #eee;} 24.200212% {background-color: #eee;} 24.200213% {background-color: #ffcccc;} 24.350213% {background-color: #ffcccc;} 24.350214% {background-color: #eee;} 24.400214% {background-color: #eee;} 24.400215% {background-color: #ffcccc;} 24.550215% {background-color: #ffcccc;} 24.550216% {background-color: #eee;} 24.600216% {background-color: #eee;} 24.600217% {background-color: #ffcccc;} 24.650217% {background-color: #ffcccc;} 24.650218% {background-color: #eee;} 25.000218% {background-color: #eee;} 25.050218% {background-color: #eee;} 25.050219% {background-color: #ffcccc;} 25.100219% {background-color: #ffcccc;} 25.100220% {background-color: #eee;} 25.150220% {background-color: #eee;} 25.150221% {background-color: #ffcccc;} 25.200221% {background-color: #ffcccc;} 25.200222% {background-color: #eee;} 25.250222% {background-color: #eee;} 25.250223% {background-color: #ffcccc;} 25.300223% {background-color: #ffcccc;} 25.300224% {background-color: #eee;} 25.450224% {background-color: #eee;} 25.500224% {background-color: #eee;} 25.500225% {background-color: #ffcccc;} 25.550225% {background-color: #ffcccc;} 25.550226% {background-color: #eee;} 25.700226% {background-color: #eee;} 25.750226% {background-color: #eee;} 25.750227% {background-color: #ffcccc;} 25.800227% {background-color: #ffcccc;} 25.800228% {background-color: #eee;} 25.950228% {background-color: #eee;} 26.000228% {background-color: #eee;} 26.000229% {background-color: #ffcccc;} 26.050229% {background-color: #ffcccc;} 26.050230% {background-color: #eee;} 26.100230% {background-color: #eee;} 26.100231% {background-color: #ffcccc;} 26.250231% {background-color: #ffcccc;} 26.250232% {background-color: #eee;} 26.300232% {background-color: #eee;} 26.300233% {background-color: #ffcccc;} 26.450233% {background-color: #ffcccc;} 26.450234% {background-color: #eee;} 26.500234% {background-color: #eee;} 26.500235% {background-color: #ffcccc;} 26.550235% {background-color: #ffcccc;} 26.550236% {background-color: #eee;} 26.900236% {background-color: #eee;} 26.950236% {background-color: #eee;} 26.950237% {background-color: #ffcccc;} 27.000237% {background-color: #ffcccc;} 27.000238% {background-color: #eee;} 27.050238% {background-color: #eee;} 27.050239% {background-color: #ffcccc;} 27.100239% {background-color: #ffcccc;} 27.100240% {background-color: #eee;} 27.150240% {background-color: #eee;} 27.150241% {background-color: #ffcccc;} 27.200241% {background-color: #ffcccc;} 27.200242% {background-color: #eee;} 27.350242% {background-color: #eee;} 27.400242% {background-color: #eee;} 27.400243% {background-color: #ffcccc;} 27.450243% {background-color: #ffcccc;} 27.450244% {background-color: #eee;} 27.600244% {background-color: #eee;} 27.650244% {background-color: #eee;} 27.650245% {background-color: #ffcccc;} 27.700245% {background-color: #ffcccc;} 27.700246% {background-color: #eee;} 27.850246% {background-color: #eee;} 27.900246% {background-color: #eee;} 27.900247% {background-color: #ffcccc;} 27.950247% {background-color: #ffcccc;} 27.950248% {background-color: #eee;} 28.000248% {background-color: #eee;} 28.000249% {background-color: #ffcccc;} 28.150249% {background-color: #ffcccc;} 28.150250% {background-color: #eee;} 28.200250% {background-color: #eee;} 28.200251% {background-color: #ffcccc;} 28.350251% {background-color: #ffcccc;} 28.350252% {background-color: #eee;} 28.400252% {background-color: #eee;} 28.400253% {background-color: #ffcccc;} 28.450253% {background-color: #ffcccc;} 28.450254% {background-color: #eee;} 28.800254% {background-color: #eee;} 28.850254% {background-color: #eee;} 28.850255% {background-color: #ffcccc;} 28.900255% {background-color: #ffcccc;} 28.900256% {background-color: #eee;} 28.950256% {background-color: #eee;} 28.950257% {background-color: #ffcccc;} 29.000257% {background-color: #ffcccc;} 29.000258% {background-color: #eee;} 29.050258% {background-color: #eee;} 29.050259% {background-color: #ffcccc;} 29.100259% {background-color: #ffcccc;} 29.100260% {background-color: #eee;} 29.250260% {background-color: #eee;} 29.300260% {background-color: #eee;} 29.300261% {background-color: #ffcccc;} 29.350261% {background-color: #ffcccc;} 29.350262% {background-color: #eee;} 29.500262% {background-color: #eee;} 29.550262% {background-color: #eee;} 29.550263% {background-color: #ffcccc;} 29.600263% {background-color: #ffcccc;} 29.600264% {background-color: #eee;} 29.750264% {background-color: #eee;} 29.800264% {background-color: #eee;} 29.800265% {background-color: #ffcccc;} 29.850265% {background-color: #ffcccc;} 29.850266% {background-color: #eee;} 29.900266% {background-color: #eee;} 29.900267% {background-color: #ffcccc;} 30.050267% {background-color: #ffcccc;} 30.050268% {background-color: #eee;} 30.100268% {background-color: #eee;} 30.100269% {background-color: #ffcccc;} 30.250269% {background-color: #ffcccc;} 30.250270% {background-color: #eee;} 30.300270% {background-color: #eee;} 30.300271% {background-color: #ffcccc;} 30.350271% {background-color: #ffcccc;} 30.350272% {background-color: #eee;} 30.700272% {background-color: #eee;} 30.750272% {background-color: #eee;} 30.750273% {background-color: #ffcccc;} 30.800273% {background-color: #ffcccc;} 30.800274% {background-color: #eee;} 30.850274% {background-color: #eee;} 30.850275% {background-color: #ffcccc;} 30.900275% {background-color: #ffcccc;} 30.900276% {background-color: #eee;} 30.950276% {background-color: #eee;} 30.950277% {background-color: #ffcccc;} 31.000277% {background-color: #ffcccc;} 31.000278% {background-color: #eee;} 31.150278% {background-color: #eee;} 31.200278% {background-color: #eee;} 31.200279% {background-color: #ffcccc;} 31.250279% {background-color: #ffcccc;} 31.250280% {background-color: #eee;} 31.400280% {background-color: #eee;} 31.450280% {background-color: #eee;} 31.450281% {background-color: #ffcccc;} 31.500281% {background-color: #ffcccc;} 31.500282% {background-color: #eee;} 31.650282% {background-color: #eee;} 31.700282% {background-color: #eee;} 31.700283% {background-color: #ffcccc;} 31.750283% {background-color: #ffcccc;} 31.750284% {background-color: #eee;} 31.800284% {background-color: #eee;} 31.800285% {background-color: #ffcccc;} 31.950285% {background-color: #ffcccc;} 31.950286% {background-color: #eee;} 32.000286% {background-color: #eee;} 32.000287% {background-color: #ffcccc;} 32.150287% {background-color: #ffcccc;} 32.150288% {background-color: #eee;} 32.200288% {background-color: #eee;} 32.200289% {background-color: #ffcccc;} 32.250289% {background-color: #ffcccc;} 32.250290% {background-color: #eee;} 32.600290% {background-color: #eee;} 32.650290% {background-color: #eee;} 32.650291% {background-color: #ffcccc;} 32.700291% {background-color: #ffcccc;} 32.700292% {background-color: #eee;} 32.750292% {background-color: #eee;} 32.750293% {background-color: #ffcccc;} 32.800293% {background-color: #ffcccc;} 32.800294% {background-color: #eee;} 32.850294% {background-color: #eee;} 32.850295% {background-color: #ffcccc;} 32.900295% {background-color: #ffcccc;} 32.900296% {background-color: #eee;} 33.050296% {background-color: #eee;} 33.100296% {background-color: #eee;} 33.100297% {background-color: #ffcccc;} 33.150297% {background-color: #ffcccc;} 33.150298% {background-color: #eee;} 33.300298% {background-color: #eee;} 33.350298% {background-color: #eee;} 33.350299% {background-color: #ffcccc;} 33.400299% {background-color: #ffcccc;} 33.400300% {background-color: #eee;} 33.550300% {background-color: #eee;} 33.600300% {background-color: #eee;} 33.600301% {background-color: #ffcccc;} 33.650301% {background-color: #ffcccc;} 33.650302% {background-color: #eee;} 33.700302% {background-color: #eee;} 33.700303% {background-color: #ffcccc;} 33.850303% {background-color: #ffcccc;} 33.850304% {background-color: #eee;} 33.900304% {background-color: #eee;} 33.900305% {background-color: #ffcccc;} 34.050305% {background-color: #ffcccc;} 34.050306% {background-color: #eee;} 34.100306% {background-color: #eee;} 34.100307% {background-color: #ffcccc;} 34.150307% {background-color: #ffcccc;} 34.150308% {background-color: #eee;} 34.500308% {background-color: #eee;} 34.550308% {background-color: #eee;} 34.550309% {background-color: #ffcccc;} 34.600309% {background-color: #ffcccc;} 34.600310% {background-color: #eee;} 34.650310% {background-color: #eee;} 34.650311% {background-color: #ffcccc;} 34.700311% {background-color: #ffcccc;} 34.700312% {background-color: #eee;} 34.750312% {background-color: #eee;} 34.750313% {background-color: #ffcccc;} 34.800313% {background-color: #ffcccc;} 34.800314% {background-color: #eee;} 34.950314% {background-color: #eee;} 35.000314% {background-color: #eee;} 35.000315% {background-color: #ffcccc;} 35.050315% {background-color: #ffcccc;} 35.050316% {background-color: #eee;} 35.200316% {background-color: #eee;} 35.250316% {background-color: #eee;} 35.250317% {background-color: #ffcccc;} 35.300317% {background-color: #ffcccc;} 35.300318% {background-color: #eee;} 35.450318% {background-color: #eee;} 35.500318% {background-color: #eee;} 35.500319% {background-color: #ffcccc;} 35.550319% {background-color: #ffcccc;} 35.550320% {background-color: #eee;} 35.600320% {background-color: #eee;} 35.600321% {background-color: #ffcccc;} 35.750321% {background-color: #ffcccc;} 35.750322% {background-color: #eee;} 35.800322% {background-color: #eee;} 35.800323% {background-color: #ffcccc;} 35.950323% {background-color: #ffcccc;} 35.950324% {background-color: #eee;} 36.000324% {background-color: #eee;} 36.000325% {background-color: #ffcccc;} 36.050325% {background-color: #ffcccc;} 36.050326% {background-color: #eee;} 36.400326% {background-color: #eee;} 36.450326% {background-color: #eee;} 36.450327% {background-color: #ffcccc;} 36.500327% {background-color: #ffcccc;} 36.500328% {background-color: #eee;} 36.550328% {background-color: #eee;} 36.550329% {background-color: #ffcccc;} 36.600329% {background-color: #ffcccc;} 36.600330% {background-color: #eee;} 36.650330% {background-color: #eee;} 36.650331% {background-color: #ffcccc;} 36.700331% {background-color: #ffcccc;} 36.700332% {background-color: #eee;} 36.850332% {background-color: #eee;} 36.900332% {background-color: #eee;} 36.900333% {background-color: #ffcccc;} 36.950333% {background-color: #ffcccc;} 36.950334% {background-color: #eee;} 37.100334% {background-color: #eee;} 37.150334% {background-color: #eee;} 37.150335% {background-color: #ffcccc;} 37.200335% {background-color: #ffcccc;} 37.200336% {background-color: #eee;} 37.350336% {background-color: #eee;} 37.400336% {background-color: #eee;} 37.400337% {background-color: #ffcccc;} 37.450337% {background-color: #ffcccc;} 37.450338% {background-color: #eee;} 37.500338% {background-color: #eee;} 37.500339% {background-color: #ffcccc;} 37.650339% {background-color: #ffcccc;} 37.650340% {background-color: #eee;} 37.700340% {background-color: #eee;} 37.700341% {background-color: #ffcccc;} 37.850341% {background-color: #ffcccc;} 37.850342% {background-color: #eee;} 37.900342% {background-color: #eee;} 37.900343% {background-color: #ffcccc;} 37.950343% {background-color: #ffcccc;} 37.950344% {background-color: #eee;} 38.300344% {background-color: #eee;} 38.350344% {background-color: #eee;} 38.350345% {background-color: #ffcccc;} 38.400345% {background-color: #ffcccc;} 38.400346% {background-color: #eee;} 38.450346% {background-color: #eee;} 38.450347% {background-color: #ffcccc;} 38.500347% {background-color: #ffcccc;} 38.500348% {background-color: #eee;} 38.550348% {background-color: #eee;} 38.550349% {background-color: #ffcccc;} 38.600349% {background-color: #ffcccc;} 38.600350% {background-color: #eee;} 38.750350% {background-color: #eee;} 38.800350% {background-color: #eee;} 38.800351% {background-color: #ffcccc;} 38.850351% {background-color: #ffcccc;} 38.850352% {background-color: #eee;} 39.000352% {background-color: #eee;} 39.050352% {background-color: #eee;} 39.050353% {background-color: #ffcccc;} 39.100353% {background-color: #ffcccc;} 39.100354% {background-color: #eee;} 39.250354% {background-color: #eee;} 39.300354% {background-color: #eee;} 39.300355% {background-color: #ffcccc;} 39.350355% {background-color: #ffcccc;} 39.350356% {background-color: #eee;} 39.400356% {background-color: #eee;} 39.400357% {background-color: #ffcccc;} 39.550357% {background-color: #ffcccc;} 39.550358% {background-color: #eee;} 39.600358% {background-color: #eee;} 39.600359% {background-color: #ffcccc;} 39.750359% {background-color: #ffcccc;} 39.750360% {background-color: #eee;} 39.800360% {background-color: #eee;} 39.800361% {background-color: #ffcccc;} 39.850361% {background-color: #ffcccc;} 39.850362% {background-color: #eee;} 40.200362% {background-color: #eee;} 40.250362% {background-color: #eee;} 40.250363% {background-color: #ffcccc;} 40.300363% {background-color: #ffcccc;} 40.300364% {background-color: #eee;} 40.350364% {background-color: #eee;} 40.350365% {background-color: #ffcccc;} 40.400365% {background-color: #ffcccc;} 40.400366% {background-color: #eee;} 40.450366% {background-color: #eee;} 40.450367% {background-color: #ffcccc;} 40.500367% {background-color: #ffcccc;} 40.500368% {background-color: #eee;} 40.650368% {background-color: #eee;} 40.700368% {background-color: #eee;} 40.700369% {background-color: #ffcccc;} 40.750369% {background-color: #ffcccc;} 40.750370% {background-color: #eee;} 40.900370% {background-color: #eee;} 40.950370% {background-color: #eee;} 40.950371% {background-color: #ffcccc;} 41.000371% {background-color: #ffcccc;} 41.000372% {background-color: #eee;} 41.150372% {background-color: #eee;} 41.200372% {background-color: #eee;} 41.200373% {background-color: #ffcccc;} 41.250373% {background-color: #ffcccc;} 41.250374% {background-color: #eee;} 41.300374% {background-color: #eee;} 41.300375% {background-color: #ffcccc;} 41.450375% {background-color: #ffcccc;} 41.450376% {background-color: #eee;} 41.500376% {background-color: #eee;} 41.500377% {background-color: #ffcccc;} 41.650377% {background-color: #ffcccc;} 41.650378% {background-color: #eee;} 41.700378% {background-color: #eee;} 41.700379% {background-color: #ffcccc;} 41.750379% {background-color: #ffcccc;} 41.750380% {background-color: #eee;} 42.100380% {background-color: #eee;} 42.150380% {background-color: #eee;} 42.150381% {background-color: #ffcccc;} 42.200381% {background-color: #ffcccc;} 42.200382% {background-color: #eee;} 42.250382% {background-color: #eee;} 42.250383% {background-color: #ffcccc;} 42.300383% {background-color: #ffcccc;} 42.300384% {background-color: #eee;} 42.350384% {background-color: #eee;} 42.350385% {background-color: #ffcccc;} 42.400385% {background-color: #ffcccc;} 42.400386% {background-color: #eee;} 42.550386% {background-color: #eee;} 42.600386% {background-color: #eee;} 42.600387% {background-color: #ffcccc;} 42.650387% {background-color: #ffcccc;} 42.650388% {background-color: #eee;} 42.800388% {background-color: #eee;} 42.850388% {background-color: #eee;} 42.850389% {background-color: #ffcccc;} 42.900389% {background-color: #ffcccc;} 42.900390% {background-color: #eee;} 43.050390% {background-color: #eee;} 43.100390% {background-color: #eee;} 43.100391% {background-color: #ffcccc;} 43.150391% {background-color: #ffcccc;} 43.150392% {background-color: #eee;} 43.200392% {background-color: #eee;} 43.200393% {background-color: #ffcccc;} 43.350393% {background-color: #ffcccc;} 43.350394% {background-color: #eee;} 43.400394% {background-color: #eee;} 43.400395% {background-color: #ffcccc;} 43.550395% {background-color: #ffcccc;} 43.550396% {background-color: #eee;} 43.600396% {background-color: #eee;} 43.600397% {background-color: #ffcccc;} 43.650397% {background-color: #ffcccc;} 43.650398% {background-color: #eee;} 44.000398% {background-color: #eee;} 44.050398% {background-color: #eee;} 44.050399% {background-color: #ffcccc;} 44.100399% {background-color: #ffcccc;} 44.100400% {background-color: #eee;} 44.150400% {background-color: #eee;} 44.150401% {background-color: #ffcccc;} 44.200401% {background-color: #ffcccc;} 44.200402% {background-color: #eee;} 44.250402% {background-color: #eee;} 44.250403% {background-color: #ffcccc;} 44.300403% {background-color: #ffcccc;} 44.300404% {background-color: #eee;} 44.450404% {background-color: #eee;} 44.500404% {background-color: #eee;} 44.500405% {background-color: #ffcccc;} 44.550405% {background-color: #ffcccc;} 44.550406% {background-color: #eee;} 44.700406% {background-color: #eee;} 44.750406% {background-color: #eee;} 44.750407% {background-color: #ffcccc;} 44.800407% {background-color: #ffcccc;} 44.800408% {background-color: #eee;} 44.950408% {background-color: #eee;} 45.000408% {background-color: #eee;} 45.000409% {background-color: #ffcccc;} 45.050409% {background-color: #ffcccc;} 45.050410% {background-color: #eee;} 45.100410% {background-color: #eee;} 45.100411% {background-color: #ffcccc;} 45.250411% {background-color: #ffcccc;} 45.250412% {background-color: #eee;} 45.300412% {background-color: #eee;} 45.300413% {background-color: #ffcccc;} 45.450413% {background-color: #ffcccc;} 45.450414% {background-color: #eee;} 45.500414% {background-color: #eee;} 45.500415% {background-color: #ffcccc;} 45.550415% {background-color: #ffcccc;} 45.550416% {background-color: #eee;} 45.900416% {background-color: #eee;} 45.950416% {background-color: #eee;} 45.950417% {background-color: #ffcccc;} 46.000417% {background-color: #ffcccc;} 46.000418% {background-color: #eee;} 46.050418% {background-color: #eee;} 46.050419% {background-color: #ffcccc;} 46.100419% {background-color: #ffcccc;} 46.100420% {background-color: #eee;} 46.150420% {background-color: #eee;} 46.150421% {background-color: #ffcccc;} 46.200421% {background-color: #ffcccc;} 46.200422% {background-color: #eee;} 46.350422% {background-color: #eee;} 46.400422% {background-color: #eee;} 46.400423% {background-color: #ffcccc;} 46.450423% {background-color: #ffcccc;} 46.450424% {background-color: #eee;} 46.600424% {background-color: #eee;} 46.650424% {background-color: #eee;} 46.650425% {background-color: #ffcccc;} 46.700425% {background-color: #ffcccc;} 46.700426% {background-color: #eee;} 46.850426% {background-color: #eee;} 46.900426% {background-color: #eee;} 46.900427% {background-color: #ffcccc;} 46.950427% {background-color: #ffcccc;} 46.950428% {background-color: #eee;} 47.000428% {background-color: #eee;} 47.000429% {background-color: #ffcccc;} 47.150429% {background-color: #ffcccc;} 47.150430% {background-color: #eee;} 47.200430% {background-color: #eee;} 47.200431% {background-color: #ffcccc;} 47.350431% {background-color: #ffcccc;} 47.350432% {background-color: #eee;} 47.400432% {background-color: #eee;} 47.400433% {background-color: #ffcccc;} 47.450433% {background-color: #ffcccc;} 47.450434% {background-color: #eee;} 47.800434% {background-color: #eee;} 47.850434% {background-color: #eee;} 47.850435% {background-color: #ffcccc;} 47.900435% {background-color: #ffcccc;} 47.900436% {background-color: #eee;} 47.950436% {background-color: #eee;} 47.950437% {background-color: #ffcccc;} 48.000437% {background-color: #ffcccc;} 48.000438% {background-color: #eee;} 48.050438% {background-color: #eee;} 48.050439% {background-color: #ffcccc;} 48.100439% {background-color: #ffcccc;} 48.100440% {background-color: #eee;} 48.250440% {background-color: #eee;} 48.300440% {background-color: #eee;} 48.300441% {background-color: #ffcccc;} 48.350441% {background-color: #ffcccc;} 48.350442% {background-color: #eee;} 48.500442% {background-color: #eee;} 48.550442% {background-color: #eee;} 48.550443% {background-color: #ffcccc;} 48.600443% {background-color: #ffcccc;} 48.600444% {background-color: #eee;} 48.750444% {background-color: #eee;} 48.800444% {background-color: #eee;} 48.800445% {background-color: #ffcccc;} 48.850445% {background-color: #ffcccc;} 48.850446% {background-color: #eee;} 48.900446% {background-color: #eee;} 48.900447% {background-color: #ffcccc;} 49.050447% {background-color: #ffcccc;} 49.050448% {background-color: #eee;} 49.100448% {background-color: #eee;} 49.100449% {background-color: #ffcccc;} 49.250449% {background-color: #ffcccc;} 49.250450% {background-color: #eee;} 49.300450% {background-color: #eee;} 49.300451% {background-color: #ffcccc;} 49.350451% {background-color: #ffcccc;} 49.350452% {background-color: #eee;} 49.700452% {background-color: #eee;} 49.750452% {background-color: #eee;} 49.750453% {background-color: #ffcccc;} 49.800453% {background-color: #ffcccc;} 49.800454% {background-color: #eee;} 49.850454% {background-color: #eee;} 49.850455% {background-color: #ffcccc;} 49.900455% {background-color: #ffcccc;} 49.900456% {background-color: #eee;} 49.950456% {background-color: #eee;} 49.950457% {background-color: #ffcccc;} 50.000457% {background-color: #ffcccc;} 50.000458% {background-color: #eee;} 50.150458% {background-color: #eee;} 50.200458% {background-color: #eee;} 50.200459% {background-color: #ffcccc;} 50.250459% {background-color: #ffcccc;} 50.250460% {background-color: #eee;} 50.400460% {background-color: #eee;} 50.450460% {background-color: #eee;} 50.450461% {background-color: #ffcccc;} 50.500461% {background-color: #ffcccc;} 50.500462% {background-color: #eee;} 50.650462% {background-color: #eee;} 50.700462% {background-color: #eee;} 50.700463% {background-color: #ffcccc;} 50.750463% {background-color: #ffcccc;} 50.750464% {background-color: #eee;} 50.800464% {background-color: #eee;} 50.800465% {background-color: #ffcccc;} 50.950465% {background-color: #ffcccc;} 50.950466% {background-color: #eee;} 51.000466% {background-color: #eee;} 51.000467% {background-color: #ffcccc;} 51.150467% {background-color: #ffcccc;} 51.150468% {background-color: #eee;} 51.200468% {background-color: #eee;} 51.200469% {background-color: #ffcccc;} 51.250469% {background-color: #ffcccc;} 51.250470% {background-color: #eee;} 51.600470% {background-color: #eee;} 51.650470% {background-color: #eee;} 51.650471% {background-color: #ffcccc;} 51.700471% {background-color: #ffcccc;} 51.700472% {background-color: #eee;} 51.750472% {background-color: #eee;} 51.750473% {background-color: #ffcccc;} 51.800473% {background-color: #ffcccc;} 51.800474% {background-color: #eee;} 51.850474% {background-color: #eee;} 51.850475% {background-color: #ffcccc;} 51.900475% {background-color: #ffcccc;} 51.900476% {background-color: #eee;} 52.050476% {background-color: #eee;} 52.100476% {background-color: #eee;} 52.100477% {background-color: #ffcccc;} 52.150477% {background-color: #ffcccc;} 52.150478% {background-color: #eee;} 52.300478% {background-color: #eee;} 52.350478% {background-color: #eee;} 52.350479% {background-color: #ffcccc;} 52.400479% {background-color: #ffcccc;} 52.400480% {background-color: #eee;} 52.550480% {background-color: #eee;} 52.600480% {background-color: #eee;} 52.600481% {background-color: #ffcccc;} 52.650481% {background-color: #ffcccc;} 52.650482% {background-color: #eee;} 52.700482% {background-color: #eee;} 52.700483% {background-color: #ffcccc;} 52.850483% {background-color: #ffcccc;} 52.850484% {background-color: #eee;} 52.900484% {background-color: #eee;} 52.900485% {background-color: #ffcccc;} 53.050485% {background-color: #ffcccc;} 53.050486% {background-color: #eee;} 53.100486% {background-color: #eee;} 53.100487% {background-color: #ffcccc;} 53.150487% {background-color: #ffcccc;} 53.150488% {background-color: #eee;} 53.500488% {background-color: #eee;} 53.550488% {background-color: #eee;} 53.550489% {background-color: #ffcccc;} 53.600489% {background-color: #ffcccc;} 53.600490% {background-color: #eee;} 53.650490% {background-color: #eee;} 53.650491% {background-color: #ffcccc;} 53.700491% {background-color: #ffcccc;} 53.700492% {background-color: #eee;} 53.750492% {background-color: #eee;} 53.750493% {background-color: #ffcccc;} 53.800493% {background-color: #ffcccc;} 53.800494% {background-color: #eee;} 53.950494% {background-color: #eee;} 54.000494% {background-color: #eee;} 54.000495% {background-color: #ffcccc;} 54.050495% {background-color: #ffcccc;} 54.050496% {background-color: #eee;} 54.200496% {background-color: #eee;} 54.250496% {background-color: #eee;} 54.250497% {background-color: #ffcccc;} 54.300497% {background-color: #ffcccc;} 54.300498% {background-color: #eee;} 54.450498% {background-color: #eee;} 54.500498% {background-color: #eee;} 54.500499% {background-color: #ffcccc;} 54.550499% {background-color: #ffcccc;} 54.550500% {background-color: #eee;} 54.600500% {background-color: #eee;} 54.600501% {background-color: #ffcccc;} 54.750501% {background-color: #ffcccc;} 54.750502% {background-color: #eee;} 54.800502% {background-color: #eee;} 54.800503% {background-color: #ffcccc;} 54.950503% {background-color: #ffcccc;} 54.950504% {background-color: #eee;} 55.000504% {background-color: #eee;} 55.000505% {background-color: #ffcccc;} 55.050505% {background-color: #ffcccc;} 55.050506% {background-color: #eee;} 55.400506% {background-color: #eee;} 55.450506% {background-color: #eee;} 55.450507% {background-color: #ffcccc;} 55.500507% {background-color: #ffcccc;} 55.500508% {background-color: #eee;} 55.550508% {background-color: #eee;} 55.550509% {background-color: #ffcccc;} 55.600509% {background-color: #ffcccc;} 55.600510% {background-color: #eee;} 55.650510% {background-color: #eee;} 55.650511% {background-color: #ffcccc;} 55.700511% {background-color: #ffcccc;} 55.700512% {background-color: #eee;} 55.850512% {background-color: #eee;} 55.900512% {background-color: #eee;} 55.900513% {background-color: #ffcccc;} 55.950513% {background-color: #ffcccc;} 55.950514% {background-color: #eee;} 56.100514% {background-color: #eee;} 56.150514% {background-color: #eee;} 56.150515% {background-color: #ffcccc;} 56.200515% {background-color: #ffcccc;} 56.200516% {background-color: #eee;} 56.350516% {background-color: #eee;} 56.400516% {background-color: #eee;} 56.400517% {background-color: #ffcccc;} 56.450517% {background-color: #ffcccc;} 56.450518% {background-color: #eee;} 56.500518% {background-color: #eee;} 56.500519% {background-color: #ffcccc;} 56.650519% {background-color: #ffcccc;} 56.650520% {background-color: #eee;} 56.700520% {background-color: #eee;} 56.700521% {background-color: #ffcccc;} 56.850521% {background-color: #ffcccc;} 56.850522% {background-color: #eee;} 56.900522% {background-color: #eee;} 56.900523% {background-color: #ffcccc;} 56.950523% {background-color: #ffcccc;} 56.950524% {background-color: #eee;} 57.300524% {background-color: #eee;} 57.350524% {background-color: #eee;} 57.350525% {background-color: #ffcccc;} 57.400525% {background-color: #ffcccc;} 57.400526% {background-color: #eee;} 57.450526% {background-color: #eee;} 57.450527% {background-color: #ffcccc;} 57.500527% {background-color: #ffcccc;} 57.500528% {background-color: #eee;} 57.550528% {background-color: #eee;} 57.550529% {background-color: #ffcccc;} 57.600529% {background-color: #ffcccc;} 57.600530% {background-color: #eee;} 57.750530% {background-color: #eee;} 57.800530% {background-color: #eee;} 57.800531% {background-color: #ffcccc;} 57.850531% {background-color: #ffcccc;} 57.850532% {background-color: #eee;} 58.000532% {background-color: #eee;} 58.050532% {background-color: #eee;} 58.050533% {background-color: #ffcccc;} 58.100533% {background-color: #ffcccc;} 58.100534% {background-color: #eee;} 58.250534% {background-color: #eee;} 58.300534% {background-color: #eee;} 58.300535% {background-color: #ffcccc;} 58.350535% {background-color: #ffcccc;} 58.350536% {background-color: #eee;} 58.400536% {background-color: #eee;} 58.400537% {background-color: #ffcccc;} 58.550537% {background-color: #ffcccc;} 58.550538% {background-color: #eee;} 58.600538% {background-color: #eee;} 58.600539% {background-color: #ffcccc;} 58.750539% {background-color: #ffcccc;} 58.750540% {background-color: #eee;} 58.800540% {background-color: #eee;} 58.800541% {background-color: #ffcccc;} 58.850541% {background-color: #ffcccc;} 58.850542% {background-color: #eee;} 59.200542% {background-color: #eee;} 59.250542% {background-color: #eee;} 59.250543% {background-color: #ffcccc;} 59.300543% {background-color: #ffcccc;} 59.300544% {background-color: #eee;} 59.350544% {background-color: #eee;} 59.350545% {background-color: #ffcccc;} 59.400545% {background-color: #ffcccc;} 59.400546% {background-color: #eee;} 59.450546% {background-color: #eee;} 59.450547% {background-color: #ffcccc;} 59.500547% {background-color: #ffcccc;} 59.500548% {background-color: #eee;} 59.650548% {background-color: #eee;} 59.700548% {background-color: #eee;} 59.700549% {background-color: #ffcccc;} 59.750549% {background-color: #ffcccc;} 59.750550% {background-color: #eee;} 59.900550% {background-color: #eee;} 59.950550% {background-color: #eee;} 59.950551% {background-color: #ffcccc;} 60.000551% {background-color: #ffcccc;} 60.000552% {background-color: #eee;} 60.150552% {background-color: #eee;} 60.200552% {background-color: #eee;} 60.200553% {background-color: #ffcccc;} 60.250553% {background-color: #ffcccc;} 60.250554% {background-color: #eee;} 60.300554% {background-color: #eee;} 60.300555% {background-color: #ffcccc;} 60.450555% {background-color: #ffcccc;} 60.450556% {background-color: #eee;} 60.500556% {background-color: #eee;} 60.500557% {background-color: #ffcccc;} 60.650557% {background-color: #ffcccc;} 60.650558% {background-color: #eee;} 60.700558% {background-color: #eee;} 60.700559% {background-color: #ffcccc;} 60.750559% {background-color: #ffcccc;} 60.750560% {background-color: #eee;} 61.100560% {background-color: #eee;} 61.150560% {background-color: #eee;} 61.150561% {background-color: #ffcccc;} 61.200561% {background-color: #ffcccc;} 61.200562% {background-color: #eee;} 61.250562% {background-color: #eee;} 61.250563% {background-color: #ffcccc;} 61.300563% {background-color: #ffcccc;} 61.300564% {background-color: #eee;} 61.350564% {background-color: #eee;} 61.350565% {background-color: #ffcccc;} 61.400565% {background-color: #ffcccc;} 61.400566% {background-color: #eee;} 61.550566% {background-color: #eee;} 61.600566% {background-color: #eee;} 61.600567% {background-color: #ffcccc;} 61.650567% {background-color: #ffcccc;} 61.650568% {background-color: #eee;} 61.800568% {background-color: #eee;} 61.850568% {background-color: #eee;} 61.850569% {background-color: #ffcccc;} 61.900569% {background-color: #ffcccc;} 61.900570% {background-color: #eee;} 62.050570% {background-color: #eee;} 62.100570% {background-color: #eee;} 62.100571% {background-color: #ffcccc;} 62.150571% {background-color: #ffcccc;} 62.150572% {background-color: #eee;} 62.200572% {background-color: #eee;} 62.200573% {background-color: #ffcccc;} 62.350573% {background-color: #ffcccc;} 62.350574% {background-color: #eee;} 62.400574% {background-color: #eee;} 62.400575% {background-color: #ffcccc;} 62.550575% {background-color: #ffcccc;} 62.550576% {background-color: #eee;} 62.600576% {background-color: #eee;} 62.600577% {background-color: #ffcccc;} 62.650577% {background-color: #ffcccc;} 62.650578% {background-color: #eee;} 63.000578% {background-color: #eee;} 63.050578% {background-color: #eee;} 63.050579% {background-color: #ffcccc;} 63.100579% {background-color: #ffcccc;} 63.100580% {background-color: #eee;} 63.150580% {background-color: #eee;} 63.150581% {background-color: #ffcccc;} 63.200581% {background-color: #ffcccc;} 63.200582% {background-color: #eee;} 63.250582% {background-color: #eee;} 63.250583% {background-color: #ffcccc;} 63.300583% {background-color: #ffcccc;} 63.300584% {background-color: #eee;} 63.450584% {background-color: #eee;} 63.500584% {background-color: #eee;} 63.500585% {background-color: #ffcccc;} 63.550585% {background-color: #ffcccc;} 63.550586% {background-color: #eee;} 63.700586% {background-color: #eee;} 63.750586% {background-color: #eee;} 63.750587% {background-color: #ffcccc;} 63.800587% {background-color: #ffcccc;} 63.800588% {background-color: #eee;} 63.950588% {background-color: #eee;} 64.000588% {background-color: #eee;} 64.000589% {background-color: #ffcccc;} 64.050589% {background-color: #ffcccc;} 64.050590% {background-color: #eee;} 64.100590% {background-color: #eee;} 64.100591% {background-color: #ffcccc;} 64.250591% {background-color: #ffcccc;} 64.250592% {background-color: #eee;} 64.300592% {background-color: #eee;} 64.300593% {background-color: #ffcccc;} 64.450593% {background-color: #ffcccc;} 64.450594% {background-color: #eee;} 64.500594% {background-color: #eee;} 64.500595% {background-color: #ffcccc;} 64.550595% {background-color: #ffcccc;} 64.550596% {background-color: #eee;} 64.900596% {background-color: #eee;} 64.950596% {background-color: #eee;} 64.950597% {background-color: #ffcccc;} 65.000597% {background-color: #ffcccc;} 65.000598% {background-color: #eee;} 65.050598% {background-color: #eee;} 65.050599% {background-color: #ffcccc;} 65.100599% {background-color: #ffcccc;} 65.100600% {background-color: #eee;} 65.150600% {background-color: #eee;} 65.150601% {background-color: #ffcccc;} 65.200601% {background-color: #ffcccc;} 65.200602% {background-color: #eee;} 65.350602% {background-color: #eee;} 65.400602% {background-color: #eee;} 65.400603% {background-color: #ffcccc;} 65.450603% {background-color: #ffcccc;} 65.450604% {background-color: #eee;} 65.600604% {background-color: #eee;} 65.650604% {background-color: #eee;} 65.650605% {background-color: #ffcccc;} 65.700605% {background-color: #ffcccc;} 65.700606% {background-color: #eee;} 65.850606% {background-color: #eee;} 65.900606% {background-color: #eee;} 65.900607% {background-color: #ffcccc;} 65.950607% {background-color: #ffcccc;} 65.950608% {background-color: #eee;} 66.000608% {background-color: #eee;} 66.000609% {background-color: #ffcccc;} 66.150609% {background-color: #ffcccc;} 66.150610% {background-color: #eee;} 66.200610% {background-color: #eee;} 66.200611% {background-color: #ffcccc;} 66.350611% {background-color: #ffcccc;} 66.350612% {background-color: #eee;} 66.400612% {background-color: #eee;} 66.400613% {background-color: #ffcccc;} 66.450613% {background-color: #ffcccc;} 66.450614% {background-color: #eee;} 66.800614% {background-color: #eee;} 66.850614% {background-color: #eee;} 66.850615% {background-color: #ffcccc;} 66.900615% {background-color: #ffcccc;} 66.900616% {background-color: #eee;} 66.950616% {background-color: #eee;} 66.950617% {background-color: #ffcccc;} 67.000617% {background-color: #ffcccc;} 67.000618% {background-color: #eee;} 67.050618% {background-color: #eee;} 67.050619% {background-color: #ffcccc;} 67.100619% {background-color: #ffcccc;} 67.100620% {background-color: #eee;} 67.250620% {background-color: #eee;} 67.300620% {background-color: #eee;} 67.300621% {background-color: #ffcccc;} 67.350621% {background-color: #ffcccc;} 67.350622% {background-color: #eee;} 67.500622% {background-color: #eee;} 67.550622% {background-color: #eee;} 67.550623% {background-color: #ffcccc;} 67.600623% {background-color: #ffcccc;} 67.600624% {background-color: #eee;} 67.750624% {background-color: #eee;} 67.800624% {background-color: #eee;} 67.800625% {background-color: #ffcccc;} 67.850625% {background-color: #ffcccc;} 67.850626% {background-color: #eee;} 67.900626% {background-color: #eee;} 67.900627% {background-color: #ffcccc;} 68.050627% {background-color: #ffcccc;} 68.050628% {background-color: #eee;} 68.100628% {background-color: #eee;} 68.100629% {background-color: #ffcccc;} 68.250629% {background-color: #ffcccc;} 68.250630% {background-color: #eee;} 68.300630% {background-color: #eee;} 68.300631% {background-color: #ffcccc;} 68.350631% {background-color: #ffcccc;} 68.350632% {background-color: #eee;} 68.700632% {background-color: #eee;} 68.750632% {background-color: #eee;} 68.750633% {background-color: #ffcccc;} 68.800633% {background-color: #ffcccc;} 68.800634% {background-color: #eee;} 68.850634% {background-color: #eee;} 68.850635% {background-color: #ffcccc;} 68.900635% {background-color: #ffcccc;} 68.900636% {background-color: #eee;} 68.950636% {background-color: #eee;} 68.950637% {background-color: #ffcccc;} 69.000637% {background-color: #ffcccc;} 69.000638% {background-color: #eee;} 69.150638% {background-color: #eee;} 69.200638% {background-color: #eee;} 69.200639% {background-color: #ffcccc;} 69.250639% {background-color: #ffcccc;} 69.250640% {background-color: #eee;} 69.400640% {background-color: #eee;} 69.450640% {background-color: #eee;} 69.450641% {background-color: #ffcccc;} 69.500641% {background-color: #ffcccc;} 69.500642% {background-color: #eee;} 69.650642% {background-color: #eee;} 69.700642% {background-color: #eee;} 69.700643% {background-color: #ffcccc;} 69.750643% {background-color: #ffcccc;} 69.750644% {background-color: #eee;} 69.800644% {background-color: #eee;} 69.800645% {background-color: #ffcccc;} 69.950645% {background-color: #ffcccc;} 69.950646% {background-color: #eee;} 70.000646% {background-color: #eee;} 70.000647% {background-color: #ffcccc;} 70.150647% {background-color: #ffcccc;} 70.150648% {background-color: #eee;} 70.200648% {background-color: #eee;} 70.200649% {background-color: #ffcccc;} 70.250649% {background-color: #ffcccc;} 70.250650% {background-color: #eee;} 70.600650% {background-color: #eee;} 70.650650% {background-color: #eee;} 70.650651% {background-color: #ffcccc;} 70.700651% {background-color: #ffcccc;} 70.700652% {background-color: #eee;} 70.750652% {background-color: #eee;} 70.750653% {background-color: #ffcccc;} 70.800653% {background-color: #ffcccc;} 70.800654% {background-color: #eee;} 70.850654% {background-color: #eee;} 70.850655% {background-color: #ffcccc;} 70.900655% {background-color: #ffcccc;} 70.900656% {background-color: #eee;} 71.050656% {background-color: #eee;} 71.100656% {background-color: #eee;} 71.100657% {background-color: #ffcccc;} 71.150657% {background-color: #ffcccc;} 71.150658% {background-color: #eee;} 71.300658% {background-color: #eee;} 71.350658% {background-color: #eee;} 71.350659% {background-color: #ffcccc;} 71.400659% {background-color: #ffcccc;} 71.400660% {background-color: #eee;} 71.550660% {background-color: #eee;} 71.600660% {background-color: #eee;} 71.600661% {background-color: #ffcccc;} 71.650661% {background-color: #ffcccc;} 71.650662% {background-color: #eee;} 71.700662% {background-color: #eee;} 71.700663% {background-color: #ffcccc;} 71.850663% {background-color: #ffcccc;} 71.850664% {background-color: #eee;} 71.900664% {background-color: #eee;} 71.900665% {background-color: #ffcccc;} 72.050665% {background-color: #ffcccc;} 72.050666% {background-color: #eee;} 72.100666% {background-color: #eee;} 72.100667% {background-color: #ffcccc;} 72.150667% {background-color: #ffcccc;} 72.150668% {background-color: #eee;} 72.500668% {background-color: #eee;} 72.550668% {background-color: #eee;} 72.550669% {background-color: #ffcccc;} 72.600669% {background-color: #ffcccc;} 72.600670% {background-color: #eee;} 72.650670% {background-color: #eee;} 72.650671% {background-color: #ffcccc;} 72.700671% {background-color: #ffcccc;} 72.700672% {background-color: #eee;} 72.750672% {background-color: #eee;} 72.750673% {background-color: #ffcccc;} 72.800673% {background-color: #ffcccc;} 72.800674% {background-color: #eee;} 72.950674% {background-color: #eee;} 73.000674% {background-color: #eee;} 73.000675% {background-color: #ffcccc;} 73.050675% {background-color: #ffcccc;} 73.050676% {background-color: #eee;} 73.200676% {background-color: #eee;} 73.250676% {background-color: #eee;} 73.250677% {background-color: #ffcccc;} 73.300677% {background-color: #ffcccc;} 73.300678% {background-color: #eee;} 73.450678% {background-color: #eee;} 73.500678% {background-color: #eee;} 73.500679% {background-color: #ffcccc;} 73.550679% {background-color: #ffcccc;} 73.550680% {background-color: #eee;} 73.600680% {background-color: #eee;} 73.600681% {background-color: #ffcccc;} 73.750681% {background-color: #ffcccc;} 73.750682% {background-color: #eee;} 73.800682% {background-color: #eee;} 73.800683% {background-color: #ffcccc;} 73.950683% {background-color: #ffcccc;} 73.950684% {background-color: #eee;} 74.000684% {background-color: #eee;} 74.000685% {background-color: #ffcccc;} 74.050685% {background-color: #ffcccc;} 74.050686% {background-color: #eee;} 74.400686% {background-color: #eee;} 74.450686% {background-color: #eee;} 74.450687% {background-color: #ffcccc;} 74.500687% {background-color: #ffcccc;} 74.500688% {background-color: #eee;} 74.550688% {background-color: #eee;} 74.550689% {background-color: #ffcccc;} 74.600689% {background-color: #ffcccc;} 74.600690% {background-color: #eee;} 74.650690% {background-color: #eee;} 74.650691% {background-color: #ffcccc;} 74.700691% {background-color: #ffcccc;} 74.700692% {background-color: #eee;} 74.850692% {background-color: #eee;} 74.900692% {background-color: #eee;} 74.900693% {background-color: #ffcccc;} 74.950693% {background-color: #ffcccc;} 74.950694% {background-color: #eee;} 75.100694% {background-color: #eee;} 75.150694% {background-color: #eee;} 75.150695% {background-color: #ffcccc;} 75.200695% {background-color: #ffcccc;} 75.200696% {background-color: #eee;} 75.350696% {background-color: #eee;} 75.400696% {background-color: #eee;} 75.400697% {background-color: #ffcccc;} 75.450697% {background-color: #ffcccc;} 75.450698% {background-color: #eee;} 75.500698% {background-color: #eee;} 75.500699% {background-color: #ffcccc;} 75.650699% {background-color: #ffcccc;} 75.650700% {background-color: #eee;} 75.700700% {background-color: #eee;} 75.700701% {background-color: #ffcccc;} 75.850701% {background-color: #ffcccc;} 75.850702% {background-color: #eee;} 75.900702% {background-color: #eee;} 75.900703% {background-color: #ffcccc;} 75.950703% {background-color: #ffcccc;} 75.950704% {background-color: #eee;} 76.300704% {background-color: #eee;} 76.350704% {background-color: #eee;} 76.350705% {background-color: #ffcccc;} 76.400705% {background-color: #ffcccc;} 76.400706% {background-color: #eee;} 76.450706% {background-color: #eee;} 76.450707% {background-color: #ffcccc;} 76.500707% {background-color: #ffcccc;} 76.500708% {background-color: #eee;} 76.550708% {background-color: #eee;} 76.550709% {background-color: #ffcccc;} 76.600709% {background-color: #ffcccc;} 76.600710% {background-color: #eee;} 76.750710% {background-color: #eee;} 76.800710% {background-color: #eee;} 76.800711% {background-color: #ffcccc;} 76.850711% {background-color: #ffcccc;} 76.850712% {background-color: #eee;} 77.000712% {background-color: #eee;} 77.050712% {background-color: #eee;} 77.050713% {background-color: #ffcccc;} 77.100713% {background-color: #ffcccc;} 77.100714% {background-color: #eee;} 77.250714% {background-color: #eee;} 77.300714% {background-color: #eee;} 77.300715% {background-color: #ffcccc;} 77.350715% {background-color: #ffcccc;} 77.350716% {background-color: #eee;} 77.400716% {background-color: #eee;} 77.400717% {background-color: #ffcccc;} 77.550717% {background-color: #ffcccc;} 77.550718% {background-color: #eee;} 77.600718% {background-color: #eee;} 77.600719% {background-color: #ffcccc;} 77.750719% {background-color: #ffcccc;} 77.750720% {background-color: #eee;} 77.800720% {background-color: #eee;} 77.800721% {background-color: #ffcccc;} 77.850721% {background-color: #ffcccc;} 77.850722% {background-color: #eee;} 78.200722% {background-color: #eee;} 78.250722% {background-color: #eee;} 78.250723% {background-color: #ffcccc;} 78.300723% {background-color: #ffcccc;} 78.300724% {background-color: #eee;} 78.350724% {background-color: #eee;} 78.350725% {background-color: #ffcccc;} 78.400725% {background-color: #ffcccc;} 78.400726% {background-color: #eee;} 78.450726% {background-color: #eee;} 78.450727% {background-color: #ffcccc;} 78.500727% {background-color: #ffcccc;} 78.500728% {background-color: #eee;} 78.650728% {background-color: #eee;} 78.700728% {background-color: #eee;} 78.700729% {background-color: #ffcccc;} 78.750729% {background-color: #ffcccc;} 78.750730% {background-color: #eee;} 78.900730% {background-color: #eee;} 78.950730% {background-color: #eee;} 78.950731% {background-color: #ffcccc;} 79.000731% {background-color: #ffcccc;} 79.000732% {background-color: #eee;} 79.150732% {background-color: #eee;} 79.200732% {background-color: #eee;} 79.200733% {background-color: #ffcccc;} 79.250733% {background-color: #ffcccc;} 79.250734% {background-color: #eee;} 79.300734% {background-color: #eee;} 79.300735% {background-color: #ffcccc;} 79.450735% {background-color: #ffcccc;} 79.450736% {background-color: #eee;} 79.500736% {background-color: #eee;} 79.500737% {background-color: #ffcccc;} 79.650737% {background-color: #ffcccc;} 79.650738% {background-color: #eee;} 79.700738% {background-color: #eee;} 79.700739% {background-color: #ffcccc;} 79.750739% {background-color: #ffcccc;} 79.750740% {background-color: #eee;} 80.100740% {background-color: #eee;} 80.150740% {background-color: #eee;} 80.150741% {background-color: #ffcccc;} 80.200741% {background-color: #ffcccc;} 80.200742% {background-color: #eee;} 80.250742% {background-color: #eee;} 80.250743% {background-color: #ffcccc;} 80.300743% {background-color: #ffcccc;} 80.300744% {background-color: #eee;} 80.350744% {background-color: #eee;} 80.350745% {background-color: #ffcccc;} 80.400745% {background-color: #ffcccc;} 80.400746% {background-color: #eee;} 80.550746% {background-color: #eee;} 80.600746% {background-color: #eee;} 80.600747% {background-color: #ffcccc;} 80.650747% {background-color: #ffcccc;} 80.650748% {background-color: #eee;} 80.800748% {background-color: #eee;} 80.850748% {background-color: #eee;} 80.850749% {background-color: #ffcccc;} 80.900749% {background-color: #ffcccc;} 80.900750% {background-color: #eee;} 81.050750% {background-color: #eee;} 81.100750% {background-color: #eee;} 81.100751% {background-color: #ffcccc;} 81.150751% {background-color: #ffcccc;} 81.150752% {background-color: #eee;} 81.200752% {background-color: #eee;} 81.200753% {background-color: #ffcccc;} 81.350753% {background-color: #ffcccc;} 81.350754% {background-color: #eee;} 81.400754% {background-color: #eee;} 81.400755% {background-color: #ffcccc;} 81.550755% {background-color: #ffcccc;} 81.550756% {background-color: #eee;} 81.600756% {background-color: #eee;} 81.600757% {background-color: #ffcccc;} 81.650757% {background-color: #ffcccc;} 81.650758% {background-color: #eee;} 82.000758% {background-color: #eee;} 82.050758% {background-color: #eee;} 82.050759% {background-color: #ffcccc;} 82.100759% {background-color: #ffcccc;} 82.100760% {background-color: #eee;} 82.150760% {background-color: #eee;} 82.150761% {background-color: #ffcccc;} 82.200761% {background-color: #ffcccc;} 82.200762% {background-color: #eee;} 82.250762% {background-color: #eee;} 82.250763% {background-color: #ffcccc;} 82.300763% {background-color: #ffcccc;} 82.300764% {background-color: #eee;} 82.450764% {background-color: #eee;} 82.500764% {background-color: #eee;} 82.500765% {background-color: #ffcccc;} 82.550765% {background-color: #ffcccc;} 82.550766% {background-color: #eee;} 82.700766% {background-color: #eee;} 82.750766% {background-color: #eee;} 82.750767% {background-color: #ffcccc;} 82.800767% {background-color: #ffcccc;} 82.800768% {background-color: #eee;} 82.950768% {background-color: #eee;} 83.000768% {background-color: #eee;} 83.000769% {background-color: #ffcccc;} 83.050769% {background-color: #ffcccc;} 83.050770% {background-color: #eee;} 83.100770% {background-color: #eee;} 83.100771% {background-color: #ffcccc;} 83.250771% {background-color: #ffcccc;} 83.250772% {background-color: #eee;} 83.300772% {background-color: #eee;} 83.300773% {background-color: #ffcccc;} 83.450773% {background-color: #ffcccc;} 83.450774% {background-color: #eee;} 83.500774% {background-color: #eee;} 83.500775% {background-color: #ffcccc;} 83.550775% {background-color: #ffcccc;} 83.550776% {background-color: #eee;} 83.900776% {background-color: #eee;} 83.950776% {background-color: #eee;} 83.950777% {background-color: #ffcccc;} 84.000777% {background-color: #ffcccc;} 84.000778% {background-color: #eee;} 84.050778% {background-color: #eee;} 84.050779% {background-color: #ffcccc;} 84.100779% {background-color: #ffcccc;} 84.100780% {background-color: #eee;} 84.150780% {background-color: #eee;} 84.150781% {background-color: #ffcccc;} 84.200781% {background-color: #ffcccc;} 84.200782% {background-color: #eee;} 84.350782% {background-color: #eee;} 84.400782% {background-color: #eee;} 84.400783% {background-color: #ffcccc;} 84.450783% {background-color: #ffcccc;} 84.450784% {background-color: #eee;} 84.600784% {background-color: #eee;} 84.650784% {background-color: #eee;} 84.650785% {background-color: #ffcccc;} 84.700785% {background-color: #ffcccc;} 84.700786% {background-color: #eee;} 84.850786% {background-color: #eee;} 84.900786% {background-color: #eee;} 84.900787% {background-color: #ffcccc;} 84.950787% {background-color: #ffcccc;} 84.950788% {background-color: #eee;} 85.000788% {background-color: #eee;} 85.000789% {background-color: #ffcccc;} 85.150789% {background-color: #ffcccc;} 85.150790% {background-color: #eee;} 85.200790% {background-color: #eee;} 85.200791% {background-color: #ffcccc;} 85.350791% {background-color: #ffcccc;} 85.350792% {background-color: #eee;} 85.400792% {background-color: #eee;} 85.400793% {background-color: #ffcccc;} 85.450793% {background-color: #ffcccc;} 85.450794% {background-color: #eee;} 85.800794% {background-color: #eee;} 85.850794% {background-color: #eee;} 85.850795% {background-color: #ffcccc;} 85.900795% {background-color: #ffcccc;} 85.900796% {background-color: #eee;} 85.950796% {background-color: #eee;} 85.950797% {background-color: #ffcccc;} 86.000797% {background-color: #ffcccc;} 86.000798% {background-color: #eee;} 86.050798% {background-color: #eee;} 86.050799% {background-color: #ffcccc;} 86.100799% {background-color: #ffcccc;} 86.100800% {background-color: #eee;} 86.250800% {background-color: #eee;} 86.300800% {background-color: #eee;} 86.300801% {background-color: #ffcccc;} 86.350801% {background-color: #ffcccc;} 86.350802% {background-color: #eee;} 86.500802% {background-color: #eee;} 86.550802% {background-color: #eee;} 86.550803% {background-color: #ffcccc;} 86.600803% {background-color: #ffcccc;} 86.600804% {background-color: #eee;} 86.750804% {background-color: #eee;} 86.800804% {background-color: #eee;} 86.800805% {background-color: #ffcccc;} 86.850805% {background-color: #ffcccc;} 86.850806% {background-color: #eee;} 86.900806% {background-color: #eee;} 86.900807% {background-color: #ffcccc;} 87.050807% {background-color: #ffcccc;} 87.050808% {background-color: #eee;} 87.100808% {background-color: #eee;} 87.100809% {background-color: #ffcccc;} 87.250809% {background-color: #ffcccc;} 87.250810% {background-color: #eee;} 87.300810% {background-color: #eee;} 87.300811% {background-color: #ffcccc;} 87.350811% {background-color: #ffcccc;} 87.350812% {background-color: #eee;} 87.700812% {background-color: #eee;} 87.750812% {background-color: #eee;} 87.750813% {background-color: #ffcccc;} 87.800813% {background-color: #ffcccc;} 87.800814% {background-color: #eee;} 87.850814% {background-color: #eee;} 87.850815% {background-color: #ffcccc;} 87.900815% {background-color: #ffcccc;} 87.900816% {background-color: #eee;} 87.950816% {background-color: #eee;} 87.950817% {background-color: #ffcccc;} 88.000817% {background-color: #ffcccc;} 88.000818% {background-color: #eee;} 88.150818% {background-color: #eee;} 88.200818% {background-color: #eee;} 88.200819% {background-color: #ffcccc;} 88.250819% {background-color: #ffcccc;} 88.250820% {background-color: #eee;} 88.400820% {background-color: #eee;} 88.450820% {background-color: #eee;} 88.450821% {background-color: #ffcccc;} 88.500821% {background-color: #ffcccc;} 88.500822% {background-color: #eee;} 88.650822% {background-color: #eee;} 88.700822% {background-color: #eee;} 88.700823% {background-color: #ffcccc;} 88.750823% {background-color: #ffcccc;} 88.750824% {background-color: #eee;} 88.800824% {background-color: #eee;} 88.800825% {background-color: #ffcccc;} 88.950825% {background-color: #ffcccc;} 88.950826% {background-color: #eee;} 89.000826% {background-color: #eee;} 89.000827% {background-color: #ffcccc;} 89.150827% {background-color: #ffcccc;} 89.150828% {background-color: #eee;} 89.200828% {background-color: #eee;} 89.200829% {background-color: #ffcccc;} 89.250829% {background-color: #ffcccc;} 89.250830% {background-color: #eee;} 89.600830% {background-color: #eee;} 89.650830% {background-color: #eee;} 89.650831% {background-color: #ffcccc;} 89.700831% {background-color: #ffcccc;} 89.700832% {background-color: #eee;} 89.750832% {background-color: #eee;} 89.750833% {background-color: #ffcccc;} 89.800833% {background-color: #ffcccc;} 89.800834% {background-color: #eee;} 89.850834% {background-color: #eee;} 89.850835% {background-color: #ffcccc;} 89.900835% {background-color: #ffcccc;} 89.900836% {background-color: #eee;} 90.050836% {background-color: #eee;} 90.100836% {background-color: #eee;} 90.100837% {background-color: #ffcccc;} 90.150837% {background-color: #ffcccc;} 90.150838% {background-color: #eee;} 90.300838% {background-color: #eee;} 90.350838% {background-color: #eee;} 90.350839% {background-color: #ffcccc;} 90.400839% {background-color: #ffcccc;} 90.400840% {background-color: #eee;} 90.550840% {background-color: #eee;} 90.600840% {background-color: #eee;} 90.600841% {background-color: #ffcccc;} 90.650841% {background-color: #ffcccc;} 90.650842% {background-color: #eee;} 90.700842% {background-color: #eee;} 90.700843% {background-color: #ffcccc;} 90.850843% {background-color: #ffcccc;} 90.850844% {background-color: #eee;} 90.900844% {background-color: #eee;} 90.900845% {background-color: #ffcccc;} 91.050845% {background-color: #ffcccc;} 91.050846% {background-color: #eee;} 91.100846% {background-color: #eee;} 91.100847% {background-color: #ffcccc;} 91.150847% {background-color: #ffcccc;} 91.150848% {background-color: #eee;} 91.500848% {background-color: #eee;} 91.550848% {background-color: #eee;} 91.550849% {background-color: #ffcccc;} 91.600849% {background-color: #ffcccc;} 91.600850% {background-color: #eee;} 91.650850% {background-color: #eee;} 91.650851% {background-color: #ffcccc;} 91.700851% {background-color: #ffcccc;} 91.700852% {background-color: #eee;} 91.750852% {background-color: #eee;} 91.750853% {background-color: #ffcccc;} 91.800853% {background-color: #ffcccc;} 91.800854% {background-color: #eee;} 91.950854% {background-color: #eee;} 92.000854% {background-color: #eee;} 92.000855% {background-color: #ffcccc;} 92.050855% {background-color: #ffcccc;} 92.050856% {background-color: #eee;} 92.200856% {background-color: #eee;} 92.250856% {background-color: #eee;} 92.250857% {background-color: #ffcccc;} 92.300857% {background-color: #ffcccc;} 92.300858% {background-color: #eee;} 92.450858% {background-color: #eee;} 92.500858% {background-color: #eee;} 92.500859% {background-color: #ffcccc;} 92.550859% {background-color: #ffcccc;} 92.550860% {background-color: #eee;} 92.600860% {background-color: #eee;} 92.600861% {background-color: #ffcccc;} 92.750861% {background-color: #ffcccc;} 92.750862% {background-color: #eee;} 92.800862% {background-color: #eee;} 92.800863% {background-color: #ffcccc;} 92.950863% {background-color: #ffcccc;} 92.950864% {background-color: #eee;} 93.000864% {background-color: #eee;} 93.000865% {background-color: #ffcccc;} 93.050865% {background-color: #ffcccc;} 93.050866% {background-color: #eee;} 93.400866% {background-color: #eee;} 93.450866% {background-color: #eee;} 93.450867% {background-color: #ffcccc;} 93.500867% {background-color: #ffcccc;} 93.500868% {background-color: #eee;} 93.550868% {background-color: #eee;} 93.550869% {background-color: #ffcccc;} 93.600869% {background-color: #ffcccc;} 93.600870% {background-color: #eee;} 93.650870% {background-color: #eee;} 93.650871% {background-color: #ffcccc;} 93.700871% {background-color: #ffcccc;} 93.700872% {background-color: #eee;} 93.850872% {background-color: #eee;} 93.900872% {background-color: #eee;} 93.900873% {background-color: #ffcccc;} 93.950873% {background-color: #ffcccc;} 93.950874% {background-color: #eee;} 94.100874% {background-color: #eee;} 94.150874% {background-color: #eee;} 94.150875% {background-color: #ffcccc;} 94.200875% {background-color: #ffcccc;} 94.200876% {background-color: #eee;} 94.350876% {background-color: #eee;} 94.400876% {background-color: #eee;} 94.400877% {background-color: #ffcccc;} 94.450877% {background-color: #ffcccc;} 94.450878% {background-color: #eee;} 94.500878% {background-color: #eee;} 94.500879% {background-color: #ffcccc;} 94.650879% {background-color: #ffcccc;} 94.650880% {background-color: #eee;} 94.700880% {background-color: #eee;} 94.700881% {background-color: #ffcccc;} 94.850881% {background-color: #ffcccc;} 94.850882% {background-color: #eee;} 94.900882% {background-color: #eee;} 94.900883% {background-color: #ffcccc;} 94.950883% {background-color: #ffcccc;} 94.950884% {background-color: #eee;} 95.300884% {background-color: #eee;} 95.350884% {background-color: #eee;} 95.350885% {background-color: #ffcccc;} 95.400885% {background-color: #ffcccc;} 95.400886% {background-color: #eee;} 95.450886% {background-color: #eee;} 95.450887% {background-color: #ffcccc;} 95.500887% {background-color: #ffcccc;} 95.500888% {background-color: #eee;} 95.550888% {background-color: #eee;} 95.550889% {background-color: #ffcccc;} 95.600889% {background-color: #ffcccc;} 95.600890% {background-color: #eee;} 95.750890% {background-color: #eee;} 95.800890% {background-color: #eee;} 95.800891% {background-color: #ffcccc;} 95.850891% {background-color: #ffcccc;} 95.850892% {background-color: #eee;} 96.000892% {background-color: #eee;} 96.050892% {background-color: #eee;} 96.050893% {background-color: #ffcccc;} 96.100893% {background-color: #ffcccc;} 96.100894% {background-color: #eee;} 96.250894% {background-color: #eee;} 96.300894% {background-color: #eee;} 96.300895% {background-color: #ffcccc;} 96.350895% {background-color: #ffcccc;} 96.350896% {background-color: #eee;} 96.400896% {background-color: #eee;} 96.400897% {background-color: #ffcccc;} 96.550897% {background-color: #ffcccc;} 96.550898% {background-color: #eee;} 96.600898% {background-color: #eee;} 96.600899% {background-color: #ffcccc;} 96.750899% {background-color: #ffcccc;} 96.750900% {background-color: #eee;} 96.800900% {background-color: #eee;} 96.800901% {background-color: #ffcccc;} 96.850901% {background-color: #ffcccc;} 96.850902% {background-color: #eee;} 97.200902% {background-color: #eee;} 97.250902% {background-color: #eee;} 97.250903% {background-color: #ffcccc;} 97.300903% {background-color: #ffcccc;} 97.300904% {background-color: #eee;} 97.350904% {background-color: #eee;} 97.350905% {background-color: #ffcccc;} 97.400905% {background-color: #ffcccc;} 97.400906% {background-color: #eee;} 97.450906% {background-color: #eee;} 97.450907% {background-color: #ffcccc;} 97.500907% {background-color: #ffcccc;} 97.500908% {background-color: #eee;} 97.650908% {background-color: #eee;} 97.700908% {background-color: #eee;} 97.700909% {background-color: #ffcccc;} 97.750909% {background-color: #ffcccc;} 97.750910% {background-color: #eee;} 97.900910% {background-color: #eee;} 97.950910% {background-color: #eee;} 97.950911% {background-color: #ffcccc;} 98.000911% {background-color: #ffcccc;} 98.000912% {background-color: #eee;} 98.150912% {background-color: #eee;} 98.200912% {background-color: #eee;} 98.200913% {background-color: #ffcccc;} 98.250913% {background-color: #ffcccc;} 98.250914% {background-color: #eee;} 98.300914% {background-color: #eee;} 98.300915% {background-color: #ffcccc;} 98.450915% {background-color: #ffcccc;} 98.450916% {background-color: #eee;} 98.500916% {background-color: #eee;} 98.500917% {background-color: #ffcccc;} 98.650917% {background-color: #ffcccc;} 98.650918% {background-color: #eee;} 98.700918% {background-color: #eee;} 98.700919% {background-color: #ffcccc;} 98.750919% {background-color: #ffcccc;} 98.750920% {background-color: #eee;} 99.100920% {background-color: #eee;} 99.150920% {background-color: #eee;} 99.150921% {background-color: #ffcccc;} 99.200921% {background-color: #ffcccc;} 99.200922% {background-color: #eee;} 99.250922% {background-color: #eee;} 99.250923% {background-color: #ffcccc;} 99.300923% {background-color: #ffcccc;} 99.300924% {background-color: #eee;} 99.350924% {background-color: #eee;} 99.350925% {background-color: #ffcccc;} 99.400925% {background-color: #ffcccc;} 99.400926% {background-color: #eee;} 99.550926% {background-color: #eee;} 99.600926% {background-color: #eee;} 99.600927% {background-color: #ffcccc;} 99.650927% {background-color: #ffcccc;} 99.650928% {background-color: #eee;} 99.800928% {background-color: #eee;} 99.850928% {background-color: #eee;} 99.850929% {background-color: #ffcccc;} 99.900929% {background-color: #ffcccc;} 99.900930% {background-color: #eee;} 100.050930% {background-color: #eee;} } @keyframes Pulse { 0.0% {background-color: #ffcccc;} 0.5% {background-color: #fff;} 1.0% {background-color: #ffcccc;} 1.5% {background-color: #fff;} 2.0% {background-color: #ffcccc;} 2.5% {background-color: #fff;} 3.0% {background-color: #ffcccc;} 3.5% {background-color: #fff;} 4.0% {background-color: #ffcccc;} 4.5% {background-color: #fff;} 5.0% {background-color: #ffcccc;} 5.5% {background-color: #fff;} 6.0% {background-color: #ffcccc;} 6.5% {background-color: #fff;} 7.0% {background-color: #ffcccc;} 7.5% {background-color: #fff;} 8.0% {background-color: #ffcccc;} 8.5% {background-color: #fff;} 9.0% {background-color: #ffcccc;} 9.5% {background-color: #fff;} 10.0% {background-color: #ffcccc;} 10.5% {background-color: #fff;} 11.0% {background-color: #ffcccc;} 11.5% {background-color: #fff;} 12.0% {background-color: #ffcccc;} 12.5% {background-color: #fff;} 13.0% {background-color: #ffcccc;} 13.5% {background-color: #fff;} 14.0% {background-color: #ffcccc;} 14.5% {background-color: #fff;} 15.0% {background-color: #ffcccc;} 15.5% {background-color: #fff;} 16.0% {background-color: #ffcccc;} 16.5% {background-color: #fff;} 17.0% {background-color: #ffcccc;} 17.5% {background-color: #fff;} 18.0% {background-color: #ffcccc;} 18.5% {background-color: #fff;} 19.0% {background-color: #ffcccc;} 19.5% {background-color: #fff;} 20.0% {background-color: #ffcccc;} 20.5% {background-color: #fff;} 21.0% {background-color: #ffcccc;} 21.5% {background-color: #fff;} 22.0% {background-color: #ffcccc;} 22.5% {background-color: #fff;} 23.0% {background-color: #ffcccc;} 23.5% {background-color: #fff;} 24.0% {background-color: #ffcccc;} 24.5% {background-color: #fff;} 25.0% {background-color: #ffcccc;} 25.5% {background-color: #fff;} 26.0% {background-color: #ffcccc;} 26.5% {background-color: #fff;} 27.0% {background-color: #ffcccc;} 27.5% {background-color: #fff;} 28.0% {background-color: #ffcccc;} 28.5% {background-color: #fff;} 29.0% {background-color: #ffcccc;} 29.5% {background-color: #fff;} 30.0% {background-color: #ffcccc;} 30.5% {background-color: #fff;} 31.0% {background-color: #ffcccc;} 31.5% {background-color: #fff;} 32.0% {background-color: #ffcccc;} 32.5% {background-color: #fff;} 33.0% {background-color: #ffcccc;} 33.5% {background-color: #fff;} 34.0% {background-color: #ffcccc;} 34.5% {background-color: #fff;} 35.0% {background-color: #ffcccc;} 35.5% {background-color: #fff;} 36.0% {background-color: #ffcccc;} 36.5% {background-color: #fff;} 37.0% {background-color: #ffcccc;} 37.5% {background-color: #fff;} 38.0% {background-color: #ffcccc;} 38.5% {background-color: #fff;} 39.0% {background-color: #ffcccc;} 39.5% {background-color: #fff;} 40.0% {background-color: #ffcccc;} 40.5% {background-color: #fff;} 41.0% {background-color: #ffcccc;} 41.5% {background-color: #fff;} 42.0% {background-color: #ffcccc;} 42.5% {background-color: #fff;} 43.0% {background-color: #ffcccc;} 43.5% {background-color: #fff;} 44.0% {background-color: #ffcccc;} 44.5% {background-color: #fff;} 45.0% {background-color: #ffcccc;} 45.5% {background-color: #fff;} 46.0% {background-color: #ffcccc;} 46.5% {background-color: #fff;} 47.0% {background-color: #ffcccc;} 47.5% {background-color: #fff;} 48.0% {background-color: #ffcccc;} 48.5% {background-color: #fff;} 49.0% {background-color: #ffcccc;} 49.5% {background-color: #fff;} 50.0% {background-color: #ffcccc;} 50.5% {background-color: #fff;} 51.0% {background-color: #ffcccc;} 51.5% {background-color: #fff;} 52.0% {background-color: #ffcccc;} 52.5% {background-color: #fff;} 53.0% {background-color: #ffcccc;} 53.5% {background-color: #fff;} 54.0% {background-color: #ffcccc;} 54.5% {background-color: #fff;} 55.0% {background-color: #ffcccc;} 55.5% {background-color: #fff;} 56.0% {background-color: #ffcccc;} 56.5% {background-color: #fff;} 57.0% {background-color: #ffcccc;} 57.5% {background-color: #fff;} 58.0% {background-color: #ffcccc;} 58.5% {background-color: #fff;} 59.0% {background-color: #ffcccc;} 59.5% {background-color: #fff;} 60.0% {background-color: #ffcccc;} 60.5% {background-color: #fff;} 61.5% {background-color: #fff;} 61.550000% {background-color: #fff;} 61.550001% {background-color: #ffcccc;} 61.600001% {background-color: #ffcccc;} 61.600002% {background-color: #fff;} 61.650002% {background-color: #fff;} 61.650003% {background-color: #ffcccc;} 61.800003% {background-color: #ffcccc;} 61.800004% {background-color: #fff;} 61.850004% {background-color: #fff;} 61.850005% {background-color: #ffcccc;} 62.000005% {background-color: #ffcccc;} 62.000006% {background-color: #fff;} 62.050006% {background-color: #fff;} 62.050007% {background-color: #ffcccc;} 62.100007% {background-color: #ffcccc;} 62.100008% {background-color: #fff;} 62.250008% {background-color: #fff;} 62.300008% {background-color: #fff;} 62.300009% {background-color: #ffcccc;} 62.350009% {background-color: #ffcccc;} 62.350010% {background-color: #fff;} 62.400010% {background-color: #fff;} 62.400011% {background-color: #ffcccc;} 62.550011% {background-color: #ffcccc;} 62.550012% {background-color: #fff;} 62.700012% {background-color: #fff;} 62.750012% {background-color: #fff;} 62.750013% {background-color: #ffcccc;} 62.900013% {background-color: #ffcccc;} 62.900014% {background-color: #fff;} 63.050014% {background-color: #fff;} 63.100014% {background-color: #fff;} 63.100015% {background-color: #ffcccc;} 63.150015% {background-color: #ffcccc;} 63.150016% {background-color: #fff;} 63.200016% {background-color: #fff;} 63.200017% {background-color: #ffcccc;} 63.250017% {background-color: #ffcccc;} 63.250018% {background-color: #fff;} 63.400018% {background-color: #fff;} 63.450018% {background-color: #fff;} 63.450019% {background-color: #ffcccc;} 63.500019% {background-color: #ffcccc;} 63.500020% {background-color: #fff;} 63.650020% {background-color: #fff;} 63.700020% {background-color: #fff;} 63.700021% {background-color: #ffcccc;} 63.850021% {background-color: #ffcccc;} 63.850022% {background-color: #fff;} 63.900022% {background-color: #fff;} 63.900023% {background-color: #ffcccc;} 63.950023% {background-color: #ffcccc;} 63.950024% {background-color: #fff;} 64.100024% {background-color: #fff;} 64.150024% {background-color: #fff;} 64.150025% {background-color: #ffcccc;} 64.300025% {background-color: #ffcccc;} 64.300026% {background-color: #fff;} 64.350026% {background-color: #fff;} 64.350027% {background-color: #ffcccc;} 64.400027% {background-color: #ffcccc;} 64.400028% {background-color: #fff;} 64.450028% {background-color: #fff;} 64.450029% {background-color: #ffcccc;} 64.600029% {background-color: #ffcccc;} 64.600030% {background-color: #fff;} 64.650030% {background-color: #fff;} 64.650031% {background-color: #ffcccc;} 64.700031% {background-color: #ffcccc;} 64.700032% {background-color: #fff;} 64.850032% {background-color: #fff;} 64.900032% {background-color: #fff;} 64.900033% {background-color: #ffcccc;} 64.950033% {background-color: #ffcccc;} 64.950034% {background-color: #fff;} 65.300034% {background-color: #fff;} 65.350034% {background-color: #fff;} 65.350035% {background-color: #ffcccc;} 65.400035% {background-color: #ffcccc;} 65.400036% {background-color: #fff;} 65.450036% {background-color: #fff;} 65.450037% {background-color: #ffcccc;} 65.500037% {background-color: #ffcccc;} 65.500038% {background-color: #fff;} 65.650038% {background-color: #fff;} 65.700038% {background-color: #fff;} 65.700039% {background-color: #ffcccc;} 65.750039% {background-color: #ffcccc;} 65.750040% {background-color: #fff;} 65.800040% {background-color: #fff;} 65.800041% {background-color: #ffcccc;} 65.850041% {background-color: #ffcccc;} 65.850042% {background-color: #fff;} 65.900042% {background-color: #fff;} 65.900043% {background-color: #ffcccc;} 65.950043% {background-color: #ffcccc;} 65.950044% {background-color: #fff;} 66.300044% {background-color: #fff;} 66.350044% {background-color: #fff;} 66.350045% {background-color: #ffcccc;} 66.500045% {background-color: #ffcccc;} 66.500046% {background-color: #fff;} 66.550046% {background-color: #fff;} 66.550047% {background-color: #ffcccc;} 66.600047% {background-color: #ffcccc;} 66.600048% {background-color: #fff;} 66.650048% {background-color: #fff;} 66.650049% {background-color: #ffcccc;} 66.800049% {background-color: #ffcccc;} 66.800050% {background-color: #fff;} 66.950050% {background-color: #fff;} 67.000050% {background-color: #fff;} 67.000051% {background-color: #ffcccc;} 67.050051% {background-color: #ffcccc;} 67.050052% {background-color: #fff;} 67.200052% {background-color: #fff;} 67.250052% {background-color: #fff;} 67.250053% {background-color: #ffcccc;} 67.400053% {background-color: #ffcccc;} 67.400054% {background-color: #fff;} 67.450054% {background-color: #fff;} 67.450055% {background-color: #ffcccc;} 67.500055% {background-color: #ffcccc;} 67.500056% {background-color: #fff;} 67.550056% {background-color: #fff;} 67.550057% {background-color: #ffcccc;} 67.700057% {background-color: #ffcccc;} 67.700058% {background-color: #fff;} 67.750058% {background-color: #fff;} 67.750059% {background-color: #ffcccc;} 67.900059% {background-color: #ffcccc;} 67.900060% {background-color: #fff;} 68.250060% {background-color: #fff;} 68.300060% {background-color: #fff;} 68.300061% {background-color: #ffcccc;} 68.450061% {background-color: #ffcccc;} 68.450062% {background-color: #fff;} 68.500062% {background-color: #fff;} 68.500063% {background-color: #ffcccc;} 68.650063% {background-color: #ffcccc;} 68.650064% {background-color: #fff;} 68.700064% {background-color: #fff;} 68.700065% {background-color: #ffcccc;} 68.850065% {background-color: #ffcccc;} 68.850066% {background-color: #fff;} 68.900066% {background-color: #fff;} 68.900067% {background-color: #ffcccc;} 68.950067% {background-color: #ffcccc;} 68.950068% {background-color: #fff;} 69.000068% {background-color: #fff;} 69.000069% {background-color: #ffcccc;} 69.050069% {background-color: #ffcccc;} 69.050070% {background-color: #fff;} 69.200070% {background-color: #fff;} 69.250070% {background-color: #fff;} 69.250071% {background-color: #ffcccc;} 69.300071% {background-color: #ffcccc;} 69.300072% {background-color: #fff;} 69.350072% {background-color: #fff;} 69.350073% {background-color: #ffcccc;} 69.400073% {background-color: #ffcccc;} 69.400074% {background-color: #fff;} 69.450074% {background-color: #fff;} 69.450075% {background-color: #ffcccc;} 69.500075% {background-color: #ffcccc;} 69.500076% {background-color: #fff;} 69.550076% {background-color: #fff;} 69.550077% {background-color: #ffcccc;} 69.700077% {background-color: #ffcccc;} 69.700078% {background-color: #fff;} 69.850078% {background-color: #fff;} 69.900078% {background-color: #fff;} 69.900079% {background-color: #ffcccc;} 69.950079% {background-color: #ffcccc;} 69.950080% {background-color: #fff;} 70.100080% {background-color: #fff;} 70.150080% {background-color: #fff;} 70.150081% {background-color: #ffcccc;} 70.300081% {background-color: #ffcccc;} 70.300082% {background-color: #fff;} 70.350082% {background-color: #fff;} 70.350083% {background-color: #ffcccc;} 70.500083% {background-color: #ffcccc;} 70.500084% {background-color: #fff;} 70.650084% {background-color: #fff;} 70.700084% {background-color: #fff;} 70.700085% {background-color: #ffcccc;} 70.850085% {background-color: #ffcccc;} 70.850086% {background-color: #fff;} 70.900086% {background-color: #fff;} 70.900087% {background-color: #ffcccc;} 71.050087% {background-color: #ffcccc;} 71.050088% {background-color: #fff;} 71.100088% {background-color: #fff;} 71.100089% {background-color: #ffcccc;} 71.250089% {background-color: #ffcccc;} 71.250090% {background-color: #fff;} 71.300090% {background-color: #fff;} 71.300091% {background-color: #ffcccc;} 71.350091% {background-color: #ffcccc;} 71.350092% {background-color: #fff;} 71.400092% {background-color: #fff;} 71.400093% {background-color: #ffcccc;} 71.450093% {background-color: #ffcccc;} 71.450094% {background-color: #fff;} 71.600094% {background-color: #fff;} 71.650094% {background-color: #fff;} 71.650095% {background-color: #ffcccc;} 71.800095% {background-color: #ffcccc;} 71.800096% {background-color: #fff;} 71.850096% {background-color: #fff;} 71.850097% {background-color: #ffcccc;} 71.900097% {background-color: #ffcccc;} 71.900098% {background-color: #fff;} 71.950098% {background-color: #fff;} 71.950099% {background-color: #ffcccc;} 72.000099% {background-color: #ffcccc;} 72.000100% {background-color: #fff;} 72.050100% {background-color: #fff;} 72.050101% {background-color: #ffcccc;} 72.100101% {background-color: #ffcccc;} 72.100102% {background-color: #fff;} 72.150102% {background-color: #fff;} 72.150103% {background-color: #ffcccc;} 72.200103% {background-color: #ffcccc;} 72.200104% {background-color: #fff;} 72.250104% {background-color: #fff;} 72.250105% {background-color: #ffcccc;} 72.400105% {background-color: #ffcccc;} 72.400106% {background-color: #fff;} 72.550106% {background-color: #fff;} 72.600106% {background-color: #fff;} 72.600107% {background-color: #ffcccc;} 72.750107% {background-color: #ffcccc;} 72.750108% {background-color: #fff;} 72.800108% {background-color: #fff;} 72.800109% {background-color: #ffcccc;} 72.850109% {background-color: #ffcccc;} 72.850110% {background-color: #fff;} 73.000110% {background-color: #fff;} 73.050110% {background-color: #fff;} 73.050111% {background-color: #ffcccc;} 73.100111% {background-color: #ffcccc;} 73.100112% {background-color: #fff;} 73.250112% {background-color: #fff;} 73.300112% {background-color: #fff;} 73.300113% {background-color: #ffcccc;} 73.450113% {background-color: #ffcccc;} 73.450114% {background-color: #fff;} 73.500114% {background-color: #fff;} 73.500115% {background-color: #ffcccc;} 73.550115% {background-color: #ffcccc;} 73.550116% {background-color: #fff;} 73.600116% {background-color: #fff;} 73.600117% {background-color: #ffcccc;} 73.650117% {background-color: #ffcccc;} 73.650118% {background-color: #fff;} 73.700118% {background-color: #fff;} 73.700119% {background-color: #ffcccc;} 73.750119% {background-color: #ffcccc;} 73.750120% {background-color: #fff;} 73.800120% {background-color: #fff;} 73.800121% {background-color: #ffcccc;} 73.850121% {background-color: #ffcccc;} 73.850122% {background-color: #fff;} 74.000122% {background-color: #fff;} 74.050122% {background-color: #fff;} 74.050123% {background-color: #ffcccc;} 74.100123% {background-color: #ffcccc;} 74.100124% {background-color: #fff;} 74.150124% {background-color: #fff;} 74.150125% {background-color: #ffcccc;} 74.300125% {background-color: #ffcccc;} 74.300126% {background-color: #fff;} 74.450126% {background-color: #fff;} 74.500126% {background-color: #fff;} 74.500127% {background-color: #ffcccc;} 74.550127% {background-color: #ffcccc;} 74.550128% {background-color: #fff;} 74.600128% {background-color: #fff;} 74.600129% {background-color: #ffcccc;} 74.650129% {background-color: #ffcccc;} 74.650130% {background-color: #fff;} 74.700130% {background-color: #fff;} 74.700131% {background-color: #ffcccc;} 74.750131% {background-color: #ffcccc;} 74.750132% {background-color: #fff;} 74.800132% {background-color: #fff;} 74.800133% {background-color: #ffcccc;} 74.850133% {background-color: #ffcccc;} 74.850134% {background-color: #fff;} 75.000134% {background-color: #fff;} 75.050134% {background-color: #fff;} 75.050135% {background-color: #ffcccc;} 75.200135% {background-color: #ffcccc;} 75.200136% {background-color: #fff;} 75.250136% {background-color: #fff;} 75.250137% {background-color: #ffcccc;} 75.300137% {background-color: #ffcccc;} 75.300138% {background-color: #fff;} 75.350138% {background-color: #fff;} 75.350139% {background-color: #ffcccc;} 75.400139% {background-color: #ffcccc;} 75.400140% {background-color: #fff;} 75.450140% {background-color: #fff;} 75.450141% {background-color: #ffcccc;} 75.500141% {background-color: #ffcccc;} 75.500142% {background-color: #fff;} 75.550142% {background-color: #fff;} 75.550143% {background-color: #ffcccc;} 75.600143% {background-color: #ffcccc;} 75.600144% {background-color: #fff;} 75.650144% {background-color: #fff;} 75.650145% {background-color: #ffcccc;} 75.800145% {background-color: #ffcccc;} 75.800146% {background-color: #fff;} 75.950146% {background-color: #fff;} 76.000146% {background-color: #fff;} 76.000147% {background-color: #ffcccc;} 76.050147% {background-color: #ffcccc;} 76.050148% {background-color: #fff;} 76.100148% {background-color: #fff;} 76.100149% {background-color: #ffcccc;} 76.150149% {background-color: #ffcccc;} 76.150150% {background-color: #fff;} 76.200150% {background-color: #fff;} 76.200151% {background-color: #ffcccc;} 76.250151% {background-color: #ffcccc;} 76.250152% {background-color: #fff;} 76.300152% {background-color: #fff;} 76.300153% {background-color: #ffcccc;} 76.350153% {background-color: #ffcccc;} 76.350154% {background-color: #fff;} 76.400154% {background-color: #fff;} 76.400155% {background-color: #ffcccc;} 76.450155% {background-color: #ffcccc;} 76.450156% {background-color: #fff;} 76.600156% {background-color: #fff;} 76.650156% {background-color: #fff;} 76.650157% {background-color: #ffcccc;} 76.700157% {background-color: #ffcccc;} 76.700158% {background-color: #fff;} 76.750158% {background-color: #fff;} 76.750159% {background-color: #ffcccc;} 76.800159% {background-color: #ffcccc;} 76.800160% {background-color: #fff;} 76.850160% {background-color: #fff;} 76.850161% {background-color: #ffcccc;} 76.900161% {background-color: #ffcccc;} 76.900162% {background-color: #fff;} 76.950162% {background-color: #fff;} 76.950163% {background-color: #ffcccc;} 77.000163% {background-color: #ffcccc;} 77.000164% {background-color: #fff;} 77.050164% {background-color: #fff;} 77.050165% {background-color: #ffcccc;} 77.100165% {background-color: #ffcccc;} 77.100166% {background-color: #fff;} 77.250166% {background-color: #fff;} 77.300166% {background-color: #fff;} 77.300167% {background-color: #ffcccc;} 77.450167% {background-color: #ffcccc;} 77.450168% {background-color: #fff;} 77.500168% {background-color: #fff;} 77.500169% {background-color: #ffcccc;} 77.550169% {background-color: #ffcccc;} 77.550170% {background-color: #fff;} 77.600170% {background-color: #fff;} 77.600171% {background-color: #ffcccc;} 77.750171% {background-color: #ffcccc;} 77.750172% {background-color: #fff;} 77.900172% {background-color: #fff;} 77.950172% {background-color: #fff;} 77.950173% {background-color: #ffcccc;} 78.100173% {background-color: #ffcccc;} 78.100174% {background-color: #fff;} 78.150174% {background-color: #fff;} 78.150175% {background-color: #ffcccc;} 78.300175% {background-color: #ffcccc;} 78.300176% {background-color: #fff;} 78.350176% {background-color: #fff;} 78.350177% {background-color: #ffcccc;} 78.500177% {background-color: #ffcccc;} 78.500178% {background-color: #fff;} 78.550178% {background-color: #fff;} 78.550179% {background-color: #ffcccc;} 78.700179% {background-color: #ffcccc;} 78.700180% {background-color: #fff;} 78.750180% {background-color: #fff;} 78.750181% {background-color: #ffcccc;} 78.900181% {background-color: #ffcccc;} 78.900182% {background-color: #fff;} 79.050182% {background-color: #fff;} 79.100182% {background-color: #fff;} 79.100183% {background-color: #ffcccc;} 79.250183% {background-color: #ffcccc;} 79.250184% {background-color: #fff;} 79.600184% {background-color: #fff;} 79.650184% {background-color: #fff;} 79.650185% {background-color: #ffcccc;} 79.700185% {background-color: #ffcccc;} 79.700186% {background-color: #fff;} 79.750186% {background-color: #fff;} 79.750187% {background-color: #ffcccc;} 79.800187% {background-color: #ffcccc;} 79.800188% {background-color: #fff;} 79.850188% {background-color: #fff;} 79.850189% {background-color: #ffcccc;} 79.900189% {background-color: #ffcccc;} 79.900190% {background-color: #fff;} 80.050190% {background-color: #fff;} 80.100190% {background-color: #fff;} 80.100191% {background-color: #ffcccc;} 80.250191% {background-color: #ffcccc;} 80.250192% {background-color: #fff;} 80.400192% {background-color: #fff;} 80.450192% {background-color: #fff;} 80.450193% {background-color: #ffcccc;} 80.500193% {background-color: #ffcccc;} 80.500194% {background-color: #fff;} 80.650194% {background-color: #fff;} 80.700194% {background-color: #fff;} 80.700195% {background-color: #ffcccc;} 80.750195% {background-color: #ffcccc;} 80.750196% {background-color: #fff;} 80.800196% {background-color: #fff;} 80.800197% {background-color: #ffcccc;} 80.950197% {background-color: #ffcccc;} 80.950198% {background-color: #fff;} 81.100198% {background-color: #fff;} 81.150198% {background-color: #fff;} 81.150199% {background-color: #ffcccc;} 81.300199% {background-color: #ffcccc;} 81.300200% {background-color: #fff;} 81.350200% {background-color: #fff;} 81.350201% {background-color: #ffcccc;} 81.500201% {background-color: #ffcccc;} 81.500202% {background-color: #fff;} 82% {background-color: #ffcccc;} 82.5% {background-color: #fff;} 83.0% {background-color: #ffcccc;} 83.5% {background-color: #fff;} 84.0% {background-color: #ffcccc;} 84.5% {background-color: #fff;} 85.0% {background-color: #ffcccc;} 85.5% {background-color: #fff;} 86.0% {background-color: #ffcccc;} 86.5% {background-color: #fff;} 87.0% {background-color: #ffcccc;} 87.5% {background-color: #fff;} 88.0% {background-color: #ffcccc;} 88.5% {background-color: #fff;} 89.0% {background-color: #ffcccc;} 89.5% {background-color: #fff;} 90.0% {background-color: #ffcccc;} 90.5% {background-color: #fff;} 91.0% {background-color: #ffcccc;} 91.5% {background-color: #fff;} 92.0% {background-color: #ffcccc;} 92.5% {background-color: #fff;} 93.0% {background-color: #ffcccc;} 93.5% {background-color: #fff;} 94.0% {background-color: #ffcccc;} 94.5% {background-color: #fff;} 95.0% {background-color: #ffcccc;} 95.5% {background-color: #fff;} 96.0% {background-color: #ffcccc;} 96.5% {background-color: #fff;} 97.0% {background-color: #ffcccc;} 97.5% {background-color: #fff;} 98.0% {background-color: #ffcccc;} 98.5% {background-color: #fff;} 99.0% {background-color: #ffcccc;} 99.5% {background-color: #fff;} 100.0% {background-color: #ffcccc;} } .tableAnimationOdd { animation-name: flashOdd; animation-timing-function: linear; animation-duration: 0.35s; -webkit-animation-duration: 0.35s; -moz-animation-duration: 0.35s; -o-animation-duration: 0.35s; } .tableAnimationEven { animation-name: flashEven; animation-timing-function: linear; animation-duration: 0.35s; -webkit-animation-duration: 0.35s; -moz-animation-duration: 0.35s; -o-animation-duration: 0.35s; } table.matty tbody tr.tableRowOdd:not(.tableRow):hover td:not(:nth-child(2)) { animation-name: PulseOdd; animation-iteration-count: infinite; animation-timing-function: linear; animation-duration: 4s; -webkit-animation-duration: 4s; -moz-animation-duration: 4s; -o-animation-duration: 4s; animation-delay: 1s; background-color: #ffcccc; } table.matty tbody tr.tableRowEven:not(.tableRow):hover td:not(:nth-child(2)) { animation-name: PulseEven; animation-iteration-count: infinite; animation-timing-function: linear; animation-duration: 4s; -webkit-animation-duration: 4s; -moz-animation-duration: 4s; -o-animation-duration: 4s; animation-delay: 1s; background-color: #ffcccc; } table.matty tbody tr.tableRow:hover td:not(:nth-child(2)) { animation-name: Pulse; animation-iteration-count: infinite; animation-timing-function: linear; animation-duration: 200s; -webkit-animation-duration: 200s; -moz-animation-duration: 200s; -o-animation-duration: 200s; animation-delay: 1s; background-color: #ffcccc; } table.matty tbody tr.tableRowCP:hover td:not(:nth-child(2)) { animation-name: PulseCP; animation-iteration-count: infinite; animation-timing-function: linear; animation-duration: 200s; -webkit-animation-duration: 200s; -moz-animation-duration: 200s; -o-animation-duration: 200s; animation-delay: 1s; background-color: #ffcccc; } .tableRowOdd { background-color: #eee; } .tableRowEven { background-color: #fff; } .tableRow { background-color: #fff; } .tableRowCP { background-color: #eee; } table.mattyalt tbody tr:hover td { background-color: #ffcccc !important; } table.mattyalt tbody tr:nth-child(odd) td { background-color: #eee; } table.mattyalt tbody tr:nth-child(even) td { background-color: #fff; } /* Dialog UI Styles */ .ui-dialog { text-align: center; } .ui-dialog-content.ui-widget-content { font-size: 25px; text-align: center; color: white !important; } .ui-effects-transfer { border: 2px solid black; } .ui-widget-overlay { animation-name: fadeIn; animation-duration: 1s; -webkit-animation-duration: 1s; -moz-animation-duration: 1s; -o-animation-duration: 1s; } .ui-dialog { background: url(https://i.imgur.com/323RLD2.png) !important; border: 1px red; } .ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset { text-align: center; float: none !important; background: url(https://i.imgur.com/323RLD2.png) !important; } .ui-dialog-buttonpane { background: url(https://i.imgur.com/323RLD2.png) !important; } .ui-widget-header a { color: #b02e2e !important; } .ui-widget-content a { color: #b02e2e !important; } .ui-dialog-buttonpane.ui-widget-content.ui-helper-clearfix { border: 0px !important; }