/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 *   page
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~  */
.link-dld {
	font-weight: bold;
}
#page-title {
	margin-top: 25px;
}
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 *   group
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~  */
.group-title {
	margin: 30px 0 20px 0;
	padding: 0 20px;
	color: #555555;
	background-color: #e0e0e0;
	line-height: 40px;
	font-size: 21px;
	font-weight: bold;
	border-radius: 4px;
}
#group-doc {
	margin-top: 10px;
}
/* --------
 * table
 * --------  */
.col-1 {
	padding-right: 10px;
	vertical-align: top;
}
.doc-title {
	font-size: 19px;;
	/*font-weight: bold;*/
}
.table-info {
	border-collapse: collapse;
}
.p-name {
	padding-right: 5px;
	color: #888888;
}
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 *   snippet
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~  */
#container-member {
	display: flex;
	justify-content: space-between;
	box-sizing: border-box;
	max-width: 450px;
	width: 100%;
}
@media screen and (min-width: 591px) {
	#container-member {
		padding: 0 18px;
		
	}
}
@media screen and (max-width: 590px) {
	#container-member {
		padding: 0 5px;
	}
}

#btn-wrapper {
	position: relative;
}
/* ----------
 * tooltip
 * ---------- */
#ttip-container {
	display: inline-block;
}
#ttip-text {
	visibility: hidden;
	position: absolute;
	top: -30px;
	right: 0;
	padding: 0 10px;
	color: #aaaaaa;
	background-color: #333333;
	border-radius: 4px;
}
#ttip-container:hover #ttip-text {
	visibility: visible;
}
/* ----------
 * button
 * ---------- */
#btn-copy {
	margin-top: 8px;
	padding: 0 10px;
	min-width: 80px;
	line-height: 32px;
	font-family: inherit;
	font-size: 17px;
	color: #333333;
	background-color: #d9d9d9;
	border-width: 1px;
	border-style: solid;
	border-color: #80a0a0 #205050 #205050 #80a0a0;
	border-radius: 5px;
	cursor: pointer;
}
#btn-copy:hover {
	color: #222222;
	background-color: #cccccc;
}
#btn-copy:active {
	color: #1c1c1c;
	background-color: #c0c0c0;
}