stylesheet.css 70 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566
  1. a.white {
  2. FONT-SIZE: 12px;FONT-FAMILY: Tahoma, Verdana, Arial; text-decoration:underline; color:#000000;
  3. }
  4. body {
  5. //background-color: #006633;
  6. //background-image: url(btn_09_back_4.jpg);
  7. margin-left: 0px;
  8. margin-top: 0px;
  9. margin-right: 0px;
  10. margin-bottom: 0px;
  11. }
  12. table {
  13. text-align:left
  14. }
  15. .footerLeft {
  16. BACKGROUND-COLOR: #ffffff;
  17. }
  18. .titleLeft {
  19. FONT-WEIGHT: normal;
  20. FONT-SIZE: 12px;
  21. TEXT-TRANSFORM: normal;
  22. COLOR: #006633;
  23. FONT-FAMILY: Tahoma, Arial, Helvetica, sans-serif;
  24. text-decoration:none;
  25. }
  26. .boxWhite{
  27. BORDER-RIGHT: #cdcdcd 1px solid;
  28. BORDER-TOP: #cdcdcd 1px solid;
  29. BORDER-LEFT: #cdcdcd 1px solid;
  30. BORDER-BOTTOM: #cdcdcd 1px solid;
  31. }
  32. .BlackBox
  33. {
  34. BORDER-RIGHT: #000000 1px solid;
  35. PADDING-RIGHT: 1em;
  36. BORDER-TOP: #000000 1px solid;
  37. PADDING-LEFT: 1em;
  38. PADDING-BOTTOM: 0em;
  39. BORDER-LEFT: #000000 1px solid;
  40. COLOR: black;
  41. LINE-HEIGHT: 1.1em;
  42. PADDING-TOP: 0em;
  43. BORDER-BOTTOM: #000000 1px solid;
  44. BACKGROUND-COLOR: #dedede;
  45. }
  46. .titlePage
  47. {
  48. FONT-SIZE: 12px;FONT-FAMILY: Tahoma, Verdana, Arial; color:#000000;
  49. BORDER-BOTTOM: #003300 1px dotted;
  50. FONT-WEIGHT: bold;
  51. }
  52. .footerLine
  53. {
  54. FONT-SIZE: 12px;FONT-FAMILY: Tahoma, Verdana, Arial; color:#000000;
  55. BORDER-TOP: #ff9900 1px solid;
  56. FONT-WEIGHT: normal;
  57. }
  58. .boxTree
  59. {
  60. FONT-SIZE: 12px;FONT-FAMILY: Tahoma, Verdana, Arial; color:#000000;
  61. BORDER-BOTTOM: #cdcdcd 1px solid;
  62. }
  63. .bottomLine
  64. {
  65. FONT-SIZE: 12px;FONT-FAMILY: Tahoma, Verdana, Arial; color:#000000;
  66. BORDER-BOTTOM: #cdcdcd 1px solid;
  67. }
  68. .topLine
  69. {
  70. FONT-SIZE: 12px;FONT-FAMILY: Tahoma, Verdana, Arial; color:#000000;
  71. BORDER-TOP: #cdcdcd 1px solid;
  72. }
  73. .boxTree2
  74. {
  75. FONT-SIZE: 12px;FONT-FAMILY: Tahoma, Verdana, Arial; color:#000000;
  76. BORDER-BOTTOM: #cdcdcd 1px solid;
  77. BORDER-LEFT: #cdcdcd 1px solid;
  78. }
  79. .search
  80. {
  81. FONT-SIZE: 12px;FONT-FAMILY: Tahoma, Verdana, Arial; color:#000000;
  82. BORDER-BOTTOM: #dedede 1px solid;
  83. FONT-WEIGHT: bold;
  84. }
  85. .whiteLine2
  86. {
  87. FONT-SIZE: 12px;FONT-FAMILY: Tahoma, Verdana, Arial; color:#ffffff;
  88. BORDER-BOTTOM: #ff9900 1px dotted;
  89. }
  90. .totalLine
  91. {
  92. BORDER-TOP: #666666 1px solid;
  93. BORDER-BOTTOM: #666666 1px solid;
  94. FONT-SIZE: 12px;FONT-FAMILY: Tahoma, Verdana, Arial;
  95. FONT-WEIGHT: bold;
  96. text-align:right;
  97. }
  98. .totalLine2
  99. {
  100. BORDER-TOP: #666666 1px solid;
  101. BORDER-BOTTOM: #666666 1px solid;
  102. FONT-SIZE: 12px;FONT-FAMILY: Tahoma, Verdana, Arial;
  103. FONT-WEIGHT: bold;
  104. text-align:left;
  105. }
  106. TD {
  107. FONT-SIZE: 12px;FONT-FAMILY: Tahoma, Verdana, Arial;
  108. }
  109. input {
  110. FONT-SIZE: 12px;FONT-FAMILY: Tahoma, Verdana, Arial;
  111. }
  112. select {
  113. FONT-SIZE: 12px;FONT-FAMILY: Tahoma, Verdana, Arial;
  114. }
  115. .welcome {
  116. FONT-SIZE: 12px;FONT-FAMILY: Tahoma, Verdana, Arial;
  117. FONT-WEIGHT: bold;
  118. color:white;
  119. text-align:center;
  120. padding-top:12px;
  121. }
  122. .fontMedium {
  123. FONT-SIZE: 12px;FONT-FAMILY: Tahoma, Verdana, Arial
  124. }
  125. .login {
  126. padding-right:3px; text-align:right; FONT-SIZE: 12px;HEIGHT=20;FONT-FAMILY: Tahoma, Verdana, Arial; color:#aaaaaa; FONT-WEIGHT: bold
  127. }
  128. .titleHeader {
  129. FONT-WEIGHT: bold; COLOR:#006699; FONT-SIZE: 14px; MARGIN: 0px; FONT-FAMILY: Tahoma, Verdana, Arial;
  130. border-bottom: 1px solid #cdcdcd;
  131. }
  132. .titleBox {
  133. FONT-WEIGHT: bold;COLOR:#ff9900; FONT-SIZE: 12px; MARGIN: 0px; FONT-FAMILY: Tahoma, Verdana, Arial
  134. }
  135. p.padLeft {
  136. margin-left:2px; margin-right:3px;
  137. }
  138. .BlockTitle {
  139. FONT-WEIGHT: bold;COLOR:#000000; FONT-SIZE: 12px; MARGIN: 0px; FONT-FAMILY: Tahoma, Verdana, Arial
  140. }
  141. .AddressTitle {
  142. FONT-SIZE: 12px;FONT-FAMILY: Tahoma, Verdana, Arial; color:#000000;
  143. BORDER-BOTTOM: #003300 1px dotted;
  144. FONT-WEIGHT: bold;
  145. }
  146. #input {
  147. font-family: Tahoma, Verdana, Arial;
  148. font-size: 12px;
  149. color: #000000;
  150. text-decoration: none;
  151. background-color: #DDE7F2;
  152. border-top: 1px solid #000000;
  153. border-right: 1px solid #000000;
  154. border-left: 1px solid #000000;
  155. border-bottom: 1px solid #000000;
  156. }
  157. .frmButton {
  158. font-family: Tahoma, Verdana, Arial;
  159. color: #000000;
  160. text-decoration: none;
  161. background-color: #DDE7F2;
  162. font-weight: bold;
  163. font-size: 12px;
  164. border-top: 1px solid #CCCCCC;
  165. border-right: 1px solid #333333;
  166. border-bottom: 1px solid #333333;
  167. border-left: 1px solid #999999;
  168. white-space: nowrap;
  169. }
  170. .style1 {color: #FF0000}
  171. #textarea {
  172. font-family: Tahoma, Verdana, Arial;
  173. font-size: 12px;
  174. color: #000000;
  175. text-decoration: none;
  176. background-color: #DDE7F2;
  177. border-top: 1px solid #000000;
  178. border-right: 1px solid #000000;
  179. border-left: 1px solid #000000;
  180. border-bottom: 1px solid #000000;
  181. }
  182. .white {
  183. FONT-SIZE: 12px;FONT-FAMILY: Tahoma, Verdana, Arial; color:#ffffff
  184. }
  185. .tr1 {
  186. FONT-SIZE: 12px;FONT-FAMILY: Tahoma, Verdana, Arial; color:#000000;
  187. background-color: #efefef;
  188. height:20;
  189. }
  190. .tr2 {
  191. FONT-SIZE: 12px;FONT-FAMILY: Tahoma, Verdana, Arial; color:#000000;
  192. background-color: #e6eefa;
  193. height:20;
  194. }
  195. .tr12 {
  196. FONT-SIZE: 12px;FONT-FAMILY: Tahoma, Verdana, Arial; color:#000000;
  197. background-color: #ffffff;
  198. height:18;
  199. border-bottom: 1px solid #000000;
  200. }
  201. .tr22 {
  202. FONT-SIZE: 12px;FONT-FAMILY: Tahoma, Verdana, Arial; color:#000000;
  203. background-color: #ffffff;
  204. height:18;
  205. border-bottom: 1px solid #000000;
  206. }
  207. .orange {
  208. FONT-SIZE: 12px;FONT-FAMILY: Tahoma, Verdana, Arial; color:#ff9900; FONT-WEIGHT: bold;
  209. }
  210. .date {
  211. FONT-SIZE: 12px;FONT-FAMILY: Tahoma, Verdana, Arial; color:#009933; FONT-WEIGHT: normal;
  212. padding-top:4px;
  213. FONT-WEIGHT: bold;
  214. }
  215. .tanggal {
  216. FONT-SIZE: 12px;FONT-FAMILY: Tahoma, Verdana, Arial; color:#686868; FONT-WEIGHT: normal;
  217. padding-top:4px;
  218. FONT-WEIGHT: bold;
  219. }
  220. .copy {
  221. FONT-SIZE: 12px;FONT-FAMILY: Tahoma, Verdana, Arial; color:#cdcdcd; FONT-WEIGHT: normal;
  222. padding-top:0px;
  223. FONT-WEIGHT: normal;
  224. text-align:center;
  225. }
  226. #select {
  227. font-family: Tahoma, Verdana, Arial;
  228. font-size: 12px;
  229. color: #000000;
  230. text-decoration: none;
  231. background-color: #DDE7F2;
  232. border-top: 1px solid #000000;
  233. border-right: 1px solid #000000;
  234. border-left: 1px solid #000000;
  235. border-bottom: 1px solid #000000;
  236. }
  237. .celBorder {
  238. font-family: Tahoma, Verdana, Arial;
  239. color: #000000;
  240. text-decoration: none;
  241. font-size: 12px;
  242. border-top-width: 1px;
  243. border-top-style: solid;
  244. border-top-color: #CCCCCC;
  245. border-left-width: 1px;
  246. border-left-style: solid;
  247. border-left-color: #CCCCCC;
  248. border-right-width: 1px;
  249. border-right-style: solid;
  250. border-right-color: #CCCCCC;
  251. border-bottom-width: 1px;
  252. border-bottom-style: solid;
  253. border-bottom-color: #CCCCCC;
  254. vertical-align: text-middle;
  255. height:20px;
  256. }
  257. TABLE.list {
  258. BORDER-RIGHT: #006699 1px solid;
  259. BORDER-TOP: #006699 1px solid;
  260. BORDER-LEFT: #006699 1px solid;
  261. BORDER-BOTTOM: #006699 1px solid;
  262. WIDTH: 98%;
  263. BACKGROUND-COLOR: #ffffff;
  264. }
  265. .titleField3 {
  266. FONT-WEIGHT: bold;
  267. COLOR:#000000;
  268. FONT-SIZE: 12px; MARGIN: 0px;
  269. FONT-FAMILY: Tahoma, Verdana, Arial; BACKGROUND-COLOR: #bcdc7f;
  270. text-align:center;
  271. height:20px;
  272. text-valign:middle;
  273. text-transform: UPPERCASE;
  274. }
  275. .titleField {
  276. FONT-WEIGHT: bold;
  277. COLOR:#000000;
  278. FONT-SIZE: 12px; MARGIN: 0px;
  279. FONT-FAMILY: Tahoma, Verdana, Arial; BACKGROUND-COLOR: #b1ccf8;
  280. text-align:center;
  281. height:20px;
  282. text-valign:middle;
  283. text-transform: UPPERCASE;
  284. }
  285. .titleField2 {
  286. FONT-WEIGHT: bold;
  287. COLOR:#000000;
  288. FONT-SIZE: 10px; MARGIN: 0px;
  289. FONT-FAMILY: Tahoma, Verdana, Arial; BACKGROUND-COLOR: #b1ccf8;
  290. text-align:center;
  291. height:18px;
  292. text-valign:middle;
  293. text-transform: UPPERCASE;
  294. }
  295. #START :: untuk halaman list
  296. .bgfield1{
  297. COLOR:#000000; FONT-SIZE: 12px; MARGIN: 0px; FONT-FAMILY: Tahoma, Verdana, Arial; BACKGROUND-COLOR: #cdcdcd;
  298. }
  299. .bgfield2 {
  300. COLOR:#000000; FONT-SIZE: 12px; MARGIN: 0px; FONT-FAMILY: Tahoma, Verdana, Arial; BACKGROUND-COLOR: #cfcfcf;
  301. }
  302. #END :: untuk halaman list
  303. .celBorder {
  304. font-family: Tahoma, Verdana, Arial;
  305. color: #000000;
  306. text-decoration: none;
  307. font-size: 12px;
  308. border-top-width: 1px;
  309. border-top-style: solid;
  310. border-top-color: #CCCCCC;
  311. border-left-width: 1px;
  312. border-left-style: solid;
  313. border-left-color: #CCCCCC;
  314. vertical-align: text-top;
  315. }
  316. .numeric {
  317. text-align: right;
  318. }
  319. .calendar {
  320. COLOR:#000000; FONT-SIZE: 12px; MARGIN: 0px; FONT-FAMILY: Tahoma, Verdana, Arial;
  321. }
  322. .style1 {color: #FF0000}
  323. .pad10 {
  324. padding-left:10px;
  325. padding-top:10px;
  326. }
  327. /*#Global#*/
  328. .LTR, .RTL
  329. {
  330. background-color: #ffffff;
  331. }
  332. body
  333. {
  334. background-color: #ffffff;
  335. font-size: small;
  336. font-family: Arial;
  337. margin: 0px;
  338. }
  339. h1
  340. {
  341. color: #005595;
  342. font-size: 160%;
  343. }
  344. h2
  345. {
  346. font-size: 130%
  347. }
  348. h3
  349. {
  350. font-size: 120%
  351. }
  352. h4
  353. {
  354. font-size: 110%
  355. }
  356. h5
  357. {
  358. font-size: 100%
  359. }
  360. h2,h3,h4,h5
  361. {
  362. color: #002756;
  363. }
  364. a
  365. {
  366. text-decoration: underline;
  367. color: #000000;
  368. }
  369. a:hover
  370. {
  371. text-decoration: none;
  372. }
  373. .ErrorMessage
  374. {
  375. color: #ff0000;
  376. }
  377. .PageTitle
  378. {
  379. font-weight: bold;
  380. font-size: 20px;
  381. color: black;
  382. vertical-align: top;
  383. text-align: left;
  384. }
  385. .IE6 .PageTitleHeader
  386. {
  387. text-align: left;
  388. }
  389. /*#Global/Logon form#*/
  390. .LoginPanelPasswordRetrieval input[type="submit"]
  391. {
  392. width: 120px;
  393. }
  394. .LogonTextBox
  395. {
  396. width: 150px;
  397. }
  398. /*#Global/Language Selector#*/
  399. .languageSelection img
  400. {
  401. border: none;
  402. }
  403. .languageSelectionWithCultures, .languageSelection
  404. {
  405. text-align: right;
  406. }
  407. .languageSelectionWithCultures a
  408. {
  409. padding: 0px 2px;
  410. }
  411. .languageSelection span, .languageSelectionWithCultures span
  412. {
  413. padding: 0px 2px;
  414. }
  415. .languageSelectionWithCultures img
  416. {
  417. vertical-align: text-bottom;
  418. }
  419. /*#Global/Message & Errors labels#*/
  420. .EditingFormErrorLabel, .EventManagerRegError
  421. {
  422. color: #ff0000;
  423. }
  424. /*#Main styles#*/
  425. /*#Main styles/General#*/
  426. .zoneLeft
  427. {
  428. width: 190px;
  429. }
  430. .largeLeftContent
  431. {
  432. width: 225px;!important
  433. }
  434. .zoneContent
  435. {
  436. width: 735px;
  437. margin: 0px;
  438. overflow: hidden;
  439. }
  440. /*#Main styles/Events page#*/
  441. .userContributinons .zoneTop
  442. {
  443. width: 100%;
  444. }
  445. /*#Main styles/Events page#*/
  446. .eventCalendarDetail .zoneTop
  447. {
  448. width: 100%;
  449. margin-bottom: 10px;
  450. }
  451. .eventCalendarDetail .zoneLeft
  452. {
  453. width: 450px;
  454. }
  455. .eventCalendarDetail .zoneRight
  456. {
  457. width: 450px;
  458. }
  459. /*#Main styles/Blog page#*/
  460. .blogDetail .zoneTop
  461. {
  462. width: 100%;
  463. margin-bottom: 10px;
  464. }
  465. .blogDetail .zoneLeft
  466. {
  467. width: 700px;
  468. }
  469. .blogDetail .zoneRight
  470. {
  471. width: 200px;
  472. }
  473. /*#Main styles/Master page#*/
  474. /*Top logo, top menu*/
  475. .mainDiv
  476. {
  477. width: 930px;
  478. margin: 15px auto;
  479. }
  480. .zoneTop
  481. {
  482. width: 450px;
  483. float: right;
  484. /* padding-right: 10px;*/
  485. }
  486. .zoneMenu
  487. {
  488. /*width: 932px;*/
  489. margin: 0px auto;
  490. clear: both;
  491. }
  492. .zoneMainContent
  493. {
  494. margin: 15px 0 10px 0;
  495. min-height: 400px;
  496. }
  497. .IE6 .zoneMainContent
  498. {
  499. height: 400px;
  500. }
  501. .zoneContent
  502. {
  503. width: 735px;
  504. margin: 0px;
  505. }
  506. .zoneBottom
  507. {
  508. background: black;
  509. padding: 2px 10px 4px 10px;
  510. color: white;
  511. margin: 10px 0 10px 0;
  512. min-height: 15px;
  513. }
  514. .IE6 .zoneBottom
  515. {
  516. height: 15px;
  517. }
  518. .zoneBottom a
  519. {
  520. color: white;
  521. }
  522. .zoneLogo
  523. {
  524. margin: 15px 10px;
  525. width: 436px;
  526. float: left;
  527. }
  528. .RTL .zoneLogo
  529. {
  530. direction: ltr;
  531. }
  532. /*Top logo, left menu*/
  533. .mainDivLeftMenu
  534. {
  535. width: 1024px;
  536. margin: 15px auto;
  537. }
  538. .mainDivLeftMenu .zoneMenu
  539. {
  540. width: 90px;
  541. margin: 0px 0 10px 0;
  542. min-height: 400px;
  543. clear: none !important;
  544. }
  545. .mainDivLeftMenu .verticalCMSMenu
  546. {
  547. width: 98%;
  548. }
  549. .mainDivLeftMenu .zoneMainContent
  550. {
  551. padding-left: 4px;
  552. margin: 0px 0 10px 0;
  553. min-height: 400px;
  554. width: 930px;
  555. }
  556. /*#Main styles/Home page#*/
  557. .NewsletterSubscription .Table td
  558. {
  559. padding: 1px 2px 1px 0px;
  560. }
  561. /*
  562. .NewsletterSubscription
  563. {
  564. overflow: hidden;
  565. width: 225px;
  566. }
  567. */
  568. .NewsletterSubscription .Table td label
  569. {
  570. width: 65px !important;
  571. overflow: hidden;
  572. }
  573. .Gecko .NewsletterSubscription .Table td
  574. {
  575. padding: 2px 2px 2px 0px !important;
  576. }
  577. .homeTopImage3cols .zoneTop
  578. {
  579. width: 100% !important;
  580. padding-bottom: 15px !important;
  581. float: none !important;
  582. }
  583. .homeTopImage3cols .zoneCenter
  584. {
  585. margin: 15px 0 10px 0 !important;
  586. }
  587. .homeTopImage3cols .zoneCenter
  588. {
  589. width: 417px !important;
  590. text-align: justify !important;
  591. margin: 0 14px 0 14px !important;
  592. }
  593. .DesignMode .homeTopImage3cols .zoneCenter
  594. {
  595. width: 415px !important;
  596. }
  597. /* IE6 hack */
  598. .IE6 .homeTopImage3cols .zoneCenter
  599. {
  600. width: 414px !important;
  601. }
  602. .IE6 .DesignMode .homeTopImage3cols .zoneCenter
  603. {
  604. width: 412px !important;
  605. }
  606. .homeTopImage3cols .zoneLeft
  607. {
  608. width: 245px;
  609. }
  610. .homeTopImage3cols .zoneRight
  611. {
  612. width: 240px;
  613. }
  614. /* Featured product */
  615. .FeaturedProduct
  616. {
  617. text-align: center;
  618. font-weight: bold;
  619. }
  620. .FeaturedProduct a
  621. {
  622. text-decoration: none;
  623. display: block;
  624. margin-bottom: 3px;
  625. font-weight: normal;
  626. }
  627. .FeaturedProduct img
  628. {
  629. border: medium none;
  630. }
  631. .FeaturedProduct .ProductPrice
  632. {
  633. font-size: 120%;
  634. width: 100%;
  635. }
  636. /*#Main styles/Office list with map#*/
  637. .officeListMap .zoneLeft
  638. {
  639. width: 250px;
  640. }
  641. .officeListMap .zoneRight
  642. {
  643. width: 440px;
  644. }
  645. /*#Main styles/Header and text#*/
  646. .textHeader .zoneContent
  647. {
  648. width: 100% !important;
  649. }
  650. /*#Main styles/Text with left menu and right column#*/
  651. .textColLeftMenu .zoneLeft
  652. {
  653. width: 25% !important;
  654. }
  655. .textColLeftMenu .zoneContent
  656. {
  657. width: 50% !important;
  658. }
  659. .textColLeftMenu .zoneRight
  660. {
  661. width: 24% !important;
  662. }
  663. /*#Main styles/Three columns#*/
  664. .threeCols .zoneLeft
  665. {
  666. width: 33% !important;
  667. }
  668. .threeCols .zoneCenter
  669. {
  670. width: 34% !important;
  671. }
  672. .threeCols .zoneRight
  673. {
  674. width: 33% !important;
  675. }
  676. /*#Main styles/Three columns with left menu#*/
  677. .threeColsLeftMenu .zoneLeftMenu
  678. {
  679. width: 24% !important;
  680. }
  681. .threeColsLeftMenu .zoneLeft
  682. {
  683. width: 25% !important;
  684. }
  685. .threeColsLeftMenu .zoneCenter
  686. {
  687. width: 26% !important;
  688. }
  689. .threeColsLeftMenu .zoneRight
  690. {
  691. width: 25% !important;
  692. }
  693. /*#Main styles/Two columns with left menu#*/
  694. .twoColsLeftMenu .zoneLeftMenu
  695. {
  696. width: 26% !important;
  697. }
  698. .twoColsLeftMenu .zoneLeft
  699. {
  700. width: 37% !important;
  701. }
  702. .twoColsLeftMenu .zoneRight
  703. {
  704. width: 37% !important;
  705. }
  706. /* Menu design */
  707. .CMSTreeMenuTable
  708. {
  709. /*font-size: 120%;*/
  710. width: 100%;
  711. }
  712. .CMSTreeMenuTable a
  713. {
  714. white-space: nowrap;
  715. }
  716. .subCMSTreeMenuTable
  717. {
  718. margin-left: 10px;
  719. }
  720. .CMSTreeMenuTable a:hover
  721. {
  722. text-decoration: underline;
  723. }
  724. .CMSTreeMenuItem, .CMSTreeMenuSelectedItem
  725. {
  726. background: url(../App_Themes/CorporateSite/Images/leftmenuBg.gif) repeat-x left bottom;
  727. padding: 3px 0px;
  728. }
  729. .subCMSTreeMenuItem, .subCMSTreeMenuSelectedItem
  730. {
  731. background: url(../App_Themes/CorporateSite/Images/leftmenuBg.gif) repeat-x left bottom;
  732. padding: 3px 0px;
  733. }
  734. .CMSTreeMenuLink
  735. {
  736. padding-left: 12px;
  737. text-decoration: none;
  738. color: #000000;
  739. background: url(../App_Themes/CorporateSite/Images/treeMenuItemBackground.png) no-repeat left center;
  740. }
  741. .subCMSTreeMenuLink
  742. {
  743. text-decoration: none;
  744. padding-left: 18px;
  745. background: url(../App_Themes/CorporateSite/Images/treeMenuItemBackground.png) no-repeat 8px center;
  746. }
  747. .CMSTreeMenuSelectedLink
  748. {
  749. background: url(../App_Themes/CorporateSite/Images/treeMenuItemBackgroundActive.png) no-repeat left center;
  750. padding-left: 12px;
  751. text-decoration: underline;
  752. }
  753. .subCMSTreeMenuSelectedLink
  754. {
  755. background: url(../App_Themes/CorporateSite/Images/treeMenuItemBackgroundActive.png) no-repeat 8px center;
  756. padding-left: 18px;
  757. }
  758. /*#Top menu styles#*/
  759. .horizontalmenu
  760. {
  761. //background: #000000 url(../App_Themes/CorporateSite/Images/topMenuBackground.gif);
  762. }
  763. .verticalmenu
  764. {
  765. background: none;
  766. }
  767. /*#Top menu styles/Horizontal#*/
  768. .horizontalCMSMenu
  769. {
  770. height: 34px;
  771. color: #ffffff;
  772. padding: 3px;
  773. background: #000000 url(../App_Themes/CorporateSite/Images/topMenuBackground.gif);
  774. }
  775. .horizontalsubCMSMenu
  776. {
  777. background: black;
  778. color: #ffffff;
  779. }
  780. .horizontalsubCMSMenu tr
  781. {
  782. background: black;
  783. }
  784. .horizontalsubCMSMenuItem
  785. {
  786. white-space: nowrap;
  787. display: block;
  788. }
  789. .horizontalsubCMSMenuItem, .horizontalsubCMSMenuItemMouseOver, .horizontalsubCMSMenuItemMouseDown,
  790. .horizontalsubCMSMenuHighlightedMenuItem, .horizontalsubCMSMenuHighlightedMenuItemMouseOver,
  791. .horizontalsubCMSMenuHighlightedMenuItemMouseDown
  792. {
  793. padding: 5px 3px;
  794. min-width: 81px;
  795. white-space: nowrap;
  796. display: block;
  797. }
  798. .horizontalsubCMSMenuHighlightedMenuItem, .horizontalsubCMSMenuHighlightedMenuItemMouseOver,
  799. .horizontalsubCMSMenuHighlightedMenuItemMouseDown, .horizontalsubCMSMenuItemMouseOver
  800. {
  801. background: #eb6d24;
  802. }
  803. .horizontalCMSMenuItem, .horizontalCMSMenuItemMouseOver, .horizontalCMSMenuItemMouseDown,
  804. .horizontalCMSMenuHighlightedMenuItem, .horizontalCMSMenuHighlightedMenuItemMouseOver,
  805. .horizontalCMSMenuHighlightedMenuItemMouseDown,
  806. .horizontalCMSMenuItemMouseUp, .horizontalCMSMenuHighlightedMenuItemMouseUp
  807. {
  808. font-size: 15px;
  809. padding: 0px 10px;
  810. background: url(../App_Themes/CorporateSite/Images/topMenuItemDivider.gif) no-repeat top right;
  811. font-color: #FFFFFF;
  812. }
  813. .horizontalCMSMenuItemMouseOver, .horizontalCMSMenuHighlightedMenuItem,
  814. .horizontalCMSMenuHighlightedMenuItemMouseOver, .horizontalCMSMenuHighlightedMenuItemMouseDown
  815. {
  816. background: url(../App_Themes/CorporateSite/Images/topMenuItemHover.gif) repeat-x;
  817. }
  818. /*#Top menu styles/Vertical#*/
  819. .verticalCMSMenu
  820. {
  821. /* height: 34px;*/
  822. width: 110px;
  823. color: #ffffff;
  824. padding: 3px;
  825. background: #000000 url(../App_Themes/CorporateSite/Images/topMenuBackground.gif);
  826. }
  827. .verticalsubCMSMenu
  828. {
  829. background: black;
  830. color: #ffffff;
  831. height: 34px;
  832. }
  833. .verticalsubCMSMenu tr
  834. {
  835. background: black;
  836. }
  837. .verticalsubCMSMenuItem
  838. {
  839. white-space: nowrap;
  840. display: block;
  841. }
  842. .verticalsubCMSMenuItem, .verticalsubCMSMenuItemMouseOver, .verticalsubCMSMenuItemMouseDown,
  843. .verticalsubCMSMenuHighlightedMenuItem, .verticalsubCMSMenuHighlightedMenuItemMouseOver,
  844. .verticalsubCMSMenuHighlightedMenuItemMouseDown
  845. {
  846. padding: 5px 3px;
  847. min-width: 101px;
  848. min-height: 24px;
  849. white-space: nowrap;
  850. display: block;
  851. }
  852. .verticalsubCMSMenuHighlightedMenuItem, .verticalsubCMSMenuHighlightedMenuItemMouseOver,
  853. .verticalsubCMSMenuHighlightedMenuItemMouseDown, .verticalsubCMSMenuItemMouseOver
  854. {
  855. background: #eb6d24;
  856. }
  857. .verticalCMSMenuItem, .verticalCMSMenuItemMouseOver, .verticalCMSMenuItemMouseDown,
  858. .verticalCMSMenuHighlightedMenuItem, .verticalCMSMenuHighlightedMenuItemMouseOver,
  859. .verticalCMSMenuHighlightedMenuItemMouseDown,
  860. .verticalCMSMenuItemMouseUp, .verticalCMSMenuHighlightedMenuItemMouseUp
  861. {
  862. height: 34px;
  863. font-size: 15px;
  864. padding: 0px 10px;
  865. background: #000000 url(../App_Themes/CorporateSite/Images/topMenuBackground.gif);
  866. }
  867. .verticallCMSMenuItemMouseOver, .verticalCMSMenuHighlightedMenuItem,
  868. .verticalCMSMenuHighlightedMenuItemMouseOver, .verticalCMSMenuHighlightedMenuItemMouseDown
  869. {
  870. background: url(../App_Themes/CorporateSite/Images/topMenuItemHover.gif) repeat-x;
  871. }
  872. /*#Other css styles#*/
  873. /*#Other css styles/Language selector#*/
  874. .languageselector
  875. {
  876. float: right;
  877. margin: 30px 10px 0px 0px;
  878. }
  879. .languageselector img
  880. {
  881. border: none;
  882. margin-left: 5px;
  883. margin-right: 3px;
  884. }
  885. .languageselector a
  886. {
  887. color: #000000;
  888. text-decoration: none;
  889. }
  890. /*#Other css styles/Search box#*/
  891. .searchbox
  892. {
  893. float: right;
  894. margin-top: 15px;
  895. margin-bottom: 10px;
  896. }
  897. .searchbox input[type=image]
  898. {
  899. margin: 0px 0px 0px 7px;
  900. }
  901. .searchbox label
  902. {
  903. margin-right: 10px;
  904. padding-bottom: 5px;
  905. }
  906. .currentUser
  907. {
  908. text-align: right;
  909. float: right;
  910. padding-top: 7px;
  911. }
  912. .signOut
  913. {
  914. padding-top: 7px;
  915. padding-left: 15px;
  916. float: right;
  917. }
  918. .shoppingCartPreview
  919. {
  920. float: right;
  921. width: 100%;
  922. text-align: right;
  923. margin-top: 5px;
  924. }
  925. .shoppingCartPreview table
  926. {
  927. float: right;
  928. }
  929. .SmallTextLabel
  930. {
  931. font-size: 12px;
  932. }
  933. /*#Other css styles/Polls#*/
  934. .PollTitle
  935. {
  936. font-weight:bold;
  937. display:none;
  938. margin-bottom:10px
  939. }
  940. .PollAnswers{
  941. font-size: 10px;
  942. margin-top: 5px;
  943. }
  944. .PollGraph
  945. {
  946. height: 8px;
  947. border: 1px solid gray;
  948. }
  949. .PollGraph div
  950. {
  951. height: 8px;
  952. background: url(../App_Themes/CorporateSite/Images/poll02.gif) 100% 0% repeat-x;
  953. line-height: 0px;
  954. font-size: 0px;
  955. }
  956. .PollGraph div.PollGraph0
  957. {
  958. background: url(../App_Themes/CorporateSite/Images/poll01.gif) 100% 0% repeat-x;
  959. }
  960. .PollGraph div.PollGraph2
  961. {
  962. background: url(../App_Themes/CorporateSite/Images/poll03.gif) 100% 0% repeat-x;
  963. }
  964. .PollQuestion
  965. {
  966. font-size:14px;
  967. font-weight: bold;
  968. }
  969. .PollCount
  970. {
  971. text-align: right;
  972. }
  973. .PollFooter
  974. {
  975. margin-top:10px;
  976. }
  977. .signOut input, .SubscriptionButton, .PollVoteButton
  978. {
  979. background: url(../App_Themes/CorporateSite/Images/buttonBackground.gif) repeat-x;
  980. border: 1px solid #000000;
  981. color: #ffffff;
  982. }
  983. /*#Containers#*/
  984. /*#Containers/Content padding#*/
  985. .ContentPadding
  986. {
  987. padding: 10px 5px 0px 5px;
  988. }
  989. /*#Containers/Black box#*/
  990. .blackBox
  991. {
  992. border: 1px solid #545454;
  993. margin-bottom: 15px;
  994. }
  995. .blackBox .title
  996. {
  997. background: #e36c26 url(../App_Themes/CorporateSite/Images/topMenuItemDivider.gif) 0% 40%
  998. repeat-x;
  999. padding: 3px 5px;
  1000. font-size: 12px;
  1001. margin-top: 0px;
  1002. color: white;
  1003. margin-bottom:0px;
  1004. }
  1005. .blackBox .content
  1006. {
  1007. padding: 5px;
  1008. background: #f3f3f3;
  1009. }
  1010. /*#Containers/Orange box#*/
  1011. .orangeBox
  1012. {
  1013. border: 1px solid #ffd7b4;
  1014. margin-bottom: 15px;
  1015. }
  1016. .orangeBox .title
  1017. {
  1018. background: #e36c26 url(../App_Themes/CorporateSite/Images/topMenuItemHover.gif) 0% 40% repeat-x;
  1019. padding: 3px 5px;
  1020. font-size: 12px;
  1021. margin-top: 0px;
  1022. margin-bottom:0px;
  1023. color: white;
  1024. }
  1025. .orangeBox .content
  1026. {
  1027. padding: 5px;
  1028. }
  1029. /*#Containers/Orange box with grey cont.#*/
  1030. .orangeBoxGrey
  1031. {
  1032. }
  1033. .orangeBoxGrey .title
  1034. {
  1035. background: #e36c26 url(../App_Themes/CorporateSite/Images/OrangeBoxTitle.gif) repeat-x;
  1036. padding: 3px 5px;
  1037. font-size: 12px;
  1038. margin-top: 0px;
  1039. margin-bottom:0px;
  1040. }
  1041. .orangeBoxGrey .content
  1042. {
  1043. padding: 5px;
  1044. background: #f0f0f0;
  1045. }
  1046. /*#Containers/Gray box#*/
  1047. .grayBox
  1048. {
  1049. background: #f0f0f0;
  1050. padding: 5px;
  1051. }
  1052. /*#Photo Gallery#*/
  1053. .photoGallery
  1054. {
  1055. margin: auto;
  1056. text-align: center;
  1057. width: 648px;
  1058. }
  1059. .photoGallery .Slider .Pager
  1060. {
  1061. margin-left: 80px;
  1062. }
  1063. .photoGalleryContainer
  1064. {
  1065. margin: auto;
  1066. text-align: center;
  1067. }
  1068. .photoGallery img
  1069. {
  1070. margin: 0px 5px 5px;
  1071. border: none;
  1072. padding: 2px;
  1073. border: 1px solid #000000;
  1074. }
  1075. /*#Photo Gallery/Gallery list#*/
  1076. .gallery
  1077. {
  1078. float: left;
  1079. text-align: center;
  1080. }
  1081. .gallery h3
  1082. {
  1083. background: #cccccc url(../App_Themes/CorporateSite/Images/topMenuBackground.gif) repeat-x center left;
  1084. margin: 0px 5px;
  1085. padding: 2px 0px;
  1086. color: #ffffff;
  1087. }
  1088. /*#News#*/
  1089. .NewsPTitle
  1090. {
  1091. background:#000000 url(../App_Themes/CorporateSite/Images/genbackground.gif) repeat-x scroll left top;
  1092. border-top:1px solid #cccccc;
  1093. border-left:1px solid #cccccc;
  1094. border-right:1px solid #cccccc;
  1095. color:#ffffff;
  1096. padding:5px;
  1097. }
  1098. .NewsPTitle a{
  1099. color: #ffffff;
  1100. font-weight: bold;
  1101. }
  1102. .NewsPBody
  1103. {
  1104. border:1px solid #cccccc;
  1105. margin-bottom:20px;
  1106. padding:10px 15px;
  1107. }
  1108. .NewsSummary
  1109. {
  1110. background-color:#f1f1f1;
  1111. border:1px solid #cccccc;
  1112. margin-top:10px;
  1113. padding: 15px 0 15px 15px;
  1114. }
  1115. .NewsSummary img
  1116. {
  1117. border: 1px solid #cccccc;
  1118. float: left;
  1119. margin-right: 15px;
  1120. margin-bottom: 0px;
  1121. }
  1122. .NewsSummary .NewsContent
  1123. {
  1124. float: left;
  1125. width: 700px;
  1126. }
  1127. .NewsSummary .Date
  1128. {
  1129. font-weight: bold;
  1130. margin-bottom: 10px;
  1131. }
  1132. .NewsSummary .Clearer
  1133. {
  1134. height: 0;
  1135. line-height: 0;
  1136. font-size: 0pt;
  1137. clear: both;
  1138. margin: 0;
  1139. padding: 0;
  1140. width: 100%;
  1141. }
  1142. .NewsBody
  1143. {
  1144. border-left:1px solid #cccccc;
  1145. border-right:1px solid #cccccc;
  1146. border-bottom:1px solid #cccccc;
  1147. padding:15px;
  1148. }
  1149. .NewsBody img
  1150. {
  1151. border: none;
  1152. }
  1153. .NewsDetail
  1154. {
  1155. }
  1156. .NewsTitle
  1157. {
  1158. font-size: 16px;
  1159. font-weight: bold;
  1160. color: orange;
  1161. }
  1162. .NewsDate
  1163. {
  1164. font-style: italic;
  1165. padding-top: 5px;
  1166. }
  1167. .NewsReleaseDate
  1168. {
  1169. font-style: italic;
  1170. }
  1171. .BoxTitle
  1172. {
  1173. font-size: 120%;
  1174. color: #002756;
  1175. font-weight: bold;
  1176. }
  1177. .NewsPreviewTitle a
  1178. {
  1179. font-weight:bold;
  1180. }
  1181. .NewsPreviewDate
  1182. {
  1183. font-size:90%;
  1184. padding:5px 0 3px;
  1185. }
  1186. .NewsPreviewSummary
  1187. {
  1188. font-size:80%;
  1189. }
  1190. /*#Tags#*/
  1191. .autocomplete_completionListElement
  1192. {
  1193. visibility: hidden;
  1194. margin: 0px !important;
  1195. padding: 0px !important;
  1196. border: 1px solid #A4B2BC;
  1197. overflow: auto;
  1198. height: 200px;
  1199. text-align: left;
  1200. list-style-type: none;
  1201. background-color: #fff;
  1202. }
  1203. .RTL .autocomplete_completionListElement
  1204. {
  1205. text-align: right;
  1206. }
  1207. .autocomplete_highlightedListItem
  1208. {
  1209. background-color: #ffff99;
  1210. padding: 1px;
  1211. cursor: pointer;
  1212. }
  1213. .autocomplete_listItem
  1214. {
  1215. padding: 1px;
  1216. }
  1217. /*#Blog#*/
  1218. .BlogPTitle a
  1219. {
  1220. color: #ffffff;
  1221. font-weight: bold;
  1222. }
  1223. .BlogPTitle
  1224. {
  1225. background:#000000 url(../App_Themes/CorporateSite/Images/genbackground.gif) repeat-x scroll left top;
  1226. color: #ffffff;
  1227. padding: 5px;
  1228. border-left: solid 1px #cccccc;
  1229. border-right: solid 1px #cccccc;
  1230. border-top: solid 1px #cccccc;
  1231. }
  1232. .BlogPBody
  1233. {
  1234. padding: 10px 15px;
  1235. border: solid 1px #cccccc;
  1236. }
  1237. .BlogPBody img
  1238. {
  1239. border: none;
  1240. }
  1241. .BlogPDateWhole
  1242. {
  1243. background-color: #f1f1f1;
  1244. padding: 3px 5px;
  1245. border-left: solid 1px #cccccc;
  1246. border-right: solid 1px #cccccc;
  1247. border-bottom: solid 1px #cccccc;
  1248. }
  1249. .comments hr
  1250. {
  1251. border: solid 1px #cccccc;
  1252. }
  1253. .BlogCommentsTitle, .BlogLeaveComment
  1254. {
  1255. font-weight: bold;
  1256. font-size: 110%;
  1257. }
  1258. .blogDetail .comments .TextAreaField
  1259. {
  1260. width: 280px;
  1261. }
  1262. .TextAreaField
  1263. {
  1264. width: 280px;
  1265. height: 100px;
  1266. }
  1267. .IE7 .PageTitleHeader table
  1268. {
  1269. text-align: left;
  1270. }
  1271. /*#Board#*/
  1272. .CommentDetail .CommentRating
  1273. {
  1274. clear:both;
  1275. }
  1276. .BoardLeaveMessage, .BoardMessageTitle, .BlogTrackbacksTitle
  1277. {
  1278. font-weight: bold;
  1279. font-size: 110%;
  1280. }
  1281. /*#Forum#*/
  1282. .ForumModerationInfo
  1283. {
  1284. text-align: center;
  1285. margin: 5px;
  1286. padding: 5px;
  1287. }
  1288. .ForumModerationInfoText
  1289. {
  1290. margin: 15px;
  1291. border: solid 1px #cccccc;
  1292. padding: 35px;
  1293. background-color: #fff6df;
  1294. }
  1295. .ForumSearchResultsInfo
  1296. {
  1297. background-color:#cccccc;
  1298. padding: 8px;
  1299. font-weight:bold;
  1300. }
  1301. .Forum .Unapproved
  1302. {
  1303. background-color:#fff2cf;
  1304. }
  1305. .Post img
  1306. {
  1307. border: 0px;
  1308. }
  1309. .PostAttachments
  1310. {
  1311. border: 1px solid #cccccc;
  1312. background: #eeeeee;
  1313. padding: 5px;
  1314. margin: 10px 0px;
  1315. }
  1316. .PostAttachments .PostAttachmentsList
  1317. {
  1318. padding: 2px 0px;
  1319. }
  1320. .PostAttachments .PostAttachmentsHeader
  1321. {
  1322. color: gray;
  1323. }
  1324. .PostAttachments .PostAttachmentsList a
  1325. {
  1326. color: black;
  1327. }
  1328. /*#Forum/Attachments#*/
  1329. .ForumAttachments
  1330. {
  1331. border-right: solid 1px #cccccc;
  1332. border-left: solid 1px #cccccc;
  1333. border-bottom: solid 1px #cccccc;
  1334. }
  1335. .ForumAttachments .AttachmentTable
  1336. {
  1337. border: solid 1px #cccccc;
  1338. border-collapse: collapse;
  1339. margin-top: 12px;
  1340. }
  1341. .ForumAttachments .AttachmentTable td
  1342. {
  1343. border-top: solid 1px #cccccc;
  1344. border-bottom: solid 1px #cccccc;
  1345. }
  1346. .ForumAttachments .AttachmentTable .AttachmentTableHeader
  1347. {
  1348. background-color: #eeeeee;
  1349. }
  1350. .ForumAttachments .AttachmentTable .AttachmentTableHeader th, .AttachmentTable .AttachmentFileSize, .AttachmentAction
  1351. {
  1352. text-align: center;
  1353. border-top: solid 1px #cccccc;
  1354. border-bottom: solid 1px #cccccc;
  1355. padding: 3px;
  1356. }
  1357. .ForumAttachments .AttachmentTable .AttachmentTableHeader .AttachmentFileName
  1358. {
  1359. text-align: left;
  1360. }
  1361. .ForumAttachments .AttachmentTable .AttachmentTableFooter
  1362. {
  1363. display: none;
  1364. }
  1365. .ForumAttachments .AttachmentTable .AttachmentTableUpload input
  1366. {
  1367. height: 23px;
  1368. }
  1369. .ForumAttachments .AttachmentTable .AttachmentTableUpload .Button
  1370. {
  1371. width: 100px;
  1372. }
  1373. .ForumAttachments .AttachmentTable .AttachmentTableFooter
  1374. {
  1375. display: none;
  1376. }
  1377. .ForumAttachments .Title
  1378. {
  1379. font-size: 16px;
  1380. font-weight: bold;
  1381. }
  1382. /*#Forum/Extended actions#*/
  1383. .PostExtendedActions
  1384. {
  1385. border-top: solid 1px #eeeeee;
  1386. margin-top: 10px;
  1387. padding-top: 5px;
  1388. margin-bottom: 5px;
  1389. }
  1390. .PostExtendedActions span
  1391. {
  1392. display: none;
  1393. }
  1394. .PostExtendedActions .SendMessage
  1395. {
  1396. display: block;
  1397. float: left;
  1398. width: 16px;
  1399. height: 16px;
  1400. background-image: url(../App_themes/Default/Images/CMSModules/Forums/LiveImages/sendmessage.gif);
  1401. margin-right: 7px;
  1402. }
  1403. .PostExtendedActions .Friendship
  1404. {
  1405. display: block;
  1406. float: left;
  1407. width: 16px;
  1408. height: 16px;
  1409. background-image: url(../App_themes/Default/Images/CMSModules/Forums/LiveImages/friendship.gif);
  1410. }
  1411. /*#Forum/Extended search#*/
  1412. .ForumExtendedSearch .TextBox
  1413. {
  1414. width: 300px;
  1415. }
  1416. .ForumExtendedSearch .DropDownList
  1417. {
  1418. width: 304px;
  1419. }
  1420. .ForumExtendedSearch .Button
  1421. {
  1422. margin-top: 20px;
  1423. width: 150px;
  1424. }
  1425. /*#Forum/Mark as answer#*/
  1426. .Post .AcceptedSolution
  1427. {
  1428. background-color: #efffef;
  1429. }
  1430. .AcceptedSolutionArea
  1431. {
  1432. color:Green;
  1433. font-size:14pt;
  1434. width:100%;
  1435. margin-bottom: 5px;
  1436. }
  1437. .AcceptedSolutionArea td
  1438. {
  1439. padding-left: 5px !important;
  1440. padding-bottom: 5px !important;
  1441. }
  1442. .AcceptedSolutionArea .AcceptedSolutionText
  1443. {
  1444. width:100%;
  1445. }
  1446. /*#Forum/Quote#*/
  1447. .PostText blockquote
  1448. {
  1449. border: solid 1px #d4d4d4;
  1450. background-color: #eeeeee;
  1451. padding: 4px;
  1452. margin-left: 10px;
  1453. }
  1454. .PostText blockquote cite
  1455. {
  1456. display: block;
  1457. font-weight: bold;
  1458. }
  1459. /*#Forum/Manage#*/
  1460. .ForumManage
  1461. {
  1462. border: 1px solid #cccccc;
  1463. margin: 4px 0px 5px 5px;
  1464. padding: 2px 5px;
  1465. background-color: #eeeeee;
  1466. }
  1467. .PostManageEdit table
  1468. {
  1469. border: none !important;
  1470. }
  1471. .PostManageEdit .ForumNewPost td
  1472. {
  1473. border-bottom: none !important;
  1474. }
  1475. .ForumNewPost .SignatureAreaItem
  1476. {
  1477. width: 500px;
  1478. height: 50px;
  1479. }
  1480. .SignatureArea
  1481. {
  1482. width: 100%;
  1483. border-top: solid 1px #D7D7D7;
  1484. font-size: 8pt;
  1485. color: #a8a8a8;
  1486. margin-top: 5px;
  1487. padding: 5px;
  1488. }
  1489. .ForumTree .PostTree .SignatureArea
  1490. {
  1491. width: 100%;
  1492. border-top: solid 1px #D7D7D7;
  1493. font-size: 8pt;
  1494. color: #a8a8a8;
  1495. margin-top: 5px;
  1496. padding: 5px;
  1497. }
  1498. /*#Forum/Forum Group#*/
  1499. .ForumGroup
  1500. {
  1501. width: 100%;
  1502. }
  1503. .ForumGroup *
  1504. {
  1505. font-family: Arial;
  1506. }
  1507. .ForumGroup .Table
  1508. {
  1509. width: 100%;
  1510. border-top: solid 1px #cccccc;
  1511. border-left: solid 1px #cccccc;
  1512. background-color: #ffffff;
  1513. }
  1514. .ForumGroup .Table td
  1515. {
  1516. padding: 6px;
  1517. }
  1518. .ForumGroup .Table .Header td
  1519. {
  1520. font-weight: bold;
  1521. border-right: solid 1px #cccccc;
  1522. border-bottom: solid 1px #cccccc;
  1523. color: #ffffff;
  1524. padding-top: 4px;
  1525. padding-bottom: 4px;
  1526. background: #000000 url(../App_Themes/CorporateSite/Images/genbackground.gif) repeat-x top left;
  1527. }
  1528. .ForumGroup .Table .Info td
  1529. {
  1530. border-right: solid 1px #cccccc;
  1531. border-bottom: solid 1px #888888;
  1532. border-top: solid 1px #888888;
  1533. padding-top: 0px;
  1534. padding-bottom: 0px;
  1535. background: #000000 url(../App_Themes/CorporateSite/Images/genbackground.gif) repeat-x top left;
  1536. height: 55px;
  1537. vertical-align: top;
  1538. }
  1539. .ForumGroup .Table .GroupName
  1540. {
  1541. display: block;
  1542. font-weight: bold;
  1543. font-size: 17px;
  1544. padding-top: 8px;
  1545. padding-bottom: 5px;
  1546. color: #ffffff;
  1547. }
  1548. .ForumGroup .Table .GroupDescription
  1549. {
  1550. display: block;
  1551. padding-left: 10px;
  1552. color: #dddddd;
  1553. }
  1554. .ForumGroup .Table .ForumInfo
  1555. {
  1556. padding-top: 10px;
  1557. padding-bottom: 10px;
  1558. }
  1559. .ForumGroup .Table .Threads
  1560. {
  1561. text-align: center;
  1562. width: 50px;
  1563. }
  1564. .ForumGroup .Table .Posts
  1565. {
  1566. text-align: center;
  1567. width: 50px;
  1568. }
  1569. .ForumGroup .Table .LastPost
  1570. {
  1571. text-align: center;
  1572. width: 200px;
  1573. }
  1574. .ForumGroup .Table .PostTime
  1575. {
  1576. white-space: nowrap;
  1577. }
  1578. .ForumGroup .Table .PostUser
  1579. {
  1580. white-space: nowrap;
  1581. font-weight: bold;
  1582. color: #e36c26;
  1583. }
  1584. .ForumGroup .ForumOdd td
  1585. {
  1586. background-color: #f8f8ff;
  1587. }
  1588. .ForumGroup .Forum td
  1589. {
  1590. border-right: solid 1px #cccccc;
  1591. border-bottom: solid 1px #cccccc;
  1592. }
  1593. .ForumGroup .Forum .ForumName
  1594. {
  1595. font-weight: bold;
  1596. font-size: 15px;
  1597. text-decoration: underline;
  1598. color: black;
  1599. }
  1600. .ForumGroup .Forum .ForumDescription
  1601. {
  1602. padding-left: 10px;
  1603. }
  1604. /*#Forum/Forum flat layout#*/
  1605. .ForumFlat *
  1606. {
  1607. font-family: Arial;
  1608. }
  1609. .ForumFlat .Table
  1610. {
  1611. width: 100%;
  1612. background-color: #ffffff;
  1613. }
  1614. .ForumFlat .Table td
  1615. {
  1616. padding: 6px;
  1617. }
  1618. .ForumFlat .Table .Info td
  1619. {
  1620. border: solid 1px #888888;
  1621. padding-top: 0px;
  1622. padding-bottom: 0px;
  1623. background: #000000 url(../App_Themes/CorporateSite/Images/genbackground.gif) repeat-x top left;
  1624. height: 55px;
  1625. vertical-align: top;
  1626. }
  1627. .ForumFlat .Table .ForumContent
  1628. {
  1629. background-color: #ffffff;
  1630. padding: 0px;
  1631. margin: 0px;
  1632. /*font-size: 110%;*/
  1633. }
  1634. .ForumFlat .Table .Posts
  1635. {
  1636. border-right: solid 1px #cccccc;
  1637. border-left: solid 1px #cccccc;
  1638. }
  1639. .ForumFlat .Table .ForumName
  1640. {
  1641. display: block;
  1642. font-weight: bold;
  1643. font-size: 17px;
  1644. padding-top: 8px;
  1645. padding-bottom: 5px;
  1646. /*text-decoration: underline;*/
  1647. color: #ffffff;
  1648. }
  1649. .ForumFlat .Table .ForumDescription
  1650. {
  1651. display: block;
  1652. padding-left: 10px;
  1653. color: #dddddd;
  1654. }
  1655. .ForumFlat .Table .Informations td
  1656. {
  1657. font-weight: bold;
  1658. background-color: #eeeeee;
  1659. border-right: solid 1px #cccccc;
  1660. border-left: solid 1px #cccccc;
  1661. border-bottom: solid 1px #bbbbbb;
  1662. padding: 5px;
  1663. background-color: #fffec0;
  1664. }
  1665. .ForumFlat .Table .Actions td
  1666. {
  1667. font-weight: bold;
  1668. background-color: #eeeeee;
  1669. border-right: solid 1px #cccccc;
  1670. border-left: solid 1px #cccccc;
  1671. border-bottom: solid 1px #bbbbbb;
  1672. padding: 5px;
  1673. }
  1674. .ForumFlat .Table .Actions .ActionLink
  1675. {
  1676. color: #e36c26;
  1677. text-decoration: underline;
  1678. padding: 0px 5px 0px 5px;
  1679. }
  1680. .ForumFlat .Table .Posts td
  1681. {
  1682. border-right: solid 1px #cccccc;
  1683. border-left: solid 1px #cccccc;
  1684. border-bottom: solid 1px #cccccc;
  1685. padding: 0px;
  1686. }
  1687. .ForumFlat .Table .PostsTable
  1688. {
  1689. width: 100%;
  1690. }
  1691. .ForumFlat .Table .PostsTable td
  1692. {
  1693. border-top: none;
  1694. border-right: none;
  1695. border-left: none;
  1696. border-bottom: solid 1px #cccccc;
  1697. }
  1698. .ForumFlat .Pager td
  1699. {
  1700. background-color: #eeeeee;
  1701. border: none;
  1702. padding: 0px;
  1703. height: 23px;
  1704. font-weight: bold;
  1705. text-align: center;
  1706. }
  1707. .ForumFlat .Pager a
  1708. {
  1709. font-weight: bold;
  1710. text-decoration: underline;
  1711. color: #65a02f;
  1712. }
  1713. .ForumFlat .ThreadTable
  1714. {
  1715. border-left: solid 1px #cccccc;
  1716. }
  1717. .ForumFlat .ThreadTable td
  1718. {
  1719. border-right: solid 1px #cccccc;
  1720. border-bottom: solid 1px #cccccc;
  1721. }
  1722. .ForumFlat .ThreadTable .Header td
  1723. {
  1724. font-weight: bold;
  1725. background-color: #eeeeee;
  1726. border-right: solid 1px #cccccc;
  1727. border-bottom: solid 1px #cccccc;
  1728. color: #ffffff;
  1729. padding-top: 4px;
  1730. padding-bottom: 4px;
  1731. background-image: url(../App_Themes/CorporateSite/Images/genbackground.gif);
  1732. }
  1733. .ForumFlat .ThreadTable .Author
  1734. {
  1735. text-align: center;
  1736. width: 200px;
  1737. color: #e36c26;
  1738. }
  1739. .ForumFlat .ThreadTable .Posts, .ForumFlat .ThreadTable .Views
  1740. {
  1741. text-align: center;
  1742. width: 50px;
  1743. }
  1744. .ForumFlat .ThreadTable .LastPost
  1745. {
  1746. text-align: center;
  1747. width: 200px;
  1748. }
  1749. .ForumFlat .ThreadTable .PostTime
  1750. {
  1751. white-space: nowrap;
  1752. }
  1753. .ForumFlat .ThreadTable .PostUser
  1754. {
  1755. white-space: nowrap;
  1756. font-weight: bold;
  1757. color: #e36c26;
  1758. }
  1759. .ForumFlat .ThreadTable .ThreadInfo
  1760. {
  1761. text-align: left;
  1762. }
  1763. .ForumFlat .ThreadTable .ThreadInfo .ThreadName
  1764. {
  1765. font-weight: bold;
  1766. text-decoration: underline;
  1767. color: #e36c26;
  1768. }
  1769. .ForumFlat .ForumBreadCrumbs
  1770. {
  1771. font-weight: normal;
  1772. font-size: 9pt;
  1773. font-family: Arial;
  1774. padding: 0px 5px 0px 5px;
  1775. }
  1776. .ForumFlat .ForumNewPost
  1777. {
  1778. border-right: solid 1px #cccccc;
  1779. border-left: solid 1px #cccccc;
  1780. border-bottom: solid 1px #cccccc;
  1781. }
  1782. /*#Forum/Forum flat layout/Post#*/
  1783. .ForumFlat .ForumPost
  1784. {
  1785. padding: 8px 8px 8px 8px;
  1786. }
  1787. .ForumFlat .PostIndent .ForumPost
  1788. {
  1789. border-left: solid 1px #cccccc;
  1790. }
  1791. .ForumFlat .PostIndent
  1792. {
  1793. padding-left: 30px;
  1794. }
  1795. .ForumFlat .PostUser, .ForumFlat .PostUserLink
  1796. {
  1797. white-space: nowrap;
  1798. font-weight: bold;
  1799. color: #e36c26;
  1800. }
  1801. .ForumFlat .PostUser
  1802. {
  1803. text-decoration: none;
  1804. }
  1805. .ForumFlat .PostSubject
  1806. {
  1807. display: block;
  1808. font-weight: bold;
  1809. font-size: 13px;
  1810. }
  1811. .ForumFlat .PostText
  1812. {
  1813. display: block;
  1814. padding: 3px 5px 3px 5px;
  1815. }
  1816. .ForumFlat .PostActionLink
  1817. {
  1818. text-decoration: underline;
  1819. color: #e36c26;
  1820. padding: 0px 5px 0px 5px;
  1821. }
  1822. /*#Forum/New post form#*/
  1823. .ForumNewPost
  1824. {
  1825. padding: 5px;
  1826. font-family: Arial;
  1827. }
  1828. .ForumNewPost .PostReply
  1829. {
  1830. border: solid 1px #cccccc;
  1831. margin-top: 5px;
  1832. margin-bottom: 5px;
  1833. }
  1834. .ForumNewPost .FormPadding
  1835. {
  1836. /*border: solid 1px #cccccc;*/
  1837. padding: 5px;
  1838. margin-top: 5px;
  1839. margin-bottom: 5px;
  1840. }
  1841. .ForumNewPost .Title
  1842. {
  1843. font-size: 17px;
  1844. font-weight: bold;
  1845. margin-top: 10px;
  1846. margin-bottom: 5px;
  1847. display: block;
  1848. }
  1849. .ForumFlat .ForumNewPost .PostForm td
  1850. {
  1851. border: none;
  1852. }
  1853. .ForumNewPost .ItemLabel
  1854. {
  1855. font-weight: bold;
  1856. vertical-align: middle;
  1857. padding: 5px;
  1858. }
  1859. .ForumNewPost .Button
  1860. {
  1861. width: 100px;
  1862. }
  1863. .ForumNewPost .TextboxItem
  1864. {
  1865. width: 500px;
  1866. }
  1867. .ForumNewPost .TextboxItemShort
  1868. {
  1869. width: 300px;
  1870. }
  1871. .ForumNewPost .TextareaItem
  1872. {
  1873. width: 500px;
  1874. height: 200px;
  1875. }
  1876. /*#Forum/Tree layout#*/
  1877. .ForumTree *
  1878. {
  1879. font-family: Arial;
  1880. }
  1881. .ForumTree .Table
  1882. {
  1883. width: 100%;
  1884. background-color: #ffffff;
  1885. }
  1886. .ForumTree .Table td
  1887. {
  1888. padding: 6px;
  1889. }
  1890. .ForumTree .Table .Info td
  1891. {
  1892. background-color: #5c99e8;
  1893. border: solid 1px #888888;
  1894. padding-top: 0px;
  1895. padding-bottom: 0px;
  1896. background: #000000 url(../App_Themes/CorporateSite/Images/genbackground.gif) repeat-x top
  1897. left;
  1898. height: 55px;
  1899. vertical-align: top;
  1900. }
  1901. .ForumTree .Table .ForumName
  1902. {
  1903. display: block;
  1904. font-weight: bold;
  1905. font-size: 17px;
  1906. padding-top: 8px;
  1907. padding-bottom: 5px;
  1908. /*text-decoration: underline;*/
  1909. color: #ffffff;
  1910. }
  1911. .ForumTree .Table .ForumDescription
  1912. {
  1913. display: block;
  1914. padding-left: 10px;
  1915. color: #dddddd;
  1916. }
  1917. .ForumTree .Table .Actions td
  1918. {
  1919. font-weight: bold;
  1920. background-color: #eeeeee;
  1921. border-right: solid 1px #cccccc;
  1922. border-left: solid 1px #cccccc;
  1923. border-bottom: solid 1px #bbbbbb;
  1924. padding: 5px;
  1925. }
  1926. .ForumTree .Table .Actions .ActionLink
  1927. {
  1928. color: #e36c26;
  1929. text-decoration: underline;
  1930. padding: 0px 5px 0px 5px;
  1931. }
  1932. .ForumTree .Table .Posts
  1933. {
  1934. border-right: solid 1px #cccccc;
  1935. border-left: solid 1px #cccccc;
  1936. border-bottom: solid 1px #cccccc;
  1937. padding: 0px;
  1938. }
  1939. .ForumTree .Table .Posts .PostTree td
  1940. {
  1941. padding: 0px;
  1942. }
  1943. .ForumTree .Table .Posts .PostTree
  1944. {
  1945. padding: 5px;
  1946. border-top: solid 1px #dddddd;
  1947. border-bottom: solid 1px #dddddd;
  1948. }
  1949. .ForumTree .ForumNewPost .PostForm td
  1950. {
  1951. border: none;
  1952. }
  1953. /*#Forum/Tree layout/Post#*/
  1954. .ForumTree .ForumPost
  1955. {
  1956. padding: 8px 8px 8px 8px;
  1957. }
  1958. .ForumTree .PostDetail .ForumPost
  1959. {
  1960. border-bottom: solid 1px #cccccc;
  1961. }
  1962. .ForumTree .PostUser, .ForumTree .PostUserLink
  1963. {
  1964. color: #e36c26;
  1965. font-weight: bold;
  1966. white-space: nowrap;
  1967. }
  1968. .ForumTree .PostUser
  1969. {
  1970. text-decoration: none;
  1971. }
  1972. .ForumTree .PostSubject
  1973. {
  1974. display: block;
  1975. font-weight: bold;
  1976. font-size: 13px;
  1977. }
  1978. .ForumTree .PostText
  1979. {
  1980. display: block;
  1981. padding: 3px 5px 3px 5px;
  1982. }
  1983. .ForumTree .PostActionLink
  1984. {
  1985. color: #e36c26;
  1986. padding: 0px 5px;
  1987. text-decoration: underline;
  1988. }
  1989. .ForumTree .PostTree .ForumPost
  1990. {
  1991. border: solid 1px #cccccc;
  1992. width: 600px;
  1993. }
  1994. /* Overall */
  1995. .HiddenButton
  1996. {
  1997. display: none;
  1998. }
  1999. /* Tree Items*/
  2000. .ForumTree .PostTree td
  2001. {
  2002. vertical-align: top;
  2003. }
  2004. .ThreadPost, .SubThreadPost, .RootPostItem, .ThreadPostSelected
  2005. {
  2006. padding: 3px 3px 1px 3px;
  2007. overflow: hidden;
  2008. color: #000000;
  2009. font-weight: bold;
  2010. }
  2011. .ThreadPostSelected
  2012. {
  2013. background-color: #cccccc;
  2014. font-weight: bold;
  2015. color: #000000;
  2016. overflow: hidden;
  2017. padding: 3px 20px 1px 3px;
  2018. }
  2019. .PostSeparator
  2020. {
  2021. padding: 0 3px;
  2022. }
  2023. /*#Forums/Images#*/
  2024. .ForumGroup .Forum .ForumImageDefault, .ForumGroup .Forum .ForumImage, .ForumGroup .Forum .ForumImageLocked,
  2025. .ForumFlat .ThreadTable .ThreadImageDefault, .ForumFlat .ThreadTable .ThreadImage, .ForumFlat .ThreadTable .ThreadImageLocked, .ForumFlat .ThreadTable .ThreadImageAnnouncement, .ForumFlat .ThreadTable .ThreadImageSticky
  2026. {
  2027. background-repeat:no-repeat;
  2028. background-position:center;
  2029. border-right: none;
  2030. width: 24px;
  2031. text-align: center;
  2032. border-right: 1px solid #cccccc;
  2033. }
  2034. .ForumGroup .Forum .ForumImageDefault, .ForumGroup .Forum .ForumImage
  2035. {
  2036. background-image: url(../App_Themes/Default/Images/CMSModules/Forums/LiveImages/Forum_default.gif);
  2037. }
  2038. .ForumGroup .Forum .ForumImageLocked
  2039. {
  2040. background-image: url(../App_Themes/Default/Images/CMSModules/Forums/LiveImages/Forum_locked.gif);
  2041. }
  2042. .ForumFlat .ThreadTable .ThreadImageDefault, .ForumFlat .ThreadTable .ThreadImage
  2043. {
  2044. background-image: url(../App_Themes/Default/Images/CMSModules/Forums/LiveImages/Thread_default.gif);
  2045. }
  2046. .ForumFlat .ThreadTable .ThreadImageLocked
  2047. {
  2048. background-image: url(../App_Themes/Default/Images/CMSModules/Forums/LiveImages/Thread_locked.gif);
  2049. }
  2050. .ForumFlat .ThreadTable .ThreadImageAnnouncement
  2051. {
  2052. background-image: url(../App_Themes/Default/Images/CMSModules/Forums/LiveImages/Thread_announcement.gif);
  2053. }
  2054. .ForumFlat .ThreadTable .ThreadImageSticky
  2055. {
  2056. background-image: url(../App_Themes/Default/Images/CMSModules/Forums/LiveImages/Thread_sticked.gif);
  2057. }
  2058. .OfficeName
  2059. {
  2060. padding: 2px 0 2px 0;
  2061. font-weight: bold;
  2062. }
  2063. /*#Events#*/
  2064. .EventCalendar
  2065. {
  2066. width: 100%;
  2067. }
  2068. .EventCalendar *
  2069. {
  2070. padding: 0px;
  2071. }
  2072. .EventCalendar .Title
  2073. {
  2074. background:#000000 url(../App_Themes/CorporateSite/Images/genbackground.gif) repeat-x scroll left top;
  2075. color: #ffffff;
  2076. padding: 5px;
  2077. font-weight: bold;
  2078. vertical-align: middle;
  2079. }
  2080. .EventCalendar .Navigation
  2081. {
  2082. font-weight: bold;
  2083. width: 50px;
  2084. padding-left: 10px;
  2085. padding-right: 10px;
  2086. vertical-align: middle;
  2087. }
  2088. .EventCalendar .DayHeader
  2089. {
  2090. height: 25px;
  2091. background-color: #222222;
  2092. color: White;
  2093. font-weight: bold;
  2094. border-style: none;
  2095. vertical-align: middle;
  2096. font-size: 11px;
  2097. }
  2098. .EventCalendar .Day, .EventCalendar .OtherMonth, .EventCalendar .Weekend, .EventCalendar .Today
  2099. {
  2100. height: 50px;
  2101. padding: 3px;
  2102. background-color: #eeeeee;
  2103. font-size: 11px;
  2104. }
  2105. .EventCalendar .Today
  2106. {
  2107. background-color: #222222;
  2108. color: White;
  2109. font-weight: bold;
  2110. }
  2111. .EventCalendar .Today a
  2112. {
  2113. color: White;
  2114. font-weight: bold;
  2115. font-size: 11px;
  2116. }
  2117. .EventCalendar .ContentEvent a
  2118. {
  2119. margin-top: 3px;
  2120. color: Orange;
  2121. font-weight: bold;
  2122. }
  2123. .EventCalendar .OtherMonth
  2124. {
  2125. color: Gray;
  2126. background-color: White;
  2127. }
  2128. .EventManagerRegTitle
  2129. {
  2130. display: block;
  2131. color: #002756;
  2132. font-weight: bold;
  2133. margin-bottom: 5px;
  2134. }
  2135. .EventManagerOutlookLink
  2136. {
  2137. display: block;
  2138. margin-top: 5px;
  2139. }
  2140. .EventManagerRegLabel
  2141. {
  2142. font-weight: bold;
  2143. }
  2144. /*#Examples#*/
  2145. .Slider .Pager
  2146. {
  2147. }
  2148. .Slider .Pager a
  2149. {
  2150. text-decoration: none;
  2151. font-weight: bold;
  2152. font-size: 11px;
  2153. border: 1px solid #cccccc;
  2154. background-color: #f0f0f0;
  2155. text-align: center;
  2156. padding: 0px 3px 0px 3px;
  2157. display: block;
  2158. width: 10px;
  2159. }
  2160. .Slider .PagerPage, .Slider .Control
  2161. {
  2162. margin: 0px 15px 0px 0px;
  2163. float: left;
  2164. }
  2165. .Slider .Control a
  2166. {
  2167. width: 30px;
  2168. }
  2169. .SearchResult
  2170. {
  2171. padding-top: 10px;
  2172. padding-bottom: 10px;
  2173. }
  2174. .ResultTitle a
  2175. {
  2176. color: #e36c26;
  2177. font-weight: bold;
  2178. }
  2179. .CMSSearchResultsNoResultsLabel
  2180. {
  2181. padding-top: 10px;
  2182. padding-left: 5px;
  2183. display: block;
  2184. font-weight: bold;
  2185. }
  2186. .examListMenu ul
  2187. {
  2188. list-style: none;
  2189. }
  2190. .examListMenu .CMSListMenuUL .CMSListMenuLI .CMSListMenuUL
  2191. {
  2192. display: none;
  2193. }
  2194. .examListMenu .CMSListMenuUL .CMSListMenuLI .CMSListMenuUL .CMSListMenuLI .CMSListMenuUL
  2195. {
  2196. display: none;
  2197. }
  2198. .examListMenu .CMSListMenuUL .CMSListMenuLI
  2199. {
  2200. background: url(../App_Themes/CorporateSite/Images/treeMenuItemBackground.png) no-repeat center
  2201. left;
  2202. padding-left: 10px;
  2203. }
  2204. .examListMenu .CMSListMenuUL .CMSListMenuHighlightedLI
  2205. {
  2206. background: url(../App_Themes/CorporateSite/Images/treeMenuItemBackgroundActive.png) no-repeat
  2207. 0px 4px;
  2208. padding-left: 10px;
  2209. }
  2210. .ecommerceExample
  2211. {
  2212. width: 720px !important;
  2213. }
  2214. .forumsExample
  2215. {
  2216. width: 703px !important;
  2217. }
  2218. .CustomRegistrationForm .ConfirmationSeparator
  2219. {
  2220. height: 6px;
  2221. }
  2222. /*#Examples/Media Libraries#*/
  2223. .MediaLibraryListDescription
  2224. {
  2225. vertical-align: top;
  2226. }
  2227. .MediaLibraryListDescription a
  2228. {
  2229. font-size: 18px;
  2230. }
  2231. .MediaLibraryListPhoto
  2232. {
  2233. padding: 4px 20px 1px 5px;
  2234. }
  2235. .MediaListItem
  2236. {
  2237. margin: 10px 0px;
  2238. width: 743px;
  2239. background: url(../App_Themes/CorporateSite/Images/Examples/MediaListTop.gif) no-repeat;
  2240. }
  2241. .MediaListItemBottom
  2242. {
  2243. height: 6px;
  2244. background: url(../App_Themes/CorporateSite/Images/Examples/MediaListBottom.gif) no-repeat;
  2245. }
  2246. .MediaLibraryListDescriptionText
  2247. {
  2248. padding-top: 10px;
  2249. font-size: 12px;
  2250. }
  2251. /*#Examples/Event manager#*/
  2252. .EventManagerRegText
  2253. {
  2254. width: 230px;
  2255. }
  2256. /*#Examples/Pager control#*/
  2257. .PagerControl
  2258. {
  2259. text-align: center;
  2260. }
  2261. .PagerResults
  2262. {
  2263. padding-top: 10px !important;
  2264. padding-bottom: 0 !important;
  2265. }
  2266. .PagerNumberArea
  2267. {
  2268. padding-top: 10px;
  2269. }
  2270. /*#Examples/My profile#*/
  2271. .MyProfilePanel input[type="text"]
  2272. {
  2273. width: 235px;
  2274. }
  2275. .MyProfilePanel .MyProfileLanguage
  2276. {
  2277. width: 239px;
  2278. }
  2279. .MyProfilePanel .MyProfileUserSignature
  2280. {
  2281. width: 235px;
  2282. }
  2283. .IE6 .MyProfilePanel textarea
  2284. {
  2285. width: 435px;
  2286. }
  2287. .MyProfilePanel input[type="submit"]
  2288. {
  2289. width: 100px;
  2290. }
  2291. /*#Examples/Change password#*/
  2292. .ChangePasswordTable .FieldLabel
  2293. {
  2294. }
  2295. .ChangePasswordTable .FieldInput input[type="text"]
  2296. {
  2297. }
  2298. /*#Examples/Report#*/
  2299. .Report table
  2300. {
  2301. border: solid 1px #cccccc;
  2302. }
  2303. .Report table th
  2304. {
  2305. background: #000000 url(../App_Themes/CorporateSite/Images/genbackground.gif) repeat-x scroll left top;
  2306. padding: 5px 10px;
  2307. color: #ffffff;
  2308. }
  2309. .Report table td
  2310. {
  2311. padding: 3px 10px;
  2312. }
  2313. /*#Examples/Vertical css menu#*/
  2314. .Vertical
  2315. {
  2316. width: 150px;
  2317. font-family: Arial;
  2318. font-size: 12px;
  2319. background-color: #e2e2e2;
  2320. border: 1px solid #c2c2c2;
  2321. }
  2322. .Vertical ul
  2323. {
  2324. list-style: none;
  2325. margin: 0;
  2326. padding: 0;
  2327. }
  2328. .Vertical li
  2329. {
  2330. position:relative;
  2331. }
  2332. .Vertical a
  2333. {
  2334. display: block;
  2335. margin: 0;
  2336. padding: 2px 0px 2px 10px;
  2337. color: black;
  2338. width: 140px;
  2339. text-decoration: none;
  2340. background-image: url(../App_Themes/CorporateSite/Images/Examples/menuitem.gif);
  2341. background-repeat: no-repeat;
  2342. background-position: 0 50%;
  2343. background-color: #e2e2e2;
  2344. }
  2345. .Vertical a:hover
  2346. {
  2347. color:White;
  2348. background: #808080;
  2349. background-image: url(../App_Themes/CorporateSite/Images/Examples/menuitem_hover.gif);
  2350. background-repeat: no-repeat;
  2351. background-position: 0 50%;
  2352. }
  2353. .Vertical ul ul
  2354. {
  2355. position: absolute;
  2356. z-index: 100;
  2357. top: -1px; /* should be the negation of UL border-width*/
  2358. left: 100%;
  2359. width: 100%;
  2360. border: 1px solid #c2c2c2;
  2361. }
  2362. #Vertical ul, #Vertical li:hover ul ul, #Vertical ul li:hover ul ul
  2363. {
  2364. display: none;
  2365. }
  2366. #Vertical li:hover ul, #Vertical ul li:hover ul, #Vertical ul ul li:hover ul
  2367. {
  2368. display: block;
  2369. }
  2370. /*#Examples/Drop down menu#*/
  2371. .DropDown
  2372. {
  2373. position: relative;
  2374. width: 150px;
  2375. height: 20px;
  2376. z-index: 1;
  2377. font-family: Arial;
  2378. font-size: 12px;
  2379. background-color: #e2e2e2;
  2380. border: 2px solid #808080;
  2381. }
  2382. div.DropDown:hover ul
  2383. {
  2384. z-index: 10;
  2385. visibility: visible;
  2386. }
  2387. div.DropDown ul:hover
  2388. {
  2389. background-color: White; /* this allows to get over the last item of dropDownList, otherwise will be closed. */
  2390. }
  2391. .DropDownHover ul
  2392. {
  2393. z-index: 10;
  2394. visibility: visible;
  2395. }
  2396. .DropDown ul
  2397. {
  2398. z-index: -10;
  2399. visibility: hidden;
  2400. position: absolute;
  2401. top: 20px;
  2402. width: 150px;
  2403. list-style: none;
  2404. margin: 0;
  2405. padding: 0;
  2406. }
  2407. .DropDown li
  2408. {
  2409. position:relative;
  2410. }
  2411. .DropDown a
  2412. {
  2413. display: block;
  2414. margin: 0;
  2415. padding: 2px 3px;
  2416. color: Black;
  2417. background-color: #e2e2e2;
  2418. text-decoration: none;
  2419. }
  2420. .DropDown a:hover
  2421. {
  2422. color: white;
  2423. background: #b2b2b2;
  2424. }
  2425. .member
  2426. {
  2427. float: left;
  2428. width: 231px;
  2429. height: 61px;
  2430. margin: 10px 2px;
  2431. padding: 4px;
  2432. }
  2433. .member .avatar
  2434. {
  2435. float: left;
  2436. margin: 0px 5px 5px 0px;
  2437. }
  2438. .member .memberInfo
  2439. {
  2440. float: left;
  2441. width: 170px;
  2442. }
  2443. .member h3
  2444. {
  2445. background: none;
  2446. margin-bottom: 3px;
  2447. margin-top: 0px;
  2448. }
  2449. .member h3 a
  2450. {
  2451. font-size: 13px;
  2452. color: #245a91;
  2453. }
  2454. .member h3 a:hover
  2455. {
  2456. text-decoration: none;
  2457. }
  2458. .DropDown ul ul
  2459. {
  2460. display: none;
  2461. }
  2462. /*#Wishlist#*/
  2463. .wishList .ProductImage
  2464. {
  2465. vertical-align: top;
  2466. }
  2467. .wishList .ProductImage img
  2468. {
  2469. border: 1px solid #000000;
  2470. }
  2471. .wishList .ProductDetail
  2472. {
  2473. border-bottom: 1px solid #999999;
  2474. margin-bottom: 5px;
  2475. padding-bottom: 5px;
  2476. }
  2477. .wishList .RemoveFromWishlist
  2478. {
  2479. background: url(../App_Themes/CorporateSite/Images/delete.gif) no-repeat center left;
  2480. padding-left: 18px;
  2481. }
  2482. .wishList .ProductDetail h2
  2483. {
  2484. margin-top: 0px;
  2485. margin-bottom: 4px;
  2486. }
  2487. .wishlistAdd .AddToCartContainer{
  2488. padding-bottom: 10px;
  2489. padding-top: 10px;
  2490. }
  2491. .ProductImageWishlist img{
  2492. border: none;
  2493. }
  2494. /*#Wiki#*/
  2495. .UnigridActionButton
  2496. {
  2497. margin-right: 5px;
  2498. }
  2499. .RTL .UnigridActionButton
  2500. {
  2501. margin-right: auto;
  2502. margin-left: 5px;
  2503. }
  2504. .AttachmentsList
  2505. {
  2506. border:1px solid #CCCCCC;
  2507. padding:5px;
  2508. }
  2509. .AttachmentsList .New .IconDisabled
  2510. {
  2511. margin-bottom: -3px;
  2512. margin-right: 3px;
  2513. }
  2514. .UserPageTitleHeader
  2515. {
  2516. color: #ffa21e;
  2517. font-size:18px;
  2518. font-weight:bold;
  2519. height:33px;
  2520. }
  2521. .EditContributionEdit
  2522. {
  2523. background: url(../App_Themes/CorporateSite/Images/edit.gif) no-repeat center left;
  2524. padding-left: 18px;
  2525. }
  2526. .EditContributionDelete
  2527. {
  2528. background: url(../App_Themes/CorporateSite/Images/delete.gif) no-repeat center left;
  2529. padding-left: 18px;
  2530. margin-left: 15px;
  2531. }
  2532. .Article .Header a
  2533. {
  2534. color: #ffffff;
  2535. font-weight: bold;
  2536. }
  2537. .Article img
  2538. {
  2539. border: solid 1px #cccccc;
  2540. padding: 3px;
  2541. }
  2542. .Article .Address
  2543. {
  2544. font-size: 10px;
  2545. }
  2546. .Contributions, .ContributionsList, .ContributionsEdit
  2547. {
  2548. border: 1px solid #cccccc;
  2549. padding: 10px;
  2550. background-color: #eeeeee;
  2551. }
  2552. .ContributionsEdit .ItemsLink, .ContributionsList .NewItemLink
  2553. {
  2554. padding-bottom: 7px;
  2555. }
  2556. .ContributionsList .ContributionsGrid
  2557. {
  2558. border: solid 1px #cccccc;
  2559. background-color: #ffffff;
  2560. }
  2561. .ContributionsList .ContributionsGrid .UniGridHead th
  2562. {
  2563. color: #ffffff;
  2564. background:#000000 url(../App_Themes/CorporateSite/Images/genbackground.gif) repeat-x scroll left top;
  2565. padding: 5px;
  2566. }
  2567. .ContributionsList .ContributionsGrid .UniGridHead th a
  2568. {
  2569. color: #ffffff;
  2570. }
  2571. .UniGridGrid td, .UniGridGrid th
  2572. {
  2573. border-top: solid 1px #cccccc;
  2574. border-bottom: solid 1px #cccccc;
  2575. border-right: none;
  2576. border-left: none;
  2577. text-align: left;
  2578. }
  2579. .UniGridGrid td td, .UniGridGrid th td
  2580. {
  2581. border: none;
  2582. }
  2583. .NewAttachmentDisabled
  2584. {
  2585. text-decoration: underline;
  2586. }
  2587. .AttachmentsList .Icon
  2588. {
  2589. text-decoration: none;
  2590. border: none;
  2591. cursor: pointer;
  2592. margin-bottom: -3px;
  2593. border-right: 5px solid #eeeeee;
  2594. }
  2595. .userContributions #FCKToolbarUC
  2596. {
  2597. border: 1px solid Gray;
  2598. }
  2599. .userContributions .EditContributionClose, .Contributions .UserContributionDocList
  2600. {
  2601. display: block;
  2602. margin-bottom: 20px;
  2603. }
  2604. .userContributions input[type=submit]
  2605. {
  2606. width: 100px;
  2607. }
  2608. .userContributions .zoneList
  2609. {
  2610. min-height: 400px;
  2611. }
  2612. .IE6 .userContributions .zoneList
  2613. {
  2614. height: 400px;
  2615. }
  2616. .UserContributionNewClass
  2617. {
  2618. padding: 5px;
  2619. color: Black;
  2620. font-family: Verdana;
  2621. font-size: 12px;
  2622. }
  2623. .UserContributionNewClass img
  2624. {
  2625. vertical-align: middle;
  2626. padding-right: 3px;
  2627. }
  2628. .EditForm .PageHeader img
  2629. {
  2630. vertical-align: middle;
  2631. padding-bottom: 5px;
  2632. }
  2633. .EditingFormTable
  2634. {
  2635. }
  2636. .EditForm .EditingFormInfo, .EditForm .WorkflowInfo
  2637. {
  2638. padding-left: 7px;
  2639. display: block;
  2640. line-height: 30px;
  2641. }
  2642. /*#Tab menu#*/
  2643. .TabControlTable
  2644. {
  2645. height: 25px;
  2646. background: url(../App_Themes/CorporateSite/Images/tabmenu_item_bg.gif) repeat-x center left;
  2647. padding: 0;
  2648. margin: 0;
  2649. }
  2650. .TabControlLeft, .TabControlRight, .TabControlSelectedLeft, .TabControlSelectedRight
  2651. {
  2652. display: none;
  2653. }
  2654. .TabControl
  2655. {
  2656. background: url(../App_Themes/CorporateSite/Images/tabmenu_item_bg.gif) repeat-x center left;
  2657. padding: 0px 10px 0px 10px;
  2658. }
  2659. .TabControlSelected
  2660. {
  2661. background: url(../App_Themes/CorporateSite/Images/tabmenu_item_active_bg.gif) repeat-x center left;
  2662. padding: 0px 10px 0px 10px;
  2663. }
  2664. .TabControlTable a
  2665. {
  2666. color: #ffffff;
  2667. text-decoration: none;
  2668. font-size: 12px;
  2669. }
  2670. /*#My account#*/
  2671. .TabsContent
  2672. {
  2673. border: 1px solid #cccccc;
  2674. width: 660px;
  2675. padding: 15px;
  2676. }
  2677. .TabsContent .Error
  2678. {
  2679. color: Red;
  2680. }
  2681. .TabsContent .FieldLabel
  2682. {
  2683. font-weight: bold;
  2684. width: 140px;
  2685. }
  2686. .TabsContent .UniGridHead
  2687. {
  2688. color: White;
  2689. background:#000000 url(../App_Themes/CorporateSite/Images/genbackground.gif) repeat-x scroll left top;
  2690. }
  2691. .TabsContent .Grid
  2692. {
  2693. width: 100%;
  2694. border: 1px solid #aaa
  2695. }
  2696. .TabsContent .OddRow
  2697. {
  2698. background-color: #eee;
  2699. }
  2700. .MyCredit .TotalCredit
  2701. {
  2702. font-weight: bold;
  2703. font-size: 120%;
  2704. color: #002756;
  2705. }
  2706. .TabsContent input[type=text], .TabsContent input[type=password],
  2707. .TabsContent input[type=file], .TabsContent textarea, .MyProfileFileUpload
  2708. {
  2709. width: 300px;
  2710. }
  2711. .TabsContent select
  2712. {
  2713. width: 306px;
  2714. }
  2715. .clear
  2716. {
  2717. width:0px;
  2718. height:0px;
  2719. clear:both;
  2720. line-height: 0px;
  2721. font-size: 0px;
  2722. }
  2723. .SubscriptionsGroup
  2724. {
  2725. padding: 8px;
  2726. }
  2727. .SubscriptionsPanel
  2728. {
  2729. padding-top: 22px;
  2730. }
  2731. /*#Office#*/
  2732. .Map
  2733. {
  2734. border: solid 1px #cccccc;
  2735. padding: 3px;
  2736. }
  2737. .Map img
  2738. {
  2739. border: solid 1px #cccccc;
  2740. padding: 3px;
  2741. }
  2742. .Map .Header
  2743. {
  2744. font-weight: bold;
  2745. }
  2746. .Map .Address
  2747. {
  2748. font-size: 10px;
  2749. }
  2750. .OfficeDetail img
  2751. {
  2752. border: solid 1px #cccccc;
  2753. padding: 3px;
  2754. }
  2755. .OfficeDetail .Address
  2756. {
  2757. font-size: 10px;
  2758. }
  2759. .OfficeDetail h1
  2760. {
  2761. padding: 0px !important;
  2762. margin: 0px !important;
  2763. }
  2764. .OfficeDetail .Description
  2765. {
  2766. padding-top: 5px;
  2767. padding-left: 5px;
  2768. }
  2769. /*#Grid#*/
  2770. .DataGrid
  2771. {
  2772. border:1px solid #cccccc;
  2773. }
  2774. .DataGrid td
  2775. {
  2776. padding: 3px 5px;
  2777. }
  2778. .DataGrid .Row
  2779. {
  2780. }
  2781. .DataGrid .AltRow
  2782. {
  2783. background-color: #eeeeee;
  2784. }
  2785. .DataGrid .Header
  2786. {
  2787. background:#000000 url(../App_Themes/CorporateSite/Images/genbackground.gif) repeat-x scroll left top;
  2788. }
  2789. .DataGrid .Header td
  2790. {
  2791. padding: 5px;
  2792. }
  2793. .DataGrid .Header td a
  2794. {
  2795. color: #ffffff;
  2796. }
  2797. /*#Webpart containers#*/
  2798. /*#Webpart containers/General product list#*/
  2799. .ProductList a
  2800. {
  2801. /*text-decoration: none;*/
  2802. }
  2803. .ProductList .ProductBox
  2804. {
  2805. width: 160px;
  2806. margin: 15px 10px 0;
  2807. border: solid 1px #cccccc;
  2808. }
  2809. .ProductList .ProductBox a
  2810. {
  2811. text-decoration: none;
  2812. }
  2813. .ProductList .ProductImage
  2814. {
  2815. text-align: center;
  2816. height: 140px;
  2817. }
  2818. .ProductList .ProductImage img
  2819. {
  2820. border: none;
  2821. }
  2822. .ProductList .ProductTitle
  2823. {
  2824. display: block;
  2825. background-color: #e36c26;
  2826. padding: 6px 3px;
  2827. color: #ffffff;
  2828. font-weight: bold;
  2829. text-align: center;
  2830. text-decoration: none !important;
  2831. }
  2832. .ProductList .ProductPrice
  2833. {
  2834. padding: 6px;
  2835. }
  2836. .ProductList .ProductPrice .right
  2837. {
  2838. font-weight: bold;
  2839. text-align: right;
  2840. }
  2841. .ProductList .ProductFooter
  2842. {
  2843. background-color: #f0f0f0;
  2844. padding: 6px;
  2845. }
  2846. .ProductList .ProductFooter a
  2847. {
  2848. text-decoration: underline;
  2849. }
  2850. .ProductList .ProductFooter img
  2851. {
  2852. margin-right: 5px;
  2853. vertical-align: middle;
  2854. }
  2855. .ProductList .productDetail
  2856. {
  2857. width: 100%;
  2858. margin-bottom: 20px;
  2859. }
  2860. .ProductList .productDetail img
  2861. {
  2862. border: none;
  2863. }
  2864. .ProductList .productDetail h3
  2865. {
  2866. margin: 15px 0 10px 0;
  2867. }
  2868. .ProductList .productDetailInfo
  2869. {
  2870. margin-left: 10px;
  2871. width: 100%;
  2872. }
  2873. .ProductList .productDetailInfo td
  2874. {
  2875. padding: 2px 10px;
  2876. }
  2877. .ProductList .productDetailInfo .caption
  2878. {
  2879. font-weight: bold;
  2880. }
  2881. .ProductList .productDetailInfo .alt
  2882. {
  2883. background-color: #f9f9f9;
  2884. }
  2885. .ProductList .productDetailLinks
  2886. {
  2887. width: 100%;
  2888. background-color: #f0f0f0;
  2889. margin: 10px 0px 10px 0px;
  2890. padding: 5px;
  2891. }
  2892. .ProductList .ProductSummary
  2893. {
  2894. vertical-align: top;
  2895. }
  2896. .ProductList .LinkMore
  2897. {
  2898. display: block;
  2899. background: url(../App_Themes/CorporateSite/Images/information.png) no-repeat center left;
  2900. padding: 0 0 5px 17px;
  2901. }
  2902. /*#Webpart containers/General list#*/
  2903. .GeneralList .Header a
  2904. {
  2905. color: #ffffff;
  2906. font-weight: bold;
  2907. }
  2908. .GeneralList img
  2909. {
  2910. border: solid 1px #cccccc;
  2911. padding: 3px;
  2912. }
  2913. .GeneralList .Address
  2914. {
  2915. font-size: 10px;
  2916. }
  2917. .GeneralList .Header
  2918. {
  2919. background:#000000 url(../App_Themes/CorporateSite/Images/genbackground.gif) repeat-x scroll left top;
  2920. color: #ffffff;
  2921. padding: 5px;
  2922. border-left: solid 1px #cccccc;
  2923. border-right: solid 1px #cccccc;
  2924. border-top: solid 1px #cccccc;
  2925. }
  2926. .GeneralList .Body
  2927. {
  2928. padding: 0 5px 5px;
  2929. border: solid 1px #cccccc;
  2930. }
  2931. /*#Messaging#*/
  2932. .MessagingBox .UniGridHead a
  2933. {
  2934. color: White !important;
  2935. }
  2936. .MessagingBox
  2937. {
  2938. width: 625px;
  2939. }
  2940. .MessagingBox .FooterInfo
  2941. {
  2942. text-align:right;
  2943. padding: 3px;
  2944. font-size: 11px;
  2945. }
  2946. .MessagingBox .List
  2947. {
  2948. }
  2949. .MessagingBox .Header,
  2950. .MessagingBox .NewMessageHeader, .MessagingBox .ViewMessageHeader, .MessagingBox .UniGridHead
  2951. {
  2952. background:#000000 url(../App_Themes/CorporateSite/Images/genbackground.gif) repeat-x scroll left top;
  2953. color: #ffffff;
  2954. font-weight: bold;
  2955. padding: 5px;
  2956. border-left: solid 1px Black;
  2957. border-right: solid 1px Black;
  2958. border-top: solid 1px Black;
  2959. }
  2960. .MessagingBox .Header
  2961. {
  2962. height: 25px !important;
  2963. }
  2964. .MessagingBox .Header a
  2965. {
  2966. color: white;
  2967. font-weight: bold;
  2968. }
  2969. .MessagingBox .List th, .MessagingBox .List td
  2970. {
  2971. text-align: left;
  2972. }
  2973. .MessagingBox .ImageCell
  2974. {
  2975. padding-left: 0px !important;
  2976. }
  2977. .MessagingBox .List tr
  2978. {
  2979. height: 25px;
  2980. }
  2981. .MessagingBox .List .OddRow, .MessagingBox .List .EvenRow, .MessagingBox .List .Pager
  2982. {
  2983. border:1px solid #CCCCCC;
  2984. }
  2985. .MessagingBox .List td
  2986. {
  2987. padding: 0px 3px 0px 3px;
  2988. }
  2989. .MessagingBox .OddRowUnread, .MessagingBox .OddRow,
  2990. .MessagingBox .OddRowRead
  2991. {
  2992. background-color: #cccccc;
  2993. }
  2994. .MessagingBox .OddRowUnread, .MessagingBox .EvenRowUnread,
  2995. .MessagingBox .OddRowRead, .MessagingBox .EvenRowRead
  2996. {
  2997. font-weight: bold;
  2998. }
  2999. .MessagingBox .ViewMessage
  3000. {
  3001. border: solid 1px #cccccc;
  3002. padding: 10px;
  3003. }
  3004. .MessagingBox .HeaderTable
  3005. {
  3006. margin-left: 10px;
  3007. margin-top: 10px;
  3008. width: 90%;
  3009. }
  3010. .MessagingBox .HeaderTable, .Pager table
  3011. {
  3012. border: 0px !important;
  3013. }
  3014. .MessagingBox .Body, .MessagingBox .DiscussionButtons
  3015. {
  3016. padding-left: 10px;
  3017. }
  3018. .MessagingBox .HeaderTable img
  3019. {
  3020. border: 1px solid Black;
  3021. margin: 0px 5px 0px 0px;
  3022. }
  3023. .MessagingBox .MessageUserButtons
  3024. {
  3025. display: inline;
  3026. }
  3027. .MessagingBox .FieldCaption
  3028. {
  3029. font-weight: bold;
  3030. padding-right: 5px;
  3031. }
  3032. .MessagingBox .Field
  3033. {
  3034. width: 100%;
  3035. }
  3036. .MessagingBox .SendMessage
  3037. {
  3038. margin-bottom: 10px;
  3039. border: solid 1px #cccccc;
  3040. }
  3041. .MessagingBox .Buttons
  3042. {
  3043. padding: 10px;
  3044. }
  3045. .MessagingBox .FromField
  3046. {
  3047. width:150px !important;
  3048. border: solid 1px #cccccc;
  3049. }
  3050. .MessagingBox .ToField
  3051. {
  3052. width:150px !important;
  3053. border: solid 1px #cccccc;
  3054. }
  3055. .MessagingBox .SubjectField
  3056. {
  3057. width: 98% !important;
  3058. border: solid 1px #cccccc;
  3059. }
  3060. .MessagingBox .SubjectRow
  3061. {
  3062. padding: 20px 0px 3px 10px;
  3063. }
  3064. .MessagingBox .TextareaItem, .MessagingBox .BodyField
  3065. {
  3066. width: 98%;
  3067. height: 200px;
  3068. border: solid 1px #cccccc;
  3069. }
  3070. .MessagingBox .Pager td
  3071. {
  3072. padding: 0px;
  3073. }
  3074. .MessagingBox .Pager tr
  3075. {
  3076. height: 20px !important;
  3077. }
  3078. .MessagingBox .Error
  3079. {
  3080. margin: 5px;
  3081. color: Red;
  3082. display: block;
  3083. }
  3084. .MessagingBox .Info
  3085. {
  3086. margin-bottom: 10px;
  3087. display: block;
  3088. }
  3089. .MessagingBox table
  3090. {
  3091. /* border-top: solid 1px #cccccc;
  3092. border-left: solid 1px #cccccc;
  3093. border-right: solid 1px #cccccc;*/
  3094. border-collapse: collapse !important;
  3095. }
  3096. .MessagingBox .ListGrid
  3097. {
  3098. border-collapse: collapse !important;
  3099. border: solid 1px #cccccc;
  3100. }
  3101. .MessagingBox .Pager, .MessagingBox .Pager a, .MessagingBox .Pager, .MessagingBox .Pager span
  3102. {
  3103. padding-left: 3px;
  3104. }
  3105. .FriendsBox
  3106. {
  3107. width: 680px;
  3108. }
  3109. /*#Ecommerce#*/
  3110. .PrintImage
  3111. {
  3112. vertical-align: middle;
  3113. padding-bottom: 3px;
  3114. }
  3115. .sendToFriendYourMessage
  3116. {
  3117. cursor: pointer;
  3118. font-style: italic;
  3119. }
  3120. .AddToCartLink
  3121. {
  3122. background: url(../App_Themes/CorporateSite/Images/ShoppingCart/AddToCart.gif) no-repeat 0px 5px;
  3123. padding-left: 18px;
  3124. padding-top: 5px;
  3125. }
  3126. .sendToFriendHeader
  3127. {
  3128. color: #002756;
  3129. font-size: 120%;
  3130. font-weight: bold;
  3131. }
  3132. .PrintLink
  3133. {
  3134. text-align: right;
  3135. padding-right: 10px;
  3136. }
  3137. .PrintImage
  3138. {
  3139. border: 0px;
  3140. margin-right: 5px;
  3141. }
  3142. .ProductPrice
  3143. {
  3144. display: block;
  3145. width: 130px;
  3146. word-wrap: normal;
  3147. }
  3148. .productDetailLinks .ProductPrice
  3149. {
  3150. display: inline;
  3151. }
  3152. .ProductOptionSelector select
  3153. {
  3154. width: 220px;
  3155. }
  3156. .AddToCartTextBox
  3157. {
  3158. width: 20px;
  3159. }
  3160. .ItemsNotAvailable{
  3161. color: red;
  3162. }
  3163. .productDetailLinks td{
  3164. vertical-align: bottom;
  3165. }
  3166. .btnContinue
  3167. {
  3168. text-align: left;
  3169. padding-top:10px;
  3170. }
  3171. /*#Content rating#*/
  3172. .ratingStar {
  3173. font-size: 0pt;
  3174. width: 13px;
  3175. height: 12px;
  3176. margin: 0px;
  3177. padding: 0px;
  3178. cursor: pointer;
  3179. display: block;
  3180. background-repeat: no-repeat;
  3181. }
  3182. .filledRatingStar {
  3183. background-image: url(../App_Themes/Default/Images/CMSDesk/Content/Properties/ContentRating/FilledStar.png);
  3184. }
  3185. .emptyRatingStar {
  3186. background-image: url(../App_Themes/Default/Images/CMSDesk/Content/Properties/ContentRating/EmptyStar.png);
  3187. }
  3188. .savedRatingStar {
  3189. background-image: url(../App_Themes/Default/Images/CMSDesk/Content/Properties/ContentRating/SavedStar.png);
  3190. }
  3191. .CntRatingResult
  3192. {
  3193. clear:left;
  3194. padding-top:5px;
  3195. }
  3196. .CntRatingRadioTable tr
  3197. {
  3198. text-align: center;
  3199. }
  3200. /*#Modal popup#*/
  3201. .ModalBackground
  3202. {
  3203. z-index: 9998 !important;
  3204. background-color: #888888;
  3205. filter: alpha(opacity=70);
  3206. opacity: 0.7;
  3207. }
  3208. .ModalPanel
  3209. {
  3210. background-color: #ffffff;
  3211. padding: 10px;
  3212. /* position: fixed !important; */
  3213. }
  3214. /* User context menu */
  3215. .UserContextMenu
  3216. {
  3217. border: solid 1px #666666;
  3218. background-color: #e0e0e0;
  3219. cursor: pointer;
  3220. padding: 3px;
  3221. }
  3222. /*#Abuse report#*/
  3223. .AbuseBody .ReportComment
  3224. {
  3225. width: 300px;
  3226. height: 200px;
  3227. }
  3228. .ModalPanel
  3229. {
  3230. width: 400px;
  3231. }
  3232. .DialogAbuseBody .ReportComment
  3233. {
  3234. width: 397px;
  3235. height: 215px;
  3236. }
  3237. .Messages
  3238. {
  3239. padding-top: 10px;
  3240. text-align: left;
  3241. }
  3242. /*#Notifications#*/
  3243. .NotificationSubscriptionHeader, .NotificationSubscriptionButton {
  3244. padding-top: 10px;
  3245. padding-bottom: 10px;
  3246. }
  3247. .myAccMenu .UserNotifications .UniGridHead a {
  3248. color: #ffffff;
  3249. }
  3250. .CommentUserName {
  3251. text-decoration: underline;
  3252. }
  3253. /*#Media library#*/
  3254. .mediaItem
  3255. {
  3256. background: url('../App_Themes/CorporateSite/Images/Examples/bg_photo.gif') no-repeat;
  3257. float: left;
  3258. font-size: 10px;
  3259. width: 132px;
  3260. margin: 4px;
  3261. }
  3262. .mediaItemBottom
  3263. {
  3264. height: 4px;
  3265. background: url('../App_Themes/CorporateSite/Images/Examples/bg_photo_bottom.gif') no-repeat;
  3266. font-size: 0;
  3267. line-height: 0;
  3268. }
  3269. .mediaItem a
  3270. {
  3271. color: Black;
  3272. text-decoration: none;
  3273. font-weight: bold;
  3274. font-size: 11px;
  3275. }
  3276. .mediaLibraryPhoto
  3277. {
  3278. height: 122px;
  3279. width: 132px;
  3280. text-align: center;
  3281. }
  3282. .mediaLibraryDescription
  3283. {
  3284. padding: 0px 3px;
  3285. color: #737373;
  3286. }
  3287. .MediaLibrarySort
  3288. {
  3289. padding-bottom: 13px;
  3290. }
  3291. .MediaLibrarySort span
  3292. {
  3293. font-weight: bold;
  3294. }
  3295. .MediaLibrarySort a
  3296. {
  3297. color: Black;
  3298. }
  3299. .MediaLibrarySort a:hover
  3300. {
  3301. text-decoration: none;
  3302. }
  3303. .MediaGalleryFolderTree
  3304. {
  3305. float: left;
  3306. width: 180px;
  3307. overflow: auto;
  3308. }
  3309. .MediaGalleryFolderTree a
  3310. {
  3311. color: Black;
  3312. }
  3313. .MediaGalleryContent
  3314. {
  3315. float: left;
  3316. width: 480px;
  3317. }
  3318. .MediaGalleryDetail
  3319. {
  3320. width: 560px;
  3321. background: url('../App_Themes/CorporateSite/Images/Examples/bg_photo_detail.gif') no-repeat;
  3322. text-align: center;
  3323. padding: 15px 0px;
  3324. }
  3325. .MediaGalleryDetailBottom
  3326. {
  3327. width: 544px;
  3328. padding-top: 5px;
  3329. padding-right: 16px;
  3330. text-align: right;
  3331. background: url('../App_Themes/CorporateSite/Images/Examples/bg_photo_detail_bottom.gif') no-repeat;
  3332. }
  3333. .MediaGalleryDetailBottom img
  3334. {
  3335. border: none;
  3336. }
  3337. .SelectedFolder
  3338. {
  3339. font-weight: bold;
  3340. }
  3341. .MediaGalleryDetailBottom h2
  3342. {
  3343. padding-top: 5px;
  3344. margin: 0;
  3345. color: #737373;
  3346. font-size: 16px;
  3347. width: 400px;
  3348. text-align: left;
  3349. }
  3350. .MediaGalleryContent .Pager
  3351. {
  3352. clear: both;
  3353. text-align: center;
  3354. }
  3355. .MediaGalleryPagger
  3356. {
  3357. padding-bottom: 10px;
  3358. }
  3359. .MediaGalleryPagger a
  3360. {
  3361. display: block;
  3362. color: Black;
  3363. background: url('../App_Themes/CorporateSite/Images/Examples/button_back.gif') 0px 1px no-repeat;
  3364. padding-left: 18px;
  3365. font-weight: bold;
  3366. padding-bottom: 4px;
  3367. }
  3368. .MediaGalleryDetail object
  3369. {
  3370. background: #efefef;
  3371. }
  3372. a.MediaBack
  3373. {
  3374. display: block;
  3375. color: Black;
  3376. background: url('../App_Themes/CorporateSite/Images/Examples/button_back.gif') 0px 1px no-repeat;
  3377. padding-left: 18px;
  3378. font-weight: bold;
  3379. padding-bottom: 10px;
  3380. }
  3381. .CommentUserName {
  3382. text-decoration: underline;
  3383. }
  3384. .ContentTree
  3385. {
  3386. float: left;
  3387. width: 150px;
  3388. height: 500px;
  3389. }
  3390. .MediaContent
  3391. {
  3392. float: left;
  3393. width: 540px;
  3394. }
  3395. .MediaFileUploader
  3396. {
  3397. padding-bottom: 30px;
  3398. }
  3399. // Kalkulator
  3400. /*
  3401. ------------------------------
  3402. Impromptu's
  3403. ------------------------------
  3404. */
  3405. .jqifade{
  3406. position: absolute;
  3407. background-color: #aaaaaa;
  3408. }
  3409. div.jqi{
  3410. width: 400px;
  3411. font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
  3412. position: absolute;
  3413. background-color: #ffffff;
  3414. font-size: 11px;
  3415. text-align: left;
  3416. border: solid 1px #eeeeee;
  3417. -moz-border-radius: 10px;
  3418. -webkit-border-radius: 10px;
  3419. padding: 7px;
  3420. }
  3421. div.jqi .jqicontainer{
  3422. font-weight: bold;
  3423. }
  3424. div.jqi .jqiclose{
  3425. position: absolute;
  3426. top: 4px; right: -2px;
  3427. width: 18px;
  3428. cursor: default;
  3429. color: #bbbbbb;
  3430. font-weight: bold;
  3431. }
  3432. div.jqi .jqimessage{
  3433. padding: 10px;
  3434. line-height: 20px;
  3435. color: #444444;
  3436. }
  3437. div.jqi .jqibuttons{
  3438. text-align: right;
  3439. padding: 5px 0 5px 0;
  3440. border: solid 1px #eeeeee;
  3441. background-color: #f4f4f4;
  3442. }
  3443. div.jqi button{
  3444. padding: 3px 10px;
  3445. margin: 0 10px;
  3446. background-color: #2F6073;
  3447. border: solid 1px #f4f4f4;
  3448. color: #ffffff;
  3449. font-weight: bold;
  3450. font-size: 12px;
  3451. }
  3452. div.jqi button:hover{
  3453. background-color: #728A8C;
  3454. }
  3455. div.jqi button.jqidefaultbutton{
  3456. /*background-color: #8DC05B;*/
  3457. background-color: #BF5E26;
  3458. }
  3459. .jqiwarning .jqi .jqibuttons{
  3460. background-color: #BF5E26;
  3461. }
  3462. /*
  3463. ------------------------------
  3464. impromptu
  3465. ------------------------------
  3466. */
  3467. .impromptuwarning .impromptu{ background-color: #aaaaaa; }
  3468. .impromptufade{
  3469. position: absolute;
  3470. background-color: #ffffff;
  3471. }
  3472. div.impromptu{
  3473. position: absolute;
  3474. background-color: #cccccc;
  3475. padding: 10px;
  3476. width: 300px;
  3477. text-align: left;
  3478. }
  3479. div.impromptu .impromptuclose{
  3480. float: right;
  3481. margin: -35px -10px 0 0;
  3482. cursor: pointer;
  3483. color: #213e80;
  3484. }
  3485. div.impromptu .impromptucontainer{
  3486. background-color: #213e80;
  3487. padding: 5px;
  3488. color: #ffffff;
  3489. font-weight: bold;
  3490. }
  3491. div.impromptu .impromptumessage{
  3492. background-color: #415ea0;
  3493. padding: 10px;
  3494. }
  3495. div.impromptu .impromptubuttons{
  3496. text-align: center;
  3497. padding: 5px 0 0 0;
  3498. }
  3499. div.impromptu button{
  3500. padding: 3px 10px 3px 10px;
  3501. margin: 0 10px;
  3502. }
  3503. /*
  3504. ------------------------------
  3505. columns ex
  3506. ------------------------------
  3507. */
  3508. .colsJqifadewarning .colsJqi{ background-color: #b0be96; }
  3509. .colsJqifade{
  3510. position: absolute;
  3511. background-color: #ffffff;
  3512. }
  3513. div.colsJqi{
  3514. position: absolute;
  3515. background-color: #d0dEb6;
  3516. padding: 10px;
  3517. width: 400px;
  3518. text-align: left;
  3519. }
  3520. div.colsJqi .colsJqiclose{
  3521. float: right;
  3522. margin: -35px -10px 0 0;
  3523. cursor: pointer;
  3524. color: #bbbbbb;
  3525. }
  3526. div.colsJqi .colsJqicontainer{
  3527. background-color: #e0eEc6;
  3528. padding: 5px;
  3529. color: #ffffff;
  3530. font-weight: bold;
  3531. height: 160px;
  3532. }
  3533. div.colsJqi .colsJqimessage{
  3534. background-color: #c0cEa6;
  3535. padding: 10px;
  3536. width: 280px;
  3537. height: 140px;
  3538. float: left;
  3539. }
  3540. div.colsJqi .jqibuttons{
  3541. text-align: center;
  3542. padding: 5px 0 0 0;
  3543. }
  3544. div.colsJqi button{
  3545. background: url(../images/button_bg.jpg) top left repeat-x #ffffff;
  3546. border: solid #777777 1px;
  3547. font-size: 12px;
  3548. padding: 3px 10px 3px 10px;
  3549. margin: 5px 5px 5px 10px;
  3550. width: 75px;
  3551. }
  3552. div.colsJqi button:hover{
  3553. border: solid #aaaaaa 1px;
  3554. }
  3555. /*
  3556. ------------------------------
  3557. brown theme
  3558. ------------------------------
  3559. */
  3560. .brownJqiwarning .brownJqi{ background-color: #cccccc; }
  3561. .brownJqifade{
  3562. position: absolute;
  3563. background-color: #ffffff;
  3564. }
  3565. div.brownJqi{
  3566. position: absolute;
  3567. background-color: transparent;
  3568. padding: 10px;
  3569. width: 300px;
  3570. text-align: left;
  3571. }
  3572. div.brownJqi .brownJqiclose{
  3573. float: right;
  3574. margin: -20px 0 0 0;
  3575. cursor: pointer;
  3576. color: #777777;
  3577. font-size: 11px;
  3578. }
  3579. div.brownJqi .brownJqicontainer{
  3580. position: relative;
  3581. background-color: transparent;
  3582. border: solid 1px #5F5D5A;
  3583. color: #ffffff;
  3584. font-weight: bold;
  3585. }
  3586. div.brownJqi .brownJqimessage{
  3587. position: relative;
  3588. background-color: #F7F6F2;
  3589. border-top: solid 1px #C6B8AE;
  3590. border-bottom: solid 1px #C6B8AE;
  3591. }
  3592. div.brownJqi .brownJqimessage h3{
  3593. background: url(../images/brown_theme_gradient.jpg) top left repeat-x #ffffff;
  3594. margin: 0;
  3595. padding: 7px 0 7px 15px;
  3596. color: #4D4A47;
  3597. }
  3598. div.brownJqi .brownJqimessage p{
  3599. padding: 10px;
  3600. color: #777777;
  3601. }
  3602. div.brownJqi .brownJqimessage img.helpImg{
  3603. position: absolute;
  3604. bottom: -25px;
  3605. left: 10px;
  3606. }
  3607. div.brownJqi .brownJqibuttons{
  3608. text-align: right;
  3609. }
  3610. div.brownJqi button{
  3611. background: url(../images/brown_theme_gradient.jpg) top left repeat-x #ffffff;
  3612. border: solid #777777 1px;
  3613. font-size: 12px;
  3614. padding: 3px 10px 3px 10px;
  3615. margin: 5px 5px 5px 10px;
  3616. }
  3617. div.brownJqi button:hover{
  3618. border: solid #aaaaaa 1px;
  3619. }
  3620. /*
  3621. *------------------------
  3622. * clean blue ex
  3623. *------------------------
  3624. */
  3625. .cleanbluewarning .cleanblue{ background-color: #acb4c4; }
  3626. .cleanbluefade{ position: absolute; background-color: #aaaaaa; }
  3627. div.cleanblue{ font-family: Verdana, Geneva, Arial, Helvetica, sans-serif; position: absolute; background-color: #ffffff; width: 300px; font-size: 11px; text-align: left; border: solid 1px #213e80; }
  3628. div.cleanblue .cleanbluecontainer{ background-color: #ffffff; border-top: solid 14px #213e80; padding: 5px; font-weight: bold; }
  3629. div.cleanblue .cleanblueclose{ float: right; width: 18px; cursor: default; margin: -19px -12px 0 0; color: #ffffff; font-weight: bold; }
  3630. div.cleanblue .cleanbluemessage{ padding: 10px; line-height: 20px; font-size: 11px; color: #333333; }
  3631. div.cleanblue .cleanbluebuttons{ text-align: right; padding: 5px 0 5px 0; border: solid 1px #eeeeee; background-color: #f4f4f4; }
  3632. div.cleanblue button{ padding: 3px 10px; margin: 0 10px; background-color: #314e90; border: solid 1px #f4f4f4; color: #ffffff; font-weight: bold; font-size: 12px; }
  3633. div.cleanblue button:hover{ border: solid 1px #d4d4d4; }
  3634. /*
  3635. *------------------------
  3636. * Ext Blue Ex
  3637. *------------------------
  3638. */
  3639. .extbluewarning .extblue{ border:1px red solid; }
  3640. .extbluefade{ position: absolute; background-color: #ffffff; }
  3641. div.extblue{ border:1px #6289B6 solid; position: absolute; background-color: #CAD8EA; padding: 0; width: 300px; text-align: left; }
  3642. div.extblue .extblueclose{ background-color: #CAD8EA; margin:2px -2px 0 0; cursor: pointer; color: red; text-align: right; }
  3643. div.extblue .extbluecontainer{ background-color: #CAD8EA; padding: 0 5px 5px 5px; color: #000000; font:normal 11px Verdana; }
  3644. div.extblue .extbluemessage{ background-color: #CAD8EA; padding: 0; margin:0 15px 15px 15px; }
  3645. div.extblue .extbluebuttons{ text-align: center; padding: 0px 0 0 0; }
  3646. div.extblue button{ padding: 1px 4px; margin: 0 10px; background-color:#cccccc; font-weight:normal; font-family:Verdana; font-size:10px; }
  3647. .jqi .errorBlock{ background-color: #FFC6A5; border: solid 1px #ff0000; color: #ff0000; padding: 5px 10px; font-weight: bold; }
  3648. .jqi .field{ margin: 4px 0; }
  3649. .jqi .field label{ font-weight: bold; display: block; width: 150px; float: left; clear: left; }
  3650. .jqi .field input { border: solid 1px #777777; width: 100px; }
  3651. // ENd of Kalkulator
  3652. // pasar properti form
  3653. .ppropformalternate {
  3654. background-color: #E6E6E6;
  3655. }
  3656. //end of pasar properti form
  3657. td.itemDepan,a.itemDepan {
  3658. font-family: Verdana;
  3659. font-size: 12px;
  3660. text-decoration: none;
  3661. }
  3662. // Berita BTN
  3663. .itemDepan {
  3664. font-family: Verdana;
  3665. font-size: 12px;
  3666. text-decoration: none;
  3667. }
  3668. .itemDepan td {
  3669. font-family: Verdana;
  3670. font-size: 12px;
  3671. text-decoration: none;
  3672. }
  3673. .itemDepan a {
  3674. font-family: Verdana;
  3675. font-size: 12px;
  3676. text-decoration: none;
  3677. }
  3678. .itemDepanTitle {
  3679. font-family: Verdana;
  3680. font-size: 12px;
  3681. text-decoration: none;
  3682. font-weight: bold;
  3683. }
  3684. a.mainNav:link {
  3685. /* Applies to unvisited links of class mainNav */
  3686. font-family: Verdana;
  3687. text-decoration: none;
  3688. font-weight: bold;
  3689. font-size: 14px;
  3690. color: #005595;
  3691. }
  3692. a.mainNav:visited {
  3693. /* Applies to visited links of class mainNav */
  3694. font-family: Verdana;
  3695. text-decoration: none;
  3696. font-weight: bold;
  3697. font-size: 14px;
  3698. color: #005595;
  3699. }
  3700. a.mainNav:hover {
  3701. /* Applies to links under the pointer of class mainNav */
  3702. font-family: Verdana;
  3703. text-decoration: underline;
  3704. font-weight: bold;
  3705. font-size: 14px;
  3706. color: #005595;
  3707. }
  3708. a.mainNav:active {
  3709. /* Applies to activated links of class mainNav */
  3710. font-family: Verdana;
  3711. text-decoration: underline;
  3712. font-weight: bold;
  3713. font-size: 14px;
  3714. color: #005595;
  3715. }
  3716. // Bitnet
  3717. // Image bod css
  3718. .imgBod
  3719. {
  3720. float: left;
  3721. margin: 4px;
  3722. }
  3723. .titleNeraca {
  3724. text-decoration: none;
  3725. font-weight: bold;
  3726. font-size: 14px;
  3727. }
  3728. a.noline:link,a.noline:visited,a.noline:visited,a.noline:visited {
  3729. font-family: Verdana;
  3730. text-decoration: none;
  3731. font-size: 9px;
  3732. color: black;
  3733. }
  3734. a.white:link,a.white:visited,a.white:visited,a.white:visited {
  3735. font-family: Verdana;
  3736. text-decoration: none;
  3737. font-size: 12px;
  3738. color: white;
  3739. font-weight: bold;
  3740. }
  3741. .searchDepan {
  3742. font-family: Verdana;
  3743. text-decoration: none;
  3744. font-size: 10px;
  3745. color: black;
  3746. }
  3747. // End of Bitnet
  3748. input.input-submit{background:url(../images/v2/go_gif_1.gif) no-repeat;width:19px;height:19px;text-indent:-10000px;letter-spacing:-10000px;border:none;vertical-align:bottom;cursor:pointer;margin:0;padding:0;}
  3749. select.input-select{width: 170px; font-family: Verdana; font-size: 10px;}
  3750. a.mainNavSyariah:link {
  3751. /* Applies to unvisited links of class mainNav */
  3752. font-family: Verdana;
  3753. text-decoration: none;
  3754. font-weight: bold;
  3755. font-size: 14px;
  3756. color: #51422D;
  3757. }
  3758. a.mainNavSyariah:visited {
  3759. /* Applies to visited links of class mainNav */
  3760. font-family: Verdana;
  3761. text-decoration: none;
  3762. font-weight: bold;
  3763. font-size: 14px;
  3764. color: #51422D;
  3765. }
  3766. a.mainNavSyariah:hover {
  3767. /* Applies to links under the pointer of class mainNav */
  3768. font-family: Verdana;
  3769. text-decoration: underline;
  3770. font-weight: bold;
  3771. font-size: 14px;
  3772. color: #51422D;
  3773. }
  3774. a.mainNavSyariah:active {
  3775. /* Applies to activated links of class mainNav */
  3776. font-family: Verdana;
  3777. text-decoration: underline;
  3778. font-weight: bold;
  3779. font-size: 14px;
  3780. color: #51422D;
  3781. }
  3782. .ppropposter {
  3783. font-family: Verdana;
  3784. font-weight: bold;
  3785. font-size: 12px;
  3786. color: #51422D;
  3787. }
  3788. .pproptitle {
  3789. font-family: Verdana;
  3790. font-weight: bold;
  3791. font-size: 12px;
  3792. color: #51422D;
  3793. }
  3794. .ppropcontent {
  3795. font-family: Verdana;
  3796. text-decoration: none;
  3797. font-size: 12px;
  3798. color: black;
  3799. }
  3800. .folderCMSTreeMenuLink{
  3801. vertical-align: text-bottom;
  3802. }
  3803. a.noline12:link,a.noline12:visited,a.noline12:visited,a.noline12:visited {
  3804. font-family: Verdana;
  3805. text-decoration: none;
  3806. font-size: 10px;
  3807. color: black;
  3808. }
  3809. .rightAlign {
  3810. text-align: right;
  3811. }