* Reduce number of ops needed to create InstanceNorm
InstanceNorm in onnx importer creates the same subgraph for Mean twice - once for Variance and once for actual Mean.
This change makes InstanceNorm to use single Mean which is shared by numerator and Variance.
Also enables IE_CPU.onnx_model_instance_normalization test case
* Revert changes to .gitignore