
    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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_7f0478a84ab09e48b2a9014e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.092285;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_eaa1bfbdd094ee9c03d67d52.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.092285;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_7b59876cc664a70b7e775d45.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.035156;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;}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.m2{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:-12.240000px;}
.v3{vertical-align:-5.760000px;}
.v5{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:15.120000px;}
.v1{vertical-align:20.880000px;}
.v4{vertical-align:27.360000px;}
.ls2e{letter-spacing:-2.556000px;}
.ls33{letter-spacing:-2.448000px;}
.ls34{letter-spacing:-2.016000px;}
.ls2f{letter-spacing:-1.836000px;}
.ls9{letter-spacing:-1.692000px;}
.ls31{letter-spacing:-1.656000px;}
.ls37{letter-spacing:-1.505229px;}
.ls32{letter-spacing:-1.494000px;}
.ls35{letter-spacing:-1.452000px;}
.ls36{letter-spacing:-1.428000px;}
.ls30{letter-spacing:-0.936000px;}
.ls8{letter-spacing:-0.864000px;}
.ls3a{letter-spacing:-0.746290px;}
.ls1a{letter-spacing:-0.738000px;}
.ls39{letter-spacing:-0.732000px;}
.ls1b{letter-spacing:-0.598800px;}
.ls2d{letter-spacing:-0.576000px;}
.ls6{letter-spacing:-0.529200px;}
.ls14{letter-spacing:-0.226200px;}
.ls13{letter-spacing:-0.224519px;}
.ls2b{letter-spacing:-0.216000px;}
.ls2c{letter-spacing:-0.054000px;}
.ls1f{letter-spacing:-0.040320px;}
.ls3b{letter-spacing:-0.010800px;}
.ls1e{letter-spacing:-0.000720px;}
.ls5{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.012960px;}
.lsb{letter-spacing:0.023040px;}
.lsc{letter-spacing:0.060480px;}
.ls24{letter-spacing:0.072000px;}
.ls15{letter-spacing:0.121200px;}
.lsa{letter-spacing:0.140400px;}
.ls2a{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.149760px;}
.ls4{letter-spacing:0.150000px;}
.ls1c{letter-spacing:0.166320px;}
.ls1{letter-spacing:0.187200px;}
.ls7{letter-spacing:0.190800px;}
.ls27{letter-spacing:0.288000px;}
.lsd{letter-spacing:0.319680px;}
.ls23{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.364800px;}
.ls0{letter-spacing:0.371520px;}
.ls38{letter-spacing:1.972800px;}
.ls17{letter-spacing:2.692800px;}
.ls26{letter-spacing:3.240000px;}
.lsf{letter-spacing:4.852800px;}
.ls11{letter-spacing:6.292800px;}
.ls10{letter-spacing:6.472800px;}
.lse{letter-spacing:11.476800px;}
.ls20{letter-spacing:12.052800px;}
.ls25{letter-spacing:12.600000px;}
.ls21{letter-spacing:17.092800px;}
.ls19{letter-spacing:27.172800px;}
.ls28{letter-spacing:34.200000px;}
.ls22{letter-spacing:35.812800px;}
.ls18{letter-spacing:39.412800px;}
.ls1d{letter-spacing:45.892800px;}
.ls29{letter-spacing:849.149760px;}
.ls3{letter-spacing:856.164000px;}
.sc_{text-shadow:none;}
.sc6{text-shadow:-0.015em 0 rgb(35,31,32),0 0.015em rgb(35,31,32),0.015em 0 rgb(35,31,32),0 -0.015em  rgb(35,31,32);}
.sc5{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc3{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc2{text-shadow:-0.015em 0 rgb(242,242,242),0 0.015em rgb(242,242,242),0.015em 0 rgb(242,242,242),0 -0.015em  rgb(242,242,242);}
.sc1{text-shadow:-0.015em 0 rgb(31,73,125),0 0.015em rgb(31,73,125),0.015em 0 rgb(31,73,125),0 -0.015em  rgb(31,73,125);}
.sc4{text-shadow:-0.015em 0 rgb(15,36,62),0 0.015em rgb(15,36,62),0.015em 0 rgb(15,36,62),0 -0.015em  rgb(15,36,62);}
.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;}
.sc6{-webkit-text-stroke:0.015em rgb(35,31,32);text-shadow:none;}
.sc5{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(242,242,242);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(31,73,125);text-shadow:none;}
.sc4{-webkit-text-stroke:0.015em rgb(15,36,62);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-26.452800px;}
.ws8{word-spacing:-15.360926px;}
.wse{word-spacing:-14.595840px;}
.ws9{word-spacing:-14.572800px;}
.ws1e{word-spacing:-13.858227px;}
.wsc{word-spacing:-13.268400px;}
.wsd{word-spacing:-13.160160px;}
.wsa{word-spacing:-13.147200px;}
.ws11{word-spacing:-13.146480px;}
.ws12{word-spacing:-13.106880px;}
.wsb{word-spacing:-12.921000px;}
.ws10{word-spacing:-12.548400px;}
.wsf{word-spacing:-12.409200px;}
.ws4{word-spacing:-12.283200px;}
.ws17{word-spacing:-12.168000px;}
.ws2{word-spacing:-11.880000px;}
.ws14{word-spacing:-11.826000px;}
.ws1d{word-spacing:-11.719200px;}
.ws13{word-spacing:-11.664000px;}
.ws18{word-spacing:-10.944000px;}
.ws6{word-spacing:-10.753200px;}
.ws1{word-spacing:-10.612800px;}
.ws1a{word-spacing:-10.386000px;}
.ws19{word-spacing:-10.224000px;}
.ws5{word-spacing:-10.188000px;}
.ws16{word-spacing:-10.044000px;}
.ws1c{word-spacing:-9.864000px;}
.ws1b{word-spacing:-9.432000px;}
.ws15{word-spacing:-9.324000px;}
.ws0{word-spacing:-6.652800px;}
.ws7{word-spacing:0.000000px;}
._4{margin-left:-10.220400px;}
._27{margin-left:-6.161136px;}
._3{margin-left:-5.130720px;}
._f{margin-left:-3.419280px;}
._2{margin-left:-2.302560px;}
._1{margin-left:-1.276560px;}
._0{width:1.081488px;}
._c{width:2.294447px;}
._11{width:4.076305px;}
._8{width:5.298480px;}
._7{width:6.795360px;}
._5{width:8.061120px;}
._6{width:9.162720px;}
._10{width:10.551600px;}
._15{width:11.630064px;}
._34{width:13.297584px;}
._9{width:14.502240px;}
._a{width:15.525360px;}
._b{width:16.904880px;}
._14{width:18.161232px;}
._19{width:19.774080px;}
._1f{width:20.797152px;}
._21{width:22.165152px;}
._d{width:23.982480px;}
._e{width:25.116480px;}
._25{width:26.587392px;}
._16{width:27.808560px;}
._17{width:29.473920px;}
._28{width:31.254480px;}
._22{width:32.330160px;}
._32{width:33.334464px;}
._12{width:34.362000px;}
._1d{width:36.274320px;}
._30{width:37.926624px;}
._20{width:38.963520px;}
._1c{width:40.636800px;}
._23{width:42.244512px;}
._33{width:43.709471px;}
._1e{width:45.118800px;}
._18{width:46.822320px;}
._2f{width:49.062960px;}
._31{width:50.312112px;}
._26{width:51.871680px;}
._1b{width:53.701872px;}
._1a{width:55.196640px;}
._24{width:56.608512px;}
._2b{width:58.269600px;}
._2c{width:60.292032px;}
._2d{width:62.098224px;}
._13{width:67.170240px;}
._2e{width:86.227872px;}
._2a{width:87.433920px;}
._29{width:88.775280px;}
._36{width:207.905040px;}
._35{width:218.319443px;}
.fc7{color:rgb(0,0,255);}
.fc8{color:transparent;}
.fc5{color:rgb(15,36,62);}
.fc1{color:rgb(31,73,125);}
.fc6{color:rgb(64,64,64);}
.fc4{color:rgb(255,255,255);}
.fc3{color:rgb(242,242,242);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:5.760000px;}
.fs5{font-size:30.240000px;}
.fs3{font-size:33.120000px;}
.fsd{font-size:36.000000px;}
.fsf{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fse{font-size:50.848916px;}
.fsa{font-size:54.000000px;}
.fs1{font-size:56.920429px;}
.fs2{font-size:59.760000px;}
.fs10{font-size:62.991941px;}
.fs0{font-size:66.240000px;}
.fs8{font-size:69.822393px;}
.fsc{font-size:108.000000px;}
.fs9{font-size:120.240000px;}
.fsb{font-size:131.760000px;}
.y29{bottom:-28.440000px;}
.y3a{bottom:-25.200000px;}
.y24{bottom:-22.860000px;}
.y39{bottom:-7.560000px;}
.y10{bottom:-5.760000px;}
.y59{bottom:-2.880000px;}
.yf{bottom:-1.440000px;}
.y0{bottom:0.000000px;}
.yb{bottom:1.260000px;}
.y16{bottom:2.700000px;}
.y53{bottom:2.880000px;}
.y64{bottom:3.060000px;}
.y111{bottom:3.420000px;}
.y69{bottom:3.600000px;}
.yd{bottom:3.780000px;}
.y12a{bottom:4.140000px;}
.y61{bottom:4.500000px;}
.y22{bottom:5.760000px;}
.y116{bottom:7.380000px;}
.y13f{bottom:7.425000px;}
.y1ad{bottom:7.560000px;}
.y1c0{bottom:7.590000px;}
.y3c{bottom:7.920000px;}
.y28{bottom:8.820000px;}
.y123{bottom:9.360000px;}
.y1c{bottom:9.540000px;}
.y40{bottom:10.650000px;}
.y1b8{bottom:10.800000px;}
.y2b{bottom:10.980000px;}
.y126{bottom:11.700000px;}
.y1d{bottom:12.060000px;}
.y11d{bottom:12.240000px;}
.y112{bottom:12.285000px;}
.y3e{bottom:12.600000px;}
.y4c{bottom:15.660000px;}
.y12c{bottom:15.840000px;}
.y12b{bottom:16.065000px;}
.y57{bottom:16.740000px;}
.y15{bottom:16.920000px;}
.y4e{bottom:18.360000px;}
.y67{bottom:20.160000px;}
.y13c{bottom:20.880000px;}
.y11c{bottom:21.060000px;}
.y110{bottom:21.105000px;}
.y1af{bottom:23.400000px;}
.y38{bottom:25.380000px;}
.y5{bottom:29.700000px;}
.y56{bottom:30.780000px;}
.y52{bottom:30.960000px;}
.y4b{bottom:31.500000px;}
.y1bc{bottom:32.220000px;}
.y66{bottom:32.400000px;}
.y1ac{bottom:32.430000px;}
.y14{bottom:34.020000px;}
.y147{bottom:38.700000px;}
.y1b3{bottom:39.240000px;}
.y10e{bottom:39.285000px;}
.y3{bottom:39.456000px;}
.y114{bottom:39.780000px;}
.y27{bottom:40.500000px;}
.y21{bottom:41.040000px;}
.y37{bottom:41.220000px;}
.y55{bottom:44.820000px;}
.y51{bottom:45.000000px;}
.y4a{bottom:47.340000px;}
.y1bb{bottom:48.060000px;}
.y1ab{bottom:48.270000px;}
.y1b6{bottom:54.900000px;}
.y1b2{bottom:55.080000px;}
.y36{bottom:57.060000px;}
.y11a{bottom:58.320000px;}
.y5f{bottom:58.860000px;}
.y9{bottom:62.280000px;}
.y49{bottom:63.180000px;}
.y1ba{bottom:63.900000px;}
.y1aa{bottom:64.110000px;}
.y1b1{bottom:70.920000px;}
.y26{bottom:72.180000px;}
.y35{bottom:72.900000px;}
.yff{bottom:75.636000px;}
.y20{bottom:76.140000px;}
.y185{bottom:76.356000px;}
.y48{bottom:79.020000px;}
.y8{bottom:79.740000px;}
.yce{bottom:83.916000px;}
.y5e{bottom:87.165000px;}
.y34{bottom:88.740000px;}
.y65{bottom:90.216000px;}
.y15d{bottom:90.756000px;}
.y9c{bottom:92.916000px;}
.y47{bottom:94.680000px;}
.yfe{bottom:95.976000px;}
.y184{bottom:96.516000px;}
.y7{bottom:97.380000px;}
.y132{bottom:98.496000px;}
.ycd{bottom:104.076000px;}
.y33{bottom:104.580000px;}
.y1d2{bottom:109.476000px;}
.y46{bottom:110.520000px;}
.y15c{bottom:110.916000px;}
.y9b{bottom:113.076000px;}
.yfd{bottom:116.136000px;}
.y183{bottom:116.856000px;}
.y131{bottom:118.656000px;}
.y32{bottom:120.420000px;}
.ycc{bottom:124.416000px;}
.y45{bottom:126.360000px;}
.y1d1{bottom:129.636000px;}
.y15b{bottom:131.256000px;}
.y9a{bottom:133.416000px;}
.y31{bottom:136.260000px;}
.yfc{bottom:136.296000px;}
.y182{bottom:137.016000px;}
.y130{bottom:138.996000px;}
.y44{bottom:142.200000px;}
.ycb{bottom:144.576000px;}
.y15a{bottom:151.410000px;}
.y30{bottom:152.100000px;}
.y1d0{bottom:152.310000px;}
.y99{bottom:153.570000px;}
.y63{bottom:153.930000px;}
.yfb{bottom:156.630000px;}
.y181{bottom:157.170000px;}
.y43{bottom:158.040000px;}
.y1a8{bottom:158.790000px;}
.y12f{bottom:159.150000px;}
.yca{bottom:164.730000px;}
.y2f{bottom:167.940000px;}
.y159{bottom:171.570000px;}
.y1cf{bottom:172.650000px;}
.y42{bottom:173.880000px;}
.yfa{bottom:176.790000px;}
.y180{bottom:177.510000px;}
.y98{bottom:178.230000px;}
.y1a7{bottom:179.130000px;}
.y62{bottom:179.310000px;}
.y2e{bottom:183.780000px;}
.yc9{bottom:185.070000px;}
.y60{bottom:187.770000px;}
.y158{bottom:191.910000px;}
.y1ce{bottom:192.810000px;}
.yf9{bottom:196.950000px;}
.y17f{bottom:197.670000px;}
.y97{bottom:198.570000px;}
.y1a6{bottom:199.290000px;}
.y12e{bottom:199.650000px;}
.y2d{bottom:199.665000px;}
.y5d{bottom:203.610000px;}
.yc8{bottom:205.230000px;}
.y157{bottom:212.070000px;}
.y1cd{bottom:212.970000px;}
.yf8{bottom:217.290000px;}
.y17e{bottom:217.830000px;}
.y96{bottom:218.730000px;}
.y1a5{bottom:219.450000px;}
.y12d{bottom:219.810000px;}
.yc7{bottom:225.570000px;}
.y156{bottom:232.410000px;}
.y1cc{bottom:233.310000px;}
.y17d{bottom:238.170000px;}
.y95{bottom:239.070000px;}
.y1a4{bottom:239.790000px;}
.yf7{bottom:241.950000px;}
.y129{bottom:243.750000px;}
.yc6{bottom:245.730000px;}
.y155{bottom:252.570000px;}
.y1cb{bottom:253.470000px;}
.y17c{bottom:258.330000px;}
.y94{bottom:259.230000px;}
.y1a3{bottom:259.950000px;}
.yf6{bottom:262.110000px;}
.yc5{bottom:265.890000px;}
.y154{bottom:272.730000px;}
.y1ca{bottom:278.130000px;}
.y93{bottom:279.390000px;}
.y1a2{bottom:280.110000px;}
.yf5{bottom:282.450000px;}
.yc4{bottom:286.230000px;}
.y17b{bottom:287.535000px;}
.y153{bottom:293.115000px;}
.y1c9{bottom:298.515000px;}
.y92{bottom:299.775000px;}
.y1a1{bottom:300.495000px;}
.y4f{bottom:302.115000px;}
.yf4{bottom:302.655000px;}
.yc3{bottom:306.435000px;}
.y17a{bottom:307.875000px;}
.y152{bottom:313.275000px;}
.y5c{bottom:316.155000px;}
.y1c8{bottom:318.675000px;}
.y4d{bottom:319.395000px;}
.y91{bottom:319.935000px;}
.y1a0{bottom:320.655000px;}
.yf3{bottom:322.815000px;}
.yc2{bottom:326.595000px;}
.y179{bottom:328.035000px;}
.y124{bottom:329.655000px;}
.y151{bottom:333.435000px;}
.y1c7{bottom:339.015000px;}
.y90{bottom:340.095000px;}
.y19f{bottom:340.815000px;}
.yf2{bottom:343.155000px;}
.y5b{bottom:344.235000px;}
.yc1{bottom:346.935000px;}
.y178{bottom:348.195000px;}
.y41{bottom:350.535000px;}
.y5a{bottom:352.695000px;}
.y150{bottom:353.775000px;}
.y1c6{bottom:359.175000px;}
.y19e{bottom:361.155000px;}
.yf1{bottom:363.315000px;}
.y128{bottom:363.675000px;}
.y8f{bottom:364.935000px;}
.yc0{bottom:367.095000px;}
.y177{bottom:368.535000px;}
.y14f{bottom:373.935000px;}
.y1c5{bottom:379.335000px;}
.y19d{bottom:381.315000px;}
.yf0{bottom:383.475000px;}
.y8e{bottom:385.095000px;}
.ybf{bottom:387.255000px;}
.y176{bottom:388.695000px;}
.y14e{bottom:394.095000px;}
.y58{bottom:394.995000px;}
.y127{bottom:397.695000px;}
.y1c4{bottom:399.675000px;}
.y19c{bottom:401.475000px;}
.y54{bottom:403.455000px;}
.yef{bottom:403.815000px;}
.y8d{bottom:405.255000px;}
.ybe{bottom:407.595000px;}
.y175{bottom:408.855000px;}
.y14d{bottom:414.435000px;}
.y1c3{bottom:419.835000px;}
.y19b{bottom:421.815000px;}
.yee{bottom:423.975000px;}
.y8c{bottom:425.595000px;}
.ybd{bottom:427.755000px;}
.y174{bottom:429.195000px;}
.y125{bottom:431.715000px;}
.y14c{bottom:443.595000px;}
.yed{bottom:444.315000px;}
.y8b{bottom:445.755000px;}
.y1c2{bottom:446.655000px;}
.ybc{bottom:447.915000px;}
.y173{bottom:449.355000px;}
.y19a{bottom:450.975000px;}
.y50{bottom:459.615000px;}
.y14b{bottom:463.755000px;}
.yec{bottom:464.475000px;}
.y8a{bottom:465.915000px;}
.y119{bottom:466.635000px;}
.ybb{bottom:468.255000px;}
.y199{bottom:471.315000px;}
.y172{bottom:478.515000px;}
.y1c1{bottom:480.315000px;}
.y14a{bottom:484.095000px;}
.yeb{bottom:484.635000px;}
.y89{bottom:486.255000px;}
.yba{bottom:488.415000px;}
.y198{bottom:491.475000px;}
.y122{bottom:496.335000px;}
.y171{bottom:498.855000px;}
.yea{bottom:504.975000px;}
.y88{bottom:506.415000px;}
.y149{bottom:507.315000px;}
.yb9{bottom:508.575000px;}
.y197{bottom:511.635000px;}
.y170{bottom:519.015000px;}
.y148{bottom:523.875000px;}
.ye9{bottom:525.135000px;}
.y121{bottom:526.035000px;}
.yb8{bottom:528.915000px;}
.y87{bottom:531.075000px;}
.y196{bottom:531.975000px;}
.y3f{bottom:537.195000px;}
.y16f{bottom:539.355000px;}
.y1bf{bottom:541.335000px;}
.ye8{bottom:545.295000px;}
.yb7{bottom:549.105000px;}
.y86{bottom:551.445000px;}
.y195{bottom:552.165000px;}
.y120{bottom:555.945000px;}
.y146{bottom:559.005000px;}
.y16e{bottom:559.545000px;}
.ye7{bottom:565.665000px;}
.y3d{bottom:569.085000px;}
.yb6{bottom:569.265000px;}
.y1be{bottom:570.705000px;}
.y85{bottom:571.605000px;}
.y194{bottom:572.325000px;}
.y16d{bottom:579.705000px;}
.y11f{bottom:585.645000px;}
.yb5{bottom:589.605000px;}
.ye6{bottom:590.325000px;}
.y84{bottom:591.765000px;}
.y193{bottom:592.665000px;}
.y3b{bottom:595.905000px;}
.y16c{bottom:600.045000px;}
.yb4{bottom:609.765000px;}
.ye5{bottom:610.485000px;}
.y145{bottom:611.745000px;}
.y83{bottom:612.105000px;}
.y192{bottom:612.825000px;}
.y11e{bottom:615.525000px;}
.y2c{bottom:616.605000px;}
.y16b{bottom:620.205000px;}
.yb3{bottom:630.105000px;}
.ye4{bottom:630.825000px;}
.y82{bottom:632.265000px;}
.y191{bottom:632.985000px;}
.y16a{bottom:640.365000px;}
.y11b{bottom:645.225000px;}
.y144{bottom:647.025000px;}
.ye3{bottom:650.985000px;}
.y1df{bottom:652.245000px;}
.y81{bottom:652.605000px;}
.y190{bottom:653.325000px;}
.yb2{bottom:656.925000px;}
.y169{bottom:660.705000px;}
.y1bd{bottom:663.405000px;}
.y1de{bottom:669.705000px;}
.y80{bottom:672.765000px;}
.y18f{bottom:673.485000px;}
.ye2{bottom:677.985000px;}
.y168{bottom:680.865000px;}
.y113{bottom:681.225000px;}
.y143{bottom:682.125000px;}
.y1dd{bottom:689.865000px;}
.y7f{bottom:692.925000px;}
.y18e{bottom:693.645000px;}
.yb1{bottom:701.025000px;}
.y118{bottom:706.605000px;}
.y1b9{bottom:708.585000px;}
.y1dc{bottom:710.025000px;}
.y7e{bottom:713.265000px;}
.y18d{bottom:713.985000px;}
.y142{bottom:717.405000px;}
.ye1{bottom:717.585000px;}
.yb0{bottom:721.365000px;}
.y1db{bottom:730.365000px;}
.y117{bottom:732.165000px;}
.y7d{bottom:733.425000px;}
.y18c{bottom:734.145000px;}
.ye0{bottom:737.745000px;}
.yaf{bottom:741.525000px;}
.y1da{bottom:750.525000px;}
.y141{bottom:752.505000px;}
.y7c{bottom:753.585000px;}
.y18b{bottom:754.305000px;}
.y115{bottom:757.725000px;}
.ydf{bottom:758.085000px;}
.yae{bottom:761.685000px;}
.y19{bottom:770.145000px;}
.y1d9{bottom:770.685000px;}
.y7b{bottom:773.925000px;}
.y18a{bottom:774.645000px;}
.y140{bottom:778.065000px;}
.yde{bottom:778.245000px;}
.y167{bottom:782.025000px;}
.y10d{bottom:784.005000px;}
.yad{bottom:786.525000px;}
.y1d8{bottom:791.025000px;}
.y18{bottom:791.565000px;}
.y1b7{bottom:794.265000px;}
.y189{bottom:794.805000px;}
.ydd{bottom:798.405000px;}
.y7a{bottom:798.585000px;}
.y10f{bottom:802.185000px;}
.y13e{bottom:803.445000px;}
.y17{bottom:803.805000px;}
.yac{bottom:806.685000px;}
.y1d7{bottom:811.230000px;}
.y13{bottom:813.750000px;}
.y188{bottom:815.190000px;}
.y1b5{bottom:817.890000px;}
.y79{bottom:818.790000px;}
.y166{bottom:822.390000px;}
.yab{bottom:826.890000px;}
.y2a{bottom:828.870000px;}
.y13d{bottom:829.050000px;}
.y1d6{bottom:831.390000px;}
.y187{bottom:835.350000px;}
.ydc{bottom:838.950000px;}
.y78{bottom:839.130000px;}
.y165{bottom:842.730000px;}
.y10c{bottom:846.150000px;}
.yaa{bottom:847.230000px;}
.y1d5{bottom:851.730000px;}
.y13b{bottom:855.330000px;}
.y186{bottom:855.510000px;}
.y12{bottom:856.050000px;}
.ydb{bottom:859.110000px;}
.y77{bottom:859.290000px;}
.y25{bottom:861.450000px;}
.y164{bottom:862.890000px;}
.y10b{bottom:863.790000px;}
.y11{bottom:864.510000px;}
.ya9{bottom:867.390000px;}
.y1d4{bottom:871.890000px;}
.y76{bottom:879.450000px;}
.ye{bottom:882.510000px;}
.y163{bottom:883.230000px;}
.ya8{bottom:887.730000px;}
.yc{bottom:890.970000px;}
.y13a{bottom:891.150000px;}
.y1d3{bottom:892.230000px;}
.y10a{bottom:892.950000px;}
.y1b4{bottom:894.570000px;}
.yda{bottom:899.610000px;}
.y75{bottom:899.790000px;}
.ya7{bottom:907.890000px;}
.ya{bottom:908.970000px;}
.y162{bottom:912.390000px;}
.y109{bottom:913.110000px;}
.y139{bottom:915.990000px;}
.yd9{bottom:919.770000px;}
.y74{bottom:919.950000px;}
.y1b0{bottom:923.910000px;}
.y6{bottom:924.450000px;}
.ya6{bottom:928.050000px;}
.y161{bottom:932.550000px;}
.y108{bottom:933.270000px;}
.yd8{bottom:940.110000px;}
.y138{bottom:940.650000px;}
.y73{bottom:944.610000px;}
.ya5{bottom:948.390000px;}
.y160{bottom:952.890000px;}
.y107{bottom:953.610000px;}
.y23{bottom:959.370000px;}
.yd7{bottom:960.270000px;}
.y72{bottom:964.950000px;}
.y137{bottom:965.490000px;}
.y1f{bottom:967.830000px;}
.ya4{bottom:968.550000px;}
.y15f{bottom:973.050000px;}
.y106{bottom:973.770000px;}
.yd6{bottom:980.430000px;}
.y71{bottom:985.110000px;}
.ya3{bottom:988.710000px;}
.y136{bottom:990.150000px;}
.y15e{bottom:993.210000px;}
.y105{bottom:993.930000px;}
.yd5{bottom:1000.770000px;}
.y70{bottom:1005.450000px;}
.ya2{bottom:1013.550000px;}
.y104{bottom:1014.270000px;}
.y135{bottom:1014.990000px;}
.y1ae{bottom:1016.610000px;}
.yd4{bottom:1020.930000px;}
.y6f{bottom:1025.610000px;}
.ya1{bottom:1033.710000px;}
.y103{bottom:1034.430000px;}
.y4{bottom:1036.050000px;}
.yd3{bottom:1041.090000px;}
.y6e{bottom:1045.770000px;}
.y134{bottom:1047.570000px;}
.y1a9{bottom:1052.790000px;}
.ya0{bottom:1053.870000px;}
.y102{bottom:1054.590000px;}
.y133{bottom:1065.210000px;}
.yd2{bottom:1065.930000px;}
.y6d{bottom:1066.110000px;}
.y9f{bottom:1074.240000px;}
.y1e{bottom:1074.780000px;}
.y101{bottom:1074.960000px;}
.y6c{bottom:1086.300000px;}
.yd1{bottom:1090.620000px;}
.y1b{bottom:1093.680000px;}
.y9e{bottom:1094.400000px;}
.y100{bottom:1095.120000px;}
.y6b{bottom:1113.120000px;}
.y9d{bottom:1114.560000px;}
.yd0{bottom:1115.460000px;}
.y1a{bottom:1128.240000px;}
.y6a{bottom:1133.280000px;}
.y2{bottom:1134.000000px;}
.ycf{bottom:1134.180000px;}
.y68{bottom:1150.560000px;}
.y1{bottom:1154.160000px;}
.hf{height:5.020313px;}
.ha{height:8.460000px;}
.h26{height:14.040000px;}
.h8{height:15.480000px;}
.h28{height:15.840000px;}
.h30{height:17.460000px;}
.h9{height:18.000000px;}
.h2b{height:19.260000px;}
.h1b{height:20.700000px;}
.h48{height:23.616000px;}
.h3d{height:23.940000px;}
.h3e{height:24.120000px;}
.h29{height:25.380000px;}
.h32{height:25.560000px;}
.h40{height:25.596000px;}
.h1c{height:26.820000px;}
.h25{height:28.080000px;}
.h46{height:29.340000px;}
.h4b{height:29.376000px;}
.h35{height:29.700000px;}
.hd{height:29.805117px;}
.h36{height:29.880000px;}
.h37{height:29.916000px;}
.h1f{height:31.140000px;}
.h1d{height:31.896000px;}
.h18{height:32.580000px;}
.h39{height:34.020000px;}
.h10{height:34.200000px;}
.h3f{height:35.100000px;}
.h42{height:35.136000px;}
.h34{height:35.280000px;}
.h2f{height:35.316000px;}
.h20{height:35.806641px;}
.h44{height:36.180000px;}
.hb{height:36.397266px;}
.he{height:42.045117px;}
.hc{height:42.300000px;}
.h3c{height:42.480000px;}
.h3b{height:42.696000px;}
.h22{height:44.319002px;}
.h4a{height:45.180000px;}
.h1a{height:47.065430px;}
.h3{height:49.610823px;}
.h6{height:52.085742px;}
.h41{height:52.740000px;}
.h2e{height:53.496000px;}
.h24{height:53.716641px;}
.h2d{height:54.902644px;}
.h23{height:56.160000px;}
.h21{height:56.331000px;}
.h4{height:57.733594px;}
.h11{height:60.855943px;}
.h4c{height:61.020000px;}
.h2a{height:63.720000px;}
.h2{height:65.884219px;}
.h2c{height:67.824844px;}
.h47{height:76.680000px;}
.h43{height:76.896000px;}
.h3a{height:85.176000px;}
.h49{height:85.680000px;}
.h45{height:92.700000px;}
.h5{height:93.456000px;}
.h17{height:94.130859px;}
.h16{height:97.920000px;}
.h27{height:98.496000px;}
.h13{height:99.039023px;}
.h31{height:101.880000px;}
.h14{height:104.616000px;}
.h12{height:104.799023px;}
.h7{height:111.600000px;}
.h15{height:114.839648px;}
.h38{height:136.080000px;}
.h1e{height:186.660000px;}
.h19{height:212.250000px;}
.h33{height:213.870000px;}
.h1{height:1191.000000px;}
.h0{height:1191.060000px;}
.w5{width:23.760000px;}
.w17{width:36.720000px;}
.w1b{width:38.880000px;}
.w15{width:43.020000px;}
.w19{width:43.200000px;}
.w16{width:46.296000px;}
.w1a{width:46.476000px;}
.w18{width:47.160000px;}
.w10{width:55.296000px;}
.w20{width:63.576000px;}
.w21{width:63.720000px;}
.w22{width:63.900000px;}
.wb{width:64.260000px;}
.w13{width:83.880000px;}
.w12{width:89.316000px;}
.w14{width:89.676000px;}
.w1c{width:91.620000px;}
.w11{width:130.500000px;}
.w1e{width:153.900000px;}
.wa{width:158.610000px;}
.w4{width:191.370000px;}
.w1f{width:202.170000px;}
.w3{width:215.130000px;}
.w7{width:221.115000px;}
.w9{width:222.870000px;}
.we{width:223.410000px;}
.w1d{width:239.475000px;}
.wd{width:276.375000px;}
.w6{width:374.295000px;}
.w23{width:393.375000px;}
.wf{width:552.885000px;}
.wc{width:553.065000px;}
.w8{width:595.410000px;}
.w2{width:914.219986px;}
.w0{width:914.220000px;}
.w1{width:914.250000px;}
.x0{left:0.000000px;}
.x7{left:2.160000px;}
.x35{left:4.140000px;}
.xe{left:8.100000px;}
.x2c{left:9.180000px;}
.x24{left:10.260000px;}
.x22{left:12.780000px;}
.x2e{left:14.220000px;}
.x27{left:16.380000px;}
.x2d{left:17.460000px;}
.x2f{left:18.945000px;}
.xa{left:20.160000px;}
.x9{left:21.600000px;}
.x11{left:24.525000px;}
.x25{left:27.720000px;}
.x1f{left:28.800000px;}
.x4{left:31.860000px;}
.x15{left:42.480000px;}
.x31{left:51.840000px;}
.x32{left:60.120000px;}
.x1{left:63.719986px;}
.x14{left:67.500000px;}
.x51{left:74.519986px;}
.x59{left:90.575986px;}
.x6{left:107.496000px;}
.x5a{left:126.935986px;}
.x17{left:138.105000px;}
.xf{left:149.265000px;}
.x20{left:165.269986px;}
.x5{left:167.790000px;}
.x42{left:174.809986px;}
.x13{left:179.850000px;}
.xb{left:189.390000px;}
.x5c{left:203.249986px;}
.x53{left:216.209986px;}
.x54{left:221.969986px;}
.x8{left:223.230000px;}
.x55{left:238.169986px;}
.x33{left:244.650000px;}
.xc{left:255.089986px;}
.x57{left:261.749986px;}
.xd{left:263.550000px;}
.x1c{left:265.890000px;}
.x12{left:276.329986px;}
.x30{left:281.955000px;}
.x18{left:300.494986px;}
.x34{left:308.235000px;}
.x52{left:311.474986px;}
.x56{left:325.514986px;}
.x36{left:371.955000px;}
.x5b{left:398.414986px;}
.x58{left:432.974986px;}
.x19{left:478.544986px;}
.x40{left:484.664986px;}
.x41{left:492.944986px;}
.x1a{left:499.784986px;}
.x44{left:510.584986px;}
.x2b{left:517.425000px;}
.x64{left:526.604986px;}
.x1d{left:544.800000px;}
.x63{left:565.844986px;}
.x6a{left:577.004986px;}
.x6d{left:579.884986px;}
.x16{left:595.545000px;}
.x69{left:596.984986px;}
.x4b{left:598.784986px;}
.x6b{left:600.404986px;}
.x21{left:609.045000px;}
.x65{left:613.544986px;}
.x5f{left:622.904986px;}
.x2{left:634.964986px;}
.x10{left:637.845000px;}
.x43{left:639.104986px;}
.x48{left:641.444986px;}
.x1b{left:646.844986px;}
.x49{left:649.544986px;}
.x28{left:652.065000px;}
.x4a{left:657.464986px;}
.x4e{left:663.089986px;}
.x4f{left:668.849986px;}
.x5e{left:674.249986px;}
.x50{left:684.869986px;}
.x23{left:698.370000px;}
.x62{left:726.809986px;}
.x29{left:735.090000px;}
.x5d{left:741.569986px;}
.x60{left:751.649986px;}
.x61{left:761.189986px;}
.x47{left:763.169986px;}
.x39{left:764.789986px;}
.x46{left:771.449986px;}
.x3a{left:773.069986px;}
.x3e{left:775.409986px;}
.x45{left:778.469986px;}
.x26{left:782.250000px;}
.x3f{left:783.689986px;}
.x6e{left:785.669986px;}
.x6f{left:795.209986px;}
.x37{left:806.729986px;}
.x4c{left:808.529986px;}
.x6c{left:809.969986px;}
.x70{left:811.409986px;}
.x38{left:815.009986px;}
.x1e{left:818.790000px;}
.x3d{left:821.309986px;}
.x4d{left:823.829986px;}
.x2a{left:825.450000px;}
.x3b{left:829.589986px;}
.x66{left:835.169986px;}
.x3c{left:838.049986px;}
.x67{left:841.289986px;}
.x68{left:849.389986px;}
.x3{left:871.739986px;}
@media print{
.v2{vertical-align:-10.880000pt;}
.v3{vertical-align:-5.120000pt;}
.v5{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:13.440000pt;}
.v1{vertical-align:18.560000pt;}
.v4{vertical-align:24.320000pt;}
.ls2e{letter-spacing:-2.272000pt;}
.ls33{letter-spacing:-2.176000pt;}
.ls34{letter-spacing:-1.792000pt;}
.ls2f{letter-spacing:-1.632000pt;}
.ls9{letter-spacing:-1.504000pt;}
.ls31{letter-spacing:-1.472000pt;}
.ls37{letter-spacing:-1.337981pt;}
.ls32{letter-spacing:-1.328000pt;}
.ls35{letter-spacing:-1.290667pt;}
.ls36{letter-spacing:-1.269333pt;}
.ls30{letter-spacing:-0.832000pt;}
.ls8{letter-spacing:-0.768000pt;}
.ls3a{letter-spacing:-0.663369pt;}
.ls1a{letter-spacing:-0.656000pt;}
.ls39{letter-spacing:-0.650667pt;}
.ls1b{letter-spacing:-0.532267pt;}
.ls2d{letter-spacing:-0.512000pt;}
.ls6{letter-spacing:-0.470400pt;}
.ls14{letter-spacing:-0.201067pt;}
.ls13{letter-spacing:-0.199573pt;}
.ls2b{letter-spacing:-0.192000pt;}
.ls2c{letter-spacing:-0.048000pt;}
.ls1f{letter-spacing:-0.035840pt;}
.ls3b{letter-spacing:-0.009600pt;}
.ls1e{letter-spacing:-0.000640pt;}
.ls5{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.011520pt;}
.lsb{letter-spacing:0.020480pt;}
.lsc{letter-spacing:0.053760pt;}
.ls24{letter-spacing:0.064000pt;}
.ls15{letter-spacing:0.107733pt;}
.lsa{letter-spacing:0.124800pt;}
.ls2a{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.133120pt;}
.ls4{letter-spacing:0.133333pt;}
.ls1c{letter-spacing:0.147840pt;}
.ls1{letter-spacing:0.166400pt;}
.ls7{letter-spacing:0.169600pt;}
.ls27{letter-spacing:0.256000pt;}
.lsd{letter-spacing:0.284160pt;}
.ls23{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.324267pt;}
.ls0{letter-spacing:0.330240pt;}
.ls38{letter-spacing:1.753600pt;}
.ls17{letter-spacing:2.393600pt;}
.ls26{letter-spacing:2.880000pt;}
.lsf{letter-spacing:4.313600pt;}
.ls11{letter-spacing:5.593600pt;}
.ls10{letter-spacing:5.753600pt;}
.lse{letter-spacing:10.201600pt;}
.ls20{letter-spacing:10.713600pt;}
.ls25{letter-spacing:11.200000pt;}
.ls21{letter-spacing:15.193600pt;}
.ls19{letter-spacing:24.153600pt;}
.ls28{letter-spacing:30.400000pt;}
.ls22{letter-spacing:31.833600pt;}
.ls18{letter-spacing:35.033600pt;}
.ls1d{letter-spacing:40.793600pt;}
.ls29{letter-spacing:754.799787pt;}
.ls3{letter-spacing:761.034667pt;}
.ws3{word-spacing:-23.513600pt;}
.ws8{word-spacing:-13.654157pt;}
.wse{word-spacing:-12.974080pt;}
.ws9{word-spacing:-12.953600pt;}
.ws1e{word-spacing:-12.318424pt;}
.wsc{word-spacing:-11.794133pt;}
.wsd{word-spacing:-11.697920pt;}
.wsa{word-spacing:-11.686400pt;}
.ws11{word-spacing:-11.685760pt;}
.ws12{word-spacing:-11.650560pt;}
.wsb{word-spacing:-11.485333pt;}
.ws10{word-spacing:-11.154133pt;}
.wsf{word-spacing:-11.030400pt;}
.ws4{word-spacing:-10.918400pt;}
.ws17{word-spacing:-10.816000pt;}
.ws2{word-spacing:-10.560000pt;}
.ws14{word-spacing:-10.512000pt;}
.ws1d{word-spacing:-10.417067pt;}
.ws13{word-spacing:-10.368000pt;}
.ws18{word-spacing:-9.728000pt;}
.ws6{word-spacing:-9.558400pt;}
.ws1{word-spacing:-9.433600pt;}
.ws1a{word-spacing:-9.232000pt;}
.ws19{word-spacing:-9.088000pt;}
.ws5{word-spacing:-9.056000pt;}
.ws16{word-spacing:-8.928000pt;}
.ws1c{word-spacing:-8.768000pt;}
.ws1b{word-spacing:-8.384000pt;}
.ws15{word-spacing:-8.288000pt;}
.ws0{word-spacing:-5.913600pt;}
.ws7{word-spacing:0.000000pt;}
._4{margin-left:-9.084800pt;}
._27{margin-left:-5.476566pt;}
._3{margin-left:-4.560640pt;}
._f{margin-left:-3.039360pt;}
._2{margin-left:-2.046720pt;}
._1{margin-left:-1.134720pt;}
._0{width:0.961323pt;}
._c{width:2.039509pt;}
._11{width:3.623382pt;}
._8{width:4.709760pt;}
._7{width:6.040320pt;}
._5{width:7.165440pt;}
._6{width:8.144640pt;}
._10{width:9.379200pt;}
._15{width:10.337834pt;}
._34{width:11.820074pt;}
._9{width:12.890880pt;}
._a{width:13.800320pt;}
._b{width:15.026560pt;}
._14{width:16.143317pt;}
._19{width:17.576960pt;}
._1f{width:18.486357pt;}
._21{width:19.702357pt;}
._d{width:21.317760pt;}
._e{width:22.325760pt;}
._25{width:23.633237pt;}
._16{width:24.718720pt;}
._17{width:26.199040pt;}
._28{width:27.781760pt;}
._22{width:28.737920pt;}
._32{width:29.630634pt;}
._12{width:30.544000pt;}
._1d{width:32.243840pt;}
._30{width:33.712554pt;}
._20{width:34.634240pt;}
._1c{width:36.121600pt;}
._23{width:37.550677pt;}
._33{width:38.852863pt;}
._1e{width:40.105600pt;}
._18{width:41.619840pt;}
._2f{width:43.611520pt;}
._31{width:44.721877pt;}
._26{width:46.108160pt;}
._1b{width:47.734997pt;}
._1a{width:49.063680pt;}
._24{width:50.318677pt;}
._2b{width:51.795200pt;}
._2c{width:53.592917pt;}
._2d{width:55.198421pt;}
._13{width:59.706880pt;}
._2e{width:76.646997pt;}
._2a{width:77.719040pt;}
._29{width:78.911360pt;}
._36{width:184.804480pt;}
._35{width:194.061727pt;}
.fs7{font-size:5.120000pt;}
.fs5{font-size:26.880000pt;}
.fs3{font-size:29.440000pt;}
.fsd{font-size:32.000000pt;}
.fsf{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fse{font-size:45.199037pt;}
.fsa{font-size:48.000000pt;}
.fs1{font-size:50.595937pt;}
.fs2{font-size:53.120000pt;}
.fs10{font-size:55.992837pt;}
.fs0{font-size:58.880000pt;}
.fs8{font-size:62.064349pt;}
.fsc{font-size:96.000000pt;}
.fs9{font-size:106.880000pt;}
.fsb{font-size:117.120000pt;}
.y29{bottom:-25.280000pt;}
.y3a{bottom:-22.400000pt;}
.y24{bottom:-20.320000pt;}
.y39{bottom:-6.720000pt;}
.y10{bottom:-5.120000pt;}
.y59{bottom:-2.560000pt;}
.yf{bottom:-1.280000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:1.120000pt;}
.y16{bottom:2.400000pt;}
.y53{bottom:2.560000pt;}
.y64{bottom:2.720000pt;}
.y111{bottom:3.040000pt;}
.y69{bottom:3.200000pt;}
.yd{bottom:3.360000pt;}
.y12a{bottom:3.680000pt;}
.y61{bottom:4.000000pt;}
.y22{bottom:5.120000pt;}
.y116{bottom:6.560000pt;}
.y13f{bottom:6.600000pt;}
.y1ad{bottom:6.720000pt;}
.y1c0{bottom:6.746667pt;}
.y3c{bottom:7.040000pt;}
.y28{bottom:7.840000pt;}
.y123{bottom:8.320000pt;}
.y1c{bottom:8.480000pt;}
.y40{bottom:9.466667pt;}
.y1b8{bottom:9.600000pt;}
.y2b{bottom:9.760000pt;}
.y126{bottom:10.400000pt;}
.y1d{bottom:10.720000pt;}
.y11d{bottom:10.880000pt;}
.y112{bottom:10.920000pt;}
.y3e{bottom:11.200000pt;}
.y4c{bottom:13.920000pt;}
.y12c{bottom:14.080000pt;}
.y12b{bottom:14.280000pt;}
.y57{bottom:14.880000pt;}
.y15{bottom:15.040000pt;}
.y4e{bottom:16.320000pt;}
.y67{bottom:17.920000pt;}
.y13c{bottom:18.560000pt;}
.y11c{bottom:18.720000pt;}
.y110{bottom:18.760000pt;}
.y1af{bottom:20.800000pt;}
.y38{bottom:22.560000pt;}
.y5{bottom:26.400000pt;}
.y56{bottom:27.360000pt;}
.y52{bottom:27.520000pt;}
.y4b{bottom:28.000000pt;}
.y1bc{bottom:28.640000pt;}
.y66{bottom:28.800000pt;}
.y1ac{bottom:28.826667pt;}
.y14{bottom:30.240000pt;}
.y147{bottom:34.400000pt;}
.y1b3{bottom:34.880000pt;}
.y10e{bottom:34.920000pt;}
.y3{bottom:35.072000pt;}
.y114{bottom:35.360000pt;}
.y27{bottom:36.000000pt;}
.y21{bottom:36.480000pt;}
.y37{bottom:36.640000pt;}
.y55{bottom:39.840000pt;}
.y51{bottom:40.000000pt;}
.y4a{bottom:42.080000pt;}
.y1bb{bottom:42.720000pt;}
.y1ab{bottom:42.906667pt;}
.y1b6{bottom:48.800000pt;}
.y1b2{bottom:48.960000pt;}
.y36{bottom:50.720000pt;}
.y11a{bottom:51.840000pt;}
.y5f{bottom:52.320000pt;}
.y9{bottom:55.360000pt;}
.y49{bottom:56.160000pt;}
.y1ba{bottom:56.800000pt;}
.y1aa{bottom:56.986667pt;}
.y1b1{bottom:63.040000pt;}
.y26{bottom:64.160000pt;}
.y35{bottom:64.800000pt;}
.yff{bottom:67.232000pt;}
.y20{bottom:67.680000pt;}
.y185{bottom:67.872000pt;}
.y48{bottom:70.240000pt;}
.y8{bottom:70.880000pt;}
.yce{bottom:74.592000pt;}
.y5e{bottom:77.480000pt;}
.y34{bottom:78.880000pt;}
.y65{bottom:80.192000pt;}
.y15d{bottom:80.672000pt;}
.y9c{bottom:82.592000pt;}
.y47{bottom:84.160000pt;}
.yfe{bottom:85.312000pt;}
.y184{bottom:85.792000pt;}
.y7{bottom:86.560000pt;}
.y132{bottom:87.552000pt;}
.ycd{bottom:92.512000pt;}
.y33{bottom:92.960000pt;}
.y1d2{bottom:97.312000pt;}
.y46{bottom:98.240000pt;}
.y15c{bottom:98.592000pt;}
.y9b{bottom:100.512000pt;}
.yfd{bottom:103.232000pt;}
.y183{bottom:103.872000pt;}
.y131{bottom:105.472000pt;}
.y32{bottom:107.040000pt;}
.ycc{bottom:110.592000pt;}
.y45{bottom:112.320000pt;}
.y1d1{bottom:115.232000pt;}
.y15b{bottom:116.672000pt;}
.y9a{bottom:118.592000pt;}
.y31{bottom:121.120000pt;}
.yfc{bottom:121.152000pt;}
.y182{bottom:121.792000pt;}
.y130{bottom:123.552000pt;}
.y44{bottom:126.400000pt;}
.ycb{bottom:128.512000pt;}
.y15a{bottom:134.586667pt;}
.y30{bottom:135.200000pt;}
.y1d0{bottom:135.386667pt;}
.y99{bottom:136.506667pt;}
.y63{bottom:136.826667pt;}
.yfb{bottom:139.226667pt;}
.y181{bottom:139.706667pt;}
.y43{bottom:140.480000pt;}
.y1a8{bottom:141.146667pt;}
.y12f{bottom:141.466667pt;}
.yca{bottom:146.426667pt;}
.y2f{bottom:149.280000pt;}
.y159{bottom:152.506667pt;}
.y1cf{bottom:153.466667pt;}
.y42{bottom:154.560000pt;}
.yfa{bottom:157.146667pt;}
.y180{bottom:157.786667pt;}
.y98{bottom:158.426667pt;}
.y1a7{bottom:159.226667pt;}
.y62{bottom:159.386667pt;}
.y2e{bottom:163.360000pt;}
.yc9{bottom:164.506667pt;}
.y60{bottom:166.906667pt;}
.y158{bottom:170.586667pt;}
.y1ce{bottom:171.386667pt;}
.yf9{bottom:175.066667pt;}
.y17f{bottom:175.706667pt;}
.y97{bottom:176.506667pt;}
.y1a6{bottom:177.146667pt;}
.y12e{bottom:177.466667pt;}
.y2d{bottom:177.480000pt;}
.y5d{bottom:180.986667pt;}
.yc8{bottom:182.426667pt;}
.y157{bottom:188.506667pt;}
.y1cd{bottom:189.306667pt;}
.yf8{bottom:193.146667pt;}
.y17e{bottom:193.626667pt;}
.y96{bottom:194.426667pt;}
.y1a5{bottom:195.066667pt;}
.y12d{bottom:195.386667pt;}
.yc7{bottom:200.506667pt;}
.y156{bottom:206.586667pt;}
.y1cc{bottom:207.386667pt;}
.y17d{bottom:211.706667pt;}
.y95{bottom:212.506667pt;}
.y1a4{bottom:213.146667pt;}
.yf7{bottom:215.066667pt;}
.y129{bottom:216.666667pt;}
.yc6{bottom:218.426667pt;}
.y155{bottom:224.506667pt;}
.y1cb{bottom:225.306667pt;}
.y17c{bottom:229.626667pt;}
.y94{bottom:230.426667pt;}
.y1a3{bottom:231.066667pt;}
.yf6{bottom:232.986667pt;}
.yc5{bottom:236.346667pt;}
.y154{bottom:242.426667pt;}
.y1ca{bottom:247.226667pt;}
.y93{bottom:248.346667pt;}
.y1a2{bottom:248.986667pt;}
.yf5{bottom:251.066667pt;}
.yc4{bottom:254.426667pt;}
.y17b{bottom:255.586667pt;}
.y153{bottom:260.546667pt;}
.y1c9{bottom:265.346667pt;}
.y92{bottom:266.466667pt;}
.y1a1{bottom:267.106667pt;}
.y4f{bottom:268.546667pt;}
.yf4{bottom:269.026667pt;}
.yc3{bottom:272.386667pt;}
.y17a{bottom:273.666667pt;}
.y152{bottom:278.466667pt;}
.y5c{bottom:281.026667pt;}
.y1c8{bottom:283.266667pt;}
.y4d{bottom:283.906667pt;}
.y91{bottom:284.386667pt;}
.y1a0{bottom:285.026667pt;}
.yf3{bottom:286.946667pt;}
.yc2{bottom:290.306667pt;}
.y179{bottom:291.586667pt;}
.y124{bottom:293.026667pt;}
.y151{bottom:296.386667pt;}
.y1c7{bottom:301.346667pt;}
.y90{bottom:302.306667pt;}
.y19f{bottom:302.946667pt;}
.yf2{bottom:305.026667pt;}
.y5b{bottom:305.986667pt;}
.yc1{bottom:308.386667pt;}
.y178{bottom:309.506667pt;}
.y41{bottom:311.586667pt;}
.y5a{bottom:313.506667pt;}
.y150{bottom:314.466667pt;}
.y1c6{bottom:319.266667pt;}
.y19e{bottom:321.026667pt;}
.yf1{bottom:322.946667pt;}
.y128{bottom:323.266667pt;}
.y8f{bottom:324.386667pt;}
.yc0{bottom:326.306667pt;}
.y177{bottom:327.586667pt;}
.y14f{bottom:332.386667pt;}
.y1c5{bottom:337.186667pt;}
.y19d{bottom:338.946667pt;}
.yf0{bottom:340.866667pt;}
.y8e{bottom:342.306667pt;}
.ybf{bottom:344.226667pt;}
.y176{bottom:345.506667pt;}
.y14e{bottom:350.306667pt;}
.y58{bottom:351.106667pt;}
.y127{bottom:353.506667pt;}
.y1c4{bottom:355.266667pt;}
.y19c{bottom:356.866667pt;}
.y54{bottom:358.626667pt;}
.yef{bottom:358.946667pt;}
.y8d{bottom:360.226667pt;}
.ybe{bottom:362.306667pt;}
.y175{bottom:363.426667pt;}
.y14d{bottom:368.386667pt;}
.y1c3{bottom:373.186667pt;}
.y19b{bottom:374.946667pt;}
.yee{bottom:376.866667pt;}
.y8c{bottom:378.306667pt;}
.ybd{bottom:380.226667pt;}
.y174{bottom:381.506667pt;}
.y125{bottom:383.746667pt;}
.y14c{bottom:394.306667pt;}
.yed{bottom:394.946667pt;}
.y8b{bottom:396.226667pt;}
.y1c2{bottom:397.026667pt;}
.ybc{bottom:398.146667pt;}
.y173{bottom:399.426667pt;}
.y19a{bottom:400.866667pt;}
.y50{bottom:408.546667pt;}
.y14b{bottom:412.226667pt;}
.yec{bottom:412.866667pt;}
.y8a{bottom:414.146667pt;}
.y119{bottom:414.786667pt;}
.ybb{bottom:416.226667pt;}
.y199{bottom:418.946667pt;}
.y172{bottom:425.346667pt;}
.y1c1{bottom:426.946667pt;}
.y14a{bottom:430.306667pt;}
.yeb{bottom:430.786667pt;}
.y89{bottom:432.226667pt;}
.yba{bottom:434.146667pt;}
.y198{bottom:436.866667pt;}
.y122{bottom:441.186667pt;}
.y171{bottom:443.426667pt;}
.yea{bottom:448.866667pt;}
.y88{bottom:450.146667pt;}
.y149{bottom:450.946667pt;}
.yb9{bottom:452.066667pt;}
.y197{bottom:454.786667pt;}
.y170{bottom:461.346667pt;}
.y148{bottom:465.666667pt;}
.ye9{bottom:466.786667pt;}
.y121{bottom:467.586667pt;}
.yb8{bottom:470.146667pt;}
.y87{bottom:472.066667pt;}
.y196{bottom:472.866667pt;}
.y3f{bottom:477.506667pt;}
.y16f{bottom:479.426667pt;}
.y1bf{bottom:481.186667pt;}
.ye8{bottom:484.706667pt;}
.yb7{bottom:488.093333pt;}
.y86{bottom:490.173333pt;}
.y195{bottom:490.813333pt;}
.y120{bottom:494.173333pt;}
.y146{bottom:496.893333pt;}
.y16e{bottom:497.373333pt;}
.ye7{bottom:502.813333pt;}
.y3d{bottom:505.853333pt;}
.yb6{bottom:506.013333pt;}
.y1be{bottom:507.293333pt;}
.y85{bottom:508.093333pt;}
.y194{bottom:508.733333pt;}
.y16d{bottom:515.293333pt;}
.y11f{bottom:520.573333pt;}
.yb5{bottom:524.093333pt;}
.ye6{bottom:524.733333pt;}
.y84{bottom:526.013333pt;}
.y193{bottom:526.813333pt;}
.y3b{bottom:529.693333pt;}
.y16c{bottom:533.373333pt;}
.yb4{bottom:542.013333pt;}
.ye5{bottom:542.653333pt;}
.y145{bottom:543.773333pt;}
.y83{bottom:544.093333pt;}
.y192{bottom:544.733333pt;}
.y11e{bottom:547.133333pt;}
.y2c{bottom:548.093333pt;}
.y16b{bottom:551.293333pt;}
.yb3{bottom:560.093333pt;}
.ye4{bottom:560.733333pt;}
.y82{bottom:562.013333pt;}
.y191{bottom:562.653333pt;}
.y16a{bottom:569.213333pt;}
.y11b{bottom:573.533333pt;}
.y144{bottom:575.133333pt;}
.ye3{bottom:578.653333pt;}
.y1df{bottom:579.773333pt;}
.y81{bottom:580.093333pt;}
.y190{bottom:580.733333pt;}
.yb2{bottom:583.933333pt;}
.y169{bottom:587.293333pt;}
.y1bd{bottom:589.693333pt;}
.y1de{bottom:595.293333pt;}
.y80{bottom:598.013333pt;}
.y18f{bottom:598.653333pt;}
.ye2{bottom:602.653333pt;}
.y168{bottom:605.213333pt;}
.y113{bottom:605.533333pt;}
.y143{bottom:606.333333pt;}
.y1dd{bottom:613.213333pt;}
.y7f{bottom:615.933333pt;}
.y18e{bottom:616.573333pt;}
.yb1{bottom:623.133333pt;}
.y118{bottom:628.093333pt;}
.y1b9{bottom:629.853333pt;}
.y1dc{bottom:631.133333pt;}
.y7e{bottom:634.013333pt;}
.y18d{bottom:634.653333pt;}
.y142{bottom:637.693333pt;}
.ye1{bottom:637.853333pt;}
.yb0{bottom:641.213333pt;}
.y1db{bottom:649.213333pt;}
.y117{bottom:650.813333pt;}
.y7d{bottom:651.933333pt;}
.y18c{bottom:652.573333pt;}
.ye0{bottom:655.773333pt;}
.yaf{bottom:659.133333pt;}
.y1da{bottom:667.133333pt;}
.y141{bottom:668.893333pt;}
.y7c{bottom:669.853333pt;}
.y18b{bottom:670.493333pt;}
.y115{bottom:673.533333pt;}
.ydf{bottom:673.853333pt;}
.yae{bottom:677.053333pt;}
.y19{bottom:684.573333pt;}
.y1d9{bottom:685.053333pt;}
.y7b{bottom:687.933333pt;}
.y18a{bottom:688.573333pt;}
.y140{bottom:691.613333pt;}
.yde{bottom:691.773333pt;}
.y167{bottom:695.133333pt;}
.y10d{bottom:696.893333pt;}
.yad{bottom:699.133333pt;}
.y1d8{bottom:703.133333pt;}
.y18{bottom:703.613333pt;}
.y1b7{bottom:706.013333pt;}
.y189{bottom:706.493333pt;}
.ydd{bottom:709.693333pt;}
.y7a{bottom:709.853333pt;}
.y10f{bottom:713.053333pt;}
.y13e{bottom:714.173333pt;}
.y17{bottom:714.493333pt;}
.yac{bottom:717.053333pt;}
.y1d7{bottom:721.093333pt;}
.y13{bottom:723.333333pt;}
.y188{bottom:724.613333pt;}
.y1b5{bottom:727.013333pt;}
.y79{bottom:727.813333pt;}
.y166{bottom:731.013333pt;}
.yab{bottom:735.013333pt;}
.y2a{bottom:736.773333pt;}
.y13d{bottom:736.933333pt;}
.y1d6{bottom:739.013333pt;}
.y187{bottom:742.533333pt;}
.ydc{bottom:745.733333pt;}
.y78{bottom:745.893333pt;}
.y165{bottom:749.093333pt;}
.y10c{bottom:752.133333pt;}
.yaa{bottom:753.093333pt;}
.y1d5{bottom:757.093333pt;}
.y13b{bottom:760.293333pt;}
.y186{bottom:760.453333pt;}
.y12{bottom:760.933333pt;}
.ydb{bottom:763.653333pt;}
.y77{bottom:763.813333pt;}
.y25{bottom:765.733333pt;}
.y164{bottom:767.013333pt;}
.y10b{bottom:767.813333pt;}
.y11{bottom:768.453333pt;}
.ya9{bottom:771.013333pt;}
.y1d4{bottom:775.013333pt;}
.y76{bottom:781.733333pt;}
.ye{bottom:784.453333pt;}
.y163{bottom:785.093333pt;}
.ya8{bottom:789.093333pt;}
.yc{bottom:791.973333pt;}
.y13a{bottom:792.133333pt;}
.y1d3{bottom:793.093333pt;}
.y10a{bottom:793.733333pt;}
.y1b4{bottom:795.173333pt;}
.yda{bottom:799.653333pt;}
.y75{bottom:799.813333pt;}
.ya7{bottom:807.013333pt;}
.ya{bottom:807.973333pt;}
.y162{bottom:811.013333pt;}
.y109{bottom:811.653333pt;}
.y139{bottom:814.213333pt;}
.yd9{bottom:817.573333pt;}
.y74{bottom:817.733333pt;}
.y1b0{bottom:821.253333pt;}
.y6{bottom:821.733333pt;}
.ya6{bottom:824.933333pt;}
.y161{bottom:828.933333pt;}
.y108{bottom:829.573333pt;}
.yd8{bottom:835.653333pt;}
.y138{bottom:836.133333pt;}
.y73{bottom:839.653333pt;}
.ya5{bottom:843.013333pt;}
.y160{bottom:847.013333pt;}
.y107{bottom:847.653333pt;}
.y23{bottom:852.773333pt;}
.yd7{bottom:853.573333pt;}
.y72{bottom:857.733333pt;}
.y137{bottom:858.213333pt;}
.y1f{bottom:860.293333pt;}
.ya4{bottom:860.933333pt;}
.y15f{bottom:864.933333pt;}
.y106{bottom:865.573333pt;}
.yd6{bottom:871.493333pt;}
.y71{bottom:875.653333pt;}
.ya3{bottom:878.853333pt;}
.y136{bottom:880.133333pt;}
.y15e{bottom:882.853333pt;}
.y105{bottom:883.493333pt;}
.yd5{bottom:889.573333pt;}
.y70{bottom:893.733333pt;}
.ya2{bottom:900.933333pt;}
.y104{bottom:901.573333pt;}
.y135{bottom:902.213333pt;}
.y1ae{bottom:903.653333pt;}
.yd4{bottom:907.493333pt;}
.y6f{bottom:911.653333pt;}
.ya1{bottom:918.853333pt;}
.y103{bottom:919.493333pt;}
.y4{bottom:920.933333pt;}
.yd3{bottom:925.413333pt;}
.y6e{bottom:929.573333pt;}
.y134{bottom:931.173333pt;}
.y1a9{bottom:935.813333pt;}
.ya0{bottom:936.773333pt;}
.y102{bottom:937.413333pt;}
.y133{bottom:946.853333pt;}
.yd2{bottom:947.493333pt;}
.y6d{bottom:947.653333pt;}
.y9f{bottom:954.880000pt;}
.y1e{bottom:955.360000pt;}
.y101{bottom:955.520000pt;}
.y6c{bottom:965.600000pt;}
.yd1{bottom:969.440000pt;}
.y1b{bottom:972.160000pt;}
.y9e{bottom:972.800000pt;}
.y100{bottom:973.440000pt;}
.y6b{bottom:989.440000pt;}
.y9d{bottom:990.720000pt;}
.yd0{bottom:991.520000pt;}
.y1a{bottom:1002.880000pt;}
.y6a{bottom:1007.360000pt;}
.y2{bottom:1008.000000pt;}
.ycf{bottom:1008.160000pt;}
.y68{bottom:1022.720000pt;}
.y1{bottom:1025.920000pt;}
.hf{height:4.462500pt;}
.ha{height:7.520000pt;}
.h26{height:12.480000pt;}
.h8{height:13.760000pt;}
.h28{height:14.080000pt;}
.h30{height:15.520000pt;}
.h9{height:16.000000pt;}
.h2b{height:17.120000pt;}
.h1b{height:18.400000pt;}
.h48{height:20.992000pt;}
.h3d{height:21.280000pt;}
.h3e{height:21.440000pt;}
.h29{height:22.560000pt;}
.h32{height:22.720000pt;}
.h40{height:22.752000pt;}
.h1c{height:23.840000pt;}
.h25{height:24.960000pt;}
.h46{height:26.080000pt;}
.h4b{height:26.112000pt;}
.h35{height:26.400000pt;}
.hd{height:26.493437pt;}
.h36{height:26.560000pt;}
.h37{height:26.592000pt;}
.h1f{height:27.680000pt;}
.h1d{height:28.352000pt;}
.h18{height:28.960000pt;}
.h39{height:30.240000pt;}
.h10{height:30.400000pt;}
.h3f{height:31.200000pt;}
.h42{height:31.232000pt;}
.h34{height:31.360000pt;}
.h2f{height:31.392000pt;}
.h20{height:31.828125pt;}
.h44{height:32.160000pt;}
.hb{height:32.353125pt;}
.he{height:37.373437pt;}
.hc{height:37.600000pt;}
.h3c{height:37.760000pt;}
.h3b{height:37.952000pt;}
.h22{height:39.394668pt;}
.h4a{height:40.160000pt;}
.h1a{height:41.835938pt;}
.h3{height:44.098509pt;}
.h6{height:46.298437pt;}
.h41{height:46.880000pt;}
.h2e{height:47.552000pt;}
.h24{height:47.748125pt;}
.h2d{height:48.802350pt;}
.h23{height:49.920000pt;}
.h21{height:50.072000pt;}
.h4{height:51.318750pt;}
.h11{height:54.094171pt;}
.h4c{height:54.240000pt;}
.h2a{height:56.640000pt;}
.h2{height:58.563750pt;}
.h2c{height:60.288750pt;}
.h47{height:68.160000pt;}
.h43{height:68.352000pt;}
.h3a{height:75.712000pt;}
.h49{height:76.160000pt;}
.h45{height:82.400000pt;}
.h5{height:83.072000pt;}
.h17{height:83.671875pt;}
.h16{height:87.040000pt;}
.h27{height:87.552000pt;}
.h13{height:88.034688pt;}
.h31{height:90.560000pt;}
.h14{height:92.992000pt;}
.h12{height:93.154687pt;}
.h7{height:99.200000pt;}
.h15{height:102.079687pt;}
.h38{height:120.960000pt;}
.h1e{height:165.920000pt;}
.h19{height:188.666667pt;}
.h33{height:190.106667pt;}
.h1{height:1058.666667pt;}
.h0{height:1058.720000pt;}
.w5{width:21.120000pt;}
.w17{width:32.640000pt;}
.w1b{width:34.560000pt;}
.w15{width:38.240000pt;}
.w19{width:38.400000pt;}
.w16{width:41.152000pt;}
.w1a{width:41.312000pt;}
.w18{width:41.920000pt;}
.w10{width:49.152000pt;}
.w20{width:56.512000pt;}
.w21{width:56.640000pt;}
.w22{width:56.800000pt;}
.wb{width:57.120000pt;}
.w13{width:74.560000pt;}
.w12{width:79.392000pt;}
.w14{width:79.712000pt;}
.w1c{width:81.440000pt;}
.w11{width:116.000000pt;}
.w1e{width:136.800000pt;}
.wa{width:140.986667pt;}
.w4{width:170.106667pt;}
.w1f{width:179.706667pt;}
.w3{width:191.226667pt;}
.w7{width:196.546667pt;}
.w9{width:198.106667pt;}
.we{width:198.586667pt;}
.w1d{width:212.866667pt;}
.wd{width:245.666667pt;}
.w6{width:332.706667pt;}
.w23{width:349.666667pt;}
.wf{width:491.453333pt;}
.wc{width:491.613333pt;}
.w8{width:529.253333pt;}
.w2{width:812.639988pt;}
.w0{width:812.640000pt;}
.w1{width:812.666667pt;}
.x0{left:0.000000pt;}
.x7{left:1.920000pt;}
.x35{left:3.680000pt;}
.xe{left:7.200000pt;}
.x2c{left:8.160000pt;}
.x24{left:9.120000pt;}
.x22{left:11.360000pt;}
.x2e{left:12.640000pt;}
.x27{left:14.560000pt;}
.x2d{left:15.520000pt;}
.x2f{left:16.840000pt;}
.xa{left:17.920000pt;}
.x9{left:19.200000pt;}
.x11{left:21.800000pt;}
.x25{left:24.640000pt;}
.x1f{left:25.600000pt;}
.x4{left:28.320000pt;}
.x15{left:37.760000pt;}
.x31{left:46.080000pt;}
.x32{left:53.440000pt;}
.x1{left:56.639988pt;}
.x14{left:60.000000pt;}
.x51{left:66.239988pt;}
.x59{left:80.511988pt;}
.x6{left:95.552000pt;}
.x5a{left:112.831988pt;}
.x17{left:122.760000pt;}
.xf{left:132.680000pt;}
.x20{left:146.906655pt;}
.x5{left:149.146667pt;}
.x42{left:155.386655pt;}
.x13{left:159.866667pt;}
.xb{left:168.346667pt;}
.x5c{left:180.666655pt;}
.x53{left:192.186655pt;}
.x54{left:197.306655pt;}
.x8{left:198.426667pt;}
.x55{left:211.706655pt;}
.x33{left:217.466667pt;}
.xc{left:226.746655pt;}
.x57{left:232.666655pt;}
.xd{left:234.266667pt;}
.x1c{left:236.346667pt;}
.x12{left:245.626655pt;}
.x30{left:250.626667pt;}
.x18{left:267.106655pt;}
.x34{left:273.986667pt;}
.x52{left:276.866655pt;}
.x56{left:289.346655pt;}
.x36{left:330.626667pt;}
.x5b{left:354.146655pt;}
.x58{left:384.866655pt;}
.x19{left:425.373321pt;}
.x40{left:430.813321pt;}
.x41{left:438.173321pt;}
.x1a{left:444.253321pt;}
.x44{left:453.853321pt;}
.x2b{left:459.933333pt;}
.x64{left:468.093321pt;}
.x1d{left:484.266667pt;}
.x63{left:502.973321pt;}
.x6a{left:512.893321pt;}
.x6d{left:515.453321pt;}
.x16{left:529.373333pt;}
.x69{left:530.653321pt;}
.x4b{left:532.253321pt;}
.x6b{left:533.693321pt;}
.x21{left:541.373333pt;}
.x65{left:545.373321pt;}
.x5f{left:553.693321pt;}
.x2{left:564.413321pt;}
.x10{left:566.973333pt;}
.x43{left:568.093321pt;}
.x48{left:570.173321pt;}
.x1b{left:574.973321pt;}
.x49{left:577.373321pt;}
.x28{left:579.613333pt;}
.x4a{left:584.413321pt;}
.x4e{left:589.413321pt;}
.x4f{left:594.533321pt;}
.x5e{left:599.333321pt;}
.x50{left:608.773321pt;}
.x23{left:620.773333pt;}
.x62{left:646.053321pt;}
.x29{left:653.413333pt;}
.x5d{left:659.173321pt;}
.x60{left:668.133321pt;}
.x61{left:676.613321pt;}
.x47{left:678.373321pt;}
.x39{left:679.813321pt;}
.x46{left:685.733321pt;}
.x3a{left:687.173321pt;}
.x3e{left:689.253321pt;}
.x45{left:691.973321pt;}
.x26{left:695.333333pt;}
.x3f{left:696.613321pt;}
.x6e{left:698.373321pt;}
.x6f{left:706.853321pt;}
.x37{left:717.093321pt;}
.x4c{left:718.693321pt;}
.x6c{left:719.973321pt;}
.x70{left:721.253321pt;}
.x38{left:724.453321pt;}
.x1e{left:727.813333pt;}
.x3d{left:730.053321pt;}
.x4d{left:732.293321pt;}
.x2a{left:733.733333pt;}
.x3b{left:737.413321pt;}
.x66{left:742.373321pt;}
.x3c{left:744.933321pt;}
.x67{left:747.813321pt;}
.x68{left:755.013321pt;}
.x3{left:774.879988pt;}
}




    .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; }
  