/*@media (orientation: portrait)*/
@media screen and (max-width: 1000px) 
{
	.page-title
	{
		font-size: 75px;
	}
	input, select, textarea
	{
		width: 700px;
		padding: 20px;
		font-size: 40px;
	}
	input[type="submit"], button
	{
	  width: 700px;
	  height: auto;
	  font-size: 40px;
	}
	.half_input
	{
		width: 300px;
	}
	fieldset
	{
		width:800px;
		height:auto;
		font-size:30px;
	}
	table
	{
		width:800px;
	}
}
/*@media (orientation: landscape)*/ 
@media screen and (min-width: 1001px)
{
	.page-title
	{
		font-size: 35px;;
	}
	input, select, textarea
	{
		width: 300px;
		padding: 5px;
		font-size: 15px;
	}
	input[type="submit"], button
	{
	  width: 300px;
	  height: 30px;
	  font-size: 15px;
	  background-color: #1E90FF;
	  color: white;
	  border: none;
	}
	.half_input
	{
		width: 140px;
	}
	fieldset
	{
		margin-top : 5%;
		width : 500px;
		/*height : 700px;*/
		height: auto;
	}
	table
	{
		width:90%;
	}
}