Javascript not working with 'Display as Text (does not saves state)'

Hi,
We have these following items in P3 of our application,
P3_EDIT_ACCOUNT Display as Text (saves state)
P3_USEFUL_LINKS Display as Text (saves state)
P3_LAST_APPROVED Display as Text (saves state)
P3_ARCHIVES Display as Text (saves state)
And we are initializing these items in a pl/sql process under 'Page Rendering'
For example,
:P3_ARCHIVES := '<font face="Arial, Helvetica, sans-serif" size="-1">Archives</font></a><td> ';
When our environment was upgraded from HTMLDB1.5 to HTMLDB2.0,
instead of displaying the proper value of :P3_ARCHIVES,
it was displaying the tags,
i.e. instead of displaying 'Archives', it was displaying the whole
'<font face="Arial, Helvetica, sans-serif" size="-1">Archives</font></a><td> '
So, when we changed all items to 'Display as Text (does not saves state)' and it was working.
But then we have another problem,
We render the rest of the same page with another pl/sql block,
Here is a portion from that pl/sql for your reference,
htp.p('
<script>
//Script to check the status change.
//The script source is rendered through PL/SQL.
function checkStatus()
var promptStr = someString;
if(ans.toUpperCase() == "AMBER" || ans.toUpperCase() == "RED")
          var cnfm = confirm(promptStr);
          if(cnfm)
          do something....
</script>
htp.print('
<td width="5%" bgcolor="#ebebc5" height="19" align="middle" >
<input TYPE="radio" name="'||l_g_fnumber||'" value="GREEN"');
IF l_allow_update THEN
     htp.print(' onClick="checkStatus()"');
ELSE
htp.print(' disabled onmousedown="return false;"');
                    do something....
Now the issue is , when we changed all items to 'Display as Text (does not saves state)', the checkStatus() function is not getting called in the onClick
event of the radio button and hence the confirm window for the call to
confirm(promptStr) is not coming up.
But if we revert back the items to 'Display as Text (saves state)',
the checkStatus() javascript function is getting called properly but html tags are displayed against the items instead of the proper value (as mentioned in ********)
Please do let us know a possible solution to this issue.
Thanks & Regards-
Rupak

Thanks Varad for your response.
This is the error i am getting.
1 error has occurred
PLSQL anonymous block source type can be used ONLY with Display Text (based on PLSQL) item type.
yes i am using in the source..
I also tried with the PL/SQL Expression of FUNCTION in this case it is executing the query but once i run the page ora- 06550 error occured.
Thanks
AT
Edited by: ranu on Jan 8, 2009 2:51 PM

Similar Messages

  • [svn:fx-trunk] 5019: ASDoc updates to indicate that some Halo containers do not work with the Spark equiv (ControlBar does not work with Spark Panel/ AppControlBar does not work with Spark Application), and indicate that Canvas, Box, Tile, Panel have Spa

    Revision: 5019
    Author: [email protected]
    Date: 2009-02-19 13:17:21 -0800 (Thu, 19 Feb 2009)
    Log Message:
    ASDoc updates to indicate that some Halo containers do not work with the Spark equiv (ControlBar does not work with Spark Panel/AppControlBar does not work with Spark Application), and indicate that Canvas, Box, Tile, Panel have Spark equivs
    QE Notes: None
    Doc Notes: None
    Bugs: -
    Modified Paths:
    flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/Accordion.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/ApplicationControlBar.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/Box.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/Canvas.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/ControlBar.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/HBox.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/Panel.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/TabNavigator.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/Tile.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/VBox.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/ViewStack.as

    Hi DST
    This is a great effort and gesture. thank you on behalf of all the newbies.
    PJ

  • Display As Text (Does Not Save State) Render Behaviour

    I suppose this is directed more at the Oracle team members (as most of my posts are...) than anyone else, but others might find this interesting.
    It would seem when an item has a type of "Display As Text (Does Not Save State)" the item's value is output as pure text which shows up as text nodes under the TD cell. However if there is anything in the "HTML Form Element Attribute" text field on the "Edit Page Item" page, the APEX rendering engine will output a span tag with those attributes around the value of the item. If the attribute is left null, no span tag is output.
    Further more, the span tag does not have an ID attribute. One can also not set the "HTML Form Element" text box to contain the text 'id="" ' as APEX will throw an error stating that you can not specify the id attribute. So if someone would happen to want to access/change the value via JavaScript (say after an Ajax request of a hidden id change), it requires a hack (setting the TD cell's ID to the page item's name), DOM inspecting/sniffing, outputting an ugly disabled text element, altering the flows user's tables, or altering the render cache.
    Is there any reason, why this span tag is not always output with the ID attribute set?

    Hello Andrew,
    You are, of course, correct. The APEX engine does not use the item ID for the "Display as Text (does not save state)". However, if you need to manipulate the item, using JS, you can use the "Display as Text (save state)", which does use the item ID. The on-screen effect is the same, but the JS use is easier.
    Your original question though, remains open.
    Regards,
    Arie.

  • DISPLAY AS TEXT (DOES NOT SAVE STATE)

    can i use the pl/sql anonymous block or pl/sql function body for item which is DISPLAY AS TEXT (DOES NOT SAVE STATE). I am using this query and getting an error in case of pl/sql anonymous block can be used only for save state item. my apex version is 2.2.1.00.04.
    my query is
    declare
    vCNT number;
    v_exception_detail varchar2(200);
    BEGIN
    SELECT COUNT(*)
    INTO vCNT
    FROM table a
    WHERE a.col1 IN
    (SELECT DISTINCT x.col1
    FROM table1 x)
    AND a.col2 = TRIM(:P21_col2);
    IF vCNT > 1 THEN
    IF NVL(&P21_col2, -1) <> -1 THEN
    SELECT DISTINCT SR.col3
    INTO v_exception_detail
    FROM table1 SR
    WHERE SR.col1 IN
    (SELECT col1
    FROM table
    WHERE col2 = TRIM(:P21_col2)
    AND col4 = :P21_col4);
    ELSE
    v_exception_detail := NULL;
    END IF;
    ELSE
    SELECT DISTINCT SR.col3
    INTO v_exception_detail
    FROM table1 SR
    WHERE SR.col1 IN
    (SELECT col1
    FROM table
    WHERE col2 = TRIM(:P21_col2));
    END IF;
    --DBMS_OUTPUT.PUT_LINE(v_exception_detail);
    RETURN v_exception_detail;
    END;
    Could any one suggest how i can execute this code in case of item of DISPLAY AS TEXT (DOES NOT SAVE STATE).
    Thanks,
    AT

    Thanks Varad for your response.
    This is the error i am getting.
    1 error has occurred
    PLSQL anonymous block source type can be used ONLY with Display Text (based on PLSQL) item type.
    yes i am using in the source..
    I also tried with the PL/SQL Expression of FUNCTION in this case it is executing the query but once i run the page ora- 06550 error occured.
    Thanks
    AT
    Edited by: ranu on Jan 8, 2009 2:51 PM

  • I bought my macbook pro this morning. When I turned it on it led me through set up with voice over. I finally quit VO but my pointer is not working. It moves but does not open anything. Can anyone help?

    I bought my macbook pro this morning. When I turned it on it led me through set up with voice over. I finally quit VO but my pointer is not working. It moves but does not open anything. Can anyone help?

    ladislavfromcygnet wrote:
    Thank you Shootist007. I cannot do even Update now. I probably should have spent the same amount of money on a new IMac!
    No not really. If this is a brand new Macbook Pro take it back for a refund. Apple has a 14 day No Questions Asked return policy for Full refund.
    Take it back, get the Full Refund (DO NOT LET THEM TRY TO FIX IT. YOU BOUGHT A NEW COMPUTER NOT ONE THAT HAS BEEN WORKED ON OR NEEDS TO BE FIXED) and then decide whether to buy another Macbook Pro or the iMac. Or you could return it, get the Full refund and buy some other brand computer.

  • My back and forward buttons do not work also the refreash button does not work, I have reloaded the latest version of fire fox and that did not help. HELP please.

    My back and forward buttons do not work also the refresh button does not work, I have reloaded the latest version of fire fox and that did not help. All of navigation tool bar worked until I updated Fire Fox, now if I click on a link in yahoo, for instance, I can not get back to my yahoo home page without reloading Fire Fox. HELP please.

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode
    A possible cause is a problem with the file places.sqlite that stores the bookmarks and the history.
    *http://kb.mozillazine.org/Bookmarks_history_and_toolbar_buttons_not_working_-_Firefox
    *https://support.mozilla.com/kb/Bookmarks+not+saved#w_places-database-file

  • Hello! I have installed Photoshop on PC WIN 7 64bit. When I store first time a Photoshop docuument, it works fine - after re-opening and doing changes I trying again to store it - it does not work anymore! First it does not accept the name (message "It ca

    Hello! I have installed Photoshop on PC WIN 7 64bit. When I store first time a Photoshop docuument, it works fine - after re-opening and doing changes I trying again to store it - it does not work anymore! First it does not accept the name (message "It can not be stored because the nam is invalid" With 2. trial it tells me that the data is blocked and I don't have the rights - and I should chenge them. But I am working as the Admin on my PC - and each trial to change the rights of the data is as well not possible because of missing rights - even I am Admin! I must always store the data with a new name, then it works, but I also cannot remove the old datas or shift them into the waste paper - because of no rights! -- sorry for not perfect english, I am German native speaker! Tahnks a lot for help!

    Hi,
    I am using a Nvidia 4200M adapter in my Laptop, Driver 266.96, Direct X 11
    In my desktop I am using an ATI XFX 6950, latest revision drivers (I am not at home right now so I cant get that info).
    The issue I did describe above, but it was a long explanation.
    In some flash games the game files load initially and get as far as the "click to start" button. Then the flash area usually goes either all white or all black (usually depending on the falsh game default background color) and then it stays that color. Cant see anything after hitting start (usually most games have an intro video or animation before the game starts, but I cant see any of it.
    For the very few games that do start, the flash game or application does not seem to work correctly in that when the rare game starts, it wont save any game files or save files to the pc and so if I exit the game (navigate away to another page or close browser) and then later come back, even though I click the option to save games (and ensure that the flash application slider shows it can save files and lots of space) it does not save and I have to start from the beginning all the time.
    More explanation I gave above.

  • The paint bucket tool is not working properly. The colors does not change, any suggestion?

    The paint bucket tool is not working properly. The colors does not change, any suggestion?

    Maybe on the wrong layer.
    It would be more beneficial if you capture your screen with the layers panel open and any layers that are collapsed, expand them.

  • My back button does not work because the prior screen does not appear in the history.  I therefore must go back to the blue screen and reload safari.  Apple tech support could not help.  Can anyone else help?

    After I installed mountain lion my back button frequently does not work because the prior screen does not appear iunder History.  Apple tech support was not able to fix the problem.  Does anyone have any suggestions?

    lbryan1987 wrote:
    I dont want the button problem solved i need to know how to restore the phone without using that button or going into settings
    You don't in the condition it's in. You will either have to get the phone replaced by Apple or pay a 3rd party to repair it.
    there seriously should be more than two ways to solve this other wise apple is useless and we will never buy another apple product.
    Seriously? It's physically broken!

  • HT3574 The personal hotspot is not working with me and I did not fine the icon for iphone 4 version 5.1.1

    The personal hotspot is not working with me and I did not fine the icon for iphone 4 version 5.1.1

    Check with your carrier or telephone service provider.  Not all carriers provide this service.

  • Fluid grid with added media queries not working with {display: none}

    Fluid grid layout using added media queries to fix break points will not use {display:none} properly. When I try to hide a div in moble view it hides the div in all views. I was able to hide the div using width: 0% which works in all browsers except for Safari.
    Here is the css
    @charset "utf-8";
    /* Simple fluid media
       Note: Fluid media requires that you remove the media's height and width attributes from the HTML
       http://www.alistapart.com/articles/fluid-images/
    img, object, embed, video {
      max-width: 100%;
    hr {
      color: #e1e1e1;
      width: 90%;
      text-align: center;
    td {
      color:#7d7e7f;
    element.style {
        width: 150px;
      color:#7d7e7f;
      margin-right:20px;
    /* Top Talent subscribe to email */
    .inputTTemail {
      width: 130px;
      height: 35px;
      background-image: url(file:///U|/dev2.celebritystaff.com/new-design_copy(10)/design/images/submitArrow.png) ;
      background-repeat: no-repeat;
      background-position: right center;
      background-color: #ec8423;
      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
      font-size: 1.5em;
      text-align: left;
      color: #FFF;
      border: none;
      padding-top: 5px;
    #ttEnewsletter {
      width:250px;
      background-color:#FFF;
      padding:10px;
    input[type="text"],input[type="email"] {
      width:200px;
      font-family:Tahoma, Geneva, sans-serif;
      font-size:1em;
      color:#7d7e7f;
      margin-bottom:1em;
      padding-left:15px;
    /* IE 6 does not support max-width so default to width 100% */
    .ie6 img {
      width:100%;
    span.dropt {border-bottom: thin dotted;}
    span.dropt:hover {text-decoration: none; background: #ffffff; z-index: 6; }
    span.dropt span {position: absolute; left: -9999px;
      margin: 20px 0 0 0px; padding: 3px 3px 3px 3px;
      border-style:solid; border-color:#7d7e7f; border-width:1px; z-index: 6;}
    span.dropt:hover span {left: 2%; background: #ffffff;}
    span.dropt span {position: absolute; left: -9999px;
      margin: 4px 0 0 0px; padding: 5px 5px 5px 5px;
      border-style:solid; border-color:#7d7e7f; border-width:1px;}
    span.dropt:hover span {margin: 20px 0 0 170px; background: #ffffff; z-index:6;}
      Dreamweaver Fluid Grid Properties
      dw-num-cols-mobile: 6;
      dw-num-cols-tablet: 10;
      dw-num-cols-desktop: 14;
      dw-gutter-percentage: 25;
      Inspiration from "Responsive Web Design" by Ethan Marcotte
      http://www.alistapart.com/articles/responsive-web-design
      and Golden Grid System by Joni Korpi
      http://goldengridsystem.com/
    /* Mobile Layout: 480px and below. *************************************************************************/
    .gridContainer {
      margin-left: auto;
      margin-right: auto;
      width: 87.9666%;
      padding-left: 1.5166%;
      padding-right: 1.5166%;
      background-color:#FFF;
    #LayoutDiv1 {
      clear: both;
      float: left;
      margin-left: 0;
      width: 100%;
      display: block;
      background-color:#FFF;
    #logo {
      clear: both;
      float: left;
      margin-left: 0;
      margin-bottom:0px;
      padding-top:10px;
      padding-bottom:10px;
      width: 100%;
      display: block;
      background-color:#FFF;
      text-align:center;
    #phone {
      clear: none;
      float: left;
      margin-left:0px;
      width: 100%;
      display: block;
      text-align:center;
      padding-top:10px;
      padding-bottom:10px;
      padding-right:10px;
    #login {
      clear: none;
      float: right;
      margin-left:-2000px;
      margin-top:-2500px;
      width: 31.0344%;
      display: block;
      text-align:center;
    .redBody {
      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
      font-size: 1.23em;
      color: #bd2137;
      line-height: 1.23em;
    .orangeBody {
      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
      font-size: 1.23em;
      color: #ec8423;
      line-height: 1.23em;
    .purpleBody {
      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
      font-size: 1.23em;
      color: #643f99;
      line-height: 1.23em;
    .RedHeader {
      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
      font-size: 1.5em;
      color: #bd2137;
      font-weight: bold;
    .OrangeHeader {
      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
      font-size: 1.5em;
      color: #ec8423;
      font-weight: bold;
    .PurpleHeader {
      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
      font-size: 1.5em;
      color: #643f99;
      font-weight: bold;
    a.redBodylink {
      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
      font-size: 1.23em;
      color: #bd2137;
      line-height: 1.23em;
    .redBodylink:hover {
      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
      font-size: 1.23em;
      color:#ec8423;
      line-height: 1.23em;
    a.orangeBodylink {
      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
      font-size: 1.23em;
      color: #ec8423;
      line-height: 1.23em;
    .orangeBodylink:hover {
      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
      font-size: 1.23em;
      color:#bd2137;
      line-height: 1.23em;
    a.purpleBodylink {
      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
      font-size: 1.23em;
      color: #643f99
      line-height: 1.23em;
    .purpleBodylink:hover {
      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
      font-size: 1.23em;
      color:#ec8423;
      line-height: 1.23em;
    #mobile{
      width: 100%;
      background-color: #bd2137;
      display: block;
      float: left;
    #mobileHP{
      width: 100%;
      background-color: #FFFFFF;
      display: block;
      float: left;
      color: #bd2137;
    a.mobileMenuhpHP {
      font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
      font-size:1em;
      color:#bd2137;
      text-align:center;
      padding-top:10px;
      padding-bottom:10px;
      text-decoration:none;
    a.mobileMenuhpHP:hover {
      font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
      font-size:1em;
      color:#ec8423;
      text-align:center;
      padding-top:10px;
      padding-bottom:10px;
      text-decoration:none;
    a.mobileMenuhp {
      font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
      font-size:1em;
      color:#FFF;
      text-align:center;
      padding-top:10px;
      padding-bottom:10px;
      text-decoration:none;
    a.mobileMenuhp:hover {
      font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
      font-size:1em;
      color:#ec8423;
      text-align:center;
      padding-top:10px;
      padding-bottom:10px;
      text-decoration:none;
    #topnav {
      clear: both;
      float: left;
      margin-left: -1000px;
      width: 100%;
      display: block;
    #midnav {
      clear: both;
      float: left;
      margin-left:-1000px;
      width: 100%;
      display: block;
    #MenuBar1 > li:hover > a {
      background-image:url("file:///U|/dev2.celebritystaff.com/new-design_copy(10)/design/image s/inside-page-icons/arrow-insidePgbtns-hover.png");
      background-repeat: no-repeat;
      background-position: right center;
    #bodycontent {
      clear: both;
      float: left;
      margin-left: 10px;
      margin-right: 30px;
      margin-top: -135px;
      margin-bottom: auto;
      width: 95%;
      display: block;
      padding-top: 0px;
      padding-right: 0px;
      padding-bottom: 0px;
      padding-left: 0px;
    .GreyHeader {
      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
      font-size: 1.5em;
      color: #58595b;
      font-weight: bold;
    .BodyCopy {
      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
      font-size: 1em;
      line-height: 1.5em;
      color: #58595b;
      padding-right:20px;
    .BodyItal {
      font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
      font-style:italic;
      font-size:.85em;
      line-height:1.5em;
      color: #58595b;
    a.redLink {
      font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
      font-size:1em;
      line-height:1.5em;
      color:#bd2137;
    .redLink:hover {
      font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
      font-size:1em;
      line-height:1.5em;
      color:#ec8423;
    a.orangeLink {
      font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
      font-size:1em;
      line-height:1.5em;
      color:#ec8423;
    .orangeLink:hover {
      font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
      font-size:1em;
      line-height:1.5em;
      color:#bd2137;
    a.purpleLink {
      font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
      font-size:1em;
      line-height:1.5em;
      color:#643f99;
    .purpleLink:hover {
      font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
      font-size:1em;
      line-height:1.5em;
      color:#ec8423;
    a.Lrg-redLink {
      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
      font-size: .9em;
      line-height: 1.5em;
      color: #bd2137;
    .Lrg-redLink:hover {
      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
      font-size: .9em;
      line-height: 1.5em;
      color: #ec8423;
    #blogroll {
      clear: both;
      float: left;
      margin-right:-2500px;
      width: 100%;
      display: block;
    #footer {
      clear: both;
      float: left;
      margin-left:0px;
      width: 100%;
      display: block;
    a.viewSite {
      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
      font-size: 1em;
      color: #bd2137;
      text-decoration: underline;
    a.viewSite:hover {
      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
      font-size: 1em;
      color: #ec8423;
      text-decoration: underline;
    #socialMediaMobile {
      float: right;
      width: 45%;
      height:auto;
      padding-top:5px;
      padding-bottom:5px;
      margin-top:0px;
      margin-right:0px;
      text-align:right;
      line-height:35px;
    #mobile-menu {
      clear: none;
      float:left;
      margin-left:3%;
      width:31.0344%;
      display: block;
      text-align: center;
      background-color: #bd2137;
      color: #FFF;
      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
      font-size: 1.5em;
      padding-top: 10px;
      padding-bottom: 10px;
      border-right-width: thin;
      border-left-width: thin;
      border-right-style: solid;
      border-left-style: solid;
      border-right-color: #FFF;
      border-left-color: #FFF;
    #mobile-backHP {
      clear: both;
      float: left;
      margin-left: 0;
      width: 31.0344%;
      display: block;
      text-align: center;
      background-color: #FFF;
      color: #bd2137;
      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
      font-size: 1.5em;
      padding-top: 10px;
      padding-bottom: 10px;
    #mobile-loginHP {
      clear: none;
      float: right;
      margin-left: 0%;
      width: 31.0344%;
      display: block;
      text-align: center;
      background-color: #FFFFFF;
      color: #bd2137;
      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
      font-size: 1.5em;
      padding-top: 10px;
      padding-bottom: 10px;
    #mobile-back {
      clear: both;
      float: left;
      margin-left: 0;
      width: 31.0344%;
      display: block;
      text-align: center;
      background-color: #bd2137;
      color: #FFF;
      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
      font-size: 1.5em;
      padding-top: 10px;
      padding-bottom: 10px;
    #mobile-login {
      clear: none;
      float: right;
      margin-left: 0%;
      width: 31.0344%;
      display: block;
      text-align: center;
      background-color: #bd2137;
      color: #FFF;
      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
      font-size: 1.5em;
      padding-top: 10px;
      padding-bottom: 10px;
    #missionStatement {
      clear: both;
      float: left;
      margin-left:0px;
      margin-top: 10px;
      width: 100%;
      display: block;
      background-color: #7d7e7f;
      padding: 0px;
    .missionStatement {
      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
      font-size: 1.1em;
      color: #FFF;
      text-align: center;
      font-style: italic;
    #footerCopy {
      float: left;
      width: 100%;
      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
      font-size: 0.85em;
      text-align:center;
      color: #bd2137;
    #footerCopyMobile {
      float: left;
      width: 100%;
      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
      font-size: 0.85em;
      text-align:center;
    #connectUs {
      float: right;
      width: 100%;
      text-align: center;
      margin-top: 10px;
      margin-bottom: 10px;
    #social-media {
      width: 100%;
      float:left;
      text-align:center;
    #smicon {
      width: 100%;
      float:left;
      text-align:center;
      margin-bottom:10px;
    #column1 {
      width:100%;
      float:left;
    #column2 {
      width: 100%;
      float:left;
    #column3 {
      width:100%;
      float:left;
    #column4 {
      margin: 0px;
      padding: 0px;
      float: left;
      width: 100%;
      margin-top:-20px;
    #column5 {
      float:left;
      width: 100%;
      margin: 0px;
      padding: 0px;
      margin-top:-20px;
    #rowColumns {
      float: left;
      width: 100%;
      margin-bottom: 20px;
    #rowClmn1 {
      float: left;
      width: 100%;
      margin-left: 10px;
    #rowClmn2 {
      width: 100%;
      margin-left: 10px;
      float: left;
    #rowClmn3 {
      float: left;
      width: 100%;
      margin-left: 10px;
    #newsletter {
      width:200px;
      height: auto;
      margin-right: 20px;
      padding: 5px;
      float: left;
      text-align: center;
      border: thin groove #CCCCCC;
      background-color: #EFEFEF;
    #corpBuild {
      background-image: url(file:///U|/dev2.celebritystaff.com/new-design_copy(10)/design/images/building-tab.jpg );
      background-repeat: no-repeat;
      background-position: left top;
      float: left;
      width: 100%;
      height: 136px;
      padding-bottom:20px;
    #corpBuildLin {
      background-image: url(file:///U|/dev2.celebritystaff.com/new-design_copy(10)/design/images/lincoln-office-p ic.jpg);
      background-repeat: no-repeat;
      background-position: left top;
      float: left;
      width: 100%;
      height: 136px;
      padding-bottom:30px;
    #mobileContactPg {
      margin-bottom:0px;
      padding: 0px;
      float: left;
      width: 100%;
      height:auto;
      text-align:center;
      line-height:50px;
    #desktopContactPg {
      margin-top:-5000px;
      padding: 0px;
      float: left;
      width: 100%;
    #icons {
      text-align: center;
      float: left;
      width: 0%;!important
    #ptBoarder {
      padding-right:15px;
      padding-bottom:15px;
      float:left;
      width: 50%;
      margin-top:20px;
      margin-bottom:20px;
    #eoq {
      clear: both;
      float: left;
      margin-left: 0;
      width: 100%;
      display: block;
    #eoq1 {
      clear: both;
      float: left;
      margin-left: 0;
      width: 100%;
      display: block;
    #eoq2 {
      clear: both;
      float: left;
      margin-left: 0;
      width: 100%;
      display: block;
    #SafetyTip {
      clear: both;
      float: left;
      margin-left: 0;
      width: 90%;
      display: block;
      padding: 10px;
      border: thin solid #CCC;
    #NationalRates {
      clear: both;
      float: left;
      margin-left: 0;
      margin-bottom:25px;
      width: 100%;
      display: block;
    #metroRates {
      clear: both;
      float: left;
      margin-left: 0;
      width: 100%;
      display: block;
    #tables {
      margin: 0px;
      padding: 0px;
      float: left;
      height:auto;
      width: 100%;
    #charts {
      clear: both;
      float: left;
      margin-left: 0;
      width: 100%;
      display: block;
    #chart1 {
      clear: both;
      float: left;
      margin-left: 0;
      width: 100%;
      display: block;
    #chart2 {
      clear: both;
      float: left;
      margin-left: 0;
      width: 100%;
      display: block;
    /* Tablet Layout: 592px. Inherits styles from: Mobile Layout. *************************************/
    @media only screen and (min-width: 592px) {
    .gridContainer {
      width: 91.14%;
      padding-left: 0.93%;
      padding-right: 0.93%;
      background-color:#FFF;
    #LayoutDiv1 {
      clear: both;
      float: left;
      margin-left: 0;
      width: 69.3877%;
      display: block;
      background-color:#FFF;
    #logo {
      clear: both;
      float: left;
      margin-left: 0;
      margin-bottom:10px;
      width: 59.1836%;
      display: block;
    #login {
      clear: none;
      float: right;
      margin-left: 2.0408%;
      margin-bottom:10px;
      margin-right:20px;
      margin-top:50px;
      width: 18.3673%;
      display: block;
      text-align:right;
    a.login {
      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
      font-size: 1.6em;
      color: #bd2137;
      text-decoration: none;
      text-align:right;
    a.login:hover {
      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
      font-size: 1.6em;
      color: #ec8423;
      text-decoration: none;
      text-align:right;
    .redBody {
      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
      font-size: 1.23em;
      color: #bd2137;
      line-height: 1.23em;
    .orangeBody {
      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
      font-size: 1.23em;
      color: #ec8423;
      line-height: 1.23em;
    .purpleBody {
      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
      font-size: 1.23em;
      color: #643f99;
      line-height: 1.23em;
    #topnav {
      clear: both;
      float: left;
      margin-left: 0;
      margin-bottom:10px;
      width: 100%;
      display: block;
    #tl {
      height: auto;
      width: 14.2857142857143%;
      padding-top: 10px;
      float: left;
      text-align:center;
      font-size:1em;
    a.topnav {
      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
      color: #58595b;
      padding-top: 0px;
      padding-right:0px;
      padding-bottom: 0px;
      padding-left: 0px;
      margin-left:0px;
      margin-right:0px;
      text-decoration: none;
    .topnav:hover {
      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
      color: #bd2137;
      padding-top: 0px;
      padding-right: 0px;
      padding-bottom: 0px;
      padding-left:0px;
      margin-left:0px;
      margin-right: 0px;
      text-decoration: none;
      text-align: right;
    .topnav:visited {
      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
      color: #58595b;
      padding-top: 0px;
      padding-right:0px;
      padding-bottom: 0px;
      padding-left: 0px;
      margin-left:0px;
      margin-right:0px;
      text-decoration: none;
    #midnav {
      clear: both;
      float: left;
      margin-left: 0;
      width: 100%;
      height:100%;
      display: block;
    #MenuBar1 > li:hover > a {
      background-image:url("file:///U|/dev2.celebritystaff.com/new-design_copy(10)/design/image s/inside-page-icons/arrow-insidePgbtns-hover.png");
      background-repeat: no-repeat;
      background-position: right center;
    #isbtn-findAjob {
      font-family: "Century Gothic";
      font-size: 1.8em;
      color: #FFF;
      text-decoration: none;
      background-color: #bd2137;
      background-image:url("file:///U|/dev2.celebritystaff.com/new-design_copy(10)/design/image s/inside-page-icons/arrow-insidePgBtns.png");
      background-repeat: no-repeat;
      background-position: right center;
      height: 35px;
      text-align: center;
      padding-top: 20px;
      padding-right: 0px;
      padding-bottom:10px;
      padding-left: 0px;
    #isbtn-findAjob:hover {
      font-family: "Century Gothic";
      font-size: 1.8em;
      color: #FFF;
      text-decoration: none;
      background-color: #bd2137;
      background-image:url("file:///U|/dev2.celebritystaff.com/new-design_copy(10)/design/image s/inside-page-icons/arrow-insidePgbtns-hover.png");
      background-repeat: no-repeat;
      background-position: right center;
      height: 35px;
      text-align: center;
      padding-top: 20px;
      padding-right: 0px;
      padding-bottom:10px;
      padding-left: 0px;
    #isbtn-findAjob:active {
      font-family: "Century Gothic";
      font-size: 1.8em;
      color: #FFF;
      text-decoration: none;
      background-color: #bd2137;
      background-image:url("file:///U|/dev2.celebritystaff.com/new-design_copy(10)/design/image s/inside-page-icons/arrow-insidePgbtns-hover.png");
      background-repeat: no-repeat;
      background-position: right center;
      height: 35px;
      text-align: center;
      padding-top: 20px;
      padding-right: 0px;
      padding-bottom:10px;
      padding-left: 0px;
    #isbtn-findTalent {
      font-family: "Century Gothic";
      font-size: 1.8em;
      color: #FFF;
      text-decoration: none;
      background-color: #ec8423;
      background-image:url("file:///U|/dev2.celebritystaff.com/new-design_copy(10)/design/image s/inside-page-icons/arrow-insidePgBtns.png");
      background-repeat: no-repeat;
      background-position: right center;
      height: 35px;
      text-align: center;
      padding-top: 20px;
      padding-right: 0px;
      padding-bottom:10px;
      padding-left: 0px;
    #isbtn-findTalent:hover {
      font-family: "Century Gothic";
      font-size: 1.8em;
      color: #FFF;
      text-decoration: none;
      background-color: #ec8423;
      background-image:url("file:///U|/dev2.celebritystaff.com/new-design_copy(10)/design/image s/inside-page-icons/arrow-insidePgbtns-hover.png");
      background-repeat: no-repeat;
      background-position: right center;
      height: 35px;
      text-align: center;
      padding-top: 20px;
      padding-right: 0px;
      padding-bottom:10px;
      padding-left: 0px;
    #isbtn-forEmployees {
      font-family: "Century Gothic";
      font-size: 1.8em;
      color: #FFF;
      text-decoration: none;
      background-color: #643f99;
      background-image:url("file:///U|/dev2.celebritystaff.com/new-design_copy(10)/design/image s/inside-page-icons/arrow-insidePgBtns.png");
      background-repeat: no-repeat;
      background-position: right center;
      height: 35px;
      text-align: center;
    padding-top: 20px;
      padding-right: 0px;
      padding-bottom:10px;
      padding-left: 0px;
    #isbtn-forEmployees:hover {
      font-family: "Century Gothic";
      font-size: 1.8em;
      color: #FFF;
      text-decoration: none;
      background-color: #643f99;
      background-image:url("file:///U|/dev2.celebritystaff.com/new-design_copy(10)/design/image s/inside-page-icons/arrow-insidePgbtns-hover.png");
      background-repeat: no-repeat;
      background-position: right center;
      height: 35px;
      text-align: center;
      padding-top: 20px;
      padding-right: 0px;
      padding-bottom:10px;
      padding-left: 0px;
    #bodycontent {
      clear: both;
      float: left;
      margin-left:20px;
      margin-right:20px;
      width: 95%;
      display: block;
      margin-top: 10px;
      margin-bottom: 10px;
      padding: 0px 0px opx 0px;
    .GreyHeader {
      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
      font-size: 1.5em;
      color: #58595b;
      font-weight: bold;
    .RedHeader {
      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
      font-size: 1.5em;
      color: #bd2137;
      font-weight: bold;
    .BodyCopy {
      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
      font-size: 1em;
      line-height: 1.5em;
      color: #58595b;
    .BodyItal {
      font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
      font-style:italic;
      font-size:.85em;
      line-height:1.5em;
      color: #58595b;
    a.redLink {
      font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
      font-size:1em;
      line-height:1.5em;
      color:#bd2137;
    .redLink:hover {
      font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
      font-size:1em;
      line-height:1.5em;
      color:#ec8423;
    a.Lrg-redLink {
      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
      font-size: .9em;
      line-height: 1.5em;
      color: #bd2137;
    .Lrg-redLink:hover {
      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
      font-size: .9em;
      line-height: 1.5em;
      color: #ec8423;
    #blogroll {
      clear: both;
      float: left;
      margin-left: 0;
      width: 100%;
      display: block;
    #footer {
      clear: both;
      float: left;
      margin-left: 0;
      width: 100%;
      display: block;
    #mobile{
      width: 100%;
      background-color: #bd2137;
      display: block;
      float: left;
      margin-left:-5000px;
    #mobile-menu {
      clear: both;
      float: left;
      margin-left: -1000px;
      width: 18.3673%;
      display: block;
    #mobile-back {
      clear: both;
      float: left;
      margin-left:-1000px;
      width: 31.0344%;
      display: block;
      text-align:center;
    #mobile-login {
      clear: none;
      float: left;
      margin-left: -1000px;
      width: 31.0344%;
      display: block;
      text-align: center;
      border-right-width: thin;
      border-right-style: solid;
      border-right-color: #F66;
      background-color: #bd2137;
      color: #FFF;
      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
      font-size: 1.5em;
    #missionStatement {
      clear: both;
      float: left;
      margin-left: 0px;
      width: 100%;
      display: block;
      background-color: #7d7e7f;
      padding:0px;
    .missionStatement {
      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
      font-size: 1.1em;
      color: #FFF;
      text-align: center;
      font-style: italic;
    a.viewSite {
      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
      font-size: 1em;
      color:#FFF;
      text-decoration: underline;
    a.viewSite:hover {
      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
      font-size: 1em;
      color: #ec8423;
      text-decoration: underline;
    #footerCopy {
      float: left;
      width: 50%;
      text-align:left;
    #connectUs {
      float: right;
      width: 100%;
      text-align: right;
    #social-media {
      width: 50%;
      float: right;
      text-align: right;
    #social-mediaHP {
      width: auto;
      float: right;
      text-align: right;
      padding-right: 0px;
      padding-top: 0px;
      margin-top: 10px;
      margin-right: 0px;
      margin-bottom: 0px;
      margin-left: 0px;
    #smicon {
      width: 100%;
      float: right;
      text-align: right;
    #desktopContact {
      float: left;
      width: 100%;
    #column1 {
      width:45%;
      float:left;
      margin-right:30px;
    #column2 {
      width:45%;
      float:left;
    #column3 {
      width:45;
      float:left;
    #column4 {
      margin: 0px;
      padding: 0px;
      float: left;
      width: 70%;
    #column5 {
      float: right;
      width: 25%;
      margin: 0px;
      padding: 0px;
    #column6 {
      width: 30%;
      float: left;
      margin-right: 20px;
    #column7 {
      width: 30%;
      float: left;
      margin-left: 0px;
    #column8 {
      width: 30%;
      float: left;
      text-align: left;
      margin-left: 10px;
      margin-right: 0px;
    #newsletter {
      width: 160px;
      height: auto;
      padding: 5px;
      float: left;
      text-align: center;
      border: thin groove #CCCCCC;
      background-color: #EFEFEF;
    #corpBuild {
      background-image: url(file:///U|/dev2.celebritystaff.com/new-design_copy(10)/design/images/building-tab.jpg );
      background-repeat: no-repeat;
      background-position: left top;
      float: left;
      width: 100%;
      height: 136px;
      padding-bottom:20px;
    #mobileContactPg {
      margin-left:-5000px;
      padding: 0px;
      float: left;
      width: 100%;
    #desktopContactPg {
      margin: 0px;
      padding: 0px;
      float: left;
      width: 100%;
    #icons {
      text-align: right;
      float: left;
      width: 100%;
    #ptBoarder {
      padding-right:15px;
      padding-bottom:15px;
      float:left;
      width: 35%;
      margin-top:20px;
      margin-bottom:20px;
    #eoq {
      clear: both;
      float: left;
      margin-left: 0;
      width: 100%;
      display: block;
    #eoq1 {
      clear: both;
      float: left;
      margin-left: 0;
      width: 100%;
      display: block;
    #eoq2 {
      clear: both;
      float: left;
      margin-left: 0;
      width: 100%;
      display: block;
    #SafetyTip {
      clear: both;
      float: left;
      margin-left: 0;
      width: 97%;
      display: block;
      padding: 10px;
      border: thin solid #CCC;
    #NationalRates {
      clear: both;
      float: left;
      margin-left: 0;
      margin-bottom:25px;
      width: 100%;
      display: block;
    #metroRates {
      clear: both;
      float: left;
      margin-left: 0;
      width: 100%;
      display: block;
    #tables {
      margin: 0px;
      padding: 0px;
      float: left;
      height: auto;
      width: 100%;
    #charts {
      clear: both;
      float: left;
      margin-left: 0;
      width: 100%;
      display: block;
    #chart1 {
      clear: both;
      float: left;
      margin-left: 0;
      width: 100%;
      display: block;
    #chart2 {
      clear: both;
      float: left;
      margin-left: 0;
      width: 100%;
      display: block;
    /* Tablet Layout: 768px. Inherits styles from: Mobile Layout. *************************************/
    @media only screen and (min-width: 768px) {
    .gridContainer {
      width: 91.14%;
      padding-left: 0.93%;
      padding-right: 0.93%;
      background-color:#FFF;
    #LayoutDiv1 {
      clear: both;
      float: left;
      margin-left: 0;
      width: 100%;
      display: block;
      background-color:#FFF;
    #logo {
      clear: both;
      float: left;
      margin-left: 0;
      margin-bottom:10px;
      width: 59.1836%;
      display: block;
      text-align:left;
    #login {
      clear: none;
      float: right;
      margin-left: 2.0408%;
      margin-bottom:10px;
      margin-right:20px;
      margin-top:50px;
      width: 18.3673%;
      display: block;
      text-align:right;
    a.login {
      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
      font-size: 1.6em;
      color: #bd2137;
      text-decoration: none;
      text-align:right;
    a.login:hover {
      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
      font-size: 1.6em;
      color: #ec8423;
      text-decoration: none;
      text-align:right;
    .redBody {
      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
      font-size: 1.23em;
      color: #bd2137;
      line-height: 1.23em;
    .orangeBody {
      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
      font-size: 1.23em;
      color: #ec8423;
      line-height: 1.23em;
    .purpleBody {
      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
      font-size: 1.23em;
      color: #643f99;
      line-height: 1.23em;
    #topnav {
      clear: both;
      float: left;
      margin-left: 0;
      margin-bottom:10px;
      width: 100%;
      display: block;
    #tl {
      height: auto;
      width: 14.2857142857143%;
      padding-top: 10px;
      float: left;
      text-align:center;
      font-size:1em;
    a.topnav {
      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
      color: #58595b;
      padding-top: 0px;
      padding-right:0px;
      padding-bottom: 0px;
      padding-left: 0px;
      margin-left:0px;
      margin-right:0px;
      text-decoration: none;
    .topnav:hover {
      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
      color: #bd2137;
      padding-top: 0px;
      padding-right: 0px;
      padding-bottom: 0px;
      padding-left:0px;
      margin-left:0px;
      margin-right: 0px;
      text-decoration: none;
      text-align: right;
    .topnav:visited {
      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
      color: #58595b;
      padding-top: 0px;
      padding-right:0px;
      padding-bottom: 0px;
      padding-left: 0px;
      margin-left:0px;
      margin-right:0px;
      text-decoration: none;
    #midnav {
      clear: both;
      float: left;
      margin-left: 0;
      width: 100%;
      height:100%;
      display: block;
    #MenuBar1 > li:hover > a {
      background-image:url("file:///U|/dev2.celebritystaff.com/new-design_copy(10)/design/image s/inside-page-icons/arrow-insidePgbtns-hover.png");
      background-repeat: no-repeat;
      background-position: right center;
    #isbtn-findAjob {
      font-family: "Century Gothic";
      font-size: 1.8em;
      color: #FFF;
      text-decoration: none;
      background-color: #bd2137;
      background-image:url("file:///U|/dev2.celebritystaff.com/new-design_copy(10)/design/image s/inside-page-icons/arrow-insidePgBtns.png");
      background-repeat: no-repeat;
      background-position: right center;
      height: 35px;
      text-align: center;
      padding-top: 20px;
      padding-right: 0px;
      padding-bottom:10px;
      padding-left: 0px;
    #isbtn-findAjob:hover {
      font-family: "Century Gothic";
      font-size: 1.8em;
      color: #FFF;
      text-decoration: none;
      background-color: #bd2137;
      background-image:url("file:///U|/dev2.celebritystaff.com/new-design_copy(10)/design/image s/inside-page-icons/arrow-insidePgbtns-hover.png");
      background-repeat: no-repeat;
      background-position: right center;
      height: 35px;
      text-align: center;
      padding-top: 20px;
      padding-right: 0px;
      padding-bottom:10px;
      padding-left: 0px;
    #isbtn-findAjob:active {
      font-family: "Century Gothic";
      font-size: 1.8em;
      color: #FFF;
      text-decoration: none;
      background-color: #bd2137;
      background-image:url("file:///U|/dev2.celebritystaff.com/new-design_copy(10)/design/image s/inside-page-icons/arrow-insidePgbtns-hover.png");
      background-repeat: no-repeat;
      background-position: right center;
      height: 35px;
      text-align: center;
    padding-top: 20px;
      padding-right: 0px;
      padding-bottom:10px;
      padding-left: 0px;
    #isbtn-findTalent {
      font-family: "Century Gothic";
      font-size: 1.8em;
      color: #FFF;
      text-decoration: none;
      background-color: #ec8423;
      background-image:url("file:///U|/dev2.celebritystaff.com/new-design_copy(10)/design/image s/inside-page-icons/arrow-insidePgBtns.png");
      background-repeat: no-repeat;
      background-position: right center;
      height: 35px;
      text-align: center;
      padding-top: 20px;
      padding-right: 0px;
      padding-bottom:10px;
      padding-left: 0px;
    #isbtn-findTalent:hover {
      font-family: "Century Gothic";
      font-size:1.8em;
      color: #FFF;
      text-decoration: none;
      background-color: #ec8423;
      background-image:url("file:///U|/dev2.celebritystaff.com/new-design_copy(10)/design/image s/inside-page-icons/arrow-insidePgbtns-hover.png");
      background-repeat: no-repeat;
      background-position: right center;
      height: 35px;
      text-align: center;
      padding-top: 20px;
      padding-right: 0px;
      padding-bottom:10px;
      padding-left: 0px;
    #isbtn-forEmployees {
      font-family: "Century Gothic";
      font-size: 1.8em;
      color: #FFF;
      text-decoration: none;
      background-color: #643f99;
      background-image:url("file:///U|/dev2.celebritystaff.com/new-design_copy(10)/design/image s/inside-page-icons/arrow-insidePgBtns.png");
      background-repeat: no-repeat;
      background-position: right center;
      height: 35px;
      text-align: center;
    padding-top: 20px;
      padding-right: 0px;
      padding-bottom:10px;
      padding-left: 0px;
    #isbtn-forEmployees:hover {
      font-family: "Century Gothic";
      font-size:1.8em;
      color: #FFF;
      text-decoration: none;
      background-color: #643f99;
      background-image:url("file:///U|/dev2.celebritystaff.com/new-design_copy(10)/design/image s/inside-page-icons/arrow-insidePgbtns-hover.png");
      background-repeat: no-repeat;
      background-position: right center;
      height: 35px;
      text-align: center;
    padding-top: 20px;
      padding-right: 0px;
      padding-bottom:10px;
      padding-left: 0px;
    #bodycontent {
      clear: both;
      float: left;
      margin-left:20px;
      margin-right:20px;
      width: 95%;
      display: block;
      margin-top: 10px;
      margin-bottom: 10px;
      padding: 0px 0px opx 0px;
    .GreyHeader {
      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
      font-size: 1.5em;
      color: #58595b;
      font-weight: bold;
    .RedHeader {
      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
      font-size: 1.5em;
      color: #bd2137;
      font-weight: bold;
    .OrangeHeader {
      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
      font-size: 1.5em;
      color: #ec8423;
      font-weight: bold;
    .PurpleHeader {
      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
      font-size: 1.5em;
      color: #643f99;
      font-weight: bold;
    .BodyCopy {
      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
      font-size: 1em;
      line-height: 1.5em;
      color: #58595b;
    .BodyItal {
      font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
      font-style:italic;
      font-size:.85em;
      line-height:1.5em;
      color: #58595b;
    a.redLink {
      font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
      font-size:1em;
      line-height:1.5em;
      color:#bd2137;
    .redLink:hover {
      font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
      font-size:1em;
      line-height:1.5em;
      color:#ec8423;
    a.Lrg-redLink {
      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
      font-size: .9em;
      line-height: 1.5em;
      color: #bd2137;
    .Lrg-redLink:hover {
      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
      font-size: .9em;
      line-height: 1.5em;
      color: #ec8423;
    #blogroll {
      clear: both;
      float: left;
      margin-left: 0;
      width: 100%;
      display: block;
    #footer {
      clear: both;
      float: left;
      margin-left: 0;
      width: 100%;
      display: block;
    #mobile{
      width: 100%;
      background-color: #bd2137;
      display: block;
      float: left;
      margin-left:-5000px;
    #mobile-menu {
      clear: both;
      float: left;
      margin-left: -1000px;
      width: 18.3673%;
      display: block;
    #mobile-back {
      clear: both;
      float: left;
      margin-left:-1000px;
      width: 31.0344%;
      display: block;
      text-align:center;
    #mobile-login {
      clear: none;
      float: left;
      margin-left: -1000px;
      width: 31.0344%;
      display: block;
      text-align: center;
      border-right-width: thin;
      border-right-style: solid;
      border-right-color: #F66;
      background-color: #bd2137;
      color: #FFF;
      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
      font-size: 1.5em;
    #missionStatement {
      clear: both;
      float: left;
      margin-left: 0px;
      width: 100%;
      display: block;
      background-color: #7d7e7f;
      padding:0px;
    .missionStatement {
      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
      font-size: 1.1em;
      color: #FFF;
      text-align: center;
      font-style: italic;
    a.viewSite {
      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
      font-size: 1em;
      color:#FFF;
      text-decoration: underline;
    a.viewSite:hover {
      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
      font-size: 1em;
      color: #ec8423;
      text-decoration: underline;
    #footerCopy {
      float: left;
      width: 50%;
      text-align:left;
    #connectUs {
      float: right;
      width: 100%;
      text-align: right;
    #social-media {
      width: 50%;
      float: right;
      text-align: right;
    #smicon {
      width: 100%;
      float: right;
      text-align: right;
    #desktopContact {
      float: left;
      width: 100%;
    #column1 {
      width:45%;
      float:left;
      margin-right:30px;
    #column2 {
      width:45%;
      float:left;
    #column3 {
      width:45;
      float:left;
    #newsletter {
      width: 165px;
      height: auto;
      padding: 5px;
      float: left;
      text-align: center;
      border: thin groove #CCCCCC;
      background-color: #EFEFEF;
    #corpBuild {
      background-image: url(file:///U|/dev2.celebritystaff.com/new-design_copy(10)/design/images/building-tab.jpg );
      background-repeat: no-repeat;
      background-position: left top;
      float: left;
      width: 100%;
      height: 136px;
      padding-bottom:20px;
    #mobileContactPg {
      margin-left:-5000px;
      padding: 0px;
      float: left;
      width: 100%;
    #desktopContactPg {
      margin: 0px;
      padding: 0px;
      float: left;
      width: 100%;
    #column4 {
      padding: 0px;
      float: left;
      width: 70%;
      margin-top: -20px;
      margin-right: 0px;
      margin-bottom: 0px;
      margin-left: 0px;
    #column5 {
      float: right;
      width: 25%;
      padding: 0px;
      margin-top: -20px;
      margin-right: 0px;
      margin-bottom: 0px;
      margin-left: 0px;
    #column6 {
      width: 50%;
      float: left;
      margin-right: 50px;
    #column7 {
      width: 30%;
      float: left;
      margin-left: 50px;
    #column8 {
      width: 20%;
      float: right;
      text-align: left;
      margin-left: 0px;
      margin-right: 100px;
    #rowColumns {
      float: left;
      width: 100%;
      margin-bottom: 20px;
    #rowClmn1 {
      float: left;
      width: 25%;
      margin-left: 20px;
    #rowClmn2 {
      width: 25%;
      margin-left: 10px;
      float: left;
    #rowClmn3 {
      float: left;
      width: 25%;
      margin-left: 10px;
    #icons {
      text-align: right;
      float: left;
      width: 100%;
    #ptBoarder {
      padding-right:10px;
      padding-bottom:15px;
      float:left;
      width: 35%;
      margin-top:20px;
      margin-bottom:20px;
    #eoq {
      clear: both;
      float: left;
      margin-left: 0;
      width: 100%;
      display: block;
    #eoq1 {
      clear: both;
      float: left;
      margin-left: 0;
      width: 27.5362%;
      display: block;
    #eoq2 {
      clear: none;
      float: left;
      margin-left: 1.4492%;
      width: 71.0144%;
      display: block;
    #SafetyTip {
      clear: both;
      float: left;
      margin-left: 0;
      width: 98%;
      display: block;
      padding: 10px;
      border: thin solid #CCC;
    #NationalRates {
      clear: both;
      float: left;
      margin-left: 0px;
      width: 100%;
      display: block;
      margin-bottom: 25px;
      padding: 0px;
    #metroRates {
      clear: both;
      float: left;
      margin-left: 0px;
      width: 100%;
      display: block;
    #tables {
      margin: 0px;
      padding: 0px;
      float: left;
      height: auto;
      width: 100%;
    #charts {
      clear: both;
      margin-left: 0;
      width: 100%;
      display: block;
    #chart1 {
      clear: both;
      float: left;
      margin-left: 0;
      width: 40%;
      display: block;
      margin-bottom: 0px;
    #chart2 {
      clear: both;
      margin-left: 0;
      width: 45%;
      display: block;
      float: right;
    /* Tablet Layout: 1000px. Inherits styles from: Mobile Layout. *************************************/
    @media only screen and (min-width: 1000px) {
    .gridContainer {
      width: 91.14%;
      padding-left: 0.93%;
      padding-right: 0.93%;
      background-color:#FFF;
    #LayoutDiv1 {
      clear: both;
      float: left;
      margin-left: 0;
      width: 100%;
      display: block;
      background-color:#FFF;
    #logo {
      clear: both;
      float: left;
      margin-left: 0;
      margin-bottom:10px;
      width: 59.1836%;
      display: block;
      text-align:left;
    #login {
      clear: none;
      float: right;
      margin-left: 2.0408%;
      margin-bottom:10px;
      margin-right:20px;
      margin-top:50px;
      width: 18.3673%;
      display: block;
      text-align:right;
    a.login {
      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
      font-size: 1.6em;
      color: #bd2137;
      text-decoration: none;
      text-align:right;
    a.login:hover {
      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
      font-size: 1.6em;
      color: #ec8423;
      text-decoration: none;
      text-align:right;
    .redBody {
      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
      font-size: 1.23em;
      color: #bd2137;
      line-height: 1.23em;
    .orangeBody {
      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
      font-size: 1.23em;
      color: #ec8423;
      line-height: 1.23em;
    .purpleBody {
      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
      font-size: 1.23em;
      color: #643f99;
      line-height: 1.23em;
    #topnav {
      clear: both;
      float: left;
      margin-left: 0;
      margin-bottom:10px;
      width: 100%;
      display: block;
    #tl {
      height: auto;
      width: 14.2857142857143%;
      padding-top: 10px;
      float: left;
      text-align:center;
      font-size:1em;
    a.topnav {
      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
      color: #58595b;
      padding-top: 0px;
      padding-right:0px;
      padding-bottom: 0px;
      padding-left: 0px;
      margin-left:0px;
      margin-right:0px;
      text-decoration: none;
    .topnav:hover {
      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
      color: #bd2137;
      padding-top: 0px;
      padding-right: 0px;
      padding-bottom: 0px;
      padding-left:0px;
      margin-left:0px;
      margin-right: 0px;
      text-decoration: none;
      text-align: right;
    .topnav:visited {
      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
      color: #58595b;
      padding-top: 0px;
      padding-right:0px;
      padding-bottom: 0px;
      padding-left: 0px;
      margin-left:0px;
      margin-right:0px;
      text-decoration: none;
    #midnav {
      clear: both;
      float: left;
      margin-left: 0;
      width: 100%;
      height:100%;
      display: block;
    #MenuBar1 > li:hover > a {
      background-image:url("file:///U|/dev2.celebritystaff.com/new-design_copy(10)/design/image s/inside-page-icons/arrow-insidePgbtns-hover.png");
      background-repeat: no-repeat;
      background-position: right center;
    #isbtn-findAjob {
      font-family: "Century Gothic";
      font-size: 1.8em;
      color: #FFF;
      text-decoration: none;
      background-color: #bd2137;
      background-image:url("file:///U|/dev2.celebritystaff.com/new-design_copy(10)/design/image s/inside-page-icons/arrow-insidePgBtns.png");
      background-repeat: no-repeat;
      background-position: right center;
      height: 35px;
      text-align: center;
      padding-top: 20px;
      padding-right: 0px;
      padding-bottom:10px;
      padding-left: 0px;
    #isbtn-findAjob:hover {
      font-family: "Century Gothic";
      font-size: 1.8em;
      color: #FFF;
      text-decoration: none;
      background-color: #bd2137;
      background-image:url("file:///U|/dev2.celebritystaff.com/new-design_copy(10)/design/image s/inside-page-icons/arrow-insidePgbtns-hover.png");
      background-repeat: no-repeat;
      background-position: right center;
      height: 35px;
      text-align: center;
      padding-top: 20px;
      padding-right: 0px;
      padding-bottom: 10px;
      padding-left: 0px;
    #isbtn-findAjob:active {
      font-family: "Century Gothic";
      font-size: 1.8em;
      color: #FFF;
      text-decoration: none;
      background-color: #bd2137;
      background-image:url("file:///U|/dev2.celebritystaff.com/new-design_copy(10)/design/image s/inside-page-icons/arrow-insidePgbtns-hover.png");
      background-repeat: no-repeat;
      background-position: right center;
      height: 35px;
      text-align: center;
      padding-top: 20px;
      padding-right: 0px;
      padding-bottom:10px;
      padding-left: 0px;
    #isbtn-findTalent {
      font-family: "Century Gothic";
      font-size: 1.8em;
      color: #FFF;
      text-decoration: none;
      background-color: #ec8423;
      background-image:url("file:///U|/dev2.celebritystaff.com/new-design_copy(10)/design/image s/inside-page-icons/arrow-insidePgBtns.png");
      background-repeat: no-repeat;
      background-position: right center;
      height: 35px;
      text-align: center;
      padding-top: 20px;
      padding-right: 0px;
      padding-bottom:10px;
      padding-left: 0px;
    #isbtn-findTalent:hover {
      font-family: "Century Gothic";
      font-size:1.8em;
      color: #FFF;
      text-decoration: none;
      background-color: #ec8423;
      background-image:url("file:///U|/dev2.celebritystaff.com/new-design_copy(10)/design/image s/inside-page-icons/arrow-insidePgbtns-hover.png");
      background-repeat: no-repeat;
      background-position: right center;
      height: 35px;
      text-align: center;
      padding-top: 20px;
      padding-right: 0px;
      padding-bottom:10px;
      padding-left: 0px;
    #isbtn-forEmployees {
      font-family: "Century Gothic";
      font-size: 1.8em;
      color: #FFF;
      text-decoration: none;
      background-color: #643f99;
      background-image:url("file:///U|/dev2.celebritystaff.com/new-design_copy(10)/design/image s/inside-page-icons/arrow-insidePgBtns.png");
      background-repeat: no-repeat;
      background-position: right center;
      height: 35px;
      text-align: center;
      padding-top: 20px;
      padding-right: 0px;
      padding-bottom:10px;
      padding-left: 0px;
    #isbtn-forEmployees:hover {
      font-family: "Century Gothic";
      font-size:1.8em;
      color: #FFF;
      text-decoration: none;
      background-color: #643f99;
      background-image:url("file:///U|/dev2.celebritystaff.com/new-design_copy(10)/design/image s/inside-page-icons/arrow-insidePgbtns-hover.png");
      background-repeat: no-repeat;
      background-position: right center;
      height: 35px;
      text-align: center;
      padding-top: 20px;
      padding-right: 0px;
      padding-bottom:10px;
      padding-left: 0px;
    #bodycontent {
      clear: both;
      float: left;
      margin-left:20px;
      margin-right:20px;
      width: 95%;
      display: block;
      margin-top: 10px;
      margin-bottom: 10px;
      padding: 0px 0px opx 0px;
    .GreyHeader {
      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
      font-size: 1.5em;
      color: #58595b;
      font-weight: bold;
    .RedHeader {
      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
      font-size: 1.5em;
      color: #bd2137;
      font-weight: bold;
    .OrangeHeader {
      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
      font-size: 1.5em;
      color: #ec8423;
      font-weight: bold;
    .PurpleHeader {
      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
      font-size: 1.5em;
      color: #643f99;
      font-weight: bold;
    .BodyCopy {
      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
      font-size: 1em;
      line-height: 1.5em;
      color: #58595b;
    .BodyItal {
      font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
      font-style:italic;
      font-size:.85em;
      line-height:1.5em;
      color: #58595b;
    a.redLink {
      font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
      font-size:1em;
      line-height:1.5em;
      color:#bd2137;
    .redLink:hover {
      font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
      font-size:1em;
      line-height:1.5em;
      color:#ec8423;
    a.Lrg-redLink {
      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
      font-size: .9em;
      line-height: 1.5em;
      color: #bd2137;
    .Lrg-redLink:hover {
      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
      font-size: .9em;
      line-height: 1.5em;
      color: #ec8423;
    #blogroll {
      clear: both;
      float: left;
      margin-left: 0;
      width: 100%;
      display: block;
    #footer {
      clear: both;
      float: left;
      margin-left: 0;
      width: 100%;
      display: block;
    #mobile{
      width: 100%;
      background-color: #bd2137;
      display: block;
      float: left

    Thanks!
    "Nancy O." <[email protected]> wrote:
    Nancy O.  created the discussion
    "Fluid grid with added media queries not working with "
    To view the discussion, visit: https://forums.adobe.com/message/6496730#6496730
    >

  • HT4623 My iPad 2 audio only works with headphones and orientation does not work at all

    My iPad 2 volume button does not work with the integrated speakers of my iPad, once a headphone is connected to the jack output of my iPad the OSD volume displays fine and works to the external headphone but once the headphone jack is removed, there is no more a volume bar and the side volume buttons don't work at all, this has affected the screen orientation as well, screen does not orientate  as well,
    Please help

    If you deleted files from the operating system, you wrecked your installation and the first thing you need to do is either restore those files from a backup or reinstall the OS. Doing that is never the solution to any problem. Back up all data before making any changes.

  • My cannon printer worked with snow leopard but does not work with Lion

    My Mf 4350d printer does not work with lion Mac OS X Lion 10.7.2., it worked with Snow leopard no problem. I am a novice with apple so can you tell me how to do any changes carefully.

    Have you downloaded and installed the latest Canon printer drivers?
    http://support.apple.com/kb/DL899

  • Lion email does not work with Verizon FIOS - Eudora does

    Recently I have not been able to send email using my Verizon outgoing server on the Lion email client. I can receive OK, but the server keeps rejecting something and a window pops up asking me to select a different SMTP server.
    Before I called Verizon, I decided to see if there were any free eMail clients I could use as a test and the new Eudora showed up when I did a "Bing" search.
    I just installed Eudora and after a very quick setup, I sent a message using the Verizon server without any problem, the mail coming into both the Eudora and Lion mailboxes.
    So the problem is not with Lion, but with the Lion eMail client. I know Verizon does not officially support Macs, but since Eudora works, I have localized the issue to the standard Lion email client.
    Anyone else have a similar experience with Verizon or some other ISP in not being able to send eMail?
    First, Eudora is an answer. Second - I would like to resolve the problem with the Lion eMail client - it must be some obscure server setting. I know that it used to work, but I am not sure whether it was with Lion or Snow Leopard. Usually when I send an eMail, I use Cloud and was using MobileMe so I did not notice whether or not Verizon's SMTP server was working.
    I noticed it today when I could not reply to an eMail that came in on one of my Verizon accounts.
    Here is the Eudora URL
    https://wiki.mozilla.org/Eudora_Releases
    Click Mac Disk Image and voila! there you go.
    (works for me)

    Thunderbird might work, but as long as Eudora is working I am happy.
    The built in client used to work with Verizon which is what puzzles me.
    I think you are right, the MacMail app is primarily for cloud these days.

  • Why does iPhone 5 not work with wifi?, Why does iPhone 5 not work with wifi?

    I have been having very high data usage.  My iPhone 5 will not stay connected to wifi or will totally not work on wifi. Provider is AT&amp;T.

    It hasent been updated to support iphone 5 screen size yet, it will come in time.

Maybe you are looking for

  • Missing songs from iphone but not itunes?

    Sorry if this has been answered elsewhere but I wasn't able to find it. Sometimes when I connect my iphone to my Win7 desktop and manually drag new songs onto the iphone, I wait until the Sync process disappears off the screen before disconnecting my

  • User Recon and Event Handler  Issue in OIM11g

    Hello Experts, I am developing a Trusted Source Recon (User) for a proprietary application. I have devloped two java classes and put them into a jar file and placed the same jar in both ScheduleTask and EventHandlers directory of OIM. 1.UserRecon cla

  • Can I force a full system backup somehow ?

    Bootcamp has made a mess of my HD and I'd rather not rely on existing backups but have plenty of space and could do a full disc backup as insurance. I can then restore from TM in theory and solve the partition problems caused by BC. But how do I get

  • Help getting auto-sync back

    I lost my hard-drive to laptop in fall '06. I-Pod library went w/it. I was able to get help to get the Library downloaded to new computer... all songs show up using "Manual load" directions. Now- I can't get new songs to load. it's like it's created

  • How to use CONVERTTOCLOB

    I'm using Oracle 10g I have a database filed of type BLOB and I'm trying to use CONVERTTOCLOB My select gives Ora-00904 invalid identifer