/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Feb 25 2025 | 15:28:05 */
 .btnpdf {
    display: inline-block; /* Строчно-блочный элемент */
   	background: transparent;  /*Прозрачный цвет фона*/ 
	color: DimGray; /* Серый цвет текста */
    padding: 0.1rem 0.5rem; /*Поля вокруг текста */
    text-decoration: none; /* Убираем подчёркивание */
    border-radius: 5px; /* Скругляем уголки */
	border: 1px solid Gray;
	
   }

/* .btnpdf:link {
  color: green;
}*/

/* visited link */
.btnpdf:visited {
  color: DimGray;
}

.btnpdf:hover{
	background: DimGray;  /*Прозрачный цвет фона*/ 
	color: white; /* Серый цвет текста */
	
}
.btnpdf:focus {outline: none; }
.btnpdf:active {color: red; }
