
    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_e2b9348ca1c7db2e09cce42c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.068848;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_74f0ff1b74e2a5ec48d76ac2.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112305;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_2469b76bb9e51790df36f2f6.woff2')format("woff");}.ff3{font-family:ff3;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:22.500000px;}
.ls3{letter-spacing:84.023438px;}
.ls2{letter-spacing:126.000000px;}
.ls4{letter-spacing:139.500000px;}
.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;}
}
.wsb{word-spacing:-59.999999px;}
.ws3d{word-spacing:-40.605468px;}
.ws3{word-spacing:-36.000000px;}
.ws37{word-spacing:-30.045623px;}
.ws2c{word-spacing:-30.045608px;}
.ws2d{word-spacing:-30.045573px;}
.ws55{word-spacing:-30.043039px;}
.ws38{word-spacing:-30.037800px;}
.ws6c{word-spacing:-30.037778px;}
.ws17{word-spacing:-30.023435px;}
.ws13{word-spacing:-22.605503px;}
.ws56{word-spacing:-22.605492px;}
.ws2{word-spacing:-22.605491px;}
.ws39{word-spacing:-22.605482px;}
.ws3a{word-spacing:-22.605481px;}
.ws4{word-spacing:-22.605480px;}
.ws11{word-spacing:-22.605471px;}
.ws16{word-spacing:-22.605470px;}
.wsa{word-spacing:-22.605468px;}
.ws49{word-spacing:-22.605467px;}
.ws14{word-spacing:-22.605466px;}
.ws3f{word-spacing:-22.605458px;}
.ws20{word-spacing:-22.605457px;}
.ws57{word-spacing:-22.605447px;}
.ws43{word-spacing:-21.045570px;}
.ws65{word-spacing:-21.045547px;}
.ws58{word-spacing:-21.037791px;}
.ws62{word-spacing:-21.037787px;}
.ws5f{word-spacing:-21.023433px;}
.ws51{word-spacing:-19.524062px;}
.ws2f{word-spacing:-18.105503px;}
.ws53{word-spacing:-18.105492px;}
.ws35{word-spacing:-18.105491px;}
.wsd{word-spacing:-18.105480px;}
.ws5c{word-spacing:-18.105471px;}
.ws7{word-spacing:-18.105469px;}
.ws4e{word-spacing:-18.105468px;}
.ws25{word-spacing:-18.105458px;}
.ws23{word-spacing:-18.105447px;}
.ws0{word-spacing:-18.000023px;}
.ws82{word-spacing:-18.000014px;}
.ws1{word-spacing:-18.000012px;}
.ws15{word-spacing:-18.000003px;}
.ws12{word-spacing:-18.000000px;}
.ws7c{word-spacing:-17.999997px;}
.ws7d{word-spacing:-17.999989px;}
.ws61{word-spacing:-13.605503px;}
.ws19{word-spacing:-13.605492px;}
.ws6{word-spacing:-13.605481px;}
.ws4a{word-spacing:-13.605480px;}
.ws50{word-spacing:-13.605471px;}
.ws21{word-spacing:-13.605470px;}
.ws9{word-spacing:-13.605468px;}
.ws22{word-spacing:-13.605458px;}
.ws54{word-spacing:-13.605446px;}
.ws71{word-spacing:-13.500034px;}
.ws26{word-spacing:-13.500023px;}
.ws27{word-spacing:-13.500011px;}
.ws24{word-spacing:-9.105502px;}
.ws30{word-spacing:-9.105491px;}
.ws31{word-spacing:-9.105481px;}
.ws1c{word-spacing:-9.105479px;}
.ws32{word-spacing:-9.105470px;}
.wsc{word-spacing:-9.105469px;}
.ws69{word-spacing:-9.105468px;}
.ws52{word-spacing:-9.105458px;}
.ws1f{word-spacing:-9.105446px;}
.ws67{word-spacing:-9.105435px;}
.ws28{word-spacing:-9.000023px;}
.ws2a{word-spacing:-8.999999px;}
.ws2b{word-spacing:-8.999989px;}
.ws44{word-spacing:-4.605502px;}
.wsf{word-spacing:-4.605491px;}
.ws6d{word-spacing:-4.605482px;}
.ws18{word-spacing:-4.605480px;}
.ws64{word-spacing:-4.605470px;}
.ws1d{word-spacing:-4.605468px;}
.ws47{word-spacing:-4.605457px;}
.ws3e{word-spacing:-4.605446px;}
.ws83{word-spacing:-4.500023px;}
.ws10{word-spacing:-4.500000px;}
.ws42{word-spacing:-0.105503px;}
.ws4d{word-spacing:-0.105492px;}
.ws1e{word-spacing:-0.105480px;}
.ws59{word-spacing:-0.105470px;}
.ws1b{word-spacing:-0.105468px;}
.ws5e{word-spacing:-0.105466px;}
.ws68{word-spacing:-0.105458px;}
.ws48{word-spacing:-0.105457px;}
.ws6b{word-spacing:-0.105446px;}
.ws29{word-spacing:-0.000023px;}
.ws6e{word-spacing:-0.000012px;}
.ws5{word-spacing:0.000000px;}
.ws2e{word-spacing:4.394495px;}
.ws6a{word-spacing:4.394497px;}
.ws5d{word-spacing:4.394509px;}
.ws46{word-spacing:4.394519px;}
.ws8{word-spacing:4.394520px;}
.ws3b{word-spacing:4.394531px;}
.ws5b{word-spacing:4.394543px;}
.ws63{word-spacing:4.394554px;}
.ws66{word-spacing:8.894498px;}
.ws5a{word-spacing:8.894509px;}
.ws34{word-spacing:8.894519px;}
.ws4b{word-spacing:8.894520px;}
.ws1a{word-spacing:8.894530px;}
.ws40{word-spacing:8.894532px;}
.ws77{word-spacing:8.999977px;}
.ws33{word-spacing:13.394508px;}
.ws4c{word-spacing:13.394520px;}
.ws41{word-spacing:13.394531px;}
.wse{word-spacing:13.394543px;}
.ws3c{word-spacing:17.894532px;}
.ws4f{word-spacing:22.394520px;}
.ws60{word-spacing:22.394531px;}
.ws72{word-spacing:22.499966px;}
.ws45{word-spacing:26.894508px;}
.ws36{word-spacing:31.394532px;}
.ws74{word-spacing:85.394532px;}
.ws75{word-spacing:94.394533px;}
.ws73{word-spacing:94.500000px;}
.ws7f{word-spacing:98.894532px;}
.ws76{word-spacing:98.999999px;}
.ws81{word-spacing:103.394532px;}
.ws7e{word-spacing:103.500000px;}
.ws80{word-spacing:112.499965px;}
.ws7b{word-spacing:157.394532px;}
.ws79{word-spacing:157.394533px;}
.ws7a{word-spacing:161.999988px;}
.ws70{word-spacing:314.894532px;}
.ws6f{word-spacing:323.999988px;}
.ws84{word-spacing:490.394508px;}
.ws78{word-spacing:540.000000px;}
._28{margin-left:-11.501253px;}
._29{margin-left:-10.404962px;}
._2{margin-left:-9.281240px;}
._4{margin-left:-7.980439px;}
._1{margin-left:-6.609373px;}
._0{margin-left:-5.343750px;}
._2a{margin-left:-4.324219px;}
._f{margin-left:-3.199183px;}
._3{margin-left:-1.300779px;}
._25{width:2.671901px;}
._8{width:17.999986px;}
._20{width:22.500091px;}
._6{width:27.000001px;}
._5{width:31.500002px;}
._1f{width:35.999997px;}
._9{width:40.500002px;}
._1e{width:44.999991px;}
._7{width:49.500002px;}
._22{width:54.000001px;}
._26{width:58.500002px;}
._2d{width:62.999983px;}
._27{width:67.500001px;}
._24{width:72.000000px;}
._23{width:76.500002px;}
._21{width:84.023438px;}
._e{width:85.226792px;}
._2c{width:99.000019px;}
._2b{width:125.999988px;}
._2e{width:144.000022px;}
._2f{width:148.500114px;}
._30{width:535.499988px;}
._14{width:646.601683px;}
._18{width:1275.547018px;}
._17{width:1317.453268px;}
._1d{width:1341.289202px;}
._1b{width:1456.039203px;}
._11{width:1557.605610px;}
._10{width:1575.464985px;}
._12{width:1695.488422px;}
._13{width:1735.390773px;}
._15{width:1814.914202px;}
._16{width:1826.058715px;}
._19{width:1903.578267px;}
._1a{width:1906.144671px;}
._1c{width:1931.386859px;}
._a{width:1963.484515px;}
._c{width:1975.437640px;}
._d{width:1976.773576px;}
._b{width:2132.691545px;}
.fc2{color:rgb(17,85,204);}
.fc1{color:rgb(67,67,67);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:72.000000px;}
.fs4{font-size:78.000003px;}
.fs3{font-size:83.999997px;}
.fs2{font-size:119.999997px;}
.fs1{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.y1f{bottom:0.000002px;}
.y124{bottom:0.000003px;}
.y186{bottom:60.996095px;}
.y20{bottom:60.998286px;}
.y37{bottom:60.998288px;}
.y125{bottom:60.999020px;}
.ya8{bottom:60.999023px;}
.yc0{bottom:112.464848px;}
.ye3{bottom:112.687492px;}
.y123{bottom:115.274408px;}
.y10d{bottom:118.687492px;}
.yd3{bottom:121.766602px;}
.y185{bottom:122.736323px;}
.y16a{bottom:122.812492px;}
.y142{bottom:123.114262px;}
.y1f8{bottom:124.163092px;}
.y1da{bottom:129.861323px;}
.y9c{bottom:134.512207px;}
.y50{bottom:137.210452px;}
.y1a2{bottom:137.812492px;}
.yf5{bottom:137.815433px;}
.y169{bottom:139.687492px;}
.y1e{bottom:139.877557px;}
.y81{bottom:140.210452px;}
.ybf{bottom:143.512207px;}
.ye2{bottom:143.733398px;}
.y122{bottom:146.323238px;}
.y10c{bottom:149.734867px;}
.yd2{bottom:152.813963px;}
.y184{bottom:153.782227px;}
.y118{bottom:153.861323px;}
.y141{bottom:154.163092px;}
.y1f7{bottom:155.208983px;}
.y210{bottom:157.306642px;}
.y1d9{bottom:160.910152px;}
.y9b{bottom:165.559567px;}
.y4f{bottom:168.257812px;}
.y192{bottom:168.779302px;}
.yef{bottom:168.861323px;}
.y168{bottom:170.733398px;}
.y1d{bottom:170.924933px;}
.y80{bottom:171.257812px;}
.y224{bottom:172.001947px;}
.ybe{bottom:174.559567px;}
.ye1{bottom:174.782227px;}
.y121{bottom:177.369142px;}
.y10b{bottom:180.782227px;}
.ycd{bottom:183.861323px;}
.y183{bottom:184.828117px;}
.y117{bottom:184.908698px;}
.y14e{bottom:184.910152px;}
.y140{bottom:185.208983px;}
.y1c4{bottom:186.779302px;}
.y20f{bottom:188.355473px;}
.y1d8{bottom:191.958983px;}
.y9a{bottom:196.606927px;}
.y191{bottom:199.828117px;}
.y1a1{bottom:199.907227px;}
.yee{bottom:199.910152px;}
.y1f6{bottom:201.257812px;}
.y7f{bottom:202.305173px;}
.y223{bottom:203.050778px;}
.ybd{bottom:205.606927px;}
.ye0{bottom:205.828117px;}
.y10a{bottom:211.829588px;}
.y4e{bottom:214.305173px;}
.ycc{bottom:214.908698px;}
.y1c6{bottom:214.910152px;}
.y182{bottom:215.876947px;}
.y116{bottom:215.956058px;}
.y13f{bottom:216.257812px;}
.y167{bottom:216.782227px;}
.y36{bottom:216.852533px;}
.y1c3{bottom:217.828117px;}
.y20e{bottom:219.398438px;}
.y1d7{bottom:223.004887px;}
.y120{bottom:223.415033px;}
.y99{bottom:227.654303px;}
.y190{bottom:230.876947px;}
.y1a0{bottom:230.953117px;}
.yed{bottom:230.956058px;}
.y1f5{bottom:232.303717px;}
.y1c{bottom:233.019653px;}
.ybc{bottom:236.654303px;}
.y173{bottom:236.876947px;}
.y109{bottom:242.876947px;}
.y4d{bottom:245.352533px;}
.ycb{bottom:245.956058px;}
.y1c5{bottom:245.958983px;}
.y181{bottom:246.925777px;}
.y14d{bottom:247.001947px;}
.y115{bottom:247.003418px;}
.y13e{bottom:247.303717px;}
.y166{bottom:247.828117px;}
.y7e{bottom:248.352533px;}
.y1c2{bottom:248.876947px;}
.y222{bottom:249.099607px;}
.y20d{bottom:250.447268px;}
.y9{bottom:250.733362px;}
.ydf{bottom:251.875492px;}
.y35{bottom:252.399908px;}
.y1d6{bottom:254.050778px;}
.y11f{bottom:254.463863px;}
.y18f{bottom:261.922852px;}
.y1f9{bottom:262.001947px;}
.yec{bottom:262.004887px;}
.y1f4{bottom:263.349607px;}
.y1b{bottom:264.067013px;}
.ybb{bottom:267.701663px;}
.y172{bottom:267.922852px;}
.y98{bottom:273.701663px;}
.y108{bottom:273.924323px;}
.y4c{bottom:276.399908px;}
.yca{bottom:277.003418px;}
.y19f{bottom:277.004887px;}
.y180{bottom:277.971683px;}
.y114{bottom:278.050778px;}
.y13d{bottom:278.352533px;}
.y165{bottom:278.876947px;}
.y7d{bottom:279.399908px;}
.y1c1{bottom:279.922852px;}
.y221{bottom:280.148438px;}
.y20c{bottom:281.496098px;}
.yde{bottom:282.922852px;}
.y1d5{bottom:285.099607px;}
.y11e{bottom:285.509768px;}
.y34{bottom:287.947268px;}
.y18e{bottom:292.968742px;}
.yeb{bottom:293.050778px;}
.y1f3{bottom:294.398438px;}
.yba{bottom:298.749023px;}
.y171{bottom:298.971683px;}
.y97{bottom:304.749023px;}
.y107{bottom:304.971683px;}
.y4b{bottom:307.447268px;}
.yc9{bottom:308.050778px;}
.y14c{bottom:309.099607px;}
.y164{bottom:309.925777px;}
.y7c{bottom:310.447268px;}
.y1c0{bottom:310.968742px;}
.y8{bottom:312.828098px;}
.ydd{bottom:313.970212px;}
.y1d4{bottom:316.148438px;}
.y11d{bottom:316.558598px;}
.y33{bottom:323.494627px;}
.y17f{bottom:324.017572px;}
.y1fd{bottom:324.093742px;}
.y1aa{bottom:324.096683px;}
.yea{bottom:324.099607px;}
.y13c{bottom:324.398438px;}
.y1f2{bottom:325.447268px;}
.y220{bottom:326.191403px;}
.y20b{bottom:327.539063px;}
.y96{bottom:335.796383px;}
.y4a{bottom:338.494627px;}
.yf4{bottom:339.096683px;}
.yc8{bottom:339.098138px;}
.y19e{bottom:339.099607px;}
.y14b{bottom:340.145512px;}
.y163{bottom:340.971683px;}
.y7b{bottom:341.494627px;}
.y1bf{bottom:342.017572px;}
.y6a{bottom:343.589362px;}
.yb9{bottom:344.796383px;}
.ydc{bottom:345.017572px;}
.y1df{bottom:347.194342px;}
.y11c{bottom:347.604488px;}
.y106{bottom:351.017572px;}
.ya7{bottom:352.145512px;}
.y17e{bottom:355.066402px;}
.y1a9{bottom:355.142573px;}
.y113{bottom:355.145512px;}
.y13b{bottom:355.447268px;}
.y1a{bottom:357.209108px;}
.y21f{bottom:357.240233px;}
.y20a{bottom:358.587892px;}
.y32{bottom:359.041988px;}
.y1d3{bottom:362.191403px;}
.y95{bottom:366.843742px;}
.y49{bottom:369.541988px;}
.yc7{bottom:370.145512px;}
.y19d{bottom:370.148438px;}
.y14a{bottom:371.191403px;}
.y1f1{bottom:371.496098px;}
.y162{bottom:372.017572px;}
.y7a{bottom:372.541988px;}
.y1be{bottom:373.066402px;}
.y69{bottom:374.636723px;}
.y7{bottom:374.922817px;}
.yb8{bottom:375.843742px;}
.ydb{bottom:376.064948px;}
.y170{bottom:376.066402px;}
.y1de{bottom:378.240233px;}
.y11b{bottom:378.653318px;}
.y105{bottom:382.064948px;}
.ya6{bottom:383.192873px;}
.y17d{bottom:386.112307px;}
.y1a8{bottom:386.191403px;}
.y112{bottom:386.194342px;}
.y13a{bottom:386.496098px;}
.y19{bottom:388.256468px;}
.y21e{bottom:388.289063px;}
.y209{bottom:389.636723px;}
.y1d2{bottom:393.240233px;}
.y31{bottom:394.589362px;}
.y94{bottom:397.891118px;}
.y48{bottom:400.589362px;}
.ye9{bottom:401.191403px;}
.yc6{bottom:401.192873px;}
.y19c{bottom:401.194342px;}
.y1f0{bottom:402.544928px;}
.y161{bottom:403.066402px;}
.y79{bottom:403.589363px;}
.y1bd{bottom:404.112308px;}
.yb7{bottom:406.891118px;}
.yda{bottom:407.112308px;}
.y16f{bottom:407.115233px;}
.y1dd{bottom:409.289063px;}
.y11a{bottom:409.699222px;}
.y104{bottom:413.112308px;}
.ya5{bottom:414.240233px;}
.y17c{bottom:417.158198px;}
.y111{bottom:417.240233px;}
.y139{bottom:417.541988px;}
.y18{bottom:419.303828px;}
.y68{bottom:420.684082px;}
.y208{bottom:420.685552px;}
.y1d1{bottom:424.289063px;}
.y93{bottom:428.938477px;}
.y30{bottom:430.136723px;}
.y47{bottom:431.636723px;}
.yc5{bottom:432.240233px;}
.y1ef{bottom:433.590818px;}
.y160{bottom:434.115233px;}
.y21d{bottom:434.332027px;}
.y78{bottom:434.636723px;}
.yb6{bottom:437.938477px;}
.yd9{bottom:438.159668px;}
.y16e{bottom:438.161137px;}
.y1dc{bottom:440.337893px;}
.y103{bottom:444.159668px;}
.ya4{bottom:445.287593px;}
.y17b{bottom:448.207028px;}
.y1a7{bottom:448.286137px;}
.y110{bottom:448.289063px;}
.y138{bottom:448.587893px;}
.y84{bottom:449.636723px;}
.y1bc{bottom:450.164062px;}
.y17{bottom:450.351202px;}
.y1d0{bottom:455.334967px;}
.y92{bottom:459.985838px;}
.ye8{bottom:463.286137px;}
.yc4{bottom:463.287593px;}
.y19b{bottom:463.289063px;}
.y1ee{bottom:464.636723px;}
.y15f{bottom:465.161137px;}
.y21c{bottom:465.380857px;}
.y2f{bottom:465.684082px;}
.y207{bottom:466.728517px;}
.y67{bottom:466.731442px;}
.y6{bottom:468.064912px;}
.yb5{bottom:468.985838px;}
.yd8{bottom:469.207028px;}
.y102{bottom:475.207028px;}
.ya3{bottom:476.334967px;}
.y46{bottom:477.684082px;}
.y1a6{bottom:479.332027px;}
.y149{bottom:479.334967px;}
.y137{bottom:479.636723px;}
.y77{bottom:480.684082px;}
.y1bb{bottom:481.209968px;}
.y16{bottom:481.398563px;}
.y1db{bottom:486.380858px;}
.y91{bottom:491.033198px;}
.y17a{bottom:494.255858px;}
.yc3{bottom:494.334967px;}
.y19a{bottom:494.337893px;}
.y1ed{bottom:495.685552px;}
.y21b{bottom:496.429688px;}
.y119{bottom:496.983391px;}
.y206{bottom:497.777348px;}
.y5{bottom:499.112273px;}
.yb4{bottom:500.033198px;}
.yd7{bottom:500.254388px;}
.y16d{bottom:500.255858px;}
.y2e{bottom:501.231442px;}
.y1cf{bottom:501.380857px;}
.y101{bottom:506.254388px;}
.ya2{bottom:507.382328px;}
.y45{bottom:508.731442px;}
.yd1{bottom:509.334967px;}
.y148{bottom:510.383783px;}
.y136{bottom:510.685552px;}
.y15e{bottom:511.207028px;}
.y76{bottom:511.731442px;}
.y1ba{bottom:512.255858px;}
.y15{bottom:512.445922px;}
.y66{bottom:512.778802px;}
.y90{bottom:522.080573px;}
.y179{bottom:525.301762px;}
.ye7{bottom:525.380857px;}
.y1a5{bottom:525.383783px;}
.y1fc{bottom:525.386723px;}
.y1ec{bottom:526.734367px;}
.yb3{bottom:531.080573px;}
.yd6{bottom:531.301762px;}
.y16c{bottom:531.304688px;}
.y1ce{bottom:532.429688px;}
.y2d{bottom:536.778802px;}
.y100{bottom:537.301762px;}
.y44{bottom:539.778802px;}
.y199{bottom:540.380857px;}
.yc2{bottom:540.382327px;}
.y147{bottom:541.429688px;}
.y135{bottom:541.731442px;}
.y15d{bottom:542.255858px;}
.y21a{bottom:542.478517px;}
.y18d{bottom:542.677736px;}
.y75{bottom:542.778802px;}
.y1b9{bottom:543.304688px;}
.y14{bottom:543.493283px;}
.y65{bottom:543.826178px;}
.y8f{bottom:553.127932px;}
.y178{bottom:556.350592px;}
.ya1{bottom:556.429688px;}
.y22b{bottom:557.478517px;}
.yb2{bottom:562.127932px;}
.y1cd{bottom:563.475592px;}
.yff{bottom:568.349123px;}
.y43{bottom:570.826178px;}
.y60{bottom:571.429688px;}
.y2c{bottom:572.326178px;}
.y146{bottom:572.478517px;}
.y134{bottom:572.777348px;}
.y15c{bottom:573.301762px;}
.y219{bottom:573.527348px;}
.y74{bottom:573.826178px;}
.y4{bottom:576.206948px;}
.y177{bottom:587.396482px;}
.ye6{bottom:587.475592px;}
.ya0{bottom:587.477048px;}
.y1a4{bottom:587.478517px;}
.y22a{bottom:588.527348px;}
.y1b8{bottom:589.350592px;}
.y205{bottom:589.874992px;}
.yb1{bottom:593.175292px;}
.y1cc{bottom:594.521482px;}
.y8e{bottom:599.175292px;}
.y42{bottom:601.873537px;}
.y5f{bottom:602.477048px;}
.y198{bottom:602.478517px;}
.y1eb{bottom:603.826178px;}
.y15b{bottom:604.347652px;}
.y218{bottom:604.570312px;}
.y73{bottom:604.873537px;}
.y3{bottom:607.254322px;}
.y2b{bottom:607.873537px;}
.yfe{bottom:614.396482px;}
.y13{bottom:615.083121px;}
.y176{bottom:618.445312px;}
.y9f{bottom:618.524408px;}
.y1a3{bottom:618.527348px;}
.y133{bottom:618.826178px;}
.y229{bottom:619.570312px;}
.yd5{bottom:619.771002px;}
.y16b{bottom:619.772456px;}
.y1b7{bottom:620.396482px;}
.y204{bottom:620.917973px;}
.y1cb{bottom:625.570312px;}
.y8d{bottom:630.222652px;}
.y41{bottom:632.920897px;}
.y5e{bottom:633.524408px;}
.y1ea{bottom:634.874992px;}
.y15a{bottom:635.396482px;}
.y64{bottom:635.920897px;}
.yb0{bottom:642.222652px;}
.y2a{bottom:643.420897px;}
.yfd{bottom:645.445312px;}
.y175{bottom:649.491217px;}
.ye5{bottom:649.570312px;}
.y9e{bottom:649.571782px;}
.y18c{bottom:649.573238px;}
.y132{bottom:649.874992px;}
.y217{bottom:650.619142px;}
.y1b6{bottom:651.445312px;}
.y1ca{bottom:656.619142px;}
.y8c{bottom:661.270013px;}
.y40{bottom:663.968258px;}
.y129{bottom:664.570312px;}
.y5d{bottom:664.571782px;}
.y228{bottom:665.619142px;}
.y1e9{bottom:665.920897px;}
.y159{bottom:666.445312px;}
.y203{bottom:666.966802px;}
.y72{bottom:666.968258px;}
.yaf{bottom:673.270013px;}
.yfc{bottom:676.491217px;}
.y29{bottom:678.968258px;}
.y9d{bottom:680.619142px;}
.y131{bottom:680.920897px;}
.y216{bottom:681.667973px;}
.y1b5{bottom:682.494142px;}
.y1c9{bottom:687.665033px;}
.y8b{bottom:692.317387px;}
.y5c{bottom:695.619142px;}
.y227{bottom:696.667973px;}
.y1e8{bottom:696.966802px;}
.y158{bottom:697.491217px;}
.y71{bottom:698.015618px;}
.y2{bottom:700.396403px;}
.yae{bottom:704.317387px;}
.yfb{bottom:707.540033px;}
.y3f{bottom:710.015618px;}
.ye4{bottom:711.665033px;}
.y18b{bottom:711.667973px;}
.y130{bottom:711.969727px;}
.y1b4{bottom:713.540033px;}
.y28{bottom:714.515618px;}
.y1c8{bottom:718.710938px;}
.y8a{bottom:723.364748px;}
.y5b{bottom:726.666502px;}
.y128{bottom:726.667973px;}
.y215{bottom:727.710938px;}
.y1e7{bottom:728.015618px;}
.y202{bottom:729.058598px;}
.y1{bottom:731.443777px;}
.y12{bottom:734.428342px;}
.yad{bottom:735.364748px;}
.yfa{bottom:738.585938px;}
.y3e{bottom:741.062992px;}
.y10f{bottom:742.713863px;}
.y18a{bottom:742.716802px;}
.y12f{bottom:743.015618px;}
.y157{bottom:743.540033px;}
.y174{bottom:743.961911px;}
.y70{bottom:744.062992px;}
.y1b3{bottom:744.585938px;}
.y27{bottom:745.562992px;}
.y89{bottom:754.412107px;}
.y1fb{bottom:757.710938px;}
.y5a{bottom:757.713863px;}
.y214{bottom:758.759768px;}
.y201{bottom:760.107428px;}
.y1c7{bottom:764.759768px;}
.y11{bottom:765.475703px;}
.yac{bottom:766.412107px;}
.yf9{bottom:769.634768px;}
.y3d{bottom:772.110352px;}
.y1e0{bottom:772.710938px;}
.y10e{bottom:773.759768px;}
.y189{bottom:773.762692px;}
.y226{bottom:773.765618px;}
.y1e6{bottom:774.061522px;}
.y63{bottom:774.062992px;}
.y12e{bottom:774.064448px;}
.y156{bottom:774.585938px;}
.y6f{bottom:775.110352px;}
.y1b2{bottom:775.634768px;}
.y26{bottom:781.110352px;}
.y88{bottom:785.459467px;}
.y127{bottom:788.759767px;}
.y59{bottom:788.761237px;}
.y213{bottom:789.808598px;}
.y10{bottom:796.523077px;}
.yab{bottom:797.459467px;}
.yf8{bottom:800.680658px;}
.y3c{bottom:803.157712px;}
.y197{bottom:803.759767px;}
.yd0{bottom:803.761237px;}
.y225{bottom:804.808598px;}
.y1e5{bottom:805.107427px;}
.y62{bottom:805.110352px;}
.y155{bottom:805.634767px;}
.y200{bottom:806.156242px;}
.y6e{bottom:806.157712px;}
.y87{bottom:816.506842px;}
.y25{bottom:816.657712px;}
.y58{bottom:819.808598px;}
.y1b1{bottom:821.680658px;}
.yf{bottom:827.570438px;}
.yaa{bottom:828.506842px;}
.yf7{bottom:831.729488px;}
.y3b{bottom:834.205073px;}
.ycf{bottom:834.808598px;}
.y212{bottom:835.857427px;}
.y1e4{bottom:836.156242px;}
.y12d{bottom:836.159182px;}
.y154{bottom:836.680658px;}
.y6d{bottom:837.205073px;}
.y86{bottom:847.554202px;}
.y57{bottom:850.855958px;}
.y126{bottom:850.857427px;}
.y24{bottom:852.205073px;}
.y1b0{bottom:852.726562px;}
.ye{bottom:858.617797px;}
.ya9{bottom:859.554202px;}
.y3a{bottom:865.252448px;}
.y196{bottom:865.854488px;}
.yce{bottom:865.855958px;}
.yf3{bottom:865.857427px;}
.y211{bottom:866.906242px;}
.y12c{bottom:867.205073px;}
.y153{bottom:867.729488px;}
.y6c{bottom:868.252448px;}
.y83{bottom:881.903317px;}
.y1fa{bottom:881.906242px;}
.y1ff{bottom:883.253902px;}
.y1af{bottom:883.775393px;}
.y23{bottom:887.752448px;}
.yd{bottom:889.665158px;}
.y39{bottom:896.299808px;}
.y195{bottom:896.900392px;}
.y56{bottom:896.903317px;}
.y1e3{bottom:898.250977px;}
.y61{bottom:898.252448px;}
.y12b{bottom:898.253902px;}
.y152{bottom:898.775393px;}
.y6b{bottom:899.299808px;}
.y145{bottom:912.949223px;}
.y82{bottom:912.950677px;}
.y1fe{bottom:914.296867px;}
.y1ae{bottom:914.824223px;}
.yc{bottom:920.712525px;}
.y22{bottom:923.299805px;}
.yf6{bottom:926.197265px;}
.y194{bottom:927.949218px;}
.y55{bottom:927.950683px;}
.yf2{bottom:927.952149px;}
.y1e2{bottom:929.296875px;}
.y151{bottom:929.824218px;}
.yc1{bottom:943.998046px;}
.y1ad{bottom:945.870117px;}
.yb{bottom:951.759888px;}
.y54{bottom:958.998046px;}
.y150{bottom:960.870117px;}
.yd4{bottom:975.045410px;}
.y144{bottom:975.046875px;}
.y85{bottom:989.191404px;}
.y193{bottom:990.043946px;}
.y53{bottom:990.045410px;}
.yf1{bottom:990.046875px;}
.y1ac{bottom:991.921875px;}
.y143{bottom:1006.092774px;}
.y188{bottom:1021.089843px;}
.y52{bottom:1021.092774px;}
.ya{bottom:1039.536621px;}
.y1e1{bottom:1040.935545px;}
.y38{bottom:1040.937011px;}
.y21{bottom:1040.937194px;}
.y12a{bottom:1040.938475px;}
.y1ab{bottom:1049.337890px;}
.y14f{bottom:1049.340819px;}
.y187{bottom:1052.138672px;}
.y51{bottom:1052.140137px;}
.yf0{bottom:1052.141601px;}
.h7{height:49.992188px;}
.h1{height:63.949219px;}
.h2{height:64.546875px;}
.h9{height:69.278323px;}
.h8{height:74.607419px;}
.h5{height:106.299133px;}
.h6{height:106.299315px;}
.ha{height:106.300782px;}
.h4{height:106.582029px;}
.h3{height:111.911133px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xc{left:127.559052px;}
.x13{left:138.675953px;}
.x16{left:139.949870px;}
.x3{left:148.262692px;}
.xf{left:154.559052px;}
.x17{left:164.345073px;}
.xb{left:181.559052px;}
.x18{left:188.309052px;}
.x1a{left:201.134457px;}
.x14{left:256.132496px;}
.x1{left:275.317372px;}
.x19{left:283.206877px;}
.x6{left:316.234853px;}
.x2{left:318.638660px;}
.x8{left:320.695306px;}
.x10{left:323.210772px;}
.x12{left:325.700037px;}
.x7{left:344.935535px;}
.x5{left:347.743647px;}
.x9{left:352.524897px;}
.x11{left:358.477868px;}
.xd{left:377.344895px;}
.xa{left:380.242298px;}
.x4{left:404.499008px;}
.x15{left:772.440923px;}
.xe{left:781.440923px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:20.000000pt;}
.ls3{letter-spacing:74.687500pt;}
.ls2{letter-spacing:112.000000pt;}
.ls4{letter-spacing:124.000000pt;}
.wsb{word-spacing:-53.333332pt;}
.ws3d{word-spacing:-36.093750pt;}
.ws3{word-spacing:-32.000000pt;}
.ws37{word-spacing:-26.707220pt;}
.ws2c{word-spacing:-26.707207pt;}
.ws2d{word-spacing:-26.707176pt;}
.ws55{word-spacing:-26.704924pt;}
.ws38{word-spacing:-26.700267pt;}
.ws6c{word-spacing:-26.700247pt;}
.ws17{word-spacing:-26.687498pt;}
.ws13{word-spacing:-20.093780pt;}
.ws56{word-spacing:-20.093771pt;}
.ws2{word-spacing:-20.093770pt;}
.ws39{word-spacing:-20.093762pt;}
.ws3a{word-spacing:-20.093761pt;}
.ws4{word-spacing:-20.093760pt;}
.ws11{word-spacing:-20.093752pt;}
.ws16{word-spacing:-20.093751pt;}
.wsa{word-spacing:-20.093750pt;}
.ws49{word-spacing:-20.093749pt;}
.ws14{word-spacing:-20.093748pt;}
.ws3f{word-spacing:-20.093740pt;}
.ws20{word-spacing:-20.093740pt;}
.ws57{word-spacing:-20.093730pt;}
.ws43{word-spacing:-18.707173pt;}
.ws65{word-spacing:-18.707153pt;}
.ws58{word-spacing:-18.700258pt;}
.ws62{word-spacing:-18.700255pt;}
.ws5f{word-spacing:-18.687496pt;}
.ws51{word-spacing:-17.354722pt;}
.ws2f{word-spacing:-16.093780pt;}
.ws53{word-spacing:-16.093771pt;}
.ws35{word-spacing:-16.093770pt;}
.wsd{word-spacing:-16.093760pt;}
.ws5c{word-spacing:-16.093752pt;}
.ws7{word-spacing:-16.093750pt;}
.ws4e{word-spacing:-16.093749pt;}
.ws25{word-spacing:-16.093740pt;}
.ws23{word-spacing:-16.093730pt;}
.ws0{word-spacing:-16.000021pt;}
.ws82{word-spacing:-16.000012pt;}
.ws1{word-spacing:-16.000010pt;}
.ws15{word-spacing:-16.000002pt;}
.ws12{word-spacing:-16.000000pt;}
.ws7c{word-spacing:-15.999997pt;}
.ws7d{word-spacing:-15.999990pt;}
.ws61{word-spacing:-12.093780pt;}
.ws19{word-spacing:-12.093770pt;}
.ws6{word-spacing:-12.093761pt;}
.ws4a{word-spacing:-12.093760pt;}
.ws50{word-spacing:-12.093752pt;}
.ws21{word-spacing:-12.093751pt;}
.ws9{word-spacing:-12.093750pt;}
.ws22{word-spacing:-12.093741pt;}
.ws54{word-spacing:-12.093730pt;}
.ws71{word-spacing:-12.000030pt;}
.ws26{word-spacing:-12.000020pt;}
.ws27{word-spacing:-12.000010pt;}
.ws24{word-spacing:-8.093780pt;}
.ws30{word-spacing:-8.093770pt;}
.ws31{word-spacing:-8.093761pt;}
.ws1c{word-spacing:-8.093759pt;}
.ws32{word-spacing:-8.093751pt;}
.wsc{word-spacing:-8.093750pt;}
.ws69{word-spacing:-8.093749pt;}
.ws52{word-spacing:-8.093740pt;}
.ws1f{word-spacing:-8.093730pt;}
.ws67{word-spacing:-8.093720pt;}
.ws28{word-spacing:-8.000020pt;}
.ws2a{word-spacing:-8.000000pt;}
.ws2b{word-spacing:-7.999990pt;}
.ws44{word-spacing:-4.093780pt;}
.wsf{word-spacing:-4.093770pt;}
.ws6d{word-spacing:-4.093761pt;}
.ws18{word-spacing:-4.093760pt;}
.ws64{word-spacing:-4.093751pt;}
.ws1d{word-spacing:-4.093750pt;}
.ws47{word-spacing:-4.093740pt;}
.ws3e{word-spacing:-4.093730pt;}
.ws83{word-spacing:-4.000020pt;}
.ws10{word-spacing:-4.000000pt;}
.ws42{word-spacing:-0.093780pt;}
.ws4d{word-spacing:-0.093770pt;}
.ws1e{word-spacing:-0.093760pt;}
.ws59{word-spacing:-0.093751pt;}
.ws1b{word-spacing:-0.093750pt;}
.ws5e{word-spacing:-0.093748pt;}
.ws68{word-spacing:-0.093740pt;}
.ws48{word-spacing:-0.093740pt;}
.ws6b{word-spacing:-0.093730pt;}
.ws29{word-spacing:-0.000020pt;}
.ws6e{word-spacing:-0.000010pt;}
.ws5{word-spacing:0.000000pt;}
.ws2e{word-spacing:3.906218pt;}
.ws6a{word-spacing:3.906219pt;}
.ws5d{word-spacing:3.906230pt;}
.ws46{word-spacing:3.906239pt;}
.ws8{word-spacing:3.906240pt;}
.ws3b{word-spacing:3.906250pt;}
.ws5b{word-spacing:3.906260pt;}
.ws63{word-spacing:3.906270pt;}
.ws66{word-spacing:7.906220pt;}
.ws5a{word-spacing:7.906230pt;}
.ws34{word-spacing:7.906239pt;}
.ws4b{word-spacing:7.906240pt;}
.ws1a{word-spacing:7.906249pt;}
.ws40{word-spacing:7.906250pt;}
.ws77{word-spacing:7.999980pt;}
.ws33{word-spacing:11.906229pt;}
.ws4c{word-spacing:11.906240pt;}
.ws41{word-spacing:11.906250pt;}
.wse{word-spacing:11.906260pt;}
.ws3c{word-spacing:15.906251pt;}
.ws4f{word-spacing:19.906240pt;}
.ws60{word-spacing:19.906250pt;}
.ws72{word-spacing:19.999970pt;}
.ws45{word-spacing:23.906229pt;}
.ws36{word-spacing:27.906250pt;}
.ws74{word-spacing:75.906250pt;}
.ws75{word-spacing:83.906251pt;}
.ws73{word-spacing:84.000000pt;}
.ws7f{word-spacing:87.906250pt;}
.ws76{word-spacing:87.999999pt;}
.ws81{word-spacing:91.906251pt;}
.ws7e{word-spacing:92.000000pt;}
.ws80{word-spacing:99.999969pt;}
.ws7b{word-spacing:139.906250pt;}
.ws79{word-spacing:139.906252pt;}
.ws7a{word-spacing:143.999990pt;}
.ws70{word-spacing:279.906250pt;}
.ws6f{word-spacing:287.999990pt;}
.ws84{word-spacing:435.906230pt;}
.ws78{word-spacing:480.000000pt;}
._28{margin-left:-10.223336pt;}
._29{margin-left:-9.248855pt;}
._2{margin-left:-8.249991pt;}
._4{margin-left:-7.093723pt;}
._1{margin-left:-5.874998pt;}
._0{margin-left:-4.750000pt;}
._2a{margin-left:-3.843750pt;}
._f{margin-left:-2.843718pt;}
._3{margin-left:-1.156248pt;}
._25{width:2.375023pt;}
._8{width:15.999987pt;}
._20{width:20.000081pt;}
._6{width:24.000001pt;}
._5{width:28.000001pt;}
._1f{width:31.999997pt;}
._9{width:36.000002pt;}
._1e{width:39.999992pt;}
._7{width:44.000002pt;}
._22{width:48.000001pt;}
._26{width:52.000002pt;}
._2d{width:55.999985pt;}
._27{width:60.000001pt;}
._24{width:64.000000pt;}
._23{width:68.000002pt;}
._21{width:74.687500pt;}
._e{width:75.757148pt;}
._2c{width:88.000017pt;}
._2b{width:111.999990pt;}
._2e{width:128.000020pt;}
._2f{width:132.000101pt;}
._30{width:475.999990pt;}
._14{width:574.757051pt;}
._18{width:1133.819572pt;}
._17{width:1171.069572pt;}
._1d{width:1192.257068pt;}
._1b{width:1294.257070pt;}
._11{width:1384.538320pt;}
._10{width:1400.413320pt;}
._12{width:1507.100820pt;}
._13{width:1542.569576pt;}
._15{width:1613.257068pt;}
._16{width:1623.163302pt;}
._19{width:1692.069571pt;}
._1a{width:1694.350819pt;}
._1c{width:1716.788320pt;}
._a{width:1745.319569pt;}
._c{width:1755.944569pt;}
._d{width:1757.132067pt;}
._b{width:1895.725818pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:69.333336pt;}
.fs3{font-size:74.666664pt;}
.fs2{font-size:106.666664pt;}
.fs1{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.y1f{bottom:0.000001pt;}
.y124{bottom:0.000003pt;}
.y186{bottom:54.218751pt;}
.y20{bottom:54.220699pt;}
.y37{bottom:54.220700pt;}
.y125{bottom:54.221351pt;}
.ya8{bottom:54.221353pt;}
.yc0{bottom:99.968753pt;}
.ye3{bottom:100.166660pt;}
.y123{bottom:102.466140pt;}
.y10d{bottom:105.499993pt;}
.yd3{bottom:108.236980pt;}
.y185{bottom:109.098953pt;}
.y16a{bottom:109.166660pt;}
.y142{bottom:109.434900pt;}
.y1f8{bottom:110.367193pt;}
.y1da{bottom:115.432287pt;}
.y9c{bottom:119.566407pt;}
.y50{bottom:121.964847pt;}
.y1a2{bottom:122.499993pt;}
.yf5{bottom:122.502607pt;}
.y169{bottom:124.166660pt;}
.y1e{bottom:124.335607pt;}
.y81{bottom:124.631513pt;}
.ybf{bottom:127.566407pt;}
.ye2{bottom:127.763020pt;}
.y122{bottom:130.065100pt;}
.y10c{bottom:133.097660pt;}
.yd2{bottom:135.834633pt;}
.y184{bottom:136.695313pt;}
.y118{bottom:136.765620pt;}
.y141{bottom:137.033860pt;}
.y1f7{bottom:137.963540pt;}
.y210{bottom:139.828127pt;}
.y1d9{bottom:143.031247pt;}
.y9b{bottom:147.164060pt;}
.y4f{bottom:149.562500pt;}
.y192{bottom:150.026047pt;}
.yef{bottom:150.098953pt;}
.y168{bottom:151.763020pt;}
.y1d{bottom:151.933273pt;}
.y80{bottom:152.229167pt;}
.y224{bottom:152.890620pt;}
.ybe{bottom:155.164060pt;}
.ye1{bottom:155.361980pt;}
.y121{bottom:157.661460pt;}
.y10b{bottom:160.695313pt;}
.ycd{bottom:163.432287pt;}
.y183{bottom:164.291660pt;}
.y117{bottom:164.363287pt;}
.y14e{bottom:164.364580pt;}
.y140{bottom:164.630207pt;}
.y1c4{bottom:166.026047pt;}
.y20f{bottom:167.427087pt;}
.y1d8{bottom:170.630207pt;}
.y9a{bottom:174.761713pt;}
.y191{bottom:177.624993pt;}
.y1a1{bottom:177.695313pt;}
.yee{bottom:177.697913pt;}
.y1f6{bottom:178.895833pt;}
.y7f{bottom:179.826820pt;}
.y223{bottom:180.489580pt;}
.ybd{bottom:182.761713pt;}
.ye0{bottom:182.958327pt;}
.y10a{bottom:188.292967pt;}
.y4e{bottom:190.493487pt;}
.ycc{bottom:191.029953pt;}
.y1c6{bottom:191.031247pt;}
.y182{bottom:191.890620pt;}
.y116{bottom:191.960940pt;}
.y13f{bottom:192.229167pt;}
.y167{bottom:192.695313pt;}
.y36{bottom:192.757807pt;}
.y1c3{bottom:193.624993pt;}
.y20e{bottom:195.020833pt;}
.y1d7{bottom:198.226567pt;}
.y120{bottom:198.591140pt;}
.y99{bottom:202.359380pt;}
.y190{bottom:205.223953pt;}
.y1a0{bottom:205.291660pt;}
.yed{bottom:205.294273pt;}
.y1f5{bottom:206.492193pt;}
.y1c{bottom:207.128580pt;}
.ybc{bottom:210.359380pt;}
.y173{bottom:210.557287pt;}
.y109{bottom:215.890620pt;}
.y4d{bottom:218.091140pt;}
.ycb{bottom:218.627607pt;}
.y1c5{bottom:218.630207pt;}
.y181{bottom:219.489580pt;}
.y14d{bottom:219.557287pt;}
.y115{bottom:219.558593pt;}
.y13e{bottom:219.825527pt;}
.y166{bottom:220.291660pt;}
.y7e{bottom:220.757807pt;}
.y1c2{bottom:221.223953pt;}
.y222{bottom:221.421873pt;}
.y20d{bottom:222.619793pt;}
.y9{bottom:222.874100pt;}
.ydf{bottom:223.889327pt;}
.y35{bottom:224.355473pt;}
.y1d6{bottom:225.822913pt;}
.y11f{bottom:226.190100pt;}
.y18f{bottom:232.820313pt;}
.y1f9{bottom:232.890620pt;}
.yec{bottom:232.893233pt;}
.y1f4{bottom:234.088540pt;}
.y1b{bottom:234.726233pt;}
.ybb{bottom:237.957033pt;}
.y172{bottom:238.153647pt;}
.y98{bottom:243.290367pt;}
.y108{bottom:243.488287pt;}
.y4c{bottom:245.688807pt;}
.yca{bottom:246.225260pt;}
.y19f{bottom:246.226567pt;}
.y180{bottom:247.085940pt;}
.y114{bottom:247.156247pt;}
.y13d{bottom:247.424473pt;}
.y165{bottom:247.890620pt;}
.y7d{bottom:248.355473pt;}
.y1c1{bottom:248.820313pt;}
.y221{bottom:249.020833pt;}
.y20c{bottom:250.218753pt;}
.yde{bottom:251.486980pt;}
.y1d5{bottom:253.421873pt;}
.y11e{bottom:253.786460pt;}
.y34{bottom:255.953127pt;}
.y18e{bottom:260.416660pt;}
.yeb{bottom:260.489580pt;}
.y1f3{bottom:261.687500pt;}
.yba{bottom:265.554687pt;}
.y171{bottom:265.752607pt;}
.y97{bottom:270.888020pt;}
.y107{bottom:271.085940pt;}
.y4b{bottom:273.286460pt;}
.yc9{bottom:273.822913pt;}
.y14c{bottom:274.755207pt;}
.y164{bottom:275.489580pt;}
.y7c{bottom:275.953127pt;}
.y1c0{bottom:276.416660pt;}
.y8{bottom:278.069420pt;}
.ydd{bottom:279.084633pt;}
.y1d4{bottom:281.020833pt;}
.y11d{bottom:281.385420pt;}
.y33{bottom:287.550780pt;}
.y17f{bottom:288.015620pt;}
.y1fd{bottom:288.083327pt;}
.y1aa{bottom:288.085940pt;}
.yea{bottom:288.088540pt;}
.y13c{bottom:288.354167pt;}
.y1f2{bottom:289.286460pt;}
.y220{bottom:289.947913pt;}
.y20b{bottom:291.145833pt;}
.y96{bottom:298.485673pt;}
.y4a{bottom:300.884113pt;}
.yf4{bottom:301.419273pt;}
.yc8{bottom:301.420567pt;}
.y19e{bottom:301.421873pt;}
.y14b{bottom:302.351567pt;}
.y163{bottom:303.085940pt;}
.y7b{bottom:303.550780pt;}
.y1bf{bottom:304.015620pt;}
.y6a{bottom:305.412767pt;}
.yb9{bottom:306.485673pt;}
.ydc{bottom:306.682287pt;}
.y1df{bottom:308.617193pt;}
.y11c{bottom:308.981767pt;}
.y106{bottom:312.015620pt;}
.ya7{bottom:313.018233pt;}
.y17e{bottom:315.614580pt;}
.y1a9{bottom:315.682287pt;}
.y113{bottom:315.684900pt;}
.y13b{bottom:315.953127pt;}
.y1a{bottom:317.519207pt;}
.y21f{bottom:317.546873pt;}
.y20a{bottom:318.744793pt;}
.y32{bottom:319.148433pt;}
.y1d3{bottom:321.947913pt;}
.y95{bottom:326.083327pt;}
.y49{bottom:328.481767pt;}
.yc7{bottom:329.018233pt;}
.y19d{bottom:329.020833pt;}
.y14a{bottom:329.947913pt;}
.y1f1{bottom:330.218753pt;}
.y162{bottom:330.682287pt;}
.y7a{bottom:331.148433pt;}
.y1be{bottom:331.614580pt;}
.y69{bottom:333.010420pt;}
.y7{bottom:333.264727pt;}
.yb8{bottom:334.083327pt;}
.ydb{bottom:334.279953pt;}
.y170{bottom:334.281247pt;}
.y1de{bottom:336.213540pt;}
.y11b{bottom:336.580727pt;}
.y105{bottom:339.613287pt;}
.ya6{bottom:340.615887pt;}
.y17d{bottom:343.210940pt;}
.y1a8{bottom:343.281247pt;}
.y112{bottom:343.283860pt;}
.y13a{bottom:343.552087pt;}
.y19{bottom:345.116860pt;}
.y21e{bottom:345.145833pt;}
.y209{bottom:346.343753pt;}
.y1d2{bottom:349.546873pt;}
.y31{bottom:350.746100pt;}
.y94{bottom:353.680993pt;}
.y48{bottom:356.079433pt;}
.ye9{bottom:356.614580pt;}
.yc6{bottom:356.615887pt;}
.y19c{bottom:356.617193pt;}
.y1f0{bottom:357.817713pt;}
.y161{bottom:358.281247pt;}
.y79{bottom:358.746100pt;}
.y1bd{bottom:359.210940pt;}
.yb7{bottom:361.680993pt;}
.yda{bottom:361.877607pt;}
.y16f{bottom:361.880207pt;}
.y1dd{bottom:363.812500pt;}
.y11a{bottom:364.177087pt;}
.y104{bottom:367.210940pt;}
.ya5{bottom:368.213540pt;}
.y17c{bottom:370.807287pt;}
.y111{bottom:370.880207pt;}
.y139{bottom:371.148433pt;}
.y18{bottom:372.714513pt;}
.y68{bottom:373.941407pt;}
.y208{bottom:373.942713pt;}
.y1d1{bottom:377.145833pt;}
.y93{bottom:381.278647pt;}
.y30{bottom:382.343753pt;}
.y47{bottom:383.677087pt;}
.yc5{bottom:384.213540pt;}
.y1ef{bottom:385.414060pt;}
.y160{bottom:385.880207pt;}
.y21d{bottom:386.072913pt;}
.y78{bottom:386.343753pt;}
.yb6{bottom:389.278647pt;}
.yd9{bottom:389.475260pt;}
.y16e{bottom:389.476567pt;}
.y1dc{bottom:391.411460pt;}
.y103{bottom:394.808593pt;}
.ya4{bottom:395.811193pt;}
.y17b{bottom:398.406247pt;}
.y1a7{bottom:398.476567pt;}
.y110{bottom:398.479167pt;}
.y138{bottom:398.744793pt;}
.y84{bottom:399.677087pt;}
.y1bc{bottom:400.145833pt;}
.y17{bottom:400.312180pt;}
.y1d0{bottom:404.742193pt;}
.y92{bottom:408.876300pt;}
.ye8{bottom:411.809900pt;}
.yc4{bottom:411.811193pt;}
.y19b{bottom:411.812500pt;}
.y1ee{bottom:413.010420pt;}
.y15f{bottom:413.476567pt;}
.y21c{bottom:413.671873pt;}
.y2f{bottom:413.941407pt;}
.y207{bottom:414.869793pt;}
.y67{bottom:414.872393pt;}
.y6{bottom:416.057700pt;}
.yb5{bottom:416.876300pt;}
.yd8{bottom:417.072913pt;}
.y102{bottom:422.406247pt;}
.ya3{bottom:423.408860pt;}
.y46{bottom:424.608073pt;}
.y1a6{bottom:426.072913pt;}
.y149{bottom:426.075527pt;}
.y137{bottom:426.343753pt;}
.y77{bottom:427.274740pt;}
.y1bb{bottom:427.742193pt;}
.y16{bottom:427.909833pt;}
.y1db{bottom:432.338541pt;}
.y91{bottom:436.473953pt;}
.y17a{bottom:439.338540pt;}
.yc3{bottom:439.408860pt;}
.y19a{bottom:439.411460pt;}
.y1ed{bottom:440.609380pt;}
.y21b{bottom:441.270833pt;}
.y119{bottom:441.763014pt;}
.y206{bottom:442.468753pt;}
.y5{bottom:443.655353pt;}
.yb4{bottom:444.473953pt;}
.yd7{bottom:444.670567pt;}
.y16d{bottom:444.671873pt;}
.y2e{bottom:445.539060pt;}
.y1cf{bottom:445.671873pt;}
.y101{bottom:450.003900pt;}
.ya2{bottom:451.006514pt;}
.y45{bottom:452.205727pt;}
.yd1{bottom:452.742193pt;}
.y148{bottom:453.674473pt;}
.y136{bottom:453.942713pt;}
.y15e{bottom:454.406247pt;}
.y76{bottom:454.872393pt;}
.y1ba{bottom:455.338540pt;}
.y15{bottom:455.507487pt;}
.y66{bottom:455.803380pt;}
.y90{bottom:464.071620pt;}
.y179{bottom:466.934900pt;}
.ye7{bottom:467.005207pt;}
.y1a5{bottom:467.007807pt;}
.y1fc{bottom:467.010420pt;}
.y1ec{bottom:468.208327pt;}
.yb3{bottom:472.071620pt;}
.yd6{bottom:472.268233pt;}
.y16c{bottom:472.270833pt;}
.y1ce{bottom:473.270833pt;}
.y2d{bottom:477.136713pt;}
.y100{bottom:477.601567pt;}
.y44{bottom:479.803380pt;}
.y199{bottom:480.338540pt;}
.yc2{bottom:480.339847pt;}
.y147{bottom:481.270833pt;}
.y135{bottom:481.539060pt;}
.y15d{bottom:482.005207pt;}
.y21a{bottom:482.203127pt;}
.y18d{bottom:482.380210pt;}
.y75{bottom:482.470047pt;}
.y1b9{bottom:482.937500pt;}
.y14{bottom:483.105140pt;}
.y65{bottom:483.401047pt;}
.y8f{bottom:491.669273pt;}
.y178{bottom:494.533860pt;}
.ya1{bottom:494.604167pt;}
.y22b{bottom:495.536460pt;}
.yb2{bottom:499.669273pt;}
.y1cd{bottom:500.867193pt;}
.yff{bottom:505.199220pt;}
.y43{bottom:507.401047pt;}
.y60{bottom:507.937500pt;}
.y2c{bottom:508.734380pt;}
.y146{bottom:508.869793pt;}
.y134{bottom:509.135420pt;}
.y15c{bottom:509.601567pt;}
.y219{bottom:509.802087pt;}
.y74{bottom:510.067713pt;}
.y4{bottom:512.183953pt;}
.y177{bottom:522.130207pt;}
.ye6{bottom:522.200527pt;}
.ya0{bottom:522.201820pt;}
.y1a4{bottom:522.203127pt;}
.y22a{bottom:523.135420pt;}
.y1b8{bottom:523.867193pt;}
.y205{bottom:524.333327pt;}
.yb1{bottom:527.266927pt;}
.y1cc{bottom:528.463540pt;}
.y8e{bottom:532.600260pt;}
.y42{bottom:534.998700pt;}
.y5f{bottom:535.535153pt;}
.y198{bottom:535.536460pt;}
.y1eb{bottom:536.734380pt;}
.y15b{bottom:537.197913pt;}
.y218{bottom:537.395833pt;}
.y73{bottom:537.665367pt;}
.y3{bottom:539.781620pt;}
.y2b{bottom:540.332033pt;}
.yfe{bottom:546.130207pt;}
.y13{bottom:546.740552pt;}
.y176{bottom:549.729167pt;}
.y9f{bottom:549.799473pt;}
.y1a3{bottom:549.802087pt;}
.y133{bottom:550.067713pt;}
.y229{bottom:550.729167pt;}
.yd5{bottom:550.907558pt;}
.y16b{bottom:550.908850pt;}
.y1b7{bottom:551.463540pt;}
.y204{bottom:551.927087pt;}
.y1cb{bottom:556.062500pt;}
.y8d{bottom:560.197913pt;}
.y41{bottom:562.596353pt;}
.y5e{bottom:563.132807pt;}
.y1ea{bottom:564.333327pt;}
.y15a{bottom:564.796873pt;}
.y64{bottom:565.263020pt;}
.yb0{bottom:570.864580pt;}
.y2a{bottom:571.929687pt;}
.yfd{bottom:573.729167pt;}
.y175{bottom:577.325527pt;}
.ye5{bottom:577.395833pt;}
.y9e{bottom:577.397140pt;}
.y18c{bottom:577.398433pt;}
.y132{bottom:577.666660pt;}
.y217{bottom:578.328127pt;}
.y1b6{bottom:579.062500pt;}
.y1ca{bottom:583.661460pt;}
.y8c{bottom:587.795567pt;}
.y40{bottom:590.194007pt;}
.y129{bottom:590.729167pt;}
.y5d{bottom:590.730473pt;}
.y228{bottom:591.661460pt;}
.y1e9{bottom:591.929687pt;}
.y159{bottom:592.395833pt;}
.y203{bottom:592.859380pt;}
.y72{bottom:592.860673pt;}
.yaf{bottom:598.462233pt;}
.yfc{bottom:601.325527pt;}
.y29{bottom:603.527340pt;}
.y9d{bottom:604.994793pt;}
.y131{bottom:605.263020pt;}
.y216{bottom:605.927087pt;}
.y1b5{bottom:606.661460pt;}
.y1c9{bottom:611.257807pt;}
.y8b{bottom:615.393233pt;}
.y5c{bottom:618.328127pt;}
.y227{bottom:619.260420pt;}
.y1e8{bottom:619.526047pt;}
.y158{bottom:619.992193pt;}
.y71{bottom:620.458327pt;}
.y2{bottom:622.574580pt;}
.yae{bottom:626.059900pt;}
.yfb{bottom:628.924473pt;}
.y3f{bottom:631.124993pt;}
.ye4{bottom:632.591140pt;}
.y18b{bottom:632.593753pt;}
.y130{bottom:632.861980pt;}
.y1b4{bottom:634.257807pt;}
.y28{bottom:635.124993pt;}
.y1c8{bottom:638.854167pt;}
.y8a{bottom:642.990887pt;}
.y5b{bottom:645.925780pt;}
.y128{bottom:645.927087pt;}
.y215{bottom:646.854167pt;}
.y1e7{bottom:647.124993pt;}
.y202{bottom:648.052087pt;}
.y1{bottom:650.172247pt;}
.y12{bottom:652.825193pt;}
.yad{bottom:653.657553pt;}
.yfa{bottom:656.520833pt;}
.y3e{bottom:658.722660pt;}
.y10f{bottom:660.190100pt;}
.y18a{bottom:660.192713pt;}
.y12f{bottom:660.458327pt;}
.y157{bottom:660.924473pt;}
.y174{bottom:661.299477pt;}
.y70{bottom:661.389327pt;}
.y1b3{bottom:661.854167pt;}
.y27{bottom:662.722660pt;}
.y89{bottom:670.588540pt;}
.y1fb{bottom:673.520833pt;}
.y5a{bottom:673.523433pt;}
.y214{bottom:674.453127pt;}
.y201{bottom:675.651047pt;}
.y1c7{bottom:679.786461pt;}
.y11{bottom:680.422847pt;}
.yac{bottom:681.255207pt;}
.yf9{bottom:684.119793pt;}
.y3d{bottom:686.320313pt;}
.y1e0{bottom:686.854167pt;}
.y10e{bottom:687.786460pt;}
.y189{bottom:687.789060pt;}
.y226{bottom:687.791660pt;}
.y1e6{bottom:688.054687pt;}
.y63{bottom:688.055993pt;}
.y12e{bottom:688.057287pt;}
.y156{bottom:688.520833pt;}
.y6f{bottom:688.986980pt;}
.y1b2{bottom:689.453127pt;}
.y26{bottom:694.320313pt;}
.y88{bottom:698.186193pt;}
.y127{bottom:701.119793pt;}
.y59{bottom:701.121100pt;}
.y213{bottom:702.052087pt;}
.y10{bottom:708.020513pt;}
.yab{bottom:708.852860pt;}
.yf8{bottom:711.716140pt;}
.y3c{bottom:713.917967pt;}
.y197{bottom:714.453127pt;}
.yd0{bottom:714.454433pt;}
.y225{bottom:715.385420pt;}
.y1e5{bottom:715.651047pt;}
.y62{bottom:715.653647pt;}
.y155{bottom:716.119793pt;}
.y200{bottom:716.583327pt;}
.y6e{bottom:716.584633pt;}
.y87{bottom:725.783860pt;}
.y25{bottom:725.917967pt;}
.y58{bottom:728.718753pt;}
.y1b1{bottom:730.382807pt;}
.yf{bottom:735.618167pt;}
.yaa{bottom:736.450527pt;}
.yf7{bottom:739.315100pt;}
.y3b{bottom:741.515620pt;}
.ycf{bottom:742.052087pt;}
.y212{bottom:742.984380pt;}
.y1e4{bottom:743.249993pt;}
.y12d{bottom:743.252607pt;}
.y154{bottom:743.716140pt;}
.y6d{bottom:744.182287pt;}
.y86{bottom:753.381513pt;}
.y57{bottom:756.316407pt;}
.y126{bottom:756.317713pt;}
.y24{bottom:757.515620pt;}
.y1b0{bottom:757.979167pt;}
.ye{bottom:763.215820pt;}
.ya9{bottom:764.048180pt;}
.y3a{bottom:769.113287pt;}
.y196{bottom:769.648433pt;}
.yce{bottom:769.649740pt;}
.yf3{bottom:769.651047pt;}
.y211{bottom:770.583327pt;}
.y12c{bottom:770.848953pt;}
.y153{bottom:771.315100pt;}
.y6c{bottom:771.779953pt;}
.y83{bottom:783.914060pt;}
.y1fa{bottom:783.916660pt;}
.y1ff{bottom:785.114580pt;}
.y1af{bottom:785.578127pt;}
.y23{bottom:789.113287pt;}
.yd{bottom:790.813473pt;}
.y39{bottom:796.710941pt;}
.y195{bottom:797.244793pt;}
.y56{bottom:797.247393pt;}
.y1e3{bottom:798.445313pt;}
.y61{bottom:798.446620pt;}
.y12b{bottom:798.447913pt;}
.y152{bottom:798.911460pt;}
.y6b{bottom:799.377607pt;}
.y145{bottom:811.510420pt;}
.y82{bottom:811.511713pt;}
.y1fe{bottom:812.708327pt;}
.y1ae{bottom:813.177087pt;}
.yc{bottom:818.411133pt;}
.y22{bottom:820.710937pt;}
.yf6{bottom:823.286457pt;}
.y194{bottom:824.843749pt;}
.y55{bottom:824.845052pt;}
.yf2{bottom:824.846355pt;}
.y1e2{bottom:826.041667pt;}
.y151{bottom:826.510416pt;}
.yc1{bottom:839.109375pt;}
.y1ad{bottom:840.773437pt;}
.yb{bottom:846.008789pt;}
.y54{bottom:852.442708pt;}
.y150{bottom:854.106771pt;}
.yd4{bottom:866.707031pt;}
.y144{bottom:866.708333pt;}
.y85{bottom:879.281248pt;}
.y193{bottom:880.039063pt;}
.y53{bottom:880.040364pt;}
.yf1{bottom:880.041667pt;}
.y1ac{bottom:881.708333pt;}
.y143{bottom:894.304688pt;}
.y188{bottom:907.635416pt;}
.y52{bottom:907.638021pt;}
.ya{bottom:924.032552pt;}
.y1e1{bottom:925.276040pt;}
.y38{bottom:925.277343pt;}
.y21{bottom:925.277506pt;}
.y12a{bottom:925.278644pt;}
.y1ab{bottom:932.744791pt;}
.y14f{bottom:932.747395pt;}
.y187{bottom:935.234375pt;}
.y51{bottom:935.235677pt;}
.yf0{bottom:935.236979pt;}
.h7{height:44.437500pt;}
.h1{height:56.843750pt;}
.h2{height:57.375000pt;}
.h9{height:61.580732pt;}
.h8{height:66.317706pt;}
.h5{height:94.488119pt;}
.h6{height:94.488280pt;}
.ha{height:94.489584pt;}
.h4{height:94.739581pt;}
.h3{height:99.476563pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xc{left:113.385824pt;}
.x13{left:123.267514pt;}
.x16{left:124.399884pt;}
.x3{left:131.789060pt;}
.xf{left:137.385824pt;}
.x17{left:146.084509pt;}
.xb{left:161.385824pt;}
.x18{left:167.385824pt;}
.x1a{left:178.786184pt;}
.x14{left:227.673330pt;}
.x1{left:244.726553pt;}
.x19{left:251.739446pt;}
.x6{left:281.097647pt;}
.x2{left:283.234364pt;}
.x8{left:285.062494pt;}
.x10{left:287.298464pt;}
.x12{left:289.511144pt;}
.x7{left:306.609364pt;}
.x5{left:309.105464pt;}
.x9{left:313.355464pt;}
.x11{left:318.646994pt;}
.xd{left:335.417684pt;}
.xa{left:337.993154pt;}
.x4{left:359.554674pt;}
.x15{left:686.614154pt;}
.xe{left:694.614154pt;}
}




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