GUILayout.Label alignment / spacing

When using horizontally aligned guilayout labels, the text don’t quite get along between two label.

GUILayout.BeginHorizontal("");
    GUILayout.Label("someText1");
    GUILayout.Label("someText2");
GUILayout.EndVertical();

As you can see there’s a gap between text (logically).

Is there a way to force reduce the spacing ?

The solution shouldn’t be hard, at least i think so, but i really couldn’t find it.

-Thanks a bunch.

Solved, You can tweak all the setting in custom GUIStyle, and don’t forget to set that style as the one currently used!