/* 
This is	style-custom.css  
style-custom.css is the very last external stylesheet. The stylesheets go in this order:



1  style.css (external) A child theme's style.css is automatically added on to the end of the parent theme's style.css to create one long stylesheet.

2  internal styles (created by choosing options from the theme options page)

3  plugin stylesheets (external)
4  style-print.css (external)

5  style-custom.css (external)

6  internal styles (created by adding CSS in the theme options page)



This style sheet is for custom styles that you want to separate from other stylesheets for clarity, for large blocks of external custom styles that won't work before the internal styles but might work after them or for large blocks of external styles that will over-ride external plugin styles. Most minor CSS customisations are easiest to add in (6) and most large blocks of CSS customisation are easiest to add in (1) in a child theme.

Don't use style-custom.css in the parent theme as it will get overwritten every time the parent theme is updated. Use style-custom.css in a child theme instead.

You can download a basic child theme from  http://www.alchemweb.co.uk/child-theme/  

If style-custom.css doesn't appear to be over-riding internal styles then make your css more specific e.g.  div.something div.something-else h3.something { ..... }
*/

/*
At the time of writing the WooCommerce external stylesheet (assets / css / woocomerce.css) over rides the WooCommerce inline styles which can cause problems with image sizing. The following rectifies this.
*/

.woocommerce div.product div.images,.woocommerce-page div.product div.images,.woocommerce #content div.product div.images,.woocommerce-page #content div.product div.images{width:auto;}

.woocommerce .related ul.products li.product img,  .woocommerce-page .related ul.products li.product img,  .woocommerce .upsells.products ul.products li.product img,  .woocommerce-page .upsells.products ul.products li.product img,  .woocommerce .related ul li.product img,  .woocommerce-page .related ul li.product img,   .woocommerce .upsells.products ul li.product img,  .woocommerce-page .upsells.products ul li.product img{width:auto;height:auto;margin-right:10px;}

.woocommerce ul.products li.product,  .woocommerce-page ul.products li.product{width:auto;}

.woocommerce .cart-collaterals .cross-sells ul.products li,.woocommerce-page .cart-collaterals .cross-sells ul.products li{width:auto;}