@charset "UTF-8";
/*
   ==========================================================================
   Quotes
   ==========================================================================
*/
/*
	CustomResetCSS 2024-04-07 Author: Sunphonix
*/
/*
   ==========================================================================
   General
   ==========================================================================
*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}


article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section { 
	display:block;
}

/*
   ==========================================================================
   Blocks
   ==========================================================================
*/

body {
    /*line-height:1;*/
    line-height:150%;
}

table {
    border-collapse:collapse;
    border-spacing:0;
}

/* change border colour to suit your needs */
hr {
    display:block;
    height:1px;
    border:0;   
    border-top:1px solid #ccc;
    margin:1em 0;
    padding:0;
}
section{margin:0;padding:0;}

/*
   ==========================================================================
   Apps
   ==========================================================================
*/

audio,
canvas,
video {
    display: inline-block;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

[hidden],
template {
    display: none;
}

/*
   ==========================================================================
   words
   ==========================================================================
*/

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

b,strong {
    font-weight: bold;
}

svg:not(:root) {
    overflow: hidden;
}

dfn {
    font-style: italic;
}

/* change colours to suit your needs */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}

blockquote, q {
	quotes: "\201C" "\201D" "\2018" "\2019";
}

blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}

/* change colours to suit your needs */
mark {
    background-color:#ff69b4;
    color:#000; 
    font-style:italic;
    font-weight:bold;
}

/*
   ==========================================================================
   Links
   ==========================================================================
*/

a {
    margin:0;
    padding:0;
    /*font-size:100%;*/
    vertical-align:baseline;
    background:transparent;
	text-decoration: none;
	
	-webkit-transition: background-color 0.3s ease , color 0.4s ease;
	-moz-transition: background-color 0.3s ease , color 0.4s ease;
	-o-transition: background-color 0.3s ease , color 0.4s ease;
	transition: background-color 0.3s ease , color 0.4s ease;
}

a:focus {
    outline: thin dotted;
}

a:active,a:hover {
    outline: 0;
}

/*
   ==========================================================================
   imgs
   ==========================================================================
*/

img {
    border: none;
}

a img {
    border-style:none;
}

/*
   ==========================================================================
   Forms
   ==========================================================================
*/

input, select {
    vertical-align:middle;
}

fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}

button,input,select,textarea {
    font-family: inherit;
	font-size: 100%;
	margin: 0;
}

button,input {
    line-height: normal;
}

button,select {
    text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: none;
	/*font-size: 18px;*/
	font-weight: bold;
	color: #333;
	text-align: center;
	line-height: 1.5em;
	padding: 0.3em 0.7em;
	border: 1px solid #333;
	border-radius: 5px;
	background-color: #fff;
	transition: .3s;
    cursor: pointer;
	box-shadow: none;
}
button:hover,
html input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	color         : #fff;
	background    : #333;
}

button[disabled],
html input[disabled] {
    cursor: default;
}

input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

input[type="search"] {
    -webkit-appearance: textfield;
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

textarea {
    overflow: auto;
    vertical-align: top;
}