I would like to make the splitter bend to my will. Can you give me an example on how to do this?:
- Make Size relative to the host (instead of hard-coded to 440px). I'd like it to be .25% of the parent/host.
 - Make the bar between the panes wider so its easier to resize it.
 - Turn off the button that closes/opens the pane. (I don't want this pane to go away)
 - Set a minimum width on the left pane so it must be at least 100px.
 - Change the color of the bar when it is select/not selected. and/or set the background color for ALL Kendo controls.
 
@(Html.Kendo().Splitter()          .Name("splitter")          .HtmlAttributes(new { id = "vertical" })          .Panes(panes =>          {              panes.Add().Collapsible(true).HtmlAttributes(new { id = "vertical" }).Size("440px").Content(                @<div>                ... content                </div>);              panes.Add().Content(                @<div>                ... content                </div>);          })