function nodeDefaults(obj, diagram) {
obj.style = {
fill: "#659be5",
strokeColor: "none",
color: "white",
strokeWidth: 2
};
obj.borderColor = "#3a6eb5";
obj.backgroundColor = "#659be5";
obj.shape.margin = { left: 5, right: 5, bottom: 5, top: 5 };
obj.expandIcon = {
height: 10,
width: 10,
shape: "None",
fill: "lightgray",
offset: { x: 0.5, y: 1 }
};
obj.expandIcon.verticalAlignment = "Auto";
obj.expandIcon.margin = { left: 0, right: 0, top: 0, bottom: 0 };
obj.collapseIcon.offset = { x: 0.5, y: 1 };
obj.collapseIcon.verticalAlignment = "Auto";
obj.collapseIcon.margin = { left: 0, right: 0, top: 0, bottom: 0 };
obj.collapseIcon.height = 10;
obj.collapseIcon.width = 10;
obj.collapseIcon.padding.top = 5;
obj.collapseIcon.shape = "None";
obj.collapseIcon.fill = "lightgray";
return obj;
}