@media screen  and (max-width:200px)
{
	.svg {
 	 background: url('Makesmaller-04.svg') no-repeat;
	 background-size: 100% 100%;
	 width: 200px;
	 height: 400px;
	}
}
@media screen and (min-width:201px) and (max-width:300px)
{
	.svg {
 	 background: url('Makesmaller-03.svg') no-repeat;
	 background-size: 100% 100%;
	 width: 300px;
	 height: 400px;
	}
}
@media screen and (min-width:301px) and (max-width:400px)
{
	.svg {
 	 background: url('Makesmaller-02.svg') no-repeat;
	 background-size: 100% 100%;
	 width: 400px;
	 height: 400px;
	}
}
@media screen and (min-width:401px) and (max-width:700px){
	.svg {
 	 background: url('Makesmaller-01.svg') no-repeat;
	 background-size: 100% 100%;
	 width: 500px;
	 height: 400px;
	}
}
@media screen and (min-width:701px){
	.svg {
 	 background: url('Makesmaller-05.svg') no-repeat;
	 background-size: 100% 100%;
	 width: 740px;
	 height: 400px;
	}
}