| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566 |
- a.white {
- FONT-SIZE: 12px;FONT-FAMILY: Tahoma, Verdana, Arial; text-decoration:underline; color:#000000;
- }
- body {
- //background-color: #006633;
- //background-image: url(btn_09_back_4.jpg);
- margin-left: 0px;
- margin-top: 0px;
- margin-right: 0px;
- margin-bottom: 0px;
- }
- table {
- text-align:left
- }
- .footerLeft {
- BACKGROUND-COLOR: #ffffff;
- }
- .titleLeft {
- FONT-WEIGHT: normal;
- FONT-SIZE: 12px;
- TEXT-TRANSFORM: normal;
- COLOR: #006633;
- FONT-FAMILY: Tahoma, Arial, Helvetica, sans-serif;
- text-decoration:none;
- }
- .boxWhite{
- BORDER-RIGHT: #cdcdcd 1px solid;
- BORDER-TOP: #cdcdcd 1px solid;
- BORDER-LEFT: #cdcdcd 1px solid;
- BORDER-BOTTOM: #cdcdcd 1px solid;
- }
- .BlackBox
- {
- BORDER-RIGHT: #000000 1px solid;
- PADDING-RIGHT: 1em;
- BORDER-TOP: #000000 1px solid;
- PADDING-LEFT: 1em;
- PADDING-BOTTOM: 0em;
- BORDER-LEFT: #000000 1px solid;
- COLOR: black;
- LINE-HEIGHT: 1.1em;
- PADDING-TOP: 0em;
- BORDER-BOTTOM: #000000 1px solid;
- BACKGROUND-COLOR: #dedede;
- }
- .titlePage
- {
- FONT-SIZE: 12px;FONT-FAMILY: Tahoma, Verdana, Arial; color:#000000;
- BORDER-BOTTOM: #003300 1px dotted;
- FONT-WEIGHT: bold;
- }
- .footerLine
- {
- FONT-SIZE: 12px;FONT-FAMILY: Tahoma, Verdana, Arial; color:#000000;
- BORDER-TOP: #ff9900 1px solid;
- FONT-WEIGHT: normal;
- }
- .boxTree
- {
- FONT-SIZE: 12px;FONT-FAMILY: Tahoma, Verdana, Arial; color:#000000;
- BORDER-BOTTOM: #cdcdcd 1px solid;
- }
- .bottomLine
- {
- FONT-SIZE: 12px;FONT-FAMILY: Tahoma, Verdana, Arial; color:#000000;
- BORDER-BOTTOM: #cdcdcd 1px solid;
- }
- .topLine
- {
- FONT-SIZE: 12px;FONT-FAMILY: Tahoma, Verdana, Arial; color:#000000;
- BORDER-TOP: #cdcdcd 1px solid;
- }
- .boxTree2
- {
- FONT-SIZE: 12px;FONT-FAMILY: Tahoma, Verdana, Arial; color:#000000;
- BORDER-BOTTOM: #cdcdcd 1px solid;
- BORDER-LEFT: #cdcdcd 1px solid;
- }
- .search
- {
- FONT-SIZE: 12px;FONT-FAMILY: Tahoma, Verdana, Arial; color:#000000;
- BORDER-BOTTOM: #dedede 1px solid;
- FONT-WEIGHT: bold;
- }
- .whiteLine2
- {
- FONT-SIZE: 12px;FONT-FAMILY: Tahoma, Verdana, Arial; color:#ffffff;
- BORDER-BOTTOM: #ff9900 1px dotted;
- }
- .totalLine
- {
- BORDER-TOP: #666666 1px solid;
- BORDER-BOTTOM: #666666 1px solid;
- FONT-SIZE: 12px;FONT-FAMILY: Tahoma, Verdana, Arial;
- FONT-WEIGHT: bold;
- text-align:right;
- }
- .totalLine2
- {
- BORDER-TOP: #666666 1px solid;
- BORDER-BOTTOM: #666666 1px solid;
- FONT-SIZE: 12px;FONT-FAMILY: Tahoma, Verdana, Arial;
- FONT-WEIGHT: bold;
- text-align:left;
- }
- TD {
- FONT-SIZE: 12px;FONT-FAMILY: Tahoma, Verdana, Arial;
-
- }
- input {
- FONT-SIZE: 12px;FONT-FAMILY: Tahoma, Verdana, Arial;
- }
- select {
- FONT-SIZE: 12px;FONT-FAMILY: Tahoma, Verdana, Arial;
-
- }
- .welcome {
- FONT-SIZE: 12px;FONT-FAMILY: Tahoma, Verdana, Arial;
- FONT-WEIGHT: bold;
- color:white;
- text-align:center;
- padding-top:12px;
- }
- .fontMedium {
- FONT-SIZE: 12px;FONT-FAMILY: Tahoma, Verdana, Arial
- }
- .login {
- padding-right:3px; text-align:right; FONT-SIZE: 12px;HEIGHT=20;FONT-FAMILY: Tahoma, Verdana, Arial; color:#aaaaaa; FONT-WEIGHT: bold
- }
- .titleHeader {
- FONT-WEIGHT: bold; COLOR:#006699; FONT-SIZE: 14px; MARGIN: 0px; FONT-FAMILY: Tahoma, Verdana, Arial;
- border-bottom: 1px solid #cdcdcd;
- }
- .titleBox {
- FONT-WEIGHT: bold;COLOR:#ff9900; FONT-SIZE: 12px; MARGIN: 0px; FONT-FAMILY: Tahoma, Verdana, Arial
- }
- p.padLeft {
- margin-left:2px; margin-right:3px;
- }
- .BlockTitle {
- FONT-WEIGHT: bold;COLOR:#000000; FONT-SIZE: 12px; MARGIN: 0px; FONT-FAMILY: Tahoma, Verdana, Arial
- }
- .AddressTitle {
- FONT-SIZE: 12px;FONT-FAMILY: Tahoma, Verdana, Arial; color:#000000;
- BORDER-BOTTOM: #003300 1px dotted;
- FONT-WEIGHT: bold;
- }
- #input {
- font-family: Tahoma, Verdana, Arial;
- font-size: 12px;
- color: #000000;
- text-decoration: none;
- background-color: #DDE7F2;
- border-top: 1px solid #000000;
- border-right: 1px solid #000000;
- border-left: 1px solid #000000;
- border-bottom: 1px solid #000000;
- }
- .frmButton {
- font-family: Tahoma, Verdana, Arial;
- color: #000000;
- text-decoration: none;
- background-color: #DDE7F2;
- font-weight: bold;
- font-size: 12px;
- border-top: 1px solid #CCCCCC;
- border-right: 1px solid #333333;
- border-bottom: 1px solid #333333;
- border-left: 1px solid #999999;
- white-space: nowrap;
- }
- .style1 {color: #FF0000}
- #textarea {
- font-family: Tahoma, Verdana, Arial;
- font-size: 12px;
- color: #000000;
- text-decoration: none;
- background-color: #DDE7F2;
- border-top: 1px solid #000000;
- border-right: 1px solid #000000;
- border-left: 1px solid #000000;
- border-bottom: 1px solid #000000;
- }
- .white {
- FONT-SIZE: 12px;FONT-FAMILY: Tahoma, Verdana, Arial; color:#ffffff
- }
- .tr1 {
- FONT-SIZE: 12px;FONT-FAMILY: Tahoma, Verdana, Arial; color:#000000;
- background-color: #efefef;
- height:20;
- }
- .tr2 {
- FONT-SIZE: 12px;FONT-FAMILY: Tahoma, Verdana, Arial; color:#000000;
- background-color: #e6eefa;
- height:20;
-
- }
- .tr12 {
- FONT-SIZE: 12px;FONT-FAMILY: Tahoma, Verdana, Arial; color:#000000;
- background-color: #ffffff;
- height:18;
- border-bottom: 1px solid #000000;
- }
- .tr22 {
- FONT-SIZE: 12px;FONT-FAMILY: Tahoma, Verdana, Arial; color:#000000;
- background-color: #ffffff;
- height:18;
- border-bottom: 1px solid #000000;
- }
- .orange {
- FONT-SIZE: 12px;FONT-FAMILY: Tahoma, Verdana, Arial; color:#ff9900; FONT-WEIGHT: bold;
- }
- .date {
- FONT-SIZE: 12px;FONT-FAMILY: Tahoma, Verdana, Arial; color:#009933; FONT-WEIGHT: normal;
- padding-top:4px;
- FONT-WEIGHT: bold;
- }
- .tanggal {
- FONT-SIZE: 12px;FONT-FAMILY: Tahoma, Verdana, Arial; color:#686868; FONT-WEIGHT: normal;
- padding-top:4px;
- FONT-WEIGHT: bold;
- }
- .copy {
- FONT-SIZE: 12px;FONT-FAMILY: Tahoma, Verdana, Arial; color:#cdcdcd; FONT-WEIGHT: normal;
- padding-top:0px;
- FONT-WEIGHT: normal;
- text-align:center;
- }
- #select {
- font-family: Tahoma, Verdana, Arial;
- font-size: 12px;
- color: #000000;
- text-decoration: none;
- background-color: #DDE7F2;
- border-top: 1px solid #000000;
- border-right: 1px solid #000000;
- border-left: 1px solid #000000;
- border-bottom: 1px solid #000000;
- }
- .celBorder {
- font-family: Tahoma, Verdana, Arial;
- color: #000000;
- text-decoration: none;
- font-size: 12px;
- border-top-width: 1px;
- border-top-style: solid;
- border-top-color: #CCCCCC;
- border-left-width: 1px;
- border-left-style: solid;
- border-left-color: #CCCCCC;
- border-right-width: 1px;
- border-right-style: solid;
- border-right-color: #CCCCCC;
- border-bottom-width: 1px;
- border-bottom-style: solid;
- border-bottom-color: #CCCCCC;
- vertical-align: text-middle;
- height:20px;
- }
- TABLE.list {
- BORDER-RIGHT: #006699 1px solid;
- BORDER-TOP: #006699 1px solid;
- BORDER-LEFT: #006699 1px solid;
- BORDER-BOTTOM: #006699 1px solid;
- WIDTH: 98%;
- BACKGROUND-COLOR: #ffffff;
- }
- .titleField3 {
- FONT-WEIGHT: bold;
- COLOR:#000000;
- FONT-SIZE: 12px; MARGIN: 0px;
- FONT-FAMILY: Tahoma, Verdana, Arial; BACKGROUND-COLOR: #bcdc7f;
- text-align:center;
- height:20px;
- text-valign:middle;
- text-transform: UPPERCASE;
- }
- .titleField {
- FONT-WEIGHT: bold;
- COLOR:#000000;
- FONT-SIZE: 12px; MARGIN: 0px;
- FONT-FAMILY: Tahoma, Verdana, Arial; BACKGROUND-COLOR: #b1ccf8;
- text-align:center;
- height:20px;
- text-valign:middle;
- text-transform: UPPERCASE;
- }
- .titleField2 {
- FONT-WEIGHT: bold;
- COLOR:#000000;
- FONT-SIZE: 10px; MARGIN: 0px;
- FONT-FAMILY: Tahoma, Verdana, Arial; BACKGROUND-COLOR: #b1ccf8;
- text-align:center;
- height:18px;
- text-valign:middle;
- text-transform: UPPERCASE;
- }
- #START :: untuk halaman list
- .bgfield1{
- COLOR:#000000; FONT-SIZE: 12px; MARGIN: 0px; FONT-FAMILY: Tahoma, Verdana, Arial; BACKGROUND-COLOR: #cdcdcd;
- }
- .bgfield2 {
- COLOR:#000000; FONT-SIZE: 12px; MARGIN: 0px; FONT-FAMILY: Tahoma, Verdana, Arial; BACKGROUND-COLOR: #cfcfcf;
- }
- #END :: untuk halaman list
- .celBorder {
- font-family: Tahoma, Verdana, Arial;
- color: #000000;
- text-decoration: none;
- font-size: 12px;
- border-top-width: 1px;
- border-top-style: solid;
- border-top-color: #CCCCCC;
- border-left-width: 1px;
- border-left-style: solid;
- border-left-color: #CCCCCC;
- vertical-align: text-top;
- }
- .numeric {
- text-align: right;
- }
- .calendar {
- COLOR:#000000; FONT-SIZE: 12px; MARGIN: 0px; FONT-FAMILY: Tahoma, Verdana, Arial;
- }
- .style1 {color: #FF0000}
- .pad10 {
- padding-left:10px;
- padding-top:10px;
- }
- /*#Global#*/
- .LTR, .RTL
- {
- background-color: #ffffff;
- }
- body
- {
- background-color: #ffffff;
- font-size: small;
- font-family: Arial;
- margin: 0px;
- }
- h1
- {
- color: #005595;
- font-size: 160%;
- }
- h2
- {
- font-size: 130%
- }
- h3
- {
- font-size: 120%
- }
- h4
- {
- font-size: 110%
- }
- h5
- {
- font-size: 100%
- }
- h2,h3,h4,h5
- {
- color: #002756;
- }
- a
- {
- text-decoration: underline;
- color: #000000;
- }
- a:hover
- {
- text-decoration: none;
- }
- .ErrorMessage
- {
- color: #ff0000;
- }
- .PageTitle
- {
- font-weight: bold;
- font-size: 20px;
- color: black;
- vertical-align: top;
- text-align: left;
- }
- .IE6 .PageTitleHeader
- {
- text-align: left;
- }
- /*#Global/Logon form#*/
- .LoginPanelPasswordRetrieval input[type="submit"]
- {
- width: 120px;
- }
- .LogonTextBox
- {
- width: 150px;
- }
- /*#Global/Language Selector#*/
- .languageSelection img
- {
- border: none;
- }
- .languageSelectionWithCultures, .languageSelection
- {
- text-align: right;
- }
- .languageSelectionWithCultures a
- {
- padding: 0px 2px;
- }
- .languageSelection span, .languageSelectionWithCultures span
- {
- padding: 0px 2px;
- }
- .languageSelectionWithCultures img
- {
- vertical-align: text-bottom;
- }
- /*#Global/Message & Errors labels#*/
- .EditingFormErrorLabel, .EventManagerRegError
- {
- color: #ff0000;
- }
- /*#Main styles#*/
- /*#Main styles/General#*/
- .zoneLeft
- {
- width: 190px;
- }
- .largeLeftContent
- {
- width: 225px;!important
- }
- .zoneContent
- {
- width: 735px;
- margin: 0px;
- overflow: hidden;
- }
- /*#Main styles/Events page#*/
- .userContributinons .zoneTop
- {
- width: 100%;
- }
- /*#Main styles/Events page#*/
- .eventCalendarDetail .zoneTop
- {
- width: 100%;
- margin-bottom: 10px;
- }
- .eventCalendarDetail .zoneLeft
- {
- width: 450px;
- }
- .eventCalendarDetail .zoneRight
- {
- width: 450px;
- }
- /*#Main styles/Blog page#*/
- .blogDetail .zoneTop
- {
- width: 100%;
- margin-bottom: 10px;
- }
- .blogDetail .zoneLeft
- {
- width: 700px;
- }
- .blogDetail .zoneRight
- {
- width: 200px;
- }
- /*#Main styles/Master page#*/
- /*Top logo, top menu*/
- .mainDiv
- {
- width: 930px;
- margin: 15px auto;
- }
- .zoneTop
- {
- width: 450px;
- float: right;
- /* padding-right: 10px;*/
- }
- .zoneMenu
- {
- /*width: 932px;*/
- margin: 0px auto;
- clear: both;
- }
- .zoneMainContent
- {
- margin: 15px 0 10px 0;
- min-height: 400px;
- }
- .IE6 .zoneMainContent
- {
- height: 400px;
- }
- .zoneContent
- {
- width: 735px;
- margin: 0px;
- }
- .zoneBottom
- {
- background: black;
- padding: 2px 10px 4px 10px;
- color: white;
- margin: 10px 0 10px 0;
- min-height: 15px;
- }
- .IE6 .zoneBottom
- {
- height: 15px;
- }
- .zoneBottom a
- {
- color: white;
- }
- .zoneLogo
- {
- margin: 15px 10px;
- width: 436px;
- float: left;
- }
- .RTL .zoneLogo
- {
- direction: ltr;
- }
- /*Top logo, left menu*/
- .mainDivLeftMenu
- {
- width: 1024px;
- margin: 15px auto;
- }
- .mainDivLeftMenu .zoneMenu
- {
- width: 90px;
- margin: 0px 0 10px 0;
- min-height: 400px;
- clear: none !important;
- }
- .mainDivLeftMenu .verticalCMSMenu
- {
- width: 98%;
- }
- .mainDivLeftMenu .zoneMainContent
- {
- padding-left: 4px;
- margin: 0px 0 10px 0;
- min-height: 400px;
- width: 930px;
- }
- /*#Main styles/Home page#*/
- .NewsletterSubscription .Table td
- {
- padding: 1px 2px 1px 0px;
- }
- /*
- .NewsletterSubscription
- {
- overflow: hidden;
- width: 225px;
- }
- */
- .NewsletterSubscription .Table td label
- {
- width: 65px !important;
- overflow: hidden;
- }
- .Gecko .NewsletterSubscription .Table td
- {
- padding: 2px 2px 2px 0px !important;
- }
- .homeTopImage3cols .zoneTop
- {
- width: 100% !important;
- padding-bottom: 15px !important;
- float: none !important;
- }
- .homeTopImage3cols .zoneCenter
- {
- margin: 15px 0 10px 0 !important;
- }
- .homeTopImage3cols .zoneCenter
- {
- width: 417px !important;
- text-align: justify !important;
- margin: 0 14px 0 14px !important;
- }
- .DesignMode .homeTopImage3cols .zoneCenter
- {
- width: 415px !important;
- }
- /* IE6 hack */
- .IE6 .homeTopImage3cols .zoneCenter
- {
- width: 414px !important;
- }
- .IE6 .DesignMode .homeTopImage3cols .zoneCenter
- {
- width: 412px !important;
- }
- .homeTopImage3cols .zoneLeft
- {
- width: 245px;
- }
- .homeTopImage3cols .zoneRight
- {
- width: 240px;
- }
- /* Featured product */
- .FeaturedProduct
- {
- text-align: center;
- font-weight: bold;
- }
- .FeaturedProduct a
- {
- text-decoration: none;
- display: block;
- margin-bottom: 3px;
- font-weight: normal;
- }
- .FeaturedProduct img
- {
- border: medium none;
- }
- .FeaturedProduct .ProductPrice
- {
- font-size: 120%;
- width: 100%;
- }
- /*#Main styles/Office list with map#*/
- .officeListMap .zoneLeft
- {
- width: 250px;
- }
- .officeListMap .zoneRight
- {
- width: 440px;
- }
- /*#Main styles/Header and text#*/
- .textHeader .zoneContent
- {
- width: 100% !important;
- }
- /*#Main styles/Text with left menu and right column#*/
- .textColLeftMenu .zoneLeft
- {
- width: 25% !important;
- }
- .textColLeftMenu .zoneContent
- {
- width: 50% !important;
- }
- .textColLeftMenu .zoneRight
- {
- width: 24% !important;
- }
- /*#Main styles/Three columns#*/
- .threeCols .zoneLeft
- {
- width: 33% !important;
- }
- .threeCols .zoneCenter
- {
- width: 34% !important;
- }
- .threeCols .zoneRight
- {
- width: 33% !important;
- }
- /*#Main styles/Three columns with left menu#*/
- .threeColsLeftMenu .zoneLeftMenu
- {
- width: 24% !important;
- }
- .threeColsLeftMenu .zoneLeft
- {
- width: 25% !important;
- }
- .threeColsLeftMenu .zoneCenter
- {
- width: 26% !important;
- }
- .threeColsLeftMenu .zoneRight
- {
- width: 25% !important;
- }
- /*#Main styles/Two columns with left menu#*/
- .twoColsLeftMenu .zoneLeftMenu
- {
- width: 26% !important;
- }
- .twoColsLeftMenu .zoneLeft
- {
- width: 37% !important;
- }
- .twoColsLeftMenu .zoneRight
- {
- width: 37% !important;
- }
- /* Menu design */
- .CMSTreeMenuTable
- {
- /*font-size: 120%;*/
- width: 100%;
- }
- .CMSTreeMenuTable a
- {
- white-space: nowrap;
- }
- .subCMSTreeMenuTable
- {
- margin-left: 10px;
- }
- .CMSTreeMenuTable a:hover
- {
- text-decoration: underline;
- }
- .CMSTreeMenuItem, .CMSTreeMenuSelectedItem
- {
- background: url(../App_Themes/CorporateSite/Images/leftmenuBg.gif) repeat-x left bottom;
- padding: 3px 0px;
- }
- .subCMSTreeMenuItem, .subCMSTreeMenuSelectedItem
- {
- background: url(../App_Themes/CorporateSite/Images/leftmenuBg.gif) repeat-x left bottom;
- padding: 3px 0px;
- }
- .CMSTreeMenuLink
- {
- padding-left: 12px;
- text-decoration: none;
- color: #000000;
- background: url(../App_Themes/CorporateSite/Images/treeMenuItemBackground.png) no-repeat left center;
- }
- .subCMSTreeMenuLink
- {
- text-decoration: none;
- padding-left: 18px;
- background: url(../App_Themes/CorporateSite/Images/treeMenuItemBackground.png) no-repeat 8px center;
- }
- .CMSTreeMenuSelectedLink
- {
- background: url(../App_Themes/CorporateSite/Images/treeMenuItemBackgroundActive.png) no-repeat left center;
- padding-left: 12px;
- text-decoration: underline;
- }
- .subCMSTreeMenuSelectedLink
- {
- background: url(../App_Themes/CorporateSite/Images/treeMenuItemBackgroundActive.png) no-repeat 8px center;
- padding-left: 18px;
- }
- /*#Top menu styles#*/
- .horizontalmenu
- {
- //background: #000000 url(../App_Themes/CorporateSite/Images/topMenuBackground.gif);
- }
- .verticalmenu
- {
- background: none;
- }
- /*#Top menu styles/Horizontal#*/
- .horizontalCMSMenu
- {
- height: 34px;
- color: #ffffff;
- padding: 3px;
- background: #000000 url(../App_Themes/CorporateSite/Images/topMenuBackground.gif);
- }
- .horizontalsubCMSMenu
- {
- background: black;
- color: #ffffff;
- }
- .horizontalsubCMSMenu tr
- {
- background: black;
- }
- .horizontalsubCMSMenuItem
- {
- white-space: nowrap;
- display: block;
- }
- .horizontalsubCMSMenuItem, .horizontalsubCMSMenuItemMouseOver, .horizontalsubCMSMenuItemMouseDown,
- .horizontalsubCMSMenuHighlightedMenuItem, .horizontalsubCMSMenuHighlightedMenuItemMouseOver,
- .horizontalsubCMSMenuHighlightedMenuItemMouseDown
- {
- padding: 5px 3px;
- min-width: 81px;
- white-space: nowrap;
- display: block;
- }
- .horizontalsubCMSMenuHighlightedMenuItem, .horizontalsubCMSMenuHighlightedMenuItemMouseOver,
- .horizontalsubCMSMenuHighlightedMenuItemMouseDown, .horizontalsubCMSMenuItemMouseOver
- {
- background: #eb6d24;
- }
- .horizontalCMSMenuItem, .horizontalCMSMenuItemMouseOver, .horizontalCMSMenuItemMouseDown,
- .horizontalCMSMenuHighlightedMenuItem, .horizontalCMSMenuHighlightedMenuItemMouseOver,
- .horizontalCMSMenuHighlightedMenuItemMouseDown,
- .horizontalCMSMenuItemMouseUp, .horizontalCMSMenuHighlightedMenuItemMouseUp
- {
- font-size: 15px;
- padding: 0px 10px;
- background: url(../App_Themes/CorporateSite/Images/topMenuItemDivider.gif) no-repeat top right;
- font-color: #FFFFFF;
- }
- .horizontalCMSMenuItemMouseOver, .horizontalCMSMenuHighlightedMenuItem,
- .horizontalCMSMenuHighlightedMenuItemMouseOver, .horizontalCMSMenuHighlightedMenuItemMouseDown
- {
- background: url(../App_Themes/CorporateSite/Images/topMenuItemHover.gif) repeat-x;
- }
- /*#Top menu styles/Vertical#*/
- .verticalCMSMenu
- {
- /* height: 34px;*/
- width: 110px;
- color: #ffffff;
- padding: 3px;
- background: #000000 url(../App_Themes/CorporateSite/Images/topMenuBackground.gif);
- }
- .verticalsubCMSMenu
- {
- background: black;
- color: #ffffff;
- height: 34px;
- }
- .verticalsubCMSMenu tr
- {
- background: black;
- }
- .verticalsubCMSMenuItem
- {
- white-space: nowrap;
- display: block;
- }
- .verticalsubCMSMenuItem, .verticalsubCMSMenuItemMouseOver, .verticalsubCMSMenuItemMouseDown,
- .verticalsubCMSMenuHighlightedMenuItem, .verticalsubCMSMenuHighlightedMenuItemMouseOver,
- .verticalsubCMSMenuHighlightedMenuItemMouseDown
- {
- padding: 5px 3px;
- min-width: 101px;
- min-height: 24px;
- white-space: nowrap;
- display: block;
- }
- .verticalsubCMSMenuHighlightedMenuItem, .verticalsubCMSMenuHighlightedMenuItemMouseOver,
- .verticalsubCMSMenuHighlightedMenuItemMouseDown, .verticalsubCMSMenuItemMouseOver
- {
- background: #eb6d24;
- }
- .verticalCMSMenuItem, .verticalCMSMenuItemMouseOver, .verticalCMSMenuItemMouseDown,
- .verticalCMSMenuHighlightedMenuItem, .verticalCMSMenuHighlightedMenuItemMouseOver,
- .verticalCMSMenuHighlightedMenuItemMouseDown,
- .verticalCMSMenuItemMouseUp, .verticalCMSMenuHighlightedMenuItemMouseUp
- {
- height: 34px;
- font-size: 15px;
- padding: 0px 10px;
- background: #000000 url(../App_Themes/CorporateSite/Images/topMenuBackground.gif);
- }
- .verticallCMSMenuItemMouseOver, .verticalCMSMenuHighlightedMenuItem,
- .verticalCMSMenuHighlightedMenuItemMouseOver, .verticalCMSMenuHighlightedMenuItemMouseDown
- {
- background: url(../App_Themes/CorporateSite/Images/topMenuItemHover.gif) repeat-x;
- }
- /*#Other css styles#*/
- /*#Other css styles/Language selector#*/
- .languageselector
- {
- float: right;
- margin: 30px 10px 0px 0px;
- }
- .languageselector img
- {
- border: none;
- margin-left: 5px;
- margin-right: 3px;
- }
- .languageselector a
- {
- color: #000000;
- text-decoration: none;
- }
- /*#Other css styles/Search box#*/
- .searchbox
- {
- float: right;
- margin-top: 15px;
- margin-bottom: 10px;
- }
- .searchbox input[type=image]
- {
- margin: 0px 0px 0px 7px;
- }
- .searchbox label
- {
- margin-right: 10px;
- padding-bottom: 5px;
- }
- .currentUser
- {
- text-align: right;
- float: right;
- padding-top: 7px;
- }
- .signOut
- {
- padding-top: 7px;
- padding-left: 15px;
- float: right;
- }
- .shoppingCartPreview
- {
- float: right;
- width: 100%;
- text-align: right;
- margin-top: 5px;
- }
- .shoppingCartPreview table
- {
- float: right;
- }
- .SmallTextLabel
- {
- font-size: 12px;
- }
- /*#Other css styles/Polls#*/
- .PollTitle
- {
- font-weight:bold;
- display:none;
- margin-bottom:10px
- }
- .PollAnswers{
- font-size: 10px;
- margin-top: 5px;
- }
- .PollGraph
- {
- height: 8px;
- border: 1px solid gray;
- }
- .PollGraph div
- {
- height: 8px;
- background: url(../App_Themes/CorporateSite/Images/poll02.gif) 100% 0% repeat-x;
- line-height: 0px;
- font-size: 0px;
- }
- .PollGraph div.PollGraph0
- {
- background: url(../App_Themes/CorporateSite/Images/poll01.gif) 100% 0% repeat-x;
- }
- .PollGraph div.PollGraph2
- {
- background: url(../App_Themes/CorporateSite/Images/poll03.gif) 100% 0% repeat-x;
- }
- .PollQuestion
- {
- font-size:14px;
- font-weight: bold;
- }
- .PollCount
- {
- text-align: right;
- }
- .PollFooter
- {
- margin-top:10px;
- }
- .signOut input, .SubscriptionButton, .PollVoteButton
- {
- background: url(../App_Themes/CorporateSite/Images/buttonBackground.gif) repeat-x;
- border: 1px solid #000000;
- color: #ffffff;
- }
- /*#Containers#*/
- /*#Containers/Content padding#*/
- .ContentPadding
- {
- padding: 10px 5px 0px 5px;
- }
- /*#Containers/Black box#*/
- .blackBox
- {
- border: 1px solid #545454;
- margin-bottom: 15px;
- }
- .blackBox .title
- {
- background: #e36c26 url(../App_Themes/CorporateSite/Images/topMenuItemDivider.gif) 0% 40%
- repeat-x;
- padding: 3px 5px;
- font-size: 12px;
- margin-top: 0px;
- color: white;
- margin-bottom:0px;
- }
- .blackBox .content
- {
- padding: 5px;
- background: #f3f3f3;
- }
- /*#Containers/Orange box#*/
- .orangeBox
- {
- border: 1px solid #ffd7b4;
- margin-bottom: 15px;
-
- }
- .orangeBox .title
- {
- background: #e36c26 url(../App_Themes/CorporateSite/Images/topMenuItemHover.gif) 0% 40% repeat-x;
- padding: 3px 5px;
- font-size: 12px;
- margin-top: 0px;
- margin-bottom:0px;
- color: white;
- }
- .orangeBox .content
- {
- padding: 5px;
- }
- /*#Containers/Orange box with grey cont.#*/
- .orangeBoxGrey
- {
-
- }
- .orangeBoxGrey .title
- {
- background: #e36c26 url(../App_Themes/CorporateSite/Images/OrangeBoxTitle.gif) repeat-x;
- padding: 3px 5px;
- font-size: 12px;
- margin-top: 0px;
- margin-bottom:0px;
- }
- .orangeBoxGrey .content
- {
- padding: 5px;
- background: #f0f0f0;
- }
- /*#Containers/Gray box#*/
- .grayBox
- {
- background: #f0f0f0;
- padding: 5px;
- }
- /*#Photo Gallery#*/
- .photoGallery
- {
- margin: auto;
- text-align: center;
- width: 648px;
- }
- .photoGallery .Slider .Pager
- {
- margin-left: 80px;
- }
- .photoGalleryContainer
- {
- margin: auto;
- text-align: center;
- }
- .photoGallery img
- {
- margin: 0px 5px 5px;
- border: none;
- padding: 2px;
- border: 1px solid #000000;
- }
- /*#Photo Gallery/Gallery list#*/
- .gallery
- {
- float: left;
- text-align: center;
- }
- .gallery h3
- {
- background: #cccccc url(../App_Themes/CorporateSite/Images/topMenuBackground.gif) repeat-x center left;
- margin: 0px 5px;
- padding: 2px 0px;
- color: #ffffff;
- }
- /*#News#*/
- .NewsPTitle
- {
- background:#000000 url(../App_Themes/CorporateSite/Images/genbackground.gif) repeat-x scroll left top;
- border-top:1px solid #cccccc;
- border-left:1px solid #cccccc;
- border-right:1px solid #cccccc;
- color:#ffffff;
- padding:5px;
- }
- .NewsPTitle a{
- color: #ffffff;
- font-weight: bold;
- }
- .NewsPBody
- {
- border:1px solid #cccccc;
- margin-bottom:20px;
- padding:10px 15px;
- }
- .NewsSummary
- {
- background-color:#f1f1f1;
- border:1px solid #cccccc;
- margin-top:10px;
- padding: 15px 0 15px 15px;
- }
- .NewsSummary img
- {
- border: 1px solid #cccccc;
- float: left;
- margin-right: 15px;
- margin-bottom: 0px;
- }
- .NewsSummary .NewsContent
- {
- float: left;
- width: 700px;
- }
- .NewsSummary .Date
- {
- font-weight: bold;
- margin-bottom: 10px;
- }
- .NewsSummary .Clearer
- {
- height: 0;
- line-height: 0;
- font-size: 0pt;
- clear: both;
- margin: 0;
- padding: 0;
- width: 100%;
- }
- .NewsBody
- {
- border-left:1px solid #cccccc;
- border-right:1px solid #cccccc;
- border-bottom:1px solid #cccccc;
- padding:15px;
- }
- .NewsBody img
- {
- border: none;
- }
- .NewsDetail
- {
- }
- .NewsTitle
- {
- font-size: 16px;
- font-weight: bold;
- color: orange;
- }
- .NewsDate
- {
- font-style: italic;
- padding-top: 5px;
- }
- .NewsReleaseDate
- {
- font-style: italic;
- }
- .BoxTitle
- {
- font-size: 120%;
- color: #002756;
- font-weight: bold;
- }
- .NewsPreviewTitle a
- {
- font-weight:bold;
- }
- .NewsPreviewDate
- {
- font-size:90%;
- padding:5px 0 3px;
- }
- .NewsPreviewSummary
- {
- font-size:80%;
- }
- /*#Tags#*/
- .autocomplete_completionListElement
- {
- visibility: hidden;
- margin: 0px !important;
- padding: 0px !important;
- border: 1px solid #A4B2BC;
- overflow: auto;
- height: 200px;
- text-align: left;
- list-style-type: none;
- background-color: #fff;
- }
- .RTL .autocomplete_completionListElement
- {
- text-align: right;
- }
- .autocomplete_highlightedListItem
- {
- background-color: #ffff99;
- padding: 1px;
- cursor: pointer;
- }
- .autocomplete_listItem
- {
- padding: 1px;
- }
- /*#Blog#*/
- .BlogPTitle a
- {
- color: #ffffff;
- font-weight: bold;
- }
- .BlogPTitle
- {
- background:#000000 url(../App_Themes/CorporateSite/Images/genbackground.gif) repeat-x scroll left top;
- color: #ffffff;
- padding: 5px;
- border-left: solid 1px #cccccc;
- border-right: solid 1px #cccccc;
- border-top: solid 1px #cccccc;
- }
- .BlogPBody
- {
- padding: 10px 15px;
- border: solid 1px #cccccc;
- }
- .BlogPBody img
- {
- border: none;
- }
- .BlogPDateWhole
- {
- background-color: #f1f1f1;
- padding: 3px 5px;
- border-left: solid 1px #cccccc;
- border-right: solid 1px #cccccc;
- border-bottom: solid 1px #cccccc;
- }
- .comments hr
- {
- border: solid 1px #cccccc;
- }
- .BlogCommentsTitle, .BlogLeaveComment
- {
- font-weight: bold;
- font-size: 110%;
- }
- .blogDetail .comments .TextAreaField
- {
- width: 280px;
- }
- .TextAreaField
- {
- width: 280px;
- height: 100px;
- }
- .IE7 .PageTitleHeader table
- {
- text-align: left;
- }
- /*#Board#*/
- .CommentDetail .CommentRating
- {
- clear:both;
- }
- .BoardLeaveMessage, .BoardMessageTitle, .BlogTrackbacksTitle
- {
- font-weight: bold;
- font-size: 110%;
- }
- /*#Forum#*/
- .ForumModerationInfo
- {
- text-align: center;
- margin: 5px;
- padding: 5px;
- }
- .ForumModerationInfoText
- {
- margin: 15px;
- border: solid 1px #cccccc;
- padding: 35px;
- background-color: #fff6df;
- }
- .ForumSearchResultsInfo
- {
- background-color:#cccccc;
- padding: 8px;
- font-weight:bold;
- }
-
- .Forum .Unapproved
- {
- background-color:#fff2cf;
- }
- .Post img
- {
- border: 0px;
- }
- .PostAttachments
- {
- border: 1px solid #cccccc;
- background: #eeeeee;
- padding: 5px;
- margin: 10px 0px;
- }
- .PostAttachments .PostAttachmentsList
- {
- padding: 2px 0px;
- }
- .PostAttachments .PostAttachmentsHeader
- {
- color: gray;
- }
- .PostAttachments .PostAttachmentsList a
- {
- color: black;
- }
- /*#Forum/Attachments#*/
- .ForumAttachments
- {
- border-right: solid 1px #cccccc;
- border-left: solid 1px #cccccc;
- border-bottom: solid 1px #cccccc;
- }
- .ForumAttachments .AttachmentTable
- {
- border: solid 1px #cccccc;
- border-collapse: collapse;
- margin-top: 12px;
- }
- .ForumAttachments .AttachmentTable td
- {
- border-top: solid 1px #cccccc;
- border-bottom: solid 1px #cccccc;
- }
- .ForumAttachments .AttachmentTable .AttachmentTableHeader
- {
- background-color: #eeeeee;
- }
- .ForumAttachments .AttachmentTable .AttachmentTableHeader th, .AttachmentTable .AttachmentFileSize, .AttachmentAction
- {
- text-align: center;
- border-top: solid 1px #cccccc;
- border-bottom: solid 1px #cccccc;
- padding: 3px;
- }
- .ForumAttachments .AttachmentTable .AttachmentTableHeader .AttachmentFileName
- {
- text-align: left;
- }
- .ForumAttachments .AttachmentTable .AttachmentTableFooter
- {
- display: none;
- }
- .ForumAttachments .AttachmentTable .AttachmentTableUpload input
- {
- height: 23px;
- }
- .ForumAttachments .AttachmentTable .AttachmentTableUpload .Button
- {
- width: 100px;
- }
- .ForumAttachments .AttachmentTable .AttachmentTableFooter
- {
- display: none;
- }
- .ForumAttachments .Title
- {
- font-size: 16px;
- font-weight: bold;
- }
- /*#Forum/Extended actions#*/
- .PostExtendedActions
- {
- border-top: solid 1px #eeeeee;
- margin-top: 10px;
- padding-top: 5px;
- margin-bottom: 5px;
- }
- .PostExtendedActions span
- {
- display: none;
- }
- .PostExtendedActions .SendMessage
- {
- display: block;
- float: left;
- width: 16px;
- height: 16px;
- background-image: url(../App_themes/Default/Images/CMSModules/Forums/LiveImages/sendmessage.gif);
- margin-right: 7px;
- }
- .PostExtendedActions .Friendship
- {
- display: block;
- float: left;
- width: 16px;
- height: 16px;
- background-image: url(../App_themes/Default/Images/CMSModules/Forums/LiveImages/friendship.gif);
- }
- /*#Forum/Extended search#*/
- .ForumExtendedSearch .TextBox
- {
- width: 300px;
- }
- .ForumExtendedSearch .DropDownList
- {
- width: 304px;
- }
- .ForumExtendedSearch .Button
- {
- margin-top: 20px;
- width: 150px;
- }
- /*#Forum/Mark as answer#*/
- .Post .AcceptedSolution
- {
- background-color: #efffef;
- }
- .AcceptedSolutionArea
- {
- color:Green;
- font-size:14pt;
- width:100%;
- margin-bottom: 5px;
- }
- .AcceptedSolutionArea td
- {
- padding-left: 5px !important;
- padding-bottom: 5px !important;
- }
-
- .AcceptedSolutionArea .AcceptedSolutionText
- {
- width:100%;
- }
- /*#Forum/Quote#*/
- .PostText blockquote
- {
- border: solid 1px #d4d4d4;
- background-color: #eeeeee;
- padding: 4px;
- margin-left: 10px;
- }
- .PostText blockquote cite
- {
- display: block;
- font-weight: bold;
- }
- /*#Forum/Manage#*/
- .ForumManage
- {
- border: 1px solid #cccccc;
- margin: 4px 0px 5px 5px;
- padding: 2px 5px;
- background-color: #eeeeee;
- }
- .PostManageEdit table
- {
- border: none !important;
- }
- .PostManageEdit .ForumNewPost td
- {
- border-bottom: none !important;
- }
- .ForumNewPost .SignatureAreaItem
- {
- width: 500px;
- height: 50px;
- }
- .SignatureArea
- {
- width: 100%;
- border-top: solid 1px #D7D7D7;
- font-size: 8pt;
- color: #a8a8a8;
- margin-top: 5px;
- padding: 5px;
- }
- .ForumTree .PostTree .SignatureArea
- {
- width: 100%;
- border-top: solid 1px #D7D7D7;
- font-size: 8pt;
- color: #a8a8a8;
- margin-top: 5px;
- padding: 5px;
- }
- /*#Forum/Forum Group#*/
- .ForumGroup
- {
- width: 100%;
- }
- .ForumGroup *
- {
- font-family: Arial;
- }
- .ForumGroup .Table
- {
- width: 100%;
- border-top: solid 1px #cccccc;
- border-left: solid 1px #cccccc;
- background-color: #ffffff;
- }
- .ForumGroup .Table td
- {
- padding: 6px;
- }
- .ForumGroup .Table .Header td
- {
- font-weight: bold;
- border-right: solid 1px #cccccc;
- border-bottom: solid 1px #cccccc;
- color: #ffffff;
- padding-top: 4px;
- padding-bottom: 4px;
- background: #000000 url(../App_Themes/CorporateSite/Images/genbackground.gif) repeat-x top left;
- }
- .ForumGroup .Table .Info td
- {
- border-right: solid 1px #cccccc;
- border-bottom: solid 1px #888888;
- border-top: solid 1px #888888;
- padding-top: 0px;
- padding-bottom: 0px;
- background: #000000 url(../App_Themes/CorporateSite/Images/genbackground.gif) repeat-x top left;
- height: 55px;
- vertical-align: top;
- }
- .ForumGroup .Table .GroupName
- {
- display: block;
- font-weight: bold;
- font-size: 17px;
- padding-top: 8px;
- padding-bottom: 5px;
- color: #ffffff;
- }
- .ForumGroup .Table .GroupDescription
- {
- display: block;
- padding-left: 10px;
- color: #dddddd;
- }
- .ForumGroup .Table .ForumInfo
- {
- padding-top: 10px;
- padding-bottom: 10px;
- }
- .ForumGroup .Table .Threads
- {
- text-align: center;
- width: 50px;
- }
- .ForumGroup .Table .Posts
- {
- text-align: center;
- width: 50px;
- }
- .ForumGroup .Table .LastPost
- {
- text-align: center;
- width: 200px;
- }
- .ForumGroup .Table .PostTime
- {
- white-space: nowrap;
- }
- .ForumGroup .Table .PostUser
- {
- white-space: nowrap;
- font-weight: bold;
- color: #e36c26;
- }
- .ForumGroup .ForumOdd td
- {
- background-color: #f8f8ff;
- }
- .ForumGroup .Forum td
- {
- border-right: solid 1px #cccccc;
- border-bottom: solid 1px #cccccc;
- }
- .ForumGroup .Forum .ForumName
- {
- font-weight: bold;
- font-size: 15px;
- text-decoration: underline;
- color: black;
- }
- .ForumGroup .Forum .ForumDescription
- {
- padding-left: 10px;
- }
- /*#Forum/Forum flat layout#*/
- .ForumFlat *
- {
- font-family: Arial;
- }
- .ForumFlat .Table
- {
- width: 100%;
- background-color: #ffffff;
- }
- .ForumFlat .Table td
- {
- padding: 6px;
- }
- .ForumFlat .Table .Info td
- {
- border: solid 1px #888888;
- padding-top: 0px;
- padding-bottom: 0px;
- background: #000000 url(../App_Themes/CorporateSite/Images/genbackground.gif) repeat-x top left;
- height: 55px;
- vertical-align: top;
- }
- .ForumFlat .Table .ForumContent
- {
- background-color: #ffffff;
- padding: 0px;
- margin: 0px;
- /*font-size: 110%;*/
- }
- .ForumFlat .Table .Posts
- {
- border-right: solid 1px #cccccc;
- border-left: solid 1px #cccccc;
- }
- .ForumFlat .Table .ForumName
- {
- display: block;
- font-weight: bold;
- font-size: 17px;
- padding-top: 8px;
- padding-bottom: 5px;
- /*text-decoration: underline;*/
- color: #ffffff;
- }
- .ForumFlat .Table .ForumDescription
- {
- display: block;
- padding-left: 10px;
- color: #dddddd;
- }
- .ForumFlat .Table .Informations td
- {
- font-weight: bold;
- background-color: #eeeeee;
- border-right: solid 1px #cccccc;
- border-left: solid 1px #cccccc;
- border-bottom: solid 1px #bbbbbb;
- padding: 5px;
- background-color: #fffec0;
- }
- .ForumFlat .Table .Actions td
- {
- font-weight: bold;
- background-color: #eeeeee;
- border-right: solid 1px #cccccc;
- border-left: solid 1px #cccccc;
- border-bottom: solid 1px #bbbbbb;
- padding: 5px;
- }
- .ForumFlat .Table .Actions .ActionLink
- {
- color: #e36c26;
- text-decoration: underline;
- padding: 0px 5px 0px 5px;
- }
- .ForumFlat .Table .Posts td
- {
- border-right: solid 1px #cccccc;
- border-left: solid 1px #cccccc;
- border-bottom: solid 1px #cccccc;
- padding: 0px;
- }
- .ForumFlat .Table .PostsTable
- {
- width: 100%;
- }
- .ForumFlat .Table .PostsTable td
- {
- border-top: none;
- border-right: none;
- border-left: none;
- border-bottom: solid 1px #cccccc;
- }
- .ForumFlat .Pager td
- {
- background-color: #eeeeee;
- border: none;
- padding: 0px;
- height: 23px;
- font-weight: bold;
- text-align: center;
- }
- .ForumFlat .Pager a
- {
- font-weight: bold;
- text-decoration: underline;
- color: #65a02f;
- }
- .ForumFlat .ThreadTable
- {
- border-left: solid 1px #cccccc;
- }
- .ForumFlat .ThreadTable td
- {
- border-right: solid 1px #cccccc;
- border-bottom: solid 1px #cccccc;
- }
- .ForumFlat .ThreadTable .Header td
- {
- font-weight: bold;
- background-color: #eeeeee;
- border-right: solid 1px #cccccc;
- border-bottom: solid 1px #cccccc;
- color: #ffffff;
- padding-top: 4px;
- padding-bottom: 4px;
- background-image: url(../App_Themes/CorporateSite/Images/genbackground.gif);
- }
- .ForumFlat .ThreadTable .Author
- {
- text-align: center;
- width: 200px;
- color: #e36c26;
- }
- .ForumFlat .ThreadTable .Posts, .ForumFlat .ThreadTable .Views
- {
- text-align: center;
- width: 50px;
- }
- .ForumFlat .ThreadTable .LastPost
- {
- text-align: center;
- width: 200px;
- }
- .ForumFlat .ThreadTable .PostTime
- {
- white-space: nowrap;
- }
- .ForumFlat .ThreadTable .PostUser
- {
- white-space: nowrap;
- font-weight: bold;
- color: #e36c26;
- }
- .ForumFlat .ThreadTable .ThreadInfo
- {
- text-align: left;
- }
- .ForumFlat .ThreadTable .ThreadInfo .ThreadName
- {
- font-weight: bold;
- text-decoration: underline;
- color: #e36c26;
- }
- .ForumFlat .ForumBreadCrumbs
- {
- font-weight: normal;
- font-size: 9pt;
- font-family: Arial;
- padding: 0px 5px 0px 5px;
- }
- .ForumFlat .ForumNewPost
- {
- border-right: solid 1px #cccccc;
- border-left: solid 1px #cccccc;
- border-bottom: solid 1px #cccccc;
- }
- /*#Forum/Forum flat layout/Post#*/
- .ForumFlat .ForumPost
- {
- padding: 8px 8px 8px 8px;
- }
- .ForumFlat .PostIndent .ForumPost
- {
- border-left: solid 1px #cccccc;
- }
- .ForumFlat .PostIndent
- {
- padding-left: 30px;
- }
- .ForumFlat .PostUser, .ForumFlat .PostUserLink
- {
- white-space: nowrap;
- font-weight: bold;
- color: #e36c26;
- }
- .ForumFlat .PostUser
- {
- text-decoration: none;
- }
- .ForumFlat .PostSubject
- {
- display: block;
- font-weight: bold;
- font-size: 13px;
- }
- .ForumFlat .PostText
- {
- display: block;
- padding: 3px 5px 3px 5px;
- }
- .ForumFlat .PostActionLink
- {
- text-decoration: underline;
- color: #e36c26;
- padding: 0px 5px 0px 5px;
- }
- /*#Forum/New post form#*/
- .ForumNewPost
- {
- padding: 5px;
- font-family: Arial;
- }
- .ForumNewPost .PostReply
- {
- border: solid 1px #cccccc;
- margin-top: 5px;
- margin-bottom: 5px;
- }
- .ForumNewPost .FormPadding
- {
- /*border: solid 1px #cccccc;*/
- padding: 5px;
- margin-top: 5px;
- margin-bottom: 5px;
- }
- .ForumNewPost .Title
- {
- font-size: 17px;
- font-weight: bold;
- margin-top: 10px;
- margin-bottom: 5px;
- display: block;
- }
- .ForumFlat .ForumNewPost .PostForm td
- {
- border: none;
- }
- .ForumNewPost .ItemLabel
- {
- font-weight: bold;
- vertical-align: middle;
- padding: 5px;
- }
- .ForumNewPost .Button
- {
- width: 100px;
- }
- .ForumNewPost .TextboxItem
- {
- width: 500px;
- }
- .ForumNewPost .TextboxItemShort
- {
- width: 300px;
- }
- .ForumNewPost .TextareaItem
- {
- width: 500px;
- height: 200px;
- }
- /*#Forum/Tree layout#*/
- .ForumTree *
- {
- font-family: Arial;
- }
- .ForumTree .Table
- {
- width: 100%;
- background-color: #ffffff;
- }
- .ForumTree .Table td
- {
- padding: 6px;
- }
- .ForumTree .Table .Info td
- {
- background-color: #5c99e8;
- border: solid 1px #888888;
- padding-top: 0px;
- padding-bottom: 0px;
- background: #000000 url(../App_Themes/CorporateSite/Images/genbackground.gif) repeat-x top
- left;
- height: 55px;
- vertical-align: top;
- }
- .ForumTree .Table .ForumName
- {
- display: block;
- font-weight: bold;
- font-size: 17px;
- padding-top: 8px;
- padding-bottom: 5px;
- /*text-decoration: underline;*/
- color: #ffffff;
- }
- .ForumTree .Table .ForumDescription
- {
- display: block;
- padding-left: 10px;
- color: #dddddd;
- }
- .ForumTree .Table .Actions td
- {
- font-weight: bold;
- background-color: #eeeeee;
- border-right: solid 1px #cccccc;
- border-left: solid 1px #cccccc;
- border-bottom: solid 1px #bbbbbb;
- padding: 5px;
- }
- .ForumTree .Table .Actions .ActionLink
- {
- color: #e36c26;
- text-decoration: underline;
- padding: 0px 5px 0px 5px;
- }
- .ForumTree .Table .Posts
- {
- border-right: solid 1px #cccccc;
- border-left: solid 1px #cccccc;
- border-bottom: solid 1px #cccccc;
- padding: 0px;
- }
- .ForumTree .Table .Posts .PostTree td
- {
- padding: 0px;
- }
- .ForumTree .Table .Posts .PostTree
- {
- padding: 5px;
- border-top: solid 1px #dddddd;
- border-bottom: solid 1px #dddddd;
- }
- .ForumTree .ForumNewPost .PostForm td
- {
- border: none;
- }
- /*#Forum/Tree layout/Post#*/
- .ForumTree .ForumPost
- {
- padding: 8px 8px 8px 8px;
- }
- .ForumTree .PostDetail .ForumPost
- {
- border-bottom: solid 1px #cccccc;
- }
- .ForumTree .PostUser, .ForumTree .PostUserLink
- {
- color: #e36c26;
- font-weight: bold;
- white-space: nowrap;
- }
- .ForumTree .PostUser
- {
- text-decoration: none;
- }
- .ForumTree .PostSubject
- {
- display: block;
- font-weight: bold;
- font-size: 13px;
- }
- .ForumTree .PostText
- {
- display: block;
- padding: 3px 5px 3px 5px;
- }
- .ForumTree .PostActionLink
- {
- color: #e36c26;
- padding: 0px 5px;
- text-decoration: underline;
- }
- .ForumTree .PostTree .ForumPost
- {
- border: solid 1px #cccccc;
- width: 600px;
- }
- /* Overall */
- .HiddenButton
- {
- display: none;
- }
- /* Tree Items*/
- .ForumTree .PostTree td
- {
- vertical-align: top;
- }
- .ThreadPost, .SubThreadPost, .RootPostItem, .ThreadPostSelected
- {
- padding: 3px 3px 1px 3px;
- overflow: hidden;
- color: #000000;
- font-weight: bold;
- }
- .ThreadPostSelected
- {
- background-color: #cccccc;
- font-weight: bold;
- color: #000000;
- overflow: hidden;
- padding: 3px 20px 1px 3px;
- }
- .PostSeparator
- {
- padding: 0 3px;
- }
- /*#Forums/Images#*/
- .ForumGroup .Forum .ForumImageDefault, .ForumGroup .Forum .ForumImage, .ForumGroup .Forum .ForumImageLocked,
- .ForumFlat .ThreadTable .ThreadImageDefault, .ForumFlat .ThreadTable .ThreadImage, .ForumFlat .ThreadTable .ThreadImageLocked, .ForumFlat .ThreadTable .ThreadImageAnnouncement, .ForumFlat .ThreadTable .ThreadImageSticky
- {
- background-repeat:no-repeat;
- background-position:center;
- border-right: none;
- width: 24px;
- text-align: center;
- border-right: 1px solid #cccccc;
- }
- .ForumGroup .Forum .ForumImageDefault, .ForumGroup .Forum .ForumImage
- {
- background-image: url(../App_Themes/Default/Images/CMSModules/Forums/LiveImages/Forum_default.gif);
- }
- .ForumGroup .Forum .ForumImageLocked
- {
- background-image: url(../App_Themes/Default/Images/CMSModules/Forums/LiveImages/Forum_locked.gif);
- }
- .ForumFlat .ThreadTable .ThreadImageDefault, .ForumFlat .ThreadTable .ThreadImage
- {
- background-image: url(../App_Themes/Default/Images/CMSModules/Forums/LiveImages/Thread_default.gif);
- }
- .ForumFlat .ThreadTable .ThreadImageLocked
- {
- background-image: url(../App_Themes/Default/Images/CMSModules/Forums/LiveImages/Thread_locked.gif);
- }
- .ForumFlat .ThreadTable .ThreadImageAnnouncement
- {
- background-image: url(../App_Themes/Default/Images/CMSModules/Forums/LiveImages/Thread_announcement.gif);
- }
- .ForumFlat .ThreadTable .ThreadImageSticky
- {
- background-image: url(../App_Themes/Default/Images/CMSModules/Forums/LiveImages/Thread_sticked.gif);
- }
- .OfficeName
- {
- padding: 2px 0 2px 0;
- font-weight: bold;
- }
- /*#Events#*/
- .EventCalendar
- {
- width: 100%;
- }
- .EventCalendar *
- {
- padding: 0px;
- }
- .EventCalendar .Title
- {
- background:#000000 url(../App_Themes/CorporateSite/Images/genbackground.gif) repeat-x scroll left top;
- color: #ffffff;
- padding: 5px;
-
- font-weight: bold;
- vertical-align: middle;
- }
- .EventCalendar .Navigation
- {
- font-weight: bold;
- width: 50px;
- padding-left: 10px;
- padding-right: 10px;
- vertical-align: middle;
- }
- .EventCalendar .DayHeader
- {
- height: 25px;
- background-color: #222222;
- color: White;
- font-weight: bold;
- border-style: none;
- vertical-align: middle;
- font-size: 11px;
- }
- .EventCalendar .Day, .EventCalendar .OtherMonth, .EventCalendar .Weekend, .EventCalendar .Today
- {
- height: 50px;
- padding: 3px;
- background-color: #eeeeee;
- font-size: 11px;
- }
- .EventCalendar .Today
- {
- background-color: #222222;
- color: White;
- font-weight: bold;
- }
- .EventCalendar .Today a
- {
- color: White;
- font-weight: bold;
- font-size: 11px;
- }
- .EventCalendar .ContentEvent a
- {
- margin-top: 3px;
- color: Orange;
- font-weight: bold;
- }
- .EventCalendar .OtherMonth
- {
- color: Gray;
- background-color: White;
- }
- .EventManagerRegTitle
- {
- display: block;
- color: #002756;
- font-weight: bold;
- margin-bottom: 5px;
- }
- .EventManagerOutlookLink
- {
- display: block;
- margin-top: 5px;
- }
- .EventManagerRegLabel
- {
- font-weight: bold;
- }
- /*#Examples#*/
- .Slider .Pager
- {
- }
- .Slider .Pager a
- {
- text-decoration: none;
- font-weight: bold;
- font-size: 11px;
- border: 1px solid #cccccc;
- background-color: #f0f0f0;
- text-align: center;
- padding: 0px 3px 0px 3px;
- display: block;
- width: 10px;
- }
- .Slider .PagerPage, .Slider .Control
- {
- margin: 0px 15px 0px 0px;
- float: left;
- }
- .Slider .Control a
- {
- width: 30px;
- }
- .SearchResult
- {
- padding-top: 10px;
- padding-bottom: 10px;
- }
- .ResultTitle a
- {
- color: #e36c26;
- font-weight: bold;
- }
- .CMSSearchResultsNoResultsLabel
- {
- padding-top: 10px;
- padding-left: 5px;
- display: block;
- font-weight: bold;
- }
- .examListMenu ul
- {
- list-style: none;
- }
- .examListMenu .CMSListMenuUL .CMSListMenuLI .CMSListMenuUL
- {
- display: none;
- }
- .examListMenu .CMSListMenuUL .CMSListMenuLI .CMSListMenuUL .CMSListMenuLI .CMSListMenuUL
- {
- display: none;
- }
- .examListMenu .CMSListMenuUL .CMSListMenuLI
- {
- background: url(../App_Themes/CorporateSite/Images/treeMenuItemBackground.png) no-repeat center
- left;
- padding-left: 10px;
- }
- .examListMenu .CMSListMenuUL .CMSListMenuHighlightedLI
- {
- background: url(../App_Themes/CorporateSite/Images/treeMenuItemBackgroundActive.png) no-repeat
- 0px 4px;
- padding-left: 10px;
- }
- .ecommerceExample
- {
- width: 720px !important;
- }
- .forumsExample
- {
- width: 703px !important;
- }
- .CustomRegistrationForm .ConfirmationSeparator
- {
- height: 6px;
- }
- /*#Examples/Media Libraries#*/
- .MediaLibraryListDescription
- {
- vertical-align: top;
- }
- .MediaLibraryListDescription a
- {
- font-size: 18px;
- }
- .MediaLibraryListPhoto
- {
- padding: 4px 20px 1px 5px;
- }
- .MediaListItem
- {
- margin: 10px 0px;
- width: 743px;
- background: url(../App_Themes/CorporateSite/Images/Examples/MediaListTop.gif) no-repeat;
- }
- .MediaListItemBottom
- {
- height: 6px;
- background: url(../App_Themes/CorporateSite/Images/Examples/MediaListBottom.gif) no-repeat;
- }
- .MediaLibraryListDescriptionText
- {
- padding-top: 10px;
- font-size: 12px;
- }
- /*#Examples/Event manager#*/
- .EventManagerRegText
- {
- width: 230px;
- }
- /*#Examples/Pager control#*/
- .PagerControl
- {
- text-align: center;
- }
- .PagerResults
- {
- padding-top: 10px !important;
- padding-bottom: 0 !important;
- }
- .PagerNumberArea
- {
- padding-top: 10px;
- }
- /*#Examples/My profile#*/
- .MyProfilePanel input[type="text"]
- {
- width: 235px;
- }
- .MyProfilePanel .MyProfileLanguage
- {
- width: 239px;
- }
- .MyProfilePanel .MyProfileUserSignature
- {
- width: 235px;
- }
- .IE6 .MyProfilePanel textarea
- {
- width: 435px;
- }
- .MyProfilePanel input[type="submit"]
- {
- width: 100px;
- }
- /*#Examples/Change password#*/
- .ChangePasswordTable .FieldLabel
- {
-
- }
- .ChangePasswordTable .FieldInput input[type="text"]
- {
-
- }
- /*#Examples/Report#*/
- .Report table
- {
- border: solid 1px #cccccc;
- }
- .Report table th
- {
- background: #000000 url(../App_Themes/CorporateSite/Images/genbackground.gif) repeat-x scroll left top;
- padding: 5px 10px;
- color: #ffffff;
- }
- .Report table td
- {
- padding: 3px 10px;
- }
- /*#Examples/Vertical css menu#*/
- .Vertical
- {
- width: 150px;
- font-family: Arial;
- font-size: 12px;
- background-color: #e2e2e2;
- border: 1px solid #c2c2c2;
- }
- .Vertical ul
- {
- list-style: none;
- margin: 0;
- padding: 0;
- }
- .Vertical li
- {
- position:relative;
- }
- .Vertical a
- {
- display: block;
- margin: 0;
- padding: 2px 0px 2px 10px;
- color: black;
- width: 140px;
- text-decoration: none;
- background-image: url(../App_Themes/CorporateSite/Images/Examples/menuitem.gif);
- background-repeat: no-repeat;
- background-position: 0 50%;
- background-color: #e2e2e2;
- }
- .Vertical a:hover
- {
- color:White;
- background: #808080;
- background-image: url(../App_Themes/CorporateSite/Images/Examples/menuitem_hover.gif);
- background-repeat: no-repeat;
- background-position: 0 50%;
- }
- .Vertical ul ul
- {
- position: absolute;
- z-index: 100;
- top: -1px; /* should be the negation of UL border-width*/
- left: 100%;
- width: 100%;
- border: 1px solid #c2c2c2;
- }
- #Vertical ul, #Vertical li:hover ul ul, #Vertical ul li:hover ul ul
- {
- display: none;
- }
- #Vertical li:hover ul, #Vertical ul li:hover ul, #Vertical ul ul li:hover ul
- {
- display: block;
- }
- /*#Examples/Drop down menu#*/
- .DropDown
- {
- position: relative;
- width: 150px;
- height: 20px;
- z-index: 1;
- font-family: Arial;
- font-size: 12px;
- background-color: #e2e2e2;
- border: 2px solid #808080;
- }
- div.DropDown:hover ul
- {
- z-index: 10;
- visibility: visible;
- }
- div.DropDown ul:hover
- {
- background-color: White; /* this allows to get over the last item of dropDownList, otherwise will be closed. */
- }
- .DropDownHover ul
- {
- z-index: 10;
- visibility: visible;
- }
- .DropDown ul
- {
- z-index: -10;
- visibility: hidden;
- position: absolute;
- top: 20px;
- width: 150px;
- list-style: none;
- margin: 0;
- padding: 0;
- }
- .DropDown li
- {
- position:relative;
- }
- .DropDown a
- {
- display: block;
- margin: 0;
- padding: 2px 3px;
- color: Black;
- background-color: #e2e2e2;
- text-decoration: none;
- }
- .DropDown a:hover
- {
- color: white;
- background: #b2b2b2;
- }
- .member
- {
- float: left;
- width: 231px;
- height: 61px;
- margin: 10px 2px;
- padding: 4px;
- }
- .member .avatar
- {
- float: left;
- margin: 0px 5px 5px 0px;
- }
- .member .memberInfo
- {
- float: left;
- width: 170px;
- }
- .member h3
- {
- background: none;
- margin-bottom: 3px;
- margin-top: 0px;
- }
- .member h3 a
- {
- font-size: 13px;
- color: #245a91;
- }
- .member h3 a:hover
- {
- text-decoration: none;
- }
- .DropDown ul ul
- {
- display: none;
- }
- /*#Wishlist#*/
- .wishList .ProductImage
- {
- vertical-align: top;
- }
- .wishList .ProductImage img
- {
- border: 1px solid #000000;
- }
- .wishList .ProductDetail
- {
- border-bottom: 1px solid #999999;
- margin-bottom: 5px;
- padding-bottom: 5px;
- }
- .wishList .RemoveFromWishlist
- {
- background: url(../App_Themes/CorporateSite/Images/delete.gif) no-repeat center left;
- padding-left: 18px;
- }
- .wishList .ProductDetail h2
- {
- margin-top: 0px;
- margin-bottom: 4px;
- }
- .wishlistAdd .AddToCartContainer{
- padding-bottom: 10px;
- padding-top: 10px;
- }
- .ProductImageWishlist img{
- border: none;
- }
- /*#Wiki#*/
- .UnigridActionButton
- {
- margin-right: 5px;
- }
- .RTL .UnigridActionButton
- {
- margin-right: auto;
- margin-left: 5px;
- }
- .AttachmentsList
- {
- border:1px solid #CCCCCC;
- padding:5px;
- }
- .AttachmentsList .New .IconDisabled
- {
- margin-bottom: -3px;
- margin-right: 3px;
- }
- .UserPageTitleHeader
- {
- color: #ffa21e;
- font-size:18px;
- font-weight:bold;
- height:33px;
- }
- .EditContributionEdit
- {
- background: url(../App_Themes/CorporateSite/Images/edit.gif) no-repeat center left;
- padding-left: 18px;
- }
- .EditContributionDelete
- {
- background: url(../App_Themes/CorporateSite/Images/delete.gif) no-repeat center left;
- padding-left: 18px;
- margin-left: 15px;
- }
- .Article .Header a
- {
- color: #ffffff;
- font-weight: bold;
- }
- .Article img
- {
- border: solid 1px #cccccc;
- padding: 3px;
- }
- .Article .Address
- {
- font-size: 10px;
- }
- .Contributions, .ContributionsList, .ContributionsEdit
- {
- border: 1px solid #cccccc;
- padding: 10px;
- background-color: #eeeeee;
- }
- .ContributionsEdit .ItemsLink, .ContributionsList .NewItemLink
- {
- padding-bottom: 7px;
- }
- .ContributionsList .ContributionsGrid
- {
- border: solid 1px #cccccc;
- background-color: #ffffff;
- }
- .ContributionsList .ContributionsGrid .UniGridHead th
- {
- color: #ffffff;
- background:#000000 url(../App_Themes/CorporateSite/Images/genbackground.gif) repeat-x scroll left top;
- padding: 5px;
- }
- .ContributionsList .ContributionsGrid .UniGridHead th a
- {
- color: #ffffff;
- }
- .UniGridGrid td, .UniGridGrid th
- {
- border-top: solid 1px #cccccc;
- border-bottom: solid 1px #cccccc;
- border-right: none;
- border-left: none;
- text-align: left;
- }
- .UniGridGrid td td, .UniGridGrid th td
- {
- border: none;
- }
- .NewAttachmentDisabled
- {
- text-decoration: underline;
- }
- .AttachmentsList .Icon
- {
- text-decoration: none;
- border: none;
- cursor: pointer;
- margin-bottom: -3px;
- border-right: 5px solid #eeeeee;
- }
- .userContributions #FCKToolbarUC
- {
- border: 1px solid Gray;
- }
- .userContributions .EditContributionClose, .Contributions .UserContributionDocList
- {
- display: block;
- margin-bottom: 20px;
- }
- .userContributions input[type=submit]
- {
- width: 100px;
- }
- .userContributions .zoneList
- {
- min-height: 400px;
- }
- .IE6 .userContributions .zoneList
- {
- height: 400px;
- }
- .UserContributionNewClass
- {
- padding: 5px;
- color: Black;
- font-family: Verdana;
- font-size: 12px;
- }
- .UserContributionNewClass img
- {
- vertical-align: middle;
- padding-right: 3px;
- }
- .EditForm .PageHeader img
- {
- vertical-align: middle;
- padding-bottom: 5px;
- }
- .EditingFormTable
- {
- }
- .EditForm .EditingFormInfo, .EditForm .WorkflowInfo
- {
- padding-left: 7px;
- display: block;
- line-height: 30px;
- }
- /*#Tab menu#*/
- .TabControlTable
- {
- height: 25px;
- background: url(../App_Themes/CorporateSite/Images/tabmenu_item_bg.gif) repeat-x center left;
- padding: 0;
- margin: 0;
- }
- .TabControlLeft, .TabControlRight, .TabControlSelectedLeft, .TabControlSelectedRight
- {
- display: none;
- }
- .TabControl
- {
- background: url(../App_Themes/CorporateSite/Images/tabmenu_item_bg.gif) repeat-x center left;
- padding: 0px 10px 0px 10px;
- }
- .TabControlSelected
- {
- background: url(../App_Themes/CorporateSite/Images/tabmenu_item_active_bg.gif) repeat-x center left;
- padding: 0px 10px 0px 10px;
- }
- .TabControlTable a
- {
- color: #ffffff;
- text-decoration: none;
- font-size: 12px;
- }
- /*#My account#*/
- .TabsContent
- {
- border: 1px solid #cccccc;
- width: 660px;
- padding: 15px;
- }
- .TabsContent .Error
- {
- color: Red;
- }
- .TabsContent .FieldLabel
- {
- font-weight: bold;
- width: 140px;
- }
- .TabsContent .UniGridHead
- {
- color: White;
- background:#000000 url(../App_Themes/CorporateSite/Images/genbackground.gif) repeat-x scroll left top;
- }
- .TabsContent .Grid
- {
- width: 100%;
- border: 1px solid #aaa
- }
- .TabsContent .OddRow
- {
- background-color: #eee;
- }
- .MyCredit .TotalCredit
- {
- font-weight: bold;
- font-size: 120%;
- color: #002756;
- }
- .TabsContent input[type=text], .TabsContent input[type=password],
- .TabsContent input[type=file], .TabsContent textarea, .MyProfileFileUpload
- {
- width: 300px;
- }
- .TabsContent select
- {
- width: 306px;
- }
- .clear
- {
- width:0px;
- height:0px;
- clear:both;
- line-height: 0px;
- font-size: 0px;
- }
- .SubscriptionsGroup
- {
- padding: 8px;
- }
- .SubscriptionsPanel
- {
- padding-top: 22px;
- }
- /*#Office#*/
- .Map
- {
- border: solid 1px #cccccc;
- padding: 3px;
- }
- .Map img
- {
- border: solid 1px #cccccc;
- padding: 3px;
- }
- .Map .Header
- {
- font-weight: bold;
- }
- .Map .Address
- {
- font-size: 10px;
- }
- .OfficeDetail img
- {
- border: solid 1px #cccccc;
- padding: 3px;
- }
- .OfficeDetail .Address
- {
- font-size: 10px;
- }
- .OfficeDetail h1
- {
- padding: 0px !important;
- margin: 0px !important;
- }
- .OfficeDetail .Description
- {
- padding-top: 5px;
- padding-left: 5px;
- }
- /*#Grid#*/
- .DataGrid
- {
- border:1px solid #cccccc;
- }
- .DataGrid td
- {
- padding: 3px 5px;
- }
- .DataGrid .Row
- {
-
- }
- .DataGrid .AltRow
- {
- background-color: #eeeeee;
- }
- .DataGrid .Header
- {
- background:#000000 url(../App_Themes/CorporateSite/Images/genbackground.gif) repeat-x scroll left top;
- }
- .DataGrid .Header td
- {
- padding: 5px;
- }
- .DataGrid .Header td a
- {
- color: #ffffff;
- }
- /*#Webpart containers#*/
- /*#Webpart containers/General product list#*/
- .ProductList a
- {
- /*text-decoration: none;*/
- }
- .ProductList .ProductBox
- {
- width: 160px;
- margin: 15px 10px 0;
- border: solid 1px #cccccc;
- }
- .ProductList .ProductBox a
- {
- text-decoration: none;
- }
- .ProductList .ProductImage
- {
- text-align: center;
- height: 140px;
- }
- .ProductList .ProductImage img
- {
- border: none;
- }
- .ProductList .ProductTitle
- {
- display: block;
- background-color: #e36c26;
- padding: 6px 3px;
- color: #ffffff;
- font-weight: bold;
- text-align: center;
- text-decoration: none !important;
- }
- .ProductList .ProductPrice
- {
- padding: 6px;
- }
- .ProductList .ProductPrice .right
- {
- font-weight: bold;
- text-align: right;
- }
- .ProductList .ProductFooter
- {
- background-color: #f0f0f0;
- padding: 6px;
- }
- .ProductList .ProductFooter a
- {
- text-decoration: underline;
- }
- .ProductList .ProductFooter img
- {
- margin-right: 5px;
- vertical-align: middle;
- }
- .ProductList .productDetail
- {
- width: 100%;
- margin-bottom: 20px;
- }
- .ProductList .productDetail img
- {
- border: none;
- }
- .ProductList .productDetail h3
- {
- margin: 15px 0 10px 0;
- }
- .ProductList .productDetailInfo
- {
- margin-left: 10px;
- width: 100%;
- }
- .ProductList .productDetailInfo td
- {
- padding: 2px 10px;
- }
- .ProductList .productDetailInfo .caption
- {
- font-weight: bold;
- }
- .ProductList .productDetailInfo .alt
- {
- background-color: #f9f9f9;
- }
- .ProductList .productDetailLinks
- {
- width: 100%;
- background-color: #f0f0f0;
- margin: 10px 0px 10px 0px;
- padding: 5px;
- }
- .ProductList .ProductSummary
- {
- vertical-align: top;
- }
- .ProductList .LinkMore
- {
- display: block;
- background: url(../App_Themes/CorporateSite/Images/information.png) no-repeat center left;
- padding: 0 0 5px 17px;
- }
- /*#Webpart containers/General list#*/
- .GeneralList .Header a
- {
- color: #ffffff;
- font-weight: bold;
- }
- .GeneralList img
- {
- border: solid 1px #cccccc;
- padding: 3px;
- }
- .GeneralList .Address
- {
- font-size: 10px;
- }
- .GeneralList .Header
- {
- background:#000000 url(../App_Themes/CorporateSite/Images/genbackground.gif) repeat-x scroll left top;
- color: #ffffff;
- padding: 5px;
- border-left: solid 1px #cccccc;
- border-right: solid 1px #cccccc;
- border-top: solid 1px #cccccc;
- }
- .GeneralList .Body
- {
- padding: 0 5px 5px;
- border: solid 1px #cccccc;
- }
- /*#Messaging#*/
- .MessagingBox .UniGridHead a
- {
- color: White !important;
- }
- .MessagingBox
- {
- width: 625px;
- }
- .MessagingBox .FooterInfo
- {
- text-align:right;
- padding: 3px;
- font-size: 11px;
- }
- .MessagingBox .List
- {
- }
- .MessagingBox .Header,
- .MessagingBox .NewMessageHeader, .MessagingBox .ViewMessageHeader, .MessagingBox .UniGridHead
- {
- background:#000000 url(../App_Themes/CorporateSite/Images/genbackground.gif) repeat-x scroll left top;
- color: #ffffff;
- font-weight: bold;
- padding: 5px;
- border-left: solid 1px Black;
- border-right: solid 1px Black;
- border-top: solid 1px Black;
- }
- .MessagingBox .Header
- {
- height: 25px !important;
- }
- .MessagingBox .Header a
- {
- color: white;
- font-weight: bold;
- }
- .MessagingBox .List th, .MessagingBox .List td
- {
- text-align: left;
- }
- .MessagingBox .ImageCell
- {
- padding-left: 0px !important;
- }
- .MessagingBox .List tr
- {
- height: 25px;
- }
- .MessagingBox .List .OddRow, .MessagingBox .List .EvenRow, .MessagingBox .List .Pager
- {
- border:1px solid #CCCCCC;
- }
- .MessagingBox .List td
- {
- padding: 0px 3px 0px 3px;
- }
- .MessagingBox .OddRowUnread, .MessagingBox .OddRow,
- .MessagingBox .OddRowRead
- {
- background-color: #cccccc;
- }
- .MessagingBox .OddRowUnread, .MessagingBox .EvenRowUnread,
- .MessagingBox .OddRowRead, .MessagingBox .EvenRowRead
- {
- font-weight: bold;
- }
- .MessagingBox .ViewMessage
- {
- border: solid 1px #cccccc;
- padding: 10px;
- }
- .MessagingBox .HeaderTable
- {
- margin-left: 10px;
- margin-top: 10px;
- width: 90%;
- }
- .MessagingBox .HeaderTable, .Pager table
- {
- border: 0px !important;
- }
- .MessagingBox .Body, .MessagingBox .DiscussionButtons
- {
- padding-left: 10px;
- }
- .MessagingBox .HeaderTable img
- {
- border: 1px solid Black;
- margin: 0px 5px 0px 0px;
- }
- .MessagingBox .MessageUserButtons
- {
- display: inline;
- }
- .MessagingBox .FieldCaption
- {
- font-weight: bold;
- padding-right: 5px;
- }
- .MessagingBox .Field
- {
- width: 100%;
- }
- .MessagingBox .SendMessage
- {
- margin-bottom: 10px;
- border: solid 1px #cccccc;
- }
- .MessagingBox .Buttons
- {
- padding: 10px;
- }
- .MessagingBox .FromField
- {
- width:150px !important;
- border: solid 1px #cccccc;
- }
- .MessagingBox .ToField
- {
- width:150px !important;
- border: solid 1px #cccccc;
- }
- .MessagingBox .SubjectField
- {
- width: 98% !important;
- border: solid 1px #cccccc;
- }
- .MessagingBox .SubjectRow
- {
- padding: 20px 0px 3px 10px;
- }
- .MessagingBox .TextareaItem, .MessagingBox .BodyField
- {
- width: 98%;
- height: 200px;
- border: solid 1px #cccccc;
- }
- .MessagingBox .Pager td
- {
- padding: 0px;
- }
- .MessagingBox .Pager tr
- {
- height: 20px !important;
- }
- .MessagingBox .Error
- {
- margin: 5px;
- color: Red;
- display: block;
- }
- .MessagingBox .Info
- {
- margin-bottom: 10px;
- display: block;
- }
- .MessagingBox table
- {
- /* border-top: solid 1px #cccccc;
- border-left: solid 1px #cccccc;
- border-right: solid 1px #cccccc;*/
- border-collapse: collapse !important;
- }
- .MessagingBox .ListGrid
- {
- border-collapse: collapse !important;
- border: solid 1px #cccccc;
- }
- .MessagingBox .Pager, .MessagingBox .Pager a, .MessagingBox .Pager, .MessagingBox .Pager span
- {
- padding-left: 3px;
- }
- .FriendsBox
- {
- width: 680px;
- }
- /*#Ecommerce#*/
- .PrintImage
- {
- vertical-align: middle;
- padding-bottom: 3px;
- }
- .sendToFriendYourMessage
- {
- cursor: pointer;
- font-style: italic;
- }
- .AddToCartLink
- {
- background: url(../App_Themes/CorporateSite/Images/ShoppingCart/AddToCart.gif) no-repeat 0px 5px;
- padding-left: 18px;
- padding-top: 5px;
- }
- .sendToFriendHeader
- {
- color: #002756;
- font-size: 120%;
- font-weight: bold;
- }
- .PrintLink
- {
- text-align: right;
- padding-right: 10px;
- }
- .PrintImage
- {
- border: 0px;
- margin-right: 5px;
- }
- .ProductPrice
- {
- display: block;
- width: 130px;
- word-wrap: normal;
- }
- .productDetailLinks .ProductPrice
- {
- display: inline;
- }
- .ProductOptionSelector select
- {
- width: 220px;
- }
- .AddToCartTextBox
- {
- width: 20px;
- }
- .ItemsNotAvailable{
- color: red;
- }
- .productDetailLinks td{
- vertical-align: bottom;
- }
- .btnContinue
- {
- text-align: left;
- padding-top:10px;
- }
- /*#Content rating#*/
- .ratingStar {
- font-size: 0pt;
- width: 13px;
- height: 12px;
- margin: 0px;
- padding: 0px;
- cursor: pointer;
- display: block;
- background-repeat: no-repeat;
- }
- .filledRatingStar {
- background-image: url(../App_Themes/Default/Images/CMSDesk/Content/Properties/ContentRating/FilledStar.png);
- }
- .emptyRatingStar {
- background-image: url(../App_Themes/Default/Images/CMSDesk/Content/Properties/ContentRating/EmptyStar.png);
- }
- .savedRatingStar {
- background-image: url(../App_Themes/Default/Images/CMSDesk/Content/Properties/ContentRating/SavedStar.png);
- }
- .CntRatingResult
- {
- clear:left;
- padding-top:5px;
- }
- .CntRatingRadioTable tr
- {
- text-align: center;
- }
- /*#Modal popup#*/
- .ModalBackground
- {
- z-index: 9998 !important;
- background-color: #888888;
- filter: alpha(opacity=70);
- opacity: 0.7;
- }
- .ModalPanel
- {
- background-color: #ffffff;
- padding: 10px;
- /* position: fixed !important; */
- }
- /* User context menu */
- .UserContextMenu
- {
- border: solid 1px #666666;
- background-color: #e0e0e0;
- cursor: pointer;
- padding: 3px;
- }
- /*#Abuse report#*/
- .AbuseBody .ReportComment
- {
- width: 300px;
- height: 200px;
- }
- .ModalPanel
- {
- width: 400px;
- }
- .DialogAbuseBody .ReportComment
- {
- width: 397px;
- height: 215px;
- }
- .Messages
- {
- padding-top: 10px;
- text-align: left;
- }
- /*#Notifications#*/
- .NotificationSubscriptionHeader, .NotificationSubscriptionButton {
- padding-top: 10px;
- padding-bottom: 10px;
- }
- .myAccMenu .UserNotifications .UniGridHead a {
- color: #ffffff;
- }
- .CommentUserName {
- text-decoration: underline;
- }
- /*#Media library#*/
- .mediaItem
- {
- background: url('../App_Themes/CorporateSite/Images/Examples/bg_photo.gif') no-repeat;
- float: left;
- font-size: 10px;
- width: 132px;
- margin: 4px;
- }
- .mediaItemBottom
- {
- height: 4px;
- background: url('../App_Themes/CorporateSite/Images/Examples/bg_photo_bottom.gif') no-repeat;
- font-size: 0;
- line-height: 0;
- }
- .mediaItem a
- {
- color: Black;
- text-decoration: none;
- font-weight: bold;
- font-size: 11px;
- }
- .mediaLibraryPhoto
- {
- height: 122px;
- width: 132px;
- text-align: center;
- }
- .mediaLibraryDescription
- {
- padding: 0px 3px;
- color: #737373;
- }
- .MediaLibrarySort
- {
- padding-bottom: 13px;
- }
- .MediaLibrarySort span
- {
- font-weight: bold;
- }
- .MediaLibrarySort a
- {
- color: Black;
- }
- .MediaLibrarySort a:hover
- {
- text-decoration: none;
- }
- .MediaGalleryFolderTree
- {
- float: left;
- width: 180px;
- overflow: auto;
- }
- .MediaGalleryFolderTree a
- {
- color: Black;
- }
- .MediaGalleryContent
- {
- float: left;
- width: 480px;
- }
- .MediaGalleryDetail
- {
- width: 560px;
- background: url('../App_Themes/CorporateSite/Images/Examples/bg_photo_detail.gif') no-repeat;
- text-align: center;
- padding: 15px 0px;
-
- }
- .MediaGalleryDetailBottom
- {
- width: 544px;
- padding-top: 5px;
- padding-right: 16px;
- text-align: right;
- background: url('../App_Themes/CorporateSite/Images/Examples/bg_photo_detail_bottom.gif') no-repeat;
- }
- .MediaGalleryDetailBottom img
- {
- border: none;
- }
- .SelectedFolder
- {
- font-weight: bold;
- }
- .MediaGalleryDetailBottom h2
- {
- padding-top: 5px;
- margin: 0;
- color: #737373;
- font-size: 16px;
- width: 400px;
- text-align: left;
- }
- .MediaGalleryContent .Pager
- {
- clear: both;
- text-align: center;
- }
- .MediaGalleryPagger
- {
- padding-bottom: 10px;
- }
- .MediaGalleryPagger a
- {
- display: block;
- color: Black;
- background: url('../App_Themes/CorporateSite/Images/Examples/button_back.gif') 0px 1px no-repeat;
- padding-left: 18px;
- font-weight: bold;
- padding-bottom: 4px;
- }
- .MediaGalleryDetail object
- {
- background: #efefef;
- }
- a.MediaBack
- {
- display: block;
- color: Black;
- background: url('../App_Themes/CorporateSite/Images/Examples/button_back.gif') 0px 1px no-repeat;
- padding-left: 18px;
- font-weight: bold;
- padding-bottom: 10px;
- }
- .CommentUserName {
- text-decoration: underline;
- }
- .ContentTree
- {
- float: left;
- width: 150px;
- height: 500px;
- }
- .MediaContent
- {
- float: left;
- width: 540px;
- }
- .MediaFileUploader
- {
- padding-bottom: 30px;
- }
- // Kalkulator
- /*
- ------------------------------
- Impromptu's
- ------------------------------
- */
- .jqifade{
- position: absolute;
- background-color: #aaaaaa;
- }
- div.jqi{
- width: 400px;
- font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
- position: absolute;
- background-color: #ffffff;
- font-size: 11px;
- text-align: left;
- border: solid 1px #eeeeee;
- -moz-border-radius: 10px;
- -webkit-border-radius: 10px;
- padding: 7px;
- }
- div.jqi .jqicontainer{
- font-weight: bold;
- }
- div.jqi .jqiclose{
- position: absolute;
- top: 4px; right: -2px;
- width: 18px;
- cursor: default;
- color: #bbbbbb;
- font-weight: bold;
- }
- div.jqi .jqimessage{
- padding: 10px;
- line-height: 20px;
- color: #444444;
- }
- div.jqi .jqibuttons{
- text-align: right;
- padding: 5px 0 5px 0;
- border: solid 1px #eeeeee;
- background-color: #f4f4f4;
- }
- div.jqi button{
- padding: 3px 10px;
- margin: 0 10px;
- background-color: #2F6073;
- border: solid 1px #f4f4f4;
- color: #ffffff;
- font-weight: bold;
- font-size: 12px;
- }
- div.jqi button:hover{
- background-color: #728A8C;
- }
- div.jqi button.jqidefaultbutton{
- /*background-color: #8DC05B;*/
- background-color: #BF5E26;
- }
- .jqiwarning .jqi .jqibuttons{
- background-color: #BF5E26;
- }
- /*
- ------------------------------
- impromptu
- ------------------------------
- */
- .impromptuwarning .impromptu{ background-color: #aaaaaa; }
- .impromptufade{
- position: absolute;
- background-color: #ffffff;
- }
- div.impromptu{
- position: absolute;
- background-color: #cccccc;
- padding: 10px;
- width: 300px;
- text-align: left;
- }
- div.impromptu .impromptuclose{
- float: right;
- margin: -35px -10px 0 0;
- cursor: pointer;
- color: #213e80;
- }
- div.impromptu .impromptucontainer{
- background-color: #213e80;
- padding: 5px;
- color: #ffffff;
- font-weight: bold;
- }
- div.impromptu .impromptumessage{
- background-color: #415ea0;
- padding: 10px;
- }
- div.impromptu .impromptubuttons{
- text-align: center;
- padding: 5px 0 0 0;
- }
- div.impromptu button{
- padding: 3px 10px 3px 10px;
- margin: 0 10px;
- }
- /*
- ------------------------------
- columns ex
- ------------------------------
- */
- .colsJqifadewarning .colsJqi{ background-color: #b0be96; }
- .colsJqifade{
- position: absolute;
- background-color: #ffffff;
- }
- div.colsJqi{
- position: absolute;
- background-color: #d0dEb6;
- padding: 10px;
- width: 400px;
- text-align: left;
- }
- div.colsJqi .colsJqiclose{
- float: right;
- margin: -35px -10px 0 0;
- cursor: pointer;
- color: #bbbbbb;
- }
- div.colsJqi .colsJqicontainer{
- background-color: #e0eEc6;
- padding: 5px;
- color: #ffffff;
- font-weight: bold;
- height: 160px;
- }
- div.colsJqi .colsJqimessage{
- background-color: #c0cEa6;
- padding: 10px;
- width: 280px;
- height: 140px;
- float: left;
- }
- div.colsJqi .jqibuttons{
- text-align: center;
- padding: 5px 0 0 0;
- }
- div.colsJqi button{
- background: url(../images/button_bg.jpg) top left repeat-x #ffffff;
- border: solid #777777 1px;
- font-size: 12px;
- padding: 3px 10px 3px 10px;
- margin: 5px 5px 5px 10px;
- width: 75px;
- }
- div.colsJqi button:hover{
- border: solid #aaaaaa 1px;
- }
- /*
- ------------------------------
- brown theme
- ------------------------------
- */
- .brownJqiwarning .brownJqi{ background-color: #cccccc; }
- .brownJqifade{
- position: absolute;
- background-color: #ffffff;
- }
- div.brownJqi{
- position: absolute;
- background-color: transparent;
- padding: 10px;
- width: 300px;
- text-align: left;
- }
- div.brownJqi .brownJqiclose{
- float: right;
- margin: -20px 0 0 0;
- cursor: pointer;
- color: #777777;
- font-size: 11px;
- }
- div.brownJqi .brownJqicontainer{
- position: relative;
- background-color: transparent;
- border: solid 1px #5F5D5A;
- color: #ffffff;
- font-weight: bold;
- }
- div.brownJqi .brownJqimessage{
- position: relative;
- background-color: #F7F6F2;
- border-top: solid 1px #C6B8AE;
- border-bottom: solid 1px #C6B8AE;
- }
- div.brownJqi .brownJqimessage h3{
- background: url(../images/brown_theme_gradient.jpg) top left repeat-x #ffffff;
- margin: 0;
- padding: 7px 0 7px 15px;
- color: #4D4A47;
- }
- div.brownJqi .brownJqimessage p{
- padding: 10px;
- color: #777777;
- }
- div.brownJqi .brownJqimessage img.helpImg{
- position: absolute;
- bottom: -25px;
- left: 10px;
- }
- div.brownJqi .brownJqibuttons{
- text-align: right;
- }
- div.brownJqi button{
- background: url(../images/brown_theme_gradient.jpg) top left repeat-x #ffffff;
- border: solid #777777 1px;
- font-size: 12px;
- padding: 3px 10px 3px 10px;
- margin: 5px 5px 5px 10px;
- }
- div.brownJqi button:hover{
- border: solid #aaaaaa 1px;
- }
- /*
- *------------------------
- * clean blue ex
- *------------------------
- */
- .cleanbluewarning .cleanblue{ background-color: #acb4c4; }
- .cleanbluefade{ position: absolute; background-color: #aaaaaa; }
- 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; }
- div.cleanblue .cleanbluecontainer{ background-color: #ffffff; border-top: solid 14px #213e80; padding: 5px; font-weight: bold; }
- div.cleanblue .cleanblueclose{ float: right; width: 18px; cursor: default; margin: -19px -12px 0 0; color: #ffffff; font-weight: bold; }
- div.cleanblue .cleanbluemessage{ padding: 10px; line-height: 20px; font-size: 11px; color: #333333; }
- div.cleanblue .cleanbluebuttons{ text-align: right; padding: 5px 0 5px 0; border: solid 1px #eeeeee; background-color: #f4f4f4; }
- div.cleanblue button{ padding: 3px 10px; margin: 0 10px; background-color: #314e90; border: solid 1px #f4f4f4; color: #ffffff; font-weight: bold; font-size: 12px; }
- div.cleanblue button:hover{ border: solid 1px #d4d4d4; }
- /*
- *------------------------
- * Ext Blue Ex
- *------------------------
- */
- .extbluewarning .extblue{ border:1px red solid; }
- .extbluefade{ position: absolute; background-color: #ffffff; }
- div.extblue{ border:1px #6289B6 solid; position: absolute; background-color: #CAD8EA; padding: 0; width: 300px; text-align: left; }
- div.extblue .extblueclose{ background-color: #CAD8EA; margin:2px -2px 0 0; cursor: pointer; color: red; text-align: right; }
- div.extblue .extbluecontainer{ background-color: #CAD8EA; padding: 0 5px 5px 5px; color: #000000; font:normal 11px Verdana; }
- div.extblue .extbluemessage{ background-color: #CAD8EA; padding: 0; margin:0 15px 15px 15px; }
- div.extblue .extbluebuttons{ text-align: center; padding: 0px 0 0 0; }
- div.extblue button{ padding: 1px 4px; margin: 0 10px; background-color:#cccccc; font-weight:normal; font-family:Verdana; font-size:10px; }
- .jqi .errorBlock{ background-color: #FFC6A5; border: solid 1px #ff0000; color: #ff0000; padding: 5px 10px; font-weight: bold; }
- .jqi .field{ margin: 4px 0; }
- .jqi .field label{ font-weight: bold; display: block; width: 150px; float: left; clear: left; }
- .jqi .field input { border: solid 1px #777777; width: 100px; }
- // ENd of Kalkulator
- // pasar properti form
- .ppropformalternate {
- background-color: #E6E6E6;
- }
- //end of pasar properti form
- td.itemDepan,a.itemDepan {
- font-family: Verdana;
- font-size: 12px;
- text-decoration: none;
- }
- // Berita BTN
- .itemDepan {
- font-family: Verdana;
- font-size: 12px;
- text-decoration: none;
- }
- .itemDepan td {
- font-family: Verdana;
- font-size: 12px;
- text-decoration: none;
- }
- .itemDepan a {
- font-family: Verdana;
- font-size: 12px;
- text-decoration: none;
- }
- .itemDepanTitle {
- font-family: Verdana;
- font-size: 12px;
- text-decoration: none;
- font-weight: bold;
- }
- a.mainNav:link {
- /* Applies to unvisited links of class mainNav */
- font-family: Verdana;
- text-decoration: none;
- font-weight: bold;
- font-size: 14px;
- color: #005595;
- }
- a.mainNav:visited {
- /* Applies to visited links of class mainNav */
- font-family: Verdana;
- text-decoration: none;
- font-weight: bold;
- font-size: 14px;
- color: #005595;
- }
- a.mainNav:hover {
- /* Applies to links under the pointer of class mainNav */
- font-family: Verdana;
- text-decoration: underline;
- font-weight: bold;
- font-size: 14px;
- color: #005595;
- }
- a.mainNav:active {
- /* Applies to activated links of class mainNav */
- font-family: Verdana;
- text-decoration: underline;
- font-weight: bold;
- font-size: 14px;
- color: #005595;
- }
- // Bitnet
- // Image bod css
- .imgBod
- {
- float: left;
- margin: 4px;
- }
- .titleNeraca {
- text-decoration: none;
- font-weight: bold;
- font-size: 14px;
- }
- a.noline:link,a.noline:visited,a.noline:visited,a.noline:visited {
- font-family: Verdana;
- text-decoration: none;
- font-size: 9px;
- color: black;
- }
- a.white:link,a.white:visited,a.white:visited,a.white:visited {
- font-family: Verdana;
- text-decoration: none;
- font-size: 12px;
- color: white;
- font-weight: bold;
- }
- .searchDepan {
- font-family: Verdana;
- text-decoration: none;
- font-size: 10px;
- color: black;
- }
- // End of Bitnet
- 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;}
- select.input-select{width: 170px; font-family: Verdana; font-size: 10px;}
- a.mainNavSyariah:link {
- /* Applies to unvisited links of class mainNav */
- font-family: Verdana;
- text-decoration: none;
- font-weight: bold;
- font-size: 14px;
- color: #51422D;
- }
- a.mainNavSyariah:visited {
- /* Applies to visited links of class mainNav */
- font-family: Verdana;
- text-decoration: none;
- font-weight: bold;
- font-size: 14px;
- color: #51422D;
- }
- a.mainNavSyariah:hover {
- /* Applies to links under the pointer of class mainNav */
- font-family: Verdana;
- text-decoration: underline;
- font-weight: bold;
- font-size: 14px;
- color: #51422D;
- }
- a.mainNavSyariah:active {
- /* Applies to activated links of class mainNav */
- font-family: Verdana;
- text-decoration: underline;
- font-weight: bold;
- font-size: 14px;
- color: #51422D;
- }
- .ppropposter {
- font-family: Verdana;
- font-weight: bold;
- font-size: 12px;
- color: #51422D;
- }
- .pproptitle {
- font-family: Verdana;
- font-weight: bold;
- font-size: 12px;
- color: #51422D;
- }
- .ppropcontent {
- font-family: Verdana;
- text-decoration: none;
- font-size: 12px;
- color: black;
- }
- .folderCMSTreeMenuLink{
- vertical-align: text-bottom;
- }
- a.noline12:link,a.noline12:visited,a.noline12:visited,a.noline12:visited {
- font-family: Verdana;
- text-decoration: none;
- font-size: 10px;
- color: black;
- }
- .rightAlign {
- text-align: right;
- }
|