
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_dab109b290c45085d384a908.woff')format("woff");}.ff1{font-family:ff1;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_d894d218313289d232d3afe3.woff')format("woff");}.ff2{font-family:ff2;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_c50f8a74d58b00c8c5b2eb64.woff')format("woff");}.ff3{font-family:ff3;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_2f1a9cca327ddd4be7899085.woff')format("woff");}.ff4{font-family:ff4;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_75e740571b66ac518dd780de.woff')format("woff");}.ff5{font-family:ff5;line-height:0.690918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_8e9ba272aa23f33e076cd883.woff')format("woff");}.ff6{font-family:ff6;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_1d809ea17bdcb1e9249e48e7.woff')format("woff");}.ff7{font-family:ff7;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_0b183bbff7c76fa76674607f.woff')format("woff");}.ff8{font-family:ff8;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_9b20e5d4a9dc42d4f226c739.woff')format("woff");}.ff9{font-family:ff9;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_c902ebbec0e64c200b52e7e9.woff')format("woff");}.ffa{font-family:ffa;line-height:0.689941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_f895d376c65506d986f80d5a.woff')format("woff");}.ffb{font-family:ffb;line-height:0.689941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_158aaa47bf411ef9a3747fb2.woff')format("woff");}.ffc{font-family:ffc;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_a01d2f6db25ee1033442b72b.woff')format("woff");}.ffd{font-family:ffd;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_ebeda0bf8ac3815260c0d361.woff')format("woff");}.ffe{font-family:ffe;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_2b3a62ba712e2a975b4c0048.woff')format("woff");}.fff{font-family:fff;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_f78a149eea6a145d10c8ff2e.woff')format("woff");}.ff10{font-family:ff10;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_21045bf4cbedfb1f542589de.woff')format("woff");}.ff11{font-family:ff11;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.480000px;}
.ls1c{letter-spacing:-0.459648px;}
.ls1d{letter-spacing:-0.417312px;}
.ls16{letter-spacing:-0.381024px;}
.ls25{letter-spacing:-0.361152px;}
.ls17{letter-spacing:-0.338688px;}
.lsd{letter-spacing:-0.320544px;}
.ls15{letter-spacing:-0.302400px;}
.ls24{letter-spacing:-0.273600px;}
.ls27{letter-spacing:-0.272160px;}
.ls19{letter-spacing:-0.260064px;}
.ls18{letter-spacing:-0.241920px;}
.lse{letter-spacing:-0.223776px;}
.ls12{letter-spacing:-0.198720px;}
.ls10{letter-spacing:-0.175392px;}
.ls1b{letter-spacing:-0.157248px;}
.lsc{letter-spacing:-0.152352px;}
.lsb{letter-spacing:-0.145728px;}
.ls1a{letter-spacing:-0.145152px;}
.ls11{letter-spacing:-0.132480px;}
.lsf{letter-spacing:-0.120960px;}
.lsa{letter-spacing:-0.119232px;}
.ls9{letter-spacing:-0.079488px;}
.ls8{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.059904px;}
.ls2{letter-spacing:0.060048px;}
.ls1f{letter-spacing:0.123552px;}
.ls20{letter-spacing:0.161568px;}
.ls7{letter-spacing:0.194832px;}
.ls0{letter-spacing:0.240480px;}
.ls21{letter-spacing:0.242352px;}
.ls1e{letter-spacing:0.285120px;}
.ls14{letter-spacing:0.317376px;}
.ls13{letter-spacing:0.359136px;}
.ls5{letter-spacing:0.414720px;}
.ls4{letter-spacing:1.776960px;}
.ls3{letter-spacing:3.490848px;}
.ls22{letter-spacing:3.536640px;}
.ls29{letter-spacing:6.812640px;}
.ls28{letter-spacing:13.510512px;}
.ls2b{letter-spacing:16.185600px;}
.ls2c{letter-spacing:16.186608px;}
.ls6{letter-spacing:24.517152px;}
.ls2a{letter-spacing:46.186560px;}
.ls23{letter-spacing:63.587520px;}
.ls26{letter-spacing:63.588960px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-16.560000px;}
.ws1{word-spacing:-16.480512px;}
.ws2{word-spacing:-16.440768px;}
.ws7{word-spacing:-15.120000px;}
.wsf{word-spacing:-14.962752px;}
.ws10{word-spacing:-14.944608px;}
.ws11{word-spacing:-14.896224px;}
.ws6{word-spacing:-14.878080px;}
.wsa{word-spacing:-14.859936px;}
.ws15{word-spacing:-14.847840px;}
.ws5{word-spacing:-14.837760px;}
.ws3{word-spacing:-14.817888px;}
.ws13{word-spacing:-14.817600px;}
.ws4{word-spacing:-14.799456px;}
.ws8{word-spacing:-14.781312px;}
.ws9{word-spacing:-14.738976px;}
.ws14{word-spacing:-14.702688px;}
.wse{word-spacing:-14.660352px;}
.wsc{word-spacing:-13.680000px;}
.wsd{word-spacing:-13.318848px;}
.ws12{word-spacing:-0.060480px;}
.wsb{word-spacing:0.000000px;}
._0{margin-left:-1.017504px;}
._1{width:1.023408px;}
._4{width:2.298240px;}
._7{width:3.593952px;}
._6{width:4.691808px;}
._1e{width:5.710752px;}
._8{width:6.719184px;}
._a{width:7.766496px;}
._1c{width:9.046944px;}
._b{width:10.281600px;}
._5{width:11.975040px;}
._9{width:13.728960px;}
._14{width:16.250400px;}
._2{width:17.557920px;}
._3{width:19.051200px;}
._27{width:20.139840px;}
._17{width:21.409920px;}
._19{width:22.745232px;}
._24{width:23.768640px;}
._c{width:25.089552px;}
._d{width:26.732160px;}
._2a{width:27.778176px;}
._10{width:28.848960px;}
._15{width:30.360960px;}
._1b{width:31.449600px;}
._20{width:32.780160px;}
._18{width:33.808320px;}
._26{width:35.017920px;}
._25{width:36.408960px;}
._16{width:37.860480px;}
._11{width:39.195792px;}
._1d{width:40.391424px;}
._1a{width:42.275520px;}
._23{width:43.424640px;}
._2b{width:44.819712px;}
._1f{width:46.448640px;}
._e{width:47.476800px;}
._f{width:48.565440px;}
._13{width:50.379840px;}
._31{width:52.138512px;}
._2c{width:54.069120px;}
._28{width:57.214080px;}
._2d{width:58.726080px;}
._36{width:59.875200px;}
._12{width:61.266240px;}
._22{width:62.415360px;}
._2e{width:63.564480px;}
._32{width:65.197440px;}
._29{width:67.737600px;}
._38{width:68.770512px;}
._37{width:69.989616px;}
._33{width:72.273600px;}
._3a{width:73.543680px;}
._21{width:87.998400px;}
._30{width:94.046400px;}
._2f{width:102.271680px;}
._34{width:152.046720px;}
._35{width:156.643200px;}
._39{width:310.332384px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(31,31,31);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:5.760000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:47.520000px;}
.fs7{font-size:54.720000px;}
.fs2{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:83.520000px;}
.y3f{bottom:-15.540000px;}
.y0{bottom:0.000000px;}
.y3e{bottom:1.740000px;}
.y124{bottom:3.660000px;}
.y135{bottom:3.720000px;}
.yf7{bottom:3.780000px;}
.ye6{bottom:3.840000px;}
.yc1{bottom:3.900000px;}
.y115{bottom:4.440000px;}
.yfe{bottom:4.500000px;}
.yee{bottom:4.560000px;}
.ye0{bottom:4.620000px;}
.y133{bottom:5.160000px;}
.y137{bottom:5.220000px;}
.y123{bottom:20.940000px;}
.yf6{bottom:21.060000px;}
.ye5{bottom:21.120000px;}
.yc0{bottom:21.180000px;}
.y114{bottom:21.720000px;}
.yfa{bottom:21.780000px;}
.yed{bottom:21.840000px;}
.ydf{bottom:21.900000px;}
.ye3{bottom:39.840000px;}
.ydd{bottom:40.620000px;}
.y41{bottom:53.640000px;}
.ye2{bottom:57.120000px;}
.ydb{bottom:57.900000px;}
.y6{bottom:58.320000px;}
.y117{bottom:58.440000px;}
.y3d{bottom:64.500000px;}
.y128{bottom:75.660000px;}
.yc5{bottom:76.620000px;}
.y12f{bottom:79.380000px;}
.y5{bottom:86.400000px;}
.yc3{bottom:93.900000px;}
.ycd{bottom:94.620000px;}
.y12e{bottom:96.660000px;}
.ycb{bottom:111.900000px;}
.yeb{bottom:112.560000px;}
.y158{bottom:118.080000px;}
.ye8{bottom:120.000000px;}
.y19c{bottom:121.680000px;}
.y1b1{bottom:123.120000px;}
.y169{bottom:126.360000px;}
.y3c{bottom:129.240000px;}
.y11e{bottom:129.660000px;}
.ye9{bottom:129.840000px;}
.y7b{bottom:132.840000px;}
.y157{bottom:135.360000px;}
.ya6{bottom:137.160000px;}
.yf2{bottom:138.000000px;}
.y19b{bottom:138.960000px;}
.y1b0{bottom:140.400000px;}
.y168{bottom:143.640000px;}
.y3b{bottom:146.520000px;}
.y11c{bottom:146.940000px;}
.y7a{bottom:150.120000px;}
.y138{bottom:152.280000px;}
.ya5{bottom:155.520000px;}
.yf1{bottom:156.000000px;}
.y19a{bottom:156.240000px;}
.y1af{bottom:157.680000px;}
.y167{bottom:160.920000px;}
.y156{bottom:161.640000px;}
.y3a{bottom:163.800000px;}
.y12d{bottom:166.500000px;}
.y79{bottom:167.400000px;}
.y199{bottom:173.520000px;}
.ya4{bottom:173.880000px;}
.yf0{bottom:174.000000px;}
.y1ae{bottom:174.960000px;}
.y166{bottom:178.200000px;}
.y155{bottom:178.920000px;}
.y78{bottom:184.680000px;}
.y136{bottom:186.000000px;}
.y39{bottom:190.080000px;}
.y198{bottom:190.800000px;}
.yef{bottom:192.000000px;}
.ya3{bottom:192.240000px;}
.y165{bottom:195.480000px;}
.y154{bottom:196.200000px;}
.y77{bottom:201.960000px;}
.y134{bottom:204.000000px;}
.y197{bottom:208.080000px;}
.y1ad{bottom:209.520000px;}
.yec{bottom:210.000000px;}
.ya2{bottom:210.600000px;}
.y153{bottom:213.480000px;}
.y38{bottom:217.440000px;}
.y76{bottom:219.240000px;}
.y164{bottom:221.760000px;}
.y132{bottom:222.000000px;}
.y196{bottom:225.360000px;}
.y1ac{bottom:226.800000px;}
.ya1{bottom:228.960000px;}
.y152{bottom:230.760000px;}
.y37{bottom:231.840000px;}
.y75{bottom:236.520000px;}
.y163{bottom:239.040000px;}
.y131{bottom:241.500000px;}
.y195{bottom:242.280000px;}
.y1ab{bottom:244.080000px;}
.y36{bottom:245.520000px;}
.yea{bottom:246.000000px;}
.ya0{bottom:246.960000px;}
.y151{bottom:248.040000px;}
.y74{bottom:253.800000px;}
.y162{bottom:256.320000px;}
.y130{bottom:259.500000px;}
.y35{bottom:259.560000px;}
.y1aa{bottom:261.360000px;}
.ye1{bottom:264.000000px;}
.y9f{bottom:265.320000px;}
.y73{bottom:271.080000px;}
.y161{bottom:273.600000px;}
.y34{bottom:274.680000px;}
.y127{bottom:277.500000px;}
.y1a9{bottom:278.280000px;}
.ye7{bottom:282.000000px;}
.y150{bottom:282.600000px;}
.y9e{bottom:283.680000px;}
.y194{bottom:285.840000px;}
.y72{bottom:288.360000px;}
.y160{bottom:290.880000px;}
.y33{bottom:291.600000px;}
.y12c{bottom:295.500000px;}
.y1a8{bottom:295.560000px;}
.y14f{bottom:299.880000px;}
.ye4{bottom:300.000000px;}
.y9d{bottom:302.040000px;}
.y71{bottom:305.280000px;}
.y15f{bottom:307.800000px;}
.y32{bottom:308.880000px;}
.y193{bottom:312.120000px;}
.y1a7{bottom:312.840000px;}
.y12b{bottom:313.500000px;}
.y14e{bottom:316.800000px;}
.y9c{bottom:320.400000px;}
.y70{bottom:322.560000px;}
.y15e{bottom:325.080000px;}
.y31{bottom:326.160000px;}
.y192{bottom:329.400000px;}
.y1a6{bottom:330.120000px;}
.y12a{bottom:331.500000px;}
.y14d{bottom:334.080000px;}
.yda{bottom:334.500000px;}
.y6f{bottom:339.840000px;}
.y15d{bottom:342.360000px;}
.y30{bottom:343.440000px;}
.y9b{bottom:346.680000px;}
.y1a5{bottom:347.400000px;}
.y129{bottom:349.500000px;}
.y14c{bottom:351.360000px;}
.yde{bottom:352.500000px;}
.y6e{bottom:357.120000px;}
.y15c{bottom:359.640000px;}
.y2f{bottom:360.720000px;}
.y9a{bottom:363.960000px;}
.y1a4{bottom:364.680000px;}
.y11b{bottom:367.500000px;}
.y14b{bottom:368.640000px;}
.y6d{bottom:374.400000px;}
.y15b{bottom:376.920000px;}
.y2e{bottom:378.000000px;}
.y99{bottom:381.240000px;}
.y1a3{bottom:381.960000px;}
.y126{bottom:385.500000px;}
.y14a{bottom:385.920000px;}
.ydc{bottom:388.500000px;}
.y6c{bottom:391.680000px;}
.y15a{bottom:394.200000px;}
.y2d{bottom:395.280000px;}
.y98{bottom:398.520000px;}
.y1a2{bottom:399.240000px;}
.y125{bottom:403.500000px;}
.yd3{bottom:406.500000px;}
.y6b{bottom:408.960000px;}
.y149{bottom:412.200000px;}
.y2c{bottom:412.560000px;}
.y191{bottom:415.800000px;}
.y1a1{bottom:416.520000px;}
.y159{bottom:420.480000px;}
.y122{bottom:421.500000px;}
.yd9{bottom:424.500000px;}
.y97{bottom:424.800000px;}
.y6a{bottom:426.240000px;}
.y148{bottom:429.480000px;}
.y2b{bottom:429.840000px;}
.y190{bottom:433.080000px;}
.y1a0{bottom:433.800000px;}
.yd8{bottom:442.500000px;}
.y69{bottom:443.520000px;}
.y147{bottom:446.760000px;}
.y2a{bottom:447.120000px;}
.y18f{bottom:450.000000px;}
.y96{bottom:451.080000px;}
.y121{bottom:456.000000px;}
.yd7{bottom:460.500000px;}
.y68{bottom:460.800000px;}
.y146{bottom:464.040000px;}
.y29{bottom:464.400000px;}
.y18e{bottom:467.280000px;}
.y95{bottom:468.000000px;}
.y120{bottom:474.000000px;}
.y67{bottom:478.080000px;}
.yd6{bottom:478.500000px;}
.y28{bottom:481.320000px;}
.y18d{bottom:484.560000px;}
.y94{bottom:485.280000px;}
.y11f{bottom:492.000000px;}
.y66{bottom:495.000000px;}
.yd5{bottom:496.500000px;}
.y27{bottom:498.600000px;}
.y18c{bottom:501.840000px;}
.y93{bottom:502.560000px;}
.y11d{bottom:510.000000px;}
.y65{bottom:512.280000px;}
.yd4{bottom:514.500000px;}
.y145{bottom:515.520000px;}
.y26{bottom:515.880000px;}
.y18b{bottom:519.120000px;}
.y19f{bottom:519.840000px;}
.y116{bottom:528.000000px;}
.y92{bottom:528.840000px;}
.y64{bottom:529.560000px;}
.yca{bottom:532.500000px;}
.y144{bottom:532.800000px;}
.y25{bottom:533.160000px;}
.y19e{bottom:537.120000px;}
.y18a{bottom:545.400000px;}
.y11a{bottom:546.000000px;}
.y91{bottom:546.120000px;}
.y63{bottom:546.840000px;}
.y143{bottom:550.080000px;}
.y24{bottom:550.440000px;}
.yd2{bottom:550.500000px;}
.y19d{bottom:554.400000px;}
.y119{bottom:564.000000px;}
.y62{bottom:564.120000px;}
.y142{bottom:567.360000px;}
.y23{bottom:567.720000px;}
.yd1{bottom:568.500000px;}
.y189{bottom:571.680000px;}
.y90{bottom:572.400000px;}
.y61{bottom:581.400000px;}
.y118{bottom:582.000000px;}
.y141{bottom:584.640000px;}
.y22{bottom:585.000000px;}
.yd0{bottom:586.500000px;}
.y188{bottom:588.960000px;}
.y60{bottom:598.680000px;}
.y113{bottom:600.000000px;}
.y140{bottom:601.920000px;}
.y21{bottom:602.280000px;}
.ycf{bottom:604.500000px;}
.y187{bottom:606.240000px;}
.y5f{bottom:615.960000px;}
.y13f{bottom:619.200000px;}
.y20{bottom:619.560000px;}
.yce{bottom:622.500000px;}
.y186{bottom:623.520000px;}
.y5e{bottom:633.240000px;}
.y13e{bottom:636.480000px;}
.y1f{bottom:636.840000px;}
.y112{bottom:639.720000px;}
.ycc{bottom:640.500000px;}
.y185{bottom:640.800000px;}
.y5d{bottom:650.520000px;}
.y13d{bottom:653.760000px;}
.y1e{bottom:654.120000px;}
.y111{bottom:657.000000px;}
.y184{bottom:658.080000px;}
.yc2{bottom:658.500000px;}
.y8f{bottom:667.800000px;}
.y1d{bottom:671.040000px;}
.y110{bottom:674.280000px;}
.y183{bottom:675.000000px;}
.yc9{bottom:676.500000px;}
.y5c{bottom:676.800000px;}
.y8e{bottom:685.080000px;}
.y1c{bottom:688.320000px;}
.y10e{bottom:688.500000px;}
.y182{bottom:692.280000px;}
.y5b{bottom:694.080000px;}
.yc8{bottom:694.500000px;}
.y8d{bottom:702.000000px;}
.y1b{bottom:705.600000px;}
.y10f{bottom:706.500000px;}
.y181{bottom:709.560000px;}
.y5a{bottom:711.000000px;}
.yc7{bottom:712.500000px;}
.y8c{bottom:719.280000px;}
.y13c{bottom:722.520000px;}
.y1a{bottom:722.880000px;}
.y10c{bottom:724.500000px;}
.y180{bottom:726.840000px;}
.y59{bottom:728.280000px;}
.yc6{bottom:730.500000px;}
.y8b{bottom:736.560000px;}
.y13b{bottom:739.800000px;}
.y19{bottom:740.160000px;}
.y10d{bottom:742.500000px;}
.y17f{bottom:744.120000px;}
.y58{bottom:745.560000px;}
.yc4{bottom:748.500000px;}
.y8a{bottom:753.840000px;}
.y13a{bottom:757.080000px;}
.y18{bottom:757.440000px;}
.y10a{bottom:760.500000px;}
.y17e{bottom:761.400000px;}
.y57{bottom:762.840000px;}
.ybf{bottom:766.500000px;}
.y89{bottom:771.120000px;}
.y139{bottom:774.360000px;}
.y17{bottom:774.720000px;}
.y10b{bottom:778.500000px;}
.y17d{bottom:778.680000px;}
.y56{bottom:780.120000px;}
.y88{bottom:788.400000px;}
.y16{bottom:792.000000px;}
.y17c{bottom:795.960000px;}
.y108{bottom:796.500000px;}
.y55{bottom:797.400000px;}
.y87{bottom:805.680000px;}
.y15{bottom:809.280000px;}
.y17b{bottom:813.240000px;}
.y109{bottom:814.500000px;}
.y54{bottom:814.680000px;}
.y86{bottom:822.960000px;}
.y14{bottom:828.720000px;}
.y17a{bottom:830.520000px;}
.y53{bottom:831.960000px;}
.y106{bottom:832.500000px;}
.y13{bottom:846.000000px;}
.y179{bottom:847.800000px;}
.y52{bottom:849.240000px;}
.y107{bottom:850.500000px;}
.ybe{bottom:862.560000px;}
.y12{bottom:863.280000px;}
.y178{bottom:864.720000px;}
.y51{bottom:866.520000px;}
.yaf{bottom:867.600000px;}
.y105{bottom:868.500000px;}
.y177{bottom:882.000000px;}
.y11{bottom:882.720000px;}
.y50{bottom:883.800000px;}
.yae{bottom:884.520000px;}
.y103{bottom:886.500000px;}
.ybd{bottom:888.840000px;}
.y176{bottom:899.280000px;}
.y4f{bottom:900.720000px;}
.yad{bottom:902.880000px;}
.y104{bottom:904.500000px;}
.y10{bottom:905.400000px;}
.ybc{bottom:905.760000px;}
.y175{bottom:916.560000px;}
.yf{bottom:917.280000px;}
.y4e{bottom:918.000000px;}
.y101{bottom:922.500000px;}
.ybb{bottom:923.040000px;}
.yac{bottom:930.240000px;}
.y174{bottom:933.840000px;}
.y4d{bottom:935.280000px;}
.ye{bottom:939.960000px;}
.yba{bottom:940.320000px;}
.y102{bottom:940.500000px;}
.y173{bottom:951.120000px;}
.yd{bottom:951.840000px;}
.y85{bottom:952.560000px;}
.yab{bottom:956.520000px;}
.yff{bottom:958.500000px;}
.y4c{bottom:961.560000px;}
.yb9{bottom:966.600000px;}
.y172{bottom:968.400000px;}
.y84{bottom:969.840000px;}
.yc{bottom:974.520000px;}
.y100{bottom:976.500000px;}
.y4b{bottom:978.840000px;}
.yaa{bottom:982.800000px;}
.yb8{bottom:983.880000px;}
.y171{bottom:985.680000px;}
.y83{bottom:987.120000px;}
.yfc{bottom:994.500000px;}
.yb{bottom:996.120000px;}
.ya9{bottom:1001.160000px;}
.y170{bottom:1002.960000px;}
.y82{bottom:1004.400000px;}
.yfd{bottom:1012.500000px;}
.y4a{bottom:1013.400000px;}
.yb7{bottom:1018.440000px;}
.ya8{bottom:1019.520000px;}
.y16f{bottom:1020.240000px;}
.y81{bottom:1021.680000px;}
.ya{bottom:1026.360000px;}
.yf9{bottom:1030.500000px;}
.y49{bottom:1030.680000px;}
.yb6{bottom:1035.720000px;}
.y16e{bottom:1037.520000px;}
.ya7{bottom:1037.880000px;}
.y80{bottom:1038.960000px;}
.y48{bottom:1047.960000px;}
.yfb{bottom:1048.500000px;}
.y9{bottom:1050.480000px;}
.yb5{bottom:1053.000000px;}
.y16d{bottom:1054.800000px;}
.y7f{bottom:1056.240000px;}
.y47{bottom:1065.240000px;}
.yf8{bottom:1066.500000px;}
.yb4{bottom:1070.280000px;}
.y16c{bottom:1071.720000px;}
.y7e{bottom:1073.520000px;}
.y8{bottom:1074.600000px;}
.y46{bottom:1082.520000px;}
.yf5{bottom:1084.500000px;}
.yb3{bottom:1087.560000px;}
.y16b{bottom:1089.000000px;}
.y7d{bottom:1090.800000px;}
.y45{bottom:1099.800000px;}
.y16a{bottom:1106.280000px;}
.y7{bottom:1106.640000px;}
.y7c{bottom:1107.720000px;}
.yb2{bottom:1113.480000px;}
.y44{bottom:1116.720000px;}
.yf4{bottom:1123.560000px;}
.yb1{bottom:1131.840000px;}
.y43{bottom:1134.000000px;}
.y4{bottom:1134.720000px;}
.yf3{bottom:1140.840000px;}
.yb0{bottom:1150.200000px;}
.y3{bottom:1150.560000px;}
.y42{bottom:1151.280000px;}
.y2{bottom:1164.960000px;}
.y1{bottom:1193.400000px;}
.y40{bottom:1197.360000px;}
.h4{height:3.839063px;}
.hc{height:4.500000px;}
.h10{height:18.000000px;}
.h13{height:19.500000px;}
.h9{height:26.274375px;}
.hb{height:32.994844px;}
.he{height:36.000000px;}
.hd{height:37.085625px;}
.h5{height:40.989375px;}
.ha{height:42.022969px;}
.h6{height:44.149219px;}
.h2{height:44.893125px;}
.h3{height:48.095156px;}
.h8{height:56.593125px;}
.h7{height:56.604375px;}
.h12{height:72.000000px;}
.h15{height:73.500000px;}
.h17{height:90.000000px;}
.hf{height:108.000000px;}
.h18{height:111.000000px;}
.h11{height:126.000000px;}
.h14{height:144.000000px;}
.h16{height:162.000000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:7.500000px;}
.w12{width:61.500000px;}
.we{width:66.000000px;}
.w6{width:69.000000px;}
.w4{width:75.000000px;}
.w11{width:76.500000px;}
.w5{width:79.500000px;}
.wc{width:91.500000px;}
.w13{width:97.500000px;}
.wa{width:100.500000px;}
.wd{width:103.500000px;}
.wf{width:105.000000px;}
.w7{width:108.000000px;}
.w9{width:144.000000px;}
.w8{width:147.000000px;}
.wb{width:151.500000px;}
.w15{width:154.500000px;}
.w14{width:157.500000px;}
.w3{width:291.000000px;}
.w10{width:312.000000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x14{left:1.560048px;}
.x19{left:7.500000px;}
.x1c{left:8.760000px;}
.x18{left:100.500000px;}
.x5{left:108.000000px;}
.xe{left:109.675764px;}
.x10{left:114.484140px;}
.x8{left:116.611812px;}
.xc{left:119.482920px;}
.x4{left:121.562640px;}
.x29{left:123.572016px;}
.x16{left:128.149668px;}
.x9{left:130.331556px;}
.x21{left:133.741692px;}
.x15{left:135.000000px;}
.xf{left:136.883808px;}
.xd{left:159.365484px;}
.x13{left:160.500000px;}
.x23{left:201.000000px;}
.x11{left:205.215084px;}
.xb{left:214.232652px;}
.x20{left:247.500000px;}
.x30{left:258.000000px;}
.xa{left:262.442880px;}
.x24{left:279.000000px;}
.x2{left:298.937628px;}
.x2a{left:370.837800px;}
.x22{left:386.687160px;}
.x1a{left:391.500000px;}
.x2b{left:411.000000px;}
.x17{left:421.785000px;}
.x25{left:430.500000px;}
.x3{left:446.474880px;}
.x1b{left:465.000000px;}
.x12{left:473.040000px;}
.x2c{left:486.000000px;}
.x32{left:500.040000px;}
.x1{left:514.061640px;}
.x26{left:522.000000px;}
.x1d{left:544.500000px;}
.x2d{left:559.500000px;}
.x7{left:603.506520px;}
.x1e{left:618.000000px;}
.x27{left:624.000000px;}
.x2e{left:636.000000px;}
.x1f{left:685.500000px;}
.x28{left:688.500000px;}
.x2f{left:696.000000px;}
.x6{left:759.861720px;}
.x31{left:769.214880px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.ls1c{letter-spacing:-0.408576pt;}
.ls1d{letter-spacing:-0.370944pt;}
.ls16{letter-spacing:-0.338688pt;}
.ls25{letter-spacing:-0.321024pt;}
.ls17{letter-spacing:-0.301056pt;}
.lsd{letter-spacing:-0.284928pt;}
.ls15{letter-spacing:-0.268800pt;}
.ls24{letter-spacing:-0.243200pt;}
.ls27{letter-spacing:-0.241920pt;}
.ls19{letter-spacing:-0.231168pt;}
.ls18{letter-spacing:-0.215040pt;}
.lse{letter-spacing:-0.198912pt;}
.ls12{letter-spacing:-0.176640pt;}
.ls10{letter-spacing:-0.155904pt;}
.ls1b{letter-spacing:-0.139776pt;}
.lsc{letter-spacing:-0.135424pt;}
.lsb{letter-spacing:-0.129536pt;}
.ls1a{letter-spacing:-0.129024pt;}
.ls11{letter-spacing:-0.117760pt;}
.lsf{letter-spacing:-0.107520pt;}
.lsa{letter-spacing:-0.105984pt;}
.ls9{letter-spacing:-0.070656pt;}
.ls8{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.053248pt;}
.ls2{letter-spacing:0.053376pt;}
.ls1f{letter-spacing:0.109824pt;}
.ls20{letter-spacing:0.143616pt;}
.ls7{letter-spacing:0.173184pt;}
.ls0{letter-spacing:0.213760pt;}
.ls21{letter-spacing:0.215424pt;}
.ls1e{letter-spacing:0.253440pt;}
.ls14{letter-spacing:0.282112pt;}
.ls13{letter-spacing:0.319232pt;}
.ls5{letter-spacing:0.368640pt;}
.ls4{letter-spacing:1.579520pt;}
.ls3{letter-spacing:3.102976pt;}
.ls22{letter-spacing:3.143680pt;}
.ls29{letter-spacing:6.055680pt;}
.ls28{letter-spacing:12.009344pt;}
.ls2b{letter-spacing:14.387200pt;}
.ls2c{letter-spacing:14.388096pt;}
.ls6{letter-spacing:21.793024pt;}
.ls2a{letter-spacing:41.054720pt;}
.ls23{letter-spacing:56.522240pt;}
.ls26{letter-spacing:56.523520pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-14.649344pt;}
.ws2{word-spacing:-14.614016pt;}
.ws7{word-spacing:-13.440000pt;}
.wsf{word-spacing:-13.300224pt;}
.ws10{word-spacing:-13.284096pt;}
.ws11{word-spacing:-13.241088pt;}
.ws6{word-spacing:-13.224960pt;}
.wsa{word-spacing:-13.208832pt;}
.ws15{word-spacing:-13.198080pt;}
.ws5{word-spacing:-13.189120pt;}
.ws3{word-spacing:-13.171456pt;}
.ws13{word-spacing:-13.171200pt;}
.ws4{word-spacing:-13.155072pt;}
.ws8{word-spacing:-13.138944pt;}
.ws9{word-spacing:-13.101312pt;}
.ws14{word-spacing:-13.069056pt;}
.wse{word-spacing:-13.031424pt;}
.wsc{word-spacing:-12.160000pt;}
.wsd{word-spacing:-11.838976pt;}
.ws12{word-spacing:-0.053760pt;}
.wsb{word-spacing:0.000000pt;}
._0{margin-left:-0.904448pt;}
._1{width:0.909696pt;}
._4{width:2.042880pt;}
._7{width:3.194624pt;}
._6{width:4.170496pt;}
._1e{width:5.076224pt;}
._8{width:5.972608pt;}
._a{width:6.903552pt;}
._1c{width:8.041728pt;}
._b{width:9.139200pt;}
._5{width:10.644480pt;}
._9{width:12.203520pt;}
._14{width:14.444800pt;}
._2{width:15.607040pt;}
._3{width:16.934400pt;}
._27{width:17.902080pt;}
._17{width:19.031040pt;}
._19{width:20.217984pt;}
._24{width:21.127680pt;}
._c{width:22.301824pt;}
._d{width:23.761920pt;}
._2a{width:24.691712pt;}
._10{width:25.643520pt;}
._15{width:26.987520pt;}
._1b{width:27.955200pt;}
._20{width:29.137920pt;}
._18{width:30.051840pt;}
._26{width:31.127040pt;}
._25{width:32.363520pt;}
._16{width:33.653760pt;}
._11{width:34.840704pt;}
._1d{width:35.903488pt;}
._1a{width:37.578240pt;}
._23{width:38.599680pt;}
._2b{width:39.839744pt;}
._1f{width:41.287680pt;}
._e{width:42.201600pt;}
._f{width:43.169280pt;}
._13{width:44.782080pt;}
._31{width:46.345344pt;}
._2c{width:48.061440pt;}
._28{width:50.856960pt;}
._2d{width:52.200960pt;}
._36{width:53.222400pt;}
._12{width:54.458880pt;}
._22{width:55.480320pt;}
._2e{width:56.501760pt;}
._32{width:57.953280pt;}
._29{width:60.211200pt;}
._38{width:61.129344pt;}
._37{width:62.212992pt;}
._33{width:64.243200pt;}
._3a{width:65.372160pt;}
._21{width:78.220800pt;}
._30{width:83.596800pt;}
._2f{width:90.908160pt;}
._34{width:135.152640pt;}
._35{width:139.238400pt;}
._39{width:275.851008pt;}
.fs1{font-size:5.120000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:42.240000pt;}
.fs7{font-size:48.640000pt;}
.fs2{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:74.240000pt;}
.y3f{bottom:-13.813333pt;}
.y0{bottom:0.000000pt;}
.y3e{bottom:1.546667pt;}
.y124{bottom:3.253333pt;}
.y135{bottom:3.306667pt;}
.yf7{bottom:3.360000pt;}
.ye6{bottom:3.413333pt;}
.yc1{bottom:3.466667pt;}
.y115{bottom:3.946667pt;}
.yfe{bottom:4.000000pt;}
.yee{bottom:4.053333pt;}
.ye0{bottom:4.106667pt;}
.y133{bottom:4.586667pt;}
.y137{bottom:4.640000pt;}
.y123{bottom:18.613333pt;}
.yf6{bottom:18.720000pt;}
.ye5{bottom:18.773333pt;}
.yc0{bottom:18.826667pt;}
.y114{bottom:19.306667pt;}
.yfa{bottom:19.360000pt;}
.yed{bottom:19.413333pt;}
.ydf{bottom:19.466667pt;}
.ye3{bottom:35.413333pt;}
.ydd{bottom:36.106667pt;}
.y41{bottom:47.680000pt;}
.ye2{bottom:50.773333pt;}
.ydb{bottom:51.466667pt;}
.y6{bottom:51.840000pt;}
.y117{bottom:51.946667pt;}
.y3d{bottom:57.333333pt;}
.y128{bottom:67.253333pt;}
.yc5{bottom:68.106667pt;}
.y12f{bottom:70.560000pt;}
.y5{bottom:76.800000pt;}
.yc3{bottom:83.466667pt;}
.ycd{bottom:84.106667pt;}
.y12e{bottom:85.920000pt;}
.ycb{bottom:99.466667pt;}
.yeb{bottom:100.053333pt;}
.y158{bottom:104.960000pt;}
.ye8{bottom:106.666667pt;}
.y19c{bottom:108.160000pt;}
.y1b1{bottom:109.440000pt;}
.y169{bottom:112.320000pt;}
.y3c{bottom:114.880000pt;}
.y11e{bottom:115.253333pt;}
.ye9{bottom:115.413333pt;}
.y7b{bottom:118.080000pt;}
.y157{bottom:120.320000pt;}
.ya6{bottom:121.920000pt;}
.yf2{bottom:122.666667pt;}
.y19b{bottom:123.520000pt;}
.y1b0{bottom:124.800000pt;}
.y168{bottom:127.680000pt;}
.y3b{bottom:130.240000pt;}
.y11c{bottom:130.613333pt;}
.y7a{bottom:133.440000pt;}
.y138{bottom:135.360000pt;}
.ya5{bottom:138.240000pt;}
.yf1{bottom:138.666667pt;}
.y19a{bottom:138.880000pt;}
.y1af{bottom:140.160000pt;}
.y167{bottom:143.040000pt;}
.y156{bottom:143.680000pt;}
.y3a{bottom:145.600000pt;}
.y12d{bottom:148.000000pt;}
.y79{bottom:148.800000pt;}
.y199{bottom:154.240000pt;}
.ya4{bottom:154.560000pt;}
.yf0{bottom:154.666667pt;}
.y1ae{bottom:155.520000pt;}
.y166{bottom:158.400000pt;}
.y155{bottom:159.040000pt;}
.y78{bottom:164.160000pt;}
.y136{bottom:165.333333pt;}
.y39{bottom:168.960000pt;}
.y198{bottom:169.600000pt;}
.yef{bottom:170.666667pt;}
.ya3{bottom:170.880000pt;}
.y165{bottom:173.760000pt;}
.y154{bottom:174.400000pt;}
.y77{bottom:179.520000pt;}
.y134{bottom:181.333333pt;}
.y197{bottom:184.960000pt;}
.y1ad{bottom:186.240000pt;}
.yec{bottom:186.666667pt;}
.ya2{bottom:187.200000pt;}
.y153{bottom:189.760000pt;}
.y38{bottom:193.280000pt;}
.y76{bottom:194.880000pt;}
.y164{bottom:197.120000pt;}
.y132{bottom:197.333333pt;}
.y196{bottom:200.320000pt;}
.y1ac{bottom:201.600000pt;}
.ya1{bottom:203.520000pt;}
.y152{bottom:205.120000pt;}
.y37{bottom:206.080000pt;}
.y75{bottom:210.240000pt;}
.y163{bottom:212.480000pt;}
.y131{bottom:214.666667pt;}
.y195{bottom:215.360000pt;}
.y1ab{bottom:216.960000pt;}
.y36{bottom:218.240000pt;}
.yea{bottom:218.666667pt;}
.ya0{bottom:219.520000pt;}
.y151{bottom:220.480000pt;}
.y74{bottom:225.600000pt;}
.y162{bottom:227.840000pt;}
.y130{bottom:230.666667pt;}
.y35{bottom:230.720000pt;}
.y1aa{bottom:232.320000pt;}
.ye1{bottom:234.666667pt;}
.y9f{bottom:235.840000pt;}
.y73{bottom:240.960000pt;}
.y161{bottom:243.200000pt;}
.y34{bottom:244.160000pt;}
.y127{bottom:246.666667pt;}
.y1a9{bottom:247.360000pt;}
.ye7{bottom:250.666667pt;}
.y150{bottom:251.200000pt;}
.y9e{bottom:252.160000pt;}
.y194{bottom:254.080000pt;}
.y72{bottom:256.320000pt;}
.y160{bottom:258.560000pt;}
.y33{bottom:259.200000pt;}
.y12c{bottom:262.666667pt;}
.y1a8{bottom:262.720000pt;}
.y14f{bottom:266.560000pt;}
.ye4{bottom:266.666667pt;}
.y9d{bottom:268.480000pt;}
.y71{bottom:271.360000pt;}
.y15f{bottom:273.600000pt;}
.y32{bottom:274.560000pt;}
.y193{bottom:277.440000pt;}
.y1a7{bottom:278.080000pt;}
.y12b{bottom:278.666667pt;}
.y14e{bottom:281.600000pt;}
.y9c{bottom:284.800000pt;}
.y70{bottom:286.720000pt;}
.y15e{bottom:288.960000pt;}
.y31{bottom:289.920000pt;}
.y192{bottom:292.800000pt;}
.y1a6{bottom:293.440000pt;}
.y12a{bottom:294.666667pt;}
.y14d{bottom:296.960000pt;}
.yda{bottom:297.333333pt;}
.y6f{bottom:302.080000pt;}
.y15d{bottom:304.320000pt;}
.y30{bottom:305.280000pt;}
.y9b{bottom:308.160000pt;}
.y1a5{bottom:308.800000pt;}
.y129{bottom:310.666667pt;}
.y14c{bottom:312.320000pt;}
.yde{bottom:313.333333pt;}
.y6e{bottom:317.440000pt;}
.y15c{bottom:319.680000pt;}
.y2f{bottom:320.640000pt;}
.y9a{bottom:323.520000pt;}
.y1a4{bottom:324.160000pt;}
.y11b{bottom:326.666667pt;}
.y14b{bottom:327.680000pt;}
.y6d{bottom:332.800000pt;}
.y15b{bottom:335.040000pt;}
.y2e{bottom:336.000000pt;}
.y99{bottom:338.880000pt;}
.y1a3{bottom:339.520000pt;}
.y126{bottom:342.666667pt;}
.y14a{bottom:343.040000pt;}
.ydc{bottom:345.333333pt;}
.y6c{bottom:348.160000pt;}
.y15a{bottom:350.400000pt;}
.y2d{bottom:351.360000pt;}
.y98{bottom:354.240000pt;}
.y1a2{bottom:354.880000pt;}
.y125{bottom:358.666667pt;}
.yd3{bottom:361.333333pt;}
.y6b{bottom:363.520000pt;}
.y149{bottom:366.400000pt;}
.y2c{bottom:366.720000pt;}
.y191{bottom:369.600000pt;}
.y1a1{bottom:370.240000pt;}
.y159{bottom:373.760000pt;}
.y122{bottom:374.666667pt;}
.yd9{bottom:377.333333pt;}
.y97{bottom:377.600000pt;}
.y6a{bottom:378.880000pt;}
.y148{bottom:381.760000pt;}
.y2b{bottom:382.080000pt;}
.y190{bottom:384.960000pt;}
.y1a0{bottom:385.600000pt;}
.yd8{bottom:393.333333pt;}
.y69{bottom:394.240000pt;}
.y147{bottom:397.120000pt;}
.y2a{bottom:397.440000pt;}
.y18f{bottom:400.000000pt;}
.y96{bottom:400.960000pt;}
.y121{bottom:405.333333pt;}
.yd7{bottom:409.333333pt;}
.y68{bottom:409.600000pt;}
.y146{bottom:412.480000pt;}
.y29{bottom:412.800000pt;}
.y18e{bottom:415.360000pt;}
.y95{bottom:416.000000pt;}
.y120{bottom:421.333333pt;}
.y67{bottom:424.960000pt;}
.yd6{bottom:425.333333pt;}
.y28{bottom:427.840000pt;}
.y18d{bottom:430.720000pt;}
.y94{bottom:431.360000pt;}
.y11f{bottom:437.333333pt;}
.y66{bottom:440.000000pt;}
.yd5{bottom:441.333333pt;}
.y27{bottom:443.200000pt;}
.y18c{bottom:446.080000pt;}
.y93{bottom:446.720000pt;}
.y11d{bottom:453.333333pt;}
.y65{bottom:455.360000pt;}
.yd4{bottom:457.333333pt;}
.y145{bottom:458.240000pt;}
.y26{bottom:458.560000pt;}
.y18b{bottom:461.440000pt;}
.y19f{bottom:462.080000pt;}
.y116{bottom:469.333333pt;}
.y92{bottom:470.080000pt;}
.y64{bottom:470.720000pt;}
.yca{bottom:473.333333pt;}
.y144{bottom:473.600000pt;}
.y25{bottom:473.920000pt;}
.y19e{bottom:477.440000pt;}
.y18a{bottom:484.800000pt;}
.y11a{bottom:485.333333pt;}
.y91{bottom:485.440000pt;}
.y63{bottom:486.080000pt;}
.y143{bottom:488.960000pt;}
.y24{bottom:489.280000pt;}
.yd2{bottom:489.333333pt;}
.y19d{bottom:492.800000pt;}
.y119{bottom:501.333333pt;}
.y62{bottom:501.440000pt;}
.y142{bottom:504.320000pt;}
.y23{bottom:504.640000pt;}
.yd1{bottom:505.333333pt;}
.y189{bottom:508.160000pt;}
.y90{bottom:508.800000pt;}
.y61{bottom:516.800000pt;}
.y118{bottom:517.333333pt;}
.y141{bottom:519.680000pt;}
.y22{bottom:520.000000pt;}
.yd0{bottom:521.333333pt;}
.y188{bottom:523.520000pt;}
.y60{bottom:532.160000pt;}
.y113{bottom:533.333333pt;}
.y140{bottom:535.040000pt;}
.y21{bottom:535.360000pt;}
.ycf{bottom:537.333333pt;}
.y187{bottom:538.880000pt;}
.y5f{bottom:547.520000pt;}
.y13f{bottom:550.400000pt;}
.y20{bottom:550.720000pt;}
.yce{bottom:553.333333pt;}
.y186{bottom:554.240000pt;}
.y5e{bottom:562.880000pt;}
.y13e{bottom:565.760000pt;}
.y1f{bottom:566.080000pt;}
.y112{bottom:568.640000pt;}
.ycc{bottom:569.333333pt;}
.y185{bottom:569.600000pt;}
.y5d{bottom:578.240000pt;}
.y13d{bottom:581.120000pt;}
.y1e{bottom:581.440000pt;}
.y111{bottom:584.000000pt;}
.y184{bottom:584.960000pt;}
.yc2{bottom:585.333333pt;}
.y8f{bottom:593.600000pt;}
.y1d{bottom:596.480000pt;}
.y110{bottom:599.360000pt;}
.y183{bottom:600.000000pt;}
.yc9{bottom:601.333333pt;}
.y5c{bottom:601.600000pt;}
.y8e{bottom:608.960000pt;}
.y1c{bottom:611.840000pt;}
.y10e{bottom:612.000000pt;}
.y182{bottom:615.360000pt;}
.y5b{bottom:616.960000pt;}
.yc8{bottom:617.333333pt;}
.y8d{bottom:624.000000pt;}
.y1b{bottom:627.200000pt;}
.y10f{bottom:628.000000pt;}
.y181{bottom:630.720000pt;}
.y5a{bottom:632.000000pt;}
.yc7{bottom:633.333333pt;}
.y8c{bottom:639.360000pt;}
.y13c{bottom:642.240000pt;}
.y1a{bottom:642.560000pt;}
.y10c{bottom:644.000000pt;}
.y180{bottom:646.080000pt;}
.y59{bottom:647.360000pt;}
.yc6{bottom:649.333333pt;}
.y8b{bottom:654.720000pt;}
.y13b{bottom:657.600000pt;}
.y19{bottom:657.920000pt;}
.y10d{bottom:660.000000pt;}
.y17f{bottom:661.440000pt;}
.y58{bottom:662.720000pt;}
.yc4{bottom:665.333333pt;}
.y8a{bottom:670.080000pt;}
.y13a{bottom:672.960000pt;}
.y18{bottom:673.280000pt;}
.y10a{bottom:676.000000pt;}
.y17e{bottom:676.800000pt;}
.y57{bottom:678.080000pt;}
.ybf{bottom:681.333333pt;}
.y89{bottom:685.440000pt;}
.y139{bottom:688.320000pt;}
.y17{bottom:688.640000pt;}
.y10b{bottom:692.000000pt;}
.y17d{bottom:692.160000pt;}
.y56{bottom:693.440000pt;}
.y88{bottom:700.800000pt;}
.y16{bottom:704.000000pt;}
.y17c{bottom:707.520000pt;}
.y108{bottom:708.000000pt;}
.y55{bottom:708.800000pt;}
.y87{bottom:716.160000pt;}
.y15{bottom:719.360000pt;}
.y17b{bottom:722.880000pt;}
.y109{bottom:724.000000pt;}
.y54{bottom:724.160000pt;}
.y86{bottom:731.520000pt;}
.y14{bottom:736.640000pt;}
.y17a{bottom:738.240000pt;}
.y53{bottom:739.520000pt;}
.y106{bottom:740.000000pt;}
.y13{bottom:752.000000pt;}
.y179{bottom:753.600000pt;}
.y52{bottom:754.880000pt;}
.y107{bottom:756.000000pt;}
.ybe{bottom:766.720000pt;}
.y12{bottom:767.360000pt;}
.y178{bottom:768.640000pt;}
.y51{bottom:770.240000pt;}
.yaf{bottom:771.200000pt;}
.y105{bottom:772.000000pt;}
.y177{bottom:784.000000pt;}
.y11{bottom:784.640000pt;}
.y50{bottom:785.600000pt;}
.yae{bottom:786.240000pt;}
.y103{bottom:788.000000pt;}
.ybd{bottom:790.080000pt;}
.y176{bottom:799.360000pt;}
.y4f{bottom:800.640000pt;}
.yad{bottom:802.560000pt;}
.y104{bottom:804.000000pt;}
.y10{bottom:804.800000pt;}
.ybc{bottom:805.120000pt;}
.y175{bottom:814.720000pt;}
.yf{bottom:815.360000pt;}
.y4e{bottom:816.000000pt;}
.y101{bottom:820.000000pt;}
.ybb{bottom:820.480000pt;}
.yac{bottom:826.880000pt;}
.y174{bottom:830.080000pt;}
.y4d{bottom:831.360000pt;}
.ye{bottom:835.520000pt;}
.yba{bottom:835.840000pt;}
.y102{bottom:836.000000pt;}
.y173{bottom:845.440000pt;}
.yd{bottom:846.080000pt;}
.y85{bottom:846.720000pt;}
.yab{bottom:850.240000pt;}
.yff{bottom:852.000000pt;}
.y4c{bottom:854.720000pt;}
.yb9{bottom:859.200000pt;}
.y172{bottom:860.800000pt;}
.y84{bottom:862.080000pt;}
.yc{bottom:866.240000pt;}
.y100{bottom:868.000000pt;}
.y4b{bottom:870.080000pt;}
.yaa{bottom:873.600000pt;}
.yb8{bottom:874.560000pt;}
.y171{bottom:876.160000pt;}
.y83{bottom:877.440000pt;}
.yfc{bottom:884.000000pt;}
.yb{bottom:885.440000pt;}
.ya9{bottom:889.920000pt;}
.y170{bottom:891.520000pt;}
.y82{bottom:892.800000pt;}
.yfd{bottom:900.000000pt;}
.y4a{bottom:900.800000pt;}
.yb7{bottom:905.280000pt;}
.ya8{bottom:906.240000pt;}
.y16f{bottom:906.880000pt;}
.y81{bottom:908.160000pt;}
.ya{bottom:912.320000pt;}
.yf9{bottom:916.000000pt;}
.y49{bottom:916.160000pt;}
.yb6{bottom:920.640000pt;}
.y16e{bottom:922.240000pt;}
.ya7{bottom:922.560000pt;}
.y80{bottom:923.520000pt;}
.y48{bottom:931.520000pt;}
.yfb{bottom:932.000000pt;}
.y9{bottom:933.760000pt;}
.yb5{bottom:936.000000pt;}
.y16d{bottom:937.600000pt;}
.y7f{bottom:938.880000pt;}
.y47{bottom:946.880000pt;}
.yf8{bottom:948.000000pt;}
.yb4{bottom:951.360000pt;}
.y16c{bottom:952.640000pt;}
.y7e{bottom:954.240000pt;}
.y8{bottom:955.200000pt;}
.y46{bottom:962.240000pt;}
.yf5{bottom:964.000000pt;}
.yb3{bottom:966.720000pt;}
.y16b{bottom:968.000000pt;}
.y7d{bottom:969.600000pt;}
.y45{bottom:977.600000pt;}
.y16a{bottom:983.360000pt;}
.y7{bottom:983.680000pt;}
.y7c{bottom:984.640000pt;}
.yb2{bottom:989.760000pt;}
.y44{bottom:992.640000pt;}
.yf4{bottom:998.720000pt;}
.yb1{bottom:1006.080000pt;}
.y43{bottom:1008.000000pt;}
.y4{bottom:1008.640000pt;}
.yf3{bottom:1014.080000pt;}
.yb0{bottom:1022.400000pt;}
.y3{bottom:1022.720000pt;}
.y42{bottom:1023.360000pt;}
.y2{bottom:1035.520000pt;}
.y1{bottom:1060.800000pt;}
.y40{bottom:1064.320000pt;}
.h4{height:3.412500pt;}
.hc{height:4.000000pt;}
.h10{height:16.000000pt;}
.h13{height:17.333333pt;}
.h9{height:23.355000pt;}
.hb{height:29.328750pt;}
.he{height:32.000000pt;}
.hd{height:32.965000pt;}
.h5{height:36.435000pt;}
.ha{height:37.353750pt;}
.h6{height:39.243750pt;}
.h2{height:39.905000pt;}
.h3{height:42.751250pt;}
.h8{height:50.305000pt;}
.h7{height:50.315000pt;}
.h12{height:64.000000pt;}
.h15{height:65.333333pt;}
.h17{height:80.000000pt;}
.hf{height:96.000000pt;}
.h18{height:98.666667pt;}
.h11{height:112.000000pt;}
.h14{height:128.000000pt;}
.h16{height:144.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:6.666667pt;}
.w12{width:54.666667pt;}
.we{width:58.666667pt;}
.w6{width:61.333333pt;}
.w4{width:66.666667pt;}
.w11{width:68.000000pt;}
.w5{width:70.666667pt;}
.wc{width:81.333333pt;}
.w13{width:86.666667pt;}
.wa{width:89.333333pt;}
.wd{width:92.000000pt;}
.wf{width:93.333333pt;}
.w7{width:96.000000pt;}
.w9{width:128.000000pt;}
.w8{width:130.666667pt;}
.wb{width:134.666667pt;}
.w15{width:137.333333pt;}
.w14{width:140.000000pt;}
.w3{width:258.666667pt;}
.w10{width:277.333333pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x14{left:1.386709pt;}
.x19{left:6.666667pt;}
.x1c{left:7.786667pt;}
.x18{left:89.333333pt;}
.x5{left:96.000000pt;}
.xe{left:97.489568pt;}
.x10{left:101.763680pt;}
.x8{left:103.654944pt;}
.xc{left:106.207040pt;}
.x4{left:108.055680pt;}
.x29{left:109.841792pt;}
.x16{left:113.910816pt;}
.x9{left:115.850272pt;}
.x21{left:118.881504pt;}
.x15{left:120.000000pt;}
.xf{left:121.674496pt;}
.xd{left:141.658208pt;}
.x13{left:142.666667pt;}
.x23{left:178.666667pt;}
.x11{left:182.413408pt;}
.xb{left:190.429024pt;}
.x20{left:220.000000pt;}
.x30{left:229.333333pt;}
.xa{left:233.282560pt;}
.x24{left:248.000000pt;}
.x2{left:265.722336pt;}
.x2a{left:329.633600pt;}
.x22{left:343.721920pt;}
.x1a{left:348.000000pt;}
.x2b{left:365.333333pt;}
.x17{left:374.920000pt;}
.x25{left:382.666667pt;}
.x3{left:396.866560pt;}
.x1b{left:413.333333pt;}
.x12{left:420.480000pt;}
.x2c{left:432.000000pt;}
.x32{left:444.480000pt;}
.x1{left:456.943680pt;}
.x26{left:464.000000pt;}
.x1d{left:484.000000pt;}
.x2d{left:497.333333pt;}
.x7{left:536.450240pt;}
.x1e{left:549.333333pt;}
.x27{left:554.666667pt;}
.x2e{left:565.333333pt;}
.x1f{left:609.333333pt;}
.x28{left:612.000000pt;}
.x2f{left:618.666667pt;}
.x6{left:675.432640pt;}
.x31{left:683.746560pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  