I need help repositioning coded UI

I want to move the transform positions on the X and Y axis so I can make the timer be in the top right corner of the screen. This is what I have so far.

#pragma strict
var timeRemaining : float = 60;

function Update () {
    timeRemaining -= Time.deltaTime;
}

function OnGUI(){
    if(timeRemaining > 0){
       GUI.Label(new Rect(100, 100, 200, 100), "Time Remaining : "+timeRemaining);
    }
    else{
        Application.LoadLevel("Tutorial_Level_1");
    }
}

The way you would move the timer(label) to the corner would be by changing the variables in >>>new Rect(X,Y,L,H)<<<<. The X and Y are the position on the screen, while the L and H are the Length and Height of the label you created.
This is the old manual documentation on this kind of GUI. Take a look at it it gives the basics.

Are you just talking about positioning the GUI.Label in the upper right? If so, try this:

function OnGUI(){
    if(timeRemaining > 0){
      GUI.Label(new Rect(Screen.width - 200, 0, 200, 100), "Time Remaining : "+timeRemaining);
...