
    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_2480de5cf163b3e30c1635e6.woff')format("woff");}.ff1{font-family:ff1;line-height:1.105957;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_7157e6f81288a3bc88a915ef.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_b9a3621b512e5eb9b346ec51.woff')format("woff");}.ff3{font-family:ff3;line-height:1.105957;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_a99b2c08dde0fa8595d346eb.woff')format("woff");}.ff4{font-family:ff4;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_8fbe15f090774efa8b65185b.woff')format("woff");}.ff5{font-family:ff5;line-height:1.082031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_0f77ad57ec8cd3a7b1483f3c.woff')format("woff");}.ff6{font-family:ff6;line-height:1.017090;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_e77b9dc9f1ae9fd032f08e1f.woff')format("woff");}.ff7{font-family:ff7;line-height:0.947266;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;}
.m1{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);}
.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);}
.v3{vertical-align:-11.982000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:11.982000px;}
.v1{vertical-align:13.956600px;}
.v2{vertical-align:16.948200px;}
.ls28{letter-spacing:-6.480000px;}
.ls3{letter-spacing:-5.166000px;}
.ls23{letter-spacing:-4.275000px;}
.ls43{letter-spacing:-2.700000px;}
.ls40{letter-spacing:-2.520000px;}
.ls26{letter-spacing:-2.175000px;}
.ls5{letter-spacing:-1.944000px;}
.ls1b{letter-spacing:-1.350000px;}
.ls2d{letter-spacing:-1.320000px;}
.ls11{letter-spacing:-1.296000px;}
.lsd{letter-spacing:-1.215000px;}
.ls31{letter-spacing:-1.200000px;}
.ls2c{letter-spacing:-1.080000px;}
.ls1f{letter-spacing:-0.972000px;}
.ls36{letter-spacing:-0.960000px;}
.ls45{letter-spacing:-0.900000px;}
.ls2e{letter-spacing:-0.840000px;}
.ls44{letter-spacing:-0.780000px;}
.ls15{letter-spacing:-0.621000px;}
.ls39{letter-spacing:-0.480000px;}
.ls33{letter-spacing:-0.420000px;}
.ls29{letter-spacing:-0.384780px;}
.ls16{letter-spacing:-0.362043px;}
.ls34{letter-spacing:-0.360000px;}
.ls12{letter-spacing:-0.345000px;}
.lsf{letter-spacing:-0.300000px;}
.ls2f{letter-spacing:-0.240000px;}
.ls3d{letter-spacing:-0.180000px;}
.ls41{letter-spacing:-0.060000px;}
.ls2{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.000300px;}
.ls1e{letter-spacing:0.049500px;}
.ls2b{letter-spacing:0.240000px;}
.ls2a{letter-spacing:0.360000px;}
.ls3c{letter-spacing:0.840000px;}
.ls37{letter-spacing:0.900000px;}
.ls3b{letter-spacing:1.020000px;}
.ls42{letter-spacing:1.200000px;}
.ls3e{letter-spacing:1.260000px;}
.ls3a{letter-spacing:1.380000px;}
.lsa{letter-spacing:1.401600px;}
.ls38{letter-spacing:1.500000px;}
.lsc{letter-spacing:1.512000px;}
.ls32{letter-spacing:1.620000px;}
.ls35{letter-spacing:1.740000px;}
.ls30{letter-spacing:1.920000px;}
.lsb{letter-spacing:2.400000px;}
.ls1{letter-spacing:4.200000px;}
.ls14{letter-spacing:4.471200px;}
.ls7{letter-spacing:5.760000px;}
.ls6{letter-spacing:5.880000px;}
.ls19{letter-spacing:5.954700px;}
.ls4{letter-spacing:6.000000px;}
.ls21{letter-spacing:6.300000px;}
.ls24{letter-spacing:6.867000px;}
.ls27{letter-spacing:8.160156px;}
.ls22{letter-spacing:11.623500px;}
.ls8{letter-spacing:466.724400px;}
.ls10{letter-spacing:467.324400px;}
.ls17{letter-spacing:467.512200px;}
.ls1d{letter-spacing:470.257200px;}
.ls3f{letter-spacing:470.369400px;}
.ls1a{letter-spacing:470.392200px;}
.ls25{letter-spacing:471.487200px;}
.ls20{letter-spacing:473.527200px;}
.ls18{letter-spacing:1012.464000px;}
.ls0{letter-spacing:1012.959000px;}
.lse{letter-spacing:1015.584000px;}
.ls13{letter-spacing:1019.634000px;}
.ls1c{letter-spacing:1021.614000px;}
.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;}
}
.ws1c{word-spacing:-24.570000px;}
.ws20{word-spacing:-22.860000px;}
.ws0{word-spacing:-22.740000px;}
.ws2{word-spacing:-22.620000px;}
.ws1a{word-spacing:-21.789000px;}
.wsa{word-spacing:-21.546000px;}
.ws12{word-spacing:-21.465000px;}
.ws8{word-spacing:-21.075000px;}
.ws17{word-spacing:-19.725000px;}
.wsc{word-spacing:-19.389000px;}
.ws22{word-spacing:-18.900000px;}
.ws29{word-spacing:-18.600000px;}
.ws27{word-spacing:-18.480000px;}
.ws2d{word-spacing:-18.240000px;}
.ws33{word-spacing:-18.120000px;}
.ws44{word-spacing:-18.060000px;}
.ws2c{word-spacing:-17.760000px;}
.ws1e{word-spacing:-17.703000px;}
.ws31{word-spacing:-17.700000px;}
.wse{word-spacing:-17.043000px;}
.ws21{word-spacing:-16.860000px;}
.ws1b{word-spacing:-16.800000px;}
.ws32{word-spacing:-16.680000px;}
.ws30{word-spacing:-16.620000px;}
.ws14{word-spacing:-16.422000px;}
.ws1d{word-spacing:-15.561000px;}
.ws25{word-spacing:-15.360000px;}
.ws24{word-spacing:-15.120000px;}
.ws23{word-spacing:-14.820000px;}
.ws28{word-spacing:-14.460000px;}
.ws46{word-spacing:-13.620000px;}
.ws18{word-spacing:-13.338000px;}
.ws9{word-spacing:-13.314000px;}
.wsb{word-spacing:-11.303787px;}
.ws15{word-spacing:-10.941744px;}
.ws1{word-spacing:-9.829380px;}
.wsf{word-spacing:-8.846442px;}
.ws1f{word-spacing:-6.300000px;}
.ws5{word-spacing:-6.000000px;}
.ws7{word-spacing:-4.200000px;}
.wsd{word-spacing:-2.400000px;}
.ws3b{word-spacing:-1.920000px;}
.ws41{word-spacing:-1.620000px;}
.ws3f{word-spacing:-1.500000px;}
.ws48{word-spacing:-1.260000px;}
.ws3d{word-spacing:-0.900000px;}
.ws36{word-spacing:-0.360000px;}
.ws37{word-spacing:-0.240000px;}
.ws3{word-spacing:0.000000px;}
.ws47{word-spacing:0.060000px;}
.ws3a{word-spacing:0.240000px;}
.ws10{word-spacing:0.300000px;}
.ws13{word-spacing:0.345000px;}
.ws3e{word-spacing:0.360000px;}
.ws35{word-spacing:0.384780px;}
.ws3c{word-spacing:0.420000px;}
.ws40{word-spacing:0.480000px;}
.ws16{word-spacing:0.621000px;}
.ws49{word-spacing:0.780000px;}
.ws39{word-spacing:0.840000px;}
.ws4a{word-spacing:0.900000px;}
.ws38{word-spacing:1.320000px;}
.ws6{word-spacing:1.944000px;}
.ws19{word-spacing:4.899000px;}
.ws4{word-spacing:5.166000px;}
.ws34{word-spacing:6.480000px;}
.ws11{word-spacing:8.153838px;}
.ws42{word-spacing:281.772000px;}
.ws2f{word-spacing:285.648000px;}
.ws2e{word-spacing:291.984000px;}
.ws2a{word-spacing:295.014000px;}
.ws2b{word-spacing:296.226000px;}
.ws43{word-spacing:298.908000px;}
.ws45{word-spacing:299.448000px;}
.ws26{word-spacing:299.856000px;}
._12{margin-left:-18.888000px;}
._15{margin-left:-17.333700px;}
._9{margin-left:-10.205400px;}
._1b{margin-left:-8.181600px;}
._f{margin-left:-6.517200px;}
._8{margin-left:-5.295000px;}
._14{margin-left:-4.214100px;}
._1{margin-left:-3.078000px;}
._2{margin-left:-1.128000px;}
._7{width:1.086000px;}
._a{width:2.110020px;}
._6{width:3.112200px;}
._3{width:4.781700px;}
._5{width:6.111000px;}
._4{width:7.560000px;}
._10{width:8.687100px;}
._d{width:10.140000px;}
._c{width:11.849580px;}
._17{width:13.454400px;}
._18{width:15.775500px;}
._19{width:22.242000px;}
._1a{width:23.472000px;}
._16{width:27.704160px;}
._13{width:35.291322px;}
._11{width:43.445160px;}
._25{width:81.217980px;}
._e{width:85.554000px;}
._24{width:94.345980px;}
._1c{width:99.054000px;}
._1f{width:103.429980px;}
._1d{width:113.244000px;}
._28{width:118.821960px;}
._21{width:120.797760px;}
._20{width:123.011940px;}
._29{width:153.308100px;}
._b{width:260.610000px;}
._1e{width:299.627940px;}
._22{width:352.989960px;}
._26{width:402.375960px;}
._27{width:409.045980px;}
._23{width:474.150000px;}
._0{width:578.400000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:31.482000px;}
.fs6{font-size:34.980000px;}
.fsb{font-size:40.227000px;}
.fs7{font-size:42.000000px;}
.fs8{font-size:48.000000px;}
.fsd{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fsa{font-size:69.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:75.000000px;}
.fs9{font-size:81.000000px;}
.fs5{font-size:84.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.ya4{bottom:97.924200px;}
.y168{bottom:106.118850px;}
.y85{bottom:106.196400px;}
.y186{bottom:106.264200px;}
.y68{bottom:106.290300px;}
.yd8{bottom:106.293450px;}
.yfc{bottom:106.296450px;}
.y1e0{bottom:106.299150px;}
.y124{bottom:106.299300px;}
.y14a{bottom:106.570800px;}
.ycb{bottom:108.630900px;}
.y41{bottom:109.294800px;}
.yb4{bottom:112.951350px;}
.y1b2{bottom:113.536800px;}
.y1c1{bottom:113.537850px;}
.y1b8{bottom:113.551800px;}
.y1cc{bottom:113.552850px;}
.y1ef{bottom:114.029400px;}
.y1ea{bottom:114.044400px;}
.y1d8{bottom:114.045450px;}
.y216{bottom:114.051450px;}
.y1c7{bottom:114.062850px;}
.y20b{bottom:114.180450px;}
.y1f6{bottom:114.181800px;}
.y1ce{bottom:114.227850px;}
.y205{bottom:114.547650px;}
.y20c{bottom:114.660450px;}
.y1f7{bottom:114.661800px;}
.y1f5{bottom:114.667800px;}
.y1b7{bottom:114.676800px;}
.y1d7{bottom:114.771750px;}
.y1fd{bottom:114.856800px;}
.y1c0{bottom:114.862200px;}
.y1cf{bottom:114.887850px;}
.y1fe{bottom:114.908100px;}
.y1d9{bottom:114.915450px;}
.y1bf{bottom:114.991800px;}
.y217{bottom:114.996450px;}
.y1d0{bottom:115.592850px;}
.y67{bottom:123.543300px;}
.yd7{bottom:123.546450px;}
.yfb{bottom:123.549450px;}
.y1a8{bottom:126.311700px;}
.yfa{bottom:126.544950px;}
.y149{bottom:126.908550px;}
.y1a9{bottom:126.943500px;}
.y185{bottom:127.639200px;}
.y123{bottom:127.798200px;}
.y1e2{bottom:127.828950px;}
.y1e1{bottom:127.936950px;}
.y167{bottom:128.168850px;}
.yca{bottom:130.133100px;}
.y40{bottom:130.796700px;}
.y66{bottom:140.796300px;}
.ya3{bottom:141.940950px;}
.yd6{bottom:143.794950px;}
.y122{bottom:145.051200px;}
.yf9{bottom:145.051500px;}
.y148{bottom:147.246300px;}
.y121{bottom:148.046700px;}
.yf8{bottom:148.047000px;}
.y184{bottom:149.014200px;}
.y65{bottom:158.049300px;}
.y166{bottom:158.723850px;}
.y64{bottom:161.044800px;}
.y1ab{bottom:161.849400px;}
.ya2{bottom:162.192450px;}
.y1aa{bottom:164.084400px;}
.y1e3{bottom:166.349400px;}
.y120{bottom:166.553250px;}
.y147{bottom:167.584050px;}
.y11f{bottom:169.548750px;}
.y183{bottom:170.389200px;}
.yc9{bottom:174.140850px;}
.y3f{bottom:174.836550px;}
.y165{bottom:180.773850px;}
.y63{bottom:182.546700px;}
.y146{bottom:187.921800px;}
.y11e{bottom:188.052150px;}
.y182{bottom:191.764200px;}
.yf7{bottom:191.998350px;}
.yc8{bottom:194.392350px;}
.y3e{bottom:195.553800px;}
.y62{bottom:201.050250px;}
.y1b{bottom:201.628050px;}
.ya1{bottom:202.692450px;}
.y11d{bottom:205.305150px;}
.yd5{bottom:207.910950px;}
.y145{bottom:208.259550px;}
.y11c{bottom:208.300650px;}
.y164{bottom:211.328850px;}
.yf6{bottom:212.767350px;}
.y181{bottom:213.139200px;}
.yc7{bottom:214.643850px;}
.y3d{bottom:216.271050px;}
.y61{bottom:221.298750px;}
.y1a{bottom:222.628050px;}
.ya0{bottom:222.942450px;}
.yd4{bottom:228.162450px;}
.y144{bottom:228.597300px;}
.y163{bottom:233.378850px;}
.yf5{bottom:233.536350px;}
.y180{bottom:234.514200px;}
.yc6{bottom:234.895350px;}
.y3c{bottom:237.053250px;}
.y1a7{bottom:242.442750px;}
.y19{bottom:243.637800px;}
.yd3{bottom:248.413950px;}
.y143{bottom:248.935050px;}
.y11b{bottom:252.363750px;}
.yf4{bottom:254.305350px;}
.yc5{bottom:255.146850px;}
.y17f{bottom:255.889200px;}
.y3b{bottom:257.770500px;}
.y1a6{bottom:262.692750px;}
.y18{bottom:263.137800px;}
.y162{bottom:263.933850px;}
.y60{bottom:265.339650px;}
.yd2{bottom:268.665450px;}
.y142{bottom:269.272800px;}
.y11a{bottom:273.339750px;}
.yf3{bottom:275.074350px;}
.yc4{bottom:275.398350px;}
.y17e{bottom:277.264200px;}
.y3a{bottom:278.487750px;}
.y17{bottom:282.637800px;}
.y1a5{bottom:282.942750px;}
.y161{bottom:285.983850px;}
.y5f{bottom:287.316150px;}
.y141{bottom:289.610550px;}
.y119{bottom:294.315750px;}
.yc3{bottom:295.649850px;}
.yf2{bottom:295.843350px;}
.y17d{bottom:298.639200px;}
.y39{bottom:299.205000px;}
.y16{bottom:302.137800px;}
.y1a4{bottom:303.192750px;}
.y84{bottom:308.657400px;}
.y5e{bottom:309.292650px;}
.y140{bottom:309.948300px;}
.y118{bottom:315.291750px;}
.y206{bottom:315.660450px;}
.yc2{bottom:315.890850px;}
.y160{bottom:316.538850px;}
.yf1{bottom:316.612350px;}
.y1d1{bottom:316.652850px;}
.y1da{bottom:316.890450px;}
.y1c2{bottom:316.892850px;}
.y20d{bottom:316.956450px;}
.y1b9{bottom:316.966800px;}
.y218{bottom:316.986450px;}
.y1f8{bottom:317.191800px;}
.y1b3{bottom:317.206800px;}
.y1f0{bottom:317.339400px;}
.y1ff{bottom:317.343900px;}
.y1eb{bottom:317.354400px;}
.y207{bottom:317.355450px;}
.y1f9{bottom:317.356800px;}
.y200{bottom:317.358900px;}
.y20e{bottom:317.361450px;}
.y1db{bottom:317.370450px;}
.y1ba{bottom:317.371800px;}
.y1c3{bottom:317.372850px;}
.y1c8{bottom:317.387850px;}
.y1d2{bottom:317.417850px;}
.y219{bottom:318.051450px;}
.y38{bottom:319.922250px;}
.y17c{bottom:320.014200px;}
.y15{bottom:321.637800px;}
.y1e4{bottom:322.649400px;}
.y1ac{bottom:322.651800px;}
.y83{bottom:328.908900px;}
.y13f{bottom:330.286050px;}
.y5d{bottom:331.269150px;}
.yb3{bottom:335.683350px;}
.yc1{bottom:336.142350px;}
.y1a3{bottom:336.192750px;}
.y117{bottom:336.267750px;}
.yf0{bottom:337.381350px;}
.y15f{bottom:338.588850px;}
.y37{bottom:340.639500px;}
.y17b{bottom:341.389200px;}
.y82{bottom:349.160400px;}
.y13e{bottom:350.623800px;}
.y9f{bottom:352.925400px;}
.y5c{bottom:353.245650px;}
.y14{bottom:353.887800px;}
.yb2{bottom:355.934850px;}
.yc0{bottom:356.393850px;}
.y116{bottom:357.243750px;}
.yef{bottom:358.150350px;}
.y36{bottom:361.356750px;}
.y17a{bottom:362.764200px;}
.y15e{bottom:369.143850px;}
.y81{bottom:369.411900px;}
.y13d{bottom:370.961550px;}
.y9e{bottom:373.176900px;}
.y5b{bottom:375.222150px;}
.yb1{bottom:376.186350px;}
.ybf{bottom:376.645350px;}
.y1a2{bottom:377.697750px;}
.y115{bottom:378.219750px;}
.yee{bottom:378.904500px;}
.y35{bottom:382.074000px;}
.y179{bottom:384.139200px;}
.y80{bottom:389.663400px;}
.y13c{bottom:391.299300px;}
.y9d{bottom:393.428400px;}
.yb0{bottom:396.437850px;}
.ybe{bottom:396.896850px;}
.y1a1{bottom:397.197750px;}
.y5a{bottom:397.198650px;}
.y114{bottom:399.195750px;}
.yed{bottom:399.673500px;}
.y15d{bottom:399.698850px;}
.y34{bottom:402.791250px;}
.y13{bottom:403.147800px;}
.y178{bottom:405.514200px;}
.y7f{bottom:409.914900px;}
.y13b{bottom:411.637050px;}
.y9c{bottom:413.679900px;}
.yaf{bottom:416.689350px;}
.y1a0{bottom:416.697750px;}
.ybd{bottom:417.148350px;}
.y59{bottom:419.175150px;}
.y113{bottom:420.171750px;}
.yec{bottom:420.442500px;}
.y15c{bottom:421.748850px;}
.y33{bottom:423.652500px;}
.y12{bottom:424.147800px;}
.y177{bottom:426.889200px;}
.y7e{bottom:430.166400px;}
.y13a{bottom:431.974800px;}
.y9b{bottom:433.931400px;}
.y19f{bottom:436.197750px;}
.yae{bottom:436.940850px;}
.ybc{bottom:437.399850px;}
.y112{bottom:441.147750px;}
.y58{bottom:441.151650px;}
.y15b{bottom:443.798850px;}
.y32{bottom:444.369750px;}
.y11{bottom:445.147800px;}
.y176{bottom:448.264200px;}
.y7d{bottom:450.417900px;}
.y139{bottom:452.312550px;}
.y9a{bottom:454.182900px;}
.y19e{bottom:455.697750px;}
.yad{bottom:457.192350px;}
.ybb{bottom:457.651350px;}
.y111{bottom:462.123750px;}
.yeb{bottom:462.472950px;}
.y57{bottom:463.128150px;}
.y10{bottom:464.647800px;}
.y1ed{bottom:464.714400px;}
.y1dd{bottom:464.730450px;}
.y1bc{bottom:464.731800px;}
.y1f1{bottom:464.954400px;}
.y20f{bottom:464.976450px;}
.y1d3{bottom:465.032850px;}
.y202{bottom:465.078900px;}
.y31{bottom:465.087000px;}
.y211{bottom:465.216450px;}
.y1ca{bottom:465.257850px;}
.y15a{bottom:465.848850px;}
.y1bd{bottom:465.961800px;}
.y1f2{bottom:465.989400px;}
.y1fb{bottom:466.021800px;}
.y1ec{bottom:466.034400px;}
.y208{bottom:466.035450px;}
.y1dc{bottom:466.050450px;}
.y1bb{bottom:466.051800px;}
.y1d4{bottom:466.067850px;}
.y209{bottom:466.095450px;}
.y1fa{bottom:466.231800px;}
.y201{bottom:466.233900px;}
.y212{bottom:466.416450px;}
.y1b4{bottom:466.426800px;}
.y21a{bottom:466.431450px;}
.y1c4{bottom:466.442850px;}
.y214{bottom:466.446450px;}
.y1b5{bottom:466.456800px;}
.y1c9{bottom:466.457850px;}
.y21b{bottom:466.461450px;}
.y1c5{bottom:466.472850px;}
.y213{bottom:466.521450px;}
.y210{bottom:466.701450px;}
.y175{bottom:469.639200px;}
.y7c{bottom:470.669400px;}
.y138{bottom:472.650300px;}
.y99{bottom:474.434400px;}
.y19d{bottom:475.197750px;}
.yac{bottom:477.443850px;}
.y110{bottom:483.128400px;}
.yf{bottom:484.147800px;}
.y56{bottom:485.109300px;}
.y30{bottom:485.804250px;}
.yea{bottom:486.975450px;}
.y7b{bottom:490.920900px;}
.y137{bottom:492.988050px;}
.y98{bottom:494.685900px;}
.y19c{bottom:494.697750px;}
.y159{bottom:496.403850px;}
.yab{bottom:497.695350px;}
.yba{bottom:497.701350px;}
.ye{bottom:503.647800px;}
.y174{bottom:503.764200px;}
.y10f{bottom:504.104400px;}
.y2f{bottom:506.521500px;}
.y55{bottom:507.085800px;}
.y7a{bottom:511.172400px;}
.y136{bottom:513.325800px;}
.y19b{bottom:514.197750px;}
.y97{bottom:514.937400px;}
.yaa{bottom:517.946850px;}
.yd{bottom:523.153650px;}
.y10e{bottom:525.080400px;}
.y158{bottom:526.958850px;}
.y2e{bottom:527.238750px;}
.y54{bottom:529.091850px;}
.y79{bottom:531.423900px;}
.y135{bottom:533.663550px;}
.y19a{bottom:533.697750px;}
.y96{bottom:535.188900px;}
.ya9{bottom:538.198350px;}
.yc{bottom:542.653650px;}
.y10d{bottom:546.056400px;}
.y2d{bottom:547.956000px;}
.ye9{bottom:549.747300px;}
.y53{bottom:551.068350px;}
.y78{bottom:551.675400px;}
.y199{bottom:553.197750px;}
.y134{bottom:554.001300px;}
.y95{bottom:555.440400px;}
.y157{bottom:557.513850px;}
.ya8{bottom:558.449850px;}
.y173{bottom:563.402400px;}
.y10c{bottom:567.032400px;}
.y2c{bottom:568.673250px;}
.ye8{bottom:570.516300px;}
.y77{bottom:571.926900px;}
.y198{bottom:572.697750px;}
.y52{bottom:573.044850px;}
.y133{bottom:574.339050px;}
.yb{bottom:574.903650px;}
.y94{bottom:575.691900px;}
.ya7{bottom:578.701350px;}
.y156{bottom:579.563850px;}
.y10b{bottom:588.008400px;}
.y2b{bottom:589.390500px;}
.ye7{bottom:591.166350px;}
.y76{bottom:592.178400px;}
.y197{bottom:592.197750px;}
.y172{bottom:592.277400px;}
.yd1{bottom:592.672200px;}
.y132{bottom:594.676800px;}
.y51{bottom:595.021350px;}
.y93{bottom:595.943400px;}
.y10a{bottom:608.984400px;}
.y2a{bottom:610.107750px;}
.y155{bottom:610.118850px;}
.y196{bottom:611.697750px;}
.ye6{bottom:611.935350px;}
.y75{bottom:612.429900px;}
.yd0{bottom:612.923700px;}
.y1b6{bottom:613.081800px;}
.y1be{bottom:613.096800px;}
.y1c6{bottom:613.097850px;}
.y1cb{bottom:613.112850px;}
.y1f3{bottom:613.484400px;}
.y203{bottom:613.518900px;}
.y21c{bottom:613.521450px;}
.y1de{bottom:613.530450px;}
.y1d5{bottom:613.562850px;}
.y1ee{bottom:614.624400px;}
.y20a{bottom:614.625450px;}
.y1fc{bottom:614.626800px;}
.y215{bottom:614.631450px;}
.y1cd{bottom:614.672850px;}
.y131{bottom:615.014550px;}
.y92{bottom:616.194900px;}
.y50{bottom:616.997850px;}
.ya6{bottom:619.201350px;}
.y109{bottom:629.972550px;}
.y29{bottom:630.825000px;}
.y195{bottom:631.197750px;}
.y154{bottom:632.168850px;}
.ya{bottom:632.665350px;}
.y74{bottom:632.681400px;}
.ye5{bottom:632.704350px;}
.y130{bottom:635.352300px;}
.y91{bottom:636.444900px;}
.y4f{bottom:638.974350px;}
.y1e5{bottom:646.994400px;}
.y1ad{bottom:646.996800px;}
.y194{bottom:650.697750px;}
.y108{bottom:650.948550px;}
.y28{bottom:651.542250px;}
.y73{bottom:652.932900px;}
.ye4{bottom:653.473350px;}
.ycf{bottom:654.437400px;}
.y12f{bottom:655.690050px;}
.y90{bottom:656.681400px;}
.y9{bottom:659.671350px;}
.y4e{bottom:660.950850px;}
.y153{bottom:662.723850px;}
.y193{bottom:670.197750px;}
.y107{bottom:671.924550px;}
.y27{bottom:672.259500px;}
.y72{bottom:673.184400px;}
.ye3{bottom:674.242350px;}
.y12e{bottom:676.027800px;}
.y8f{bottom:676.932900px;}
.yce{bottom:678.433650px;}
.y171{bottom:679.025100px;}
.y4d{bottom:682.927350px;}
.y152{bottom:684.773850px;}
.y192{bottom:689.697750px;}
.y106{bottom:692.900550px;}
.y26{bottom:692.976750px;}
.y71{bottom:693.435900px;}
.ye2{bottom:695.011350px;}
.y12d{bottom:696.365550px;}
.y8e{bottom:697.184400px;}
.y170{bottom:701.153850px;}
.y4c{bottom:704.903850px;}
.y8{bottom:707.913150px;}
.y191{bottom:709.197750px;}
.y70{bottom:713.687400px;}
.y25{bottom:713.694000px;}
.y105{bottom:713.884800px;}
.y151{bottom:715.328850px;}
.ye1{bottom:715.780350px;}
.y12c{bottom:716.703300px;}
.y8d{bottom:717.435900px;}
.y1d6{bottom:719.477850px;}
.y1df{bottom:721.230450px;}
.y204{bottom:721.383900px;}
.y1f4{bottom:721.664400px;}
.y4b{bottom:726.880350px;}
.y190{bottom:728.697750px;}
.y1e7{bottom:729.884400px;}
.y1af{bottom:729.886800px;}
.y16f{bottom:731.787600px;}
.y6f{bottom:733.938900px;}
.y1e6{bottom:734.384400px;}
.y1ae{bottom:734.386800px;}
.y24{bottom:734.411250px;}
.y104{bottom:734.893350px;}
.ye0{bottom:736.549350px;}
.y12b{bottom:737.041050px;}
.y150{bottom:737.378850px;}
.y8c{bottom:737.687400px;}
.y7{bottom:739.422150px;}
.ycd{bottom:740.689350px;}
.y18f{bottom:748.197750px;}
.y4a{bottom:748.856850px;}
.y16e{bottom:753.916350px;}
.y6e{bottom:754.190400px;}
.y23{bottom:755.128500px;}
.y103{bottom:755.869350px;}
.ydf{bottom:757.318350px;}
.y12a{bottom:757.378800px;}
.y8b{bottom:757.938900px;}
.ycc{bottom:760.940850px;}
.y18e{bottom:767.697750px;}
.y14f{bottom:767.933850px;}
.y49{bottom:770.833350px;}
.y6{bottom:770.931150px;}
.y6d{bottom:774.441900px;}
.y22{bottom:775.845750px;}
.y102{bottom:776.845350px;}
.y129{bottom:777.749400px;}
.yde{bottom:778.087350px;}
.y8a{bottom:778.190400px;}
.yb9{bottom:781.192350px;}
.y16d{bottom:784.550100px;}
.y18d{bottom:787.197750px;}
.y48{bottom:792.809850px;}
.y6c{bottom:794.693400px;}
.y21{bottom:796.563000px;}
.y101{bottom:797.821350px;}
.y128{bottom:798.087150px;}
.y89{bottom:798.441900px;}
.y14e{bottom:798.488850px;}
.ydd{bottom:798.856350px;}
.yb8{bottom:801.443850px;}
.y16c{bottom:806.678850px;}
.y18c{bottom:806.697750px;}
.y47{bottom:814.795350px;}
.y6b{bottom:814.944900px;}
.y20{bottom:817.280250px;}
.y127{bottom:818.424900px;}
.y88{bottom:818.693400px;}
.y100{bottom:818.797350px;}
.ydc{bottom:819.625350px;}
.y14d{bottom:820.538850px;}
.yb7{bottom:821.695350px;}
.y18b{bottom:826.197750px;}
.y16b{bottom:828.807600px;}
.y5{bottom:832.193850px;}
.y1e9{bottom:833.849400px;}
.y1b1{bottom:833.851800px;}
.y6a{bottom:835.196400px;}
.y46{bottom:836.771850px;}
.y1f{bottom:838.004700px;}
.y126{bottom:838.762650px;}
.y87{bottom:838.944900px;}
.yff{bottom:839.773350px;}
.ydb{bottom:840.394350px;}
.yb6{bottom:841.946850px;}
.y1e8{bottom:842.729400px;}
.y1b0{bottom:842.731800px;}
.y18a{bottom:845.697750px;}
.y14c{bottom:851.093850px;}
.y4{bottom:853.193850px;}
.y1e{bottom:858.721950px;}
.y45{bottom:858.748350px;}
.y125{bottom:859.100400px;}
.y86{bottom:859.196400px;}
.y16a{bottom:859.441350px;}
.yfe{bottom:860.749350px;}
.yda{bottom:861.163350px;}
.yb5{bottom:862.198350px;}
.y189{bottom:865.197750px;}
.y14b{bottom:873.143850px;}
.y69{bottom:876.709950px;}
.y44{bottom:880.724850px;}
.y169{bottom:881.570100px;}
.yfd{bottom:881.725350px;}
.yd9{bottom:881.932350px;}
.ya5{bottom:882.449850px;}
.y3{bottom:882.698850px;}
.y188{bottom:884.697750px;}
.y1d{bottom:900.706200px;}
.y43{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y187{bottom:904.197750px;}
.y1c{bottom:948.189000px;}
.y42{bottom:966.189000px;}
.hd{height:26.732030px;}
.hb{height:33.870539px;}
.h7{height:40.757812px;}
.h19{height:42.685547px;}
.h1a{height:43.682256px;}
.he{height:45.852539px;}
.hc{height:45.864539px;}
.h15{height:46.696289px;}
.h4{height:50.947266px;}
.h18{height:51.884766px;}
.h3{height:53.494629px;}
.h17{height:54.479004px;}
.h9{height:58.589355px;}
.h11{height:58.595355px;}
.h12{height:58.631355px;}
.h13{height:58.637355px;}
.h14{height:58.648755px;}
.h10{height:58.649355px;}
.h16{height:59.618880px;}
.ha{height:59.667480px;}
.hf{height:61.136719px;}
.h2{height:63.684082px;}
.h8{height:68.778809px;}
.h6{height:71.326172px;}
.h5{height:91.705078px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x4{left:82.959750px;}
.x6{left:84.021150px;}
.x1{left:85.039350px;}
.x9{left:96.511350px;}
.x23{left:101.767800px;}
.x3{left:105.030600px;}
.x5{left:106.049250px;}
.x7{left:108.839700px;}
.xa{left:116.761350px;}
.x24{left:119.767800px;}
.x25{left:142.492800px;}
.xb{left:146.245650px;}
.x26{left:160.492800px;}
.xc{left:164.245650px;}
.x27{left:183.217800px;}
.xd{left:186.970650px;}
.x28{left:201.217800px;}
.xe{left:204.970650px;}
.x29{left:223.962300px;}
.xf{left:227.695650px;}
.x8{left:231.420750px;}
.x2{left:233.415450px;}
.x2a{left:241.962300px;}
.x10{left:245.695650px;}
.x2b{left:259.962300px;}
.x11{left:263.695650px;}
.x2c{left:282.687300px;}
.x12{left:286.420650px;}
.x2d{left:300.693900px;}
.x13{left:304.440150px;}
.x14{left:322.440150px;}
.x2e{left:341.425350px;}
.x15{left:345.165150px;}
.x16{left:363.165150px;}
.x2f{left:382.150350px;}
.x17{left:385.890150px;}
.x30{left:400.156800px;}
.x18{left:403.890150px;}
.x31{left:418.156800px;}
.x19{left:426.615150px;}
.x32{left:436.156800px;}
.x1a{left:444.615150px;}
.x33{left:454.156800px;}
.x1b{left:462.615150px;}
.x34{left:476.881800px;}
.x1c{left:485.340150px;}
.x35{left:494.881800px;}
.x1d{left:503.366100px;}
.x36{left:512.881800px;}
.x1e{left:521.366100px;}
.x1f{left:539.366100px;}
.x20{left:600.299550px;}
.x21{left:620.548050px;}
.x22{left:637.801050px;}
@media print{
.v3{vertical-align:-10.650667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:10.650667pt;}
.v1{vertical-align:12.405867pt;}
.v2{vertical-align:15.065067pt;}
.ls28{letter-spacing:-5.760000pt;}
.ls3{letter-spacing:-4.592000pt;}
.ls23{letter-spacing:-3.800000pt;}
.ls43{letter-spacing:-2.400000pt;}
.ls40{letter-spacing:-2.240000pt;}
.ls26{letter-spacing:-1.933333pt;}
.ls5{letter-spacing:-1.728000pt;}
.ls1b{letter-spacing:-1.200000pt;}
.ls2d{letter-spacing:-1.173333pt;}
.ls11{letter-spacing:-1.152000pt;}
.lsd{letter-spacing:-1.080000pt;}
.ls31{letter-spacing:-1.066667pt;}
.ls2c{letter-spacing:-0.960000pt;}
.ls1f{letter-spacing:-0.864000pt;}
.ls36{letter-spacing:-0.853333pt;}
.ls45{letter-spacing:-0.800000pt;}
.ls2e{letter-spacing:-0.746667pt;}
.ls44{letter-spacing:-0.693333pt;}
.ls15{letter-spacing:-0.552000pt;}
.ls39{letter-spacing:-0.426667pt;}
.ls33{letter-spacing:-0.373333pt;}
.ls29{letter-spacing:-0.342027pt;}
.ls16{letter-spacing:-0.321816pt;}
.ls34{letter-spacing:-0.320000pt;}
.ls12{letter-spacing:-0.306667pt;}
.lsf{letter-spacing:-0.266667pt;}
.ls2f{letter-spacing:-0.213333pt;}
.ls3d{letter-spacing:-0.160000pt;}
.ls41{letter-spacing:-0.053333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.000267pt;}
.ls1e{letter-spacing:0.044000pt;}
.ls2b{letter-spacing:0.213333pt;}
.ls2a{letter-spacing:0.320000pt;}
.ls3c{letter-spacing:0.746667pt;}
.ls37{letter-spacing:0.800000pt;}
.ls3b{letter-spacing:0.906667pt;}
.ls42{letter-spacing:1.066667pt;}
.ls3e{letter-spacing:1.120000pt;}
.ls3a{letter-spacing:1.226667pt;}
.lsa{letter-spacing:1.245867pt;}
.ls38{letter-spacing:1.333333pt;}
.lsc{letter-spacing:1.344000pt;}
.ls32{letter-spacing:1.440000pt;}
.ls35{letter-spacing:1.546667pt;}
.ls30{letter-spacing:1.706667pt;}
.lsb{letter-spacing:2.133333pt;}
.ls1{letter-spacing:3.733333pt;}
.ls14{letter-spacing:3.974400pt;}
.ls7{letter-spacing:5.120000pt;}
.ls6{letter-spacing:5.226667pt;}
.ls19{letter-spacing:5.293067pt;}
.ls4{letter-spacing:5.333333pt;}
.ls21{letter-spacing:5.600000pt;}
.ls24{letter-spacing:6.104000pt;}
.ls27{letter-spacing:7.253472pt;}
.ls22{letter-spacing:10.332000pt;}
.ls8{letter-spacing:414.866133pt;}
.ls10{letter-spacing:415.399467pt;}
.ls17{letter-spacing:415.566400pt;}
.ls1d{letter-spacing:418.006400pt;}
.ls3f{letter-spacing:418.106133pt;}
.ls1a{letter-spacing:418.126400pt;}
.ls25{letter-spacing:419.099733pt;}
.ls20{letter-spacing:420.913067pt;}
.ls18{letter-spacing:899.968000pt;}
.ls0{letter-spacing:900.408000pt;}
.lse{letter-spacing:902.741333pt;}
.ls13{letter-spacing:906.341333pt;}
.ls1c{letter-spacing:908.101333pt;}
.ws1c{word-spacing:-21.840000pt;}
.ws20{word-spacing:-20.320000pt;}
.ws0{word-spacing:-20.213333pt;}
.ws2{word-spacing:-20.106667pt;}
.ws1a{word-spacing:-19.368000pt;}
.wsa{word-spacing:-19.152000pt;}
.ws12{word-spacing:-19.080000pt;}
.ws8{word-spacing:-18.733333pt;}
.ws17{word-spacing:-17.533333pt;}
.wsc{word-spacing:-17.234667pt;}
.ws22{word-spacing:-16.800000pt;}
.ws29{word-spacing:-16.533333pt;}
.ws27{word-spacing:-16.426667pt;}
.ws2d{word-spacing:-16.213333pt;}
.ws33{word-spacing:-16.106667pt;}
.ws44{word-spacing:-16.053333pt;}
.ws2c{word-spacing:-15.786667pt;}
.ws1e{word-spacing:-15.736000pt;}
.ws31{word-spacing:-15.733333pt;}
.wse{word-spacing:-15.149333pt;}
.ws21{word-spacing:-14.986667pt;}
.ws1b{word-spacing:-14.933333pt;}
.ws32{word-spacing:-14.826667pt;}
.ws30{word-spacing:-14.773333pt;}
.ws14{word-spacing:-14.597333pt;}
.ws1d{word-spacing:-13.832000pt;}
.ws25{word-spacing:-13.653333pt;}
.ws24{word-spacing:-13.440000pt;}
.ws23{word-spacing:-13.173333pt;}
.ws28{word-spacing:-12.853333pt;}
.ws46{word-spacing:-12.106667pt;}
.ws18{word-spacing:-11.856000pt;}
.ws9{word-spacing:-11.834667pt;}
.wsb{word-spacing:-10.047811pt;}
.ws15{word-spacing:-9.725995pt;}
.ws1{word-spacing:-8.737227pt;}
.wsf{word-spacing:-7.863504pt;}
.ws1f{word-spacing:-5.600000pt;}
.ws5{word-spacing:-5.333333pt;}
.ws7{word-spacing:-3.733333pt;}
.wsd{word-spacing:-2.133333pt;}
.ws3b{word-spacing:-1.706667pt;}
.ws41{word-spacing:-1.440000pt;}
.ws3f{word-spacing:-1.333333pt;}
.ws48{word-spacing:-1.120000pt;}
.ws3d{word-spacing:-0.800000pt;}
.ws36{word-spacing:-0.320000pt;}
.ws37{word-spacing:-0.213333pt;}
.ws3{word-spacing:0.000000pt;}
.ws47{word-spacing:0.053333pt;}
.ws3a{word-spacing:0.213333pt;}
.ws10{word-spacing:0.266667pt;}
.ws13{word-spacing:0.306667pt;}
.ws3e{word-spacing:0.320000pt;}
.ws35{word-spacing:0.342027pt;}
.ws3c{word-spacing:0.373333pt;}
.ws40{word-spacing:0.426667pt;}
.ws16{word-spacing:0.552000pt;}
.ws49{word-spacing:0.693333pt;}
.ws39{word-spacing:0.746667pt;}
.ws4a{word-spacing:0.800000pt;}
.ws38{word-spacing:1.173333pt;}
.ws6{word-spacing:1.728000pt;}
.ws19{word-spacing:4.354667pt;}
.ws4{word-spacing:4.592000pt;}
.ws34{word-spacing:5.760000pt;}
.ws11{word-spacing:7.247856pt;}
.ws42{word-spacing:250.464000pt;}
.ws2f{word-spacing:253.909333pt;}
.ws2e{word-spacing:259.541333pt;}
.ws2a{word-spacing:262.234667pt;}
.ws2b{word-spacing:263.312000pt;}
.ws43{word-spacing:265.696000pt;}
.ws45{word-spacing:266.176000pt;}
.ws26{word-spacing:266.538667pt;}
._12{margin-left:-16.789333pt;}
._15{margin-left:-15.407733pt;}
._9{margin-left:-9.071467pt;}
._1b{margin-left:-7.272533pt;}
._f{margin-left:-5.793067pt;}
._8{margin-left:-4.706667pt;}
._14{margin-left:-3.745867pt;}
._1{margin-left:-2.736000pt;}
._2{margin-left:-1.002667pt;}
._7{width:0.965333pt;}
._a{width:1.875573pt;}
._6{width:2.766400pt;}
._3{width:4.250400pt;}
._5{width:5.432000pt;}
._4{width:6.720000pt;}
._10{width:7.721867pt;}
._d{width:9.013333pt;}
._c{width:10.532960pt;}
._17{width:11.959467pt;}
._18{width:14.022667pt;}
._19{width:19.770667pt;}
._1a{width:20.864000pt;}
._16{width:24.625920pt;}
._13{width:31.370064pt;}
._11{width:38.617920pt;}
._25{width:72.193760pt;}
._e{width:76.048000pt;}
._24{width:83.863093pt;}
._1c{width:88.048000pt;}
._1f{width:91.937760pt;}
._1d{width:100.661333pt;}
._28{width:105.619520pt;}
._21{width:107.375787pt;}
._20{width:109.343947pt;}
._29{width:136.273867pt;}
._b{width:231.653333pt;}
._1e{width:266.335947pt;}
._22{width:313.768853pt;}
._26{width:357.667520pt;}
._27{width:363.596427pt;}
._23{width:421.466667pt;}
._0{width:514.133333pt;}
.fsc{font-size:27.984000pt;}
.fs6{font-size:31.093333pt;}
.fsb{font-size:35.757333pt;}
.fs7{font-size:37.333333pt;}
.fs8{font-size:42.666667pt;}
.fsd{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fsa{font-size:61.333333pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:66.666667pt;}
.fs9{font-size:72.000000pt;}
.fs5{font-size:74.666667pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.ya4{bottom:87.043733pt;}
.y168{bottom:94.327867pt;}
.y85{bottom:94.396800pt;}
.y186{bottom:94.457067pt;}
.y68{bottom:94.480267pt;}
.yd8{bottom:94.483067pt;}
.yfc{bottom:94.485733pt;}
.y1e0{bottom:94.488133pt;}
.y124{bottom:94.488267pt;}
.y14a{bottom:94.729600pt;}
.ycb{bottom:96.560800pt;}
.y41{bottom:97.150933pt;}
.yb4{bottom:100.401200pt;}
.y1b2{bottom:100.921600pt;}
.y1c1{bottom:100.922533pt;}
.y1b8{bottom:100.934933pt;}
.y1cc{bottom:100.935867pt;}
.y1ef{bottom:101.359467pt;}
.y1ea{bottom:101.372800pt;}
.y1d8{bottom:101.373733pt;}
.y216{bottom:101.379067pt;}
.y1c7{bottom:101.389200pt;}
.y20b{bottom:101.493733pt;}
.y1f6{bottom:101.494933pt;}
.y1ce{bottom:101.535867pt;}
.y205{bottom:101.820133pt;}
.y20c{bottom:101.920400pt;}
.y1f7{bottom:101.921600pt;}
.y1f5{bottom:101.926933pt;}
.y1b7{bottom:101.934933pt;}
.y1d7{bottom:102.019333pt;}
.y1fd{bottom:102.094933pt;}
.y1c0{bottom:102.099733pt;}
.y1cf{bottom:102.122533pt;}
.y1fe{bottom:102.140533pt;}
.y1d9{bottom:102.147067pt;}
.y1bf{bottom:102.214933pt;}
.y217{bottom:102.219067pt;}
.y1d0{bottom:102.749200pt;}
.y67{bottom:109.816267pt;}
.yd7{bottom:109.819067pt;}
.yfb{bottom:109.821733pt;}
.y1a8{bottom:112.277067pt;}
.yfa{bottom:112.484400pt;}
.y149{bottom:112.807600pt;}
.y1a9{bottom:112.838667pt;}
.y185{bottom:113.457067pt;}
.y123{bottom:113.598400pt;}
.y1e2{bottom:113.625733pt;}
.y1e1{bottom:113.721733pt;}
.y167{bottom:113.927867pt;}
.yca{bottom:115.673867pt;}
.y40{bottom:116.263733pt;}
.y66{bottom:125.152267pt;}
.ya3{bottom:126.169733pt;}
.yd6{bottom:127.817733pt;}
.y122{bottom:128.934400pt;}
.yf9{bottom:128.934667pt;}
.y148{bottom:130.885600pt;}
.y121{bottom:131.597067pt;}
.yf8{bottom:131.597333pt;}
.y184{bottom:132.457067pt;}
.y65{bottom:140.488267pt;}
.y166{bottom:141.087867pt;}
.y64{bottom:143.150933pt;}
.y1ab{bottom:143.866133pt;}
.ya2{bottom:144.171067pt;}
.y1aa{bottom:145.852800pt;}
.y1e3{bottom:147.866133pt;}
.y120{bottom:148.047333pt;}
.y147{bottom:148.963600pt;}
.y11f{bottom:150.710000pt;}
.y183{bottom:151.457067pt;}
.yc9{bottom:154.791867pt;}
.y3f{bottom:155.410267pt;}
.y165{bottom:160.687867pt;}
.y63{bottom:162.263733pt;}
.y146{bottom:167.041600pt;}
.y11e{bottom:167.157467pt;}
.y182{bottom:170.457067pt;}
.yf7{bottom:170.665200pt;}
.yc8{bottom:172.793200pt;}
.y3e{bottom:173.825600pt;}
.y62{bottom:178.711333pt;}
.y1b{bottom:179.224933pt;}
.ya1{bottom:180.171067pt;}
.y11d{bottom:182.493467pt;}
.yd5{bottom:184.809733pt;}
.y145{bottom:185.119600pt;}
.y11c{bottom:185.156133pt;}
.y164{bottom:187.847867pt;}
.yf6{bottom:189.126533pt;}
.y181{bottom:189.457067pt;}
.yc7{bottom:190.794533pt;}
.y3d{bottom:192.240933pt;}
.y61{bottom:196.710000pt;}
.y1a{bottom:197.891600pt;}
.ya0{bottom:198.171067pt;}
.yd4{bottom:202.811067pt;}
.y144{bottom:203.197600pt;}
.y163{bottom:207.447867pt;}
.yf5{bottom:207.587867pt;}
.y180{bottom:208.457067pt;}
.yc6{bottom:208.795867pt;}
.y3c{bottom:210.714000pt;}
.y1a7{bottom:215.504667pt;}
.y19{bottom:216.566933pt;}
.yd3{bottom:220.812400pt;}
.y143{bottom:221.275600pt;}
.y11b{bottom:224.323333pt;}
.yf4{bottom:226.049200pt;}
.yc5{bottom:226.797200pt;}
.y17f{bottom:227.457067pt;}
.y3b{bottom:229.129333pt;}
.y1a6{bottom:233.504667pt;}
.y18{bottom:233.900267pt;}
.y162{bottom:234.607867pt;}
.y60{bottom:235.857467pt;}
.yd2{bottom:238.813733pt;}
.y142{bottom:239.353600pt;}
.y11a{bottom:242.968667pt;}
.yf3{bottom:244.510533pt;}
.yc4{bottom:244.798533pt;}
.y17e{bottom:246.457067pt;}
.y3a{bottom:247.544667pt;}
.y17{bottom:251.233600pt;}
.y1a5{bottom:251.504667pt;}
.y161{bottom:254.207867pt;}
.y5f{bottom:255.392133pt;}
.y141{bottom:257.431600pt;}
.y119{bottom:261.614000pt;}
.yc3{bottom:262.799867pt;}
.yf2{bottom:262.971867pt;}
.y17d{bottom:265.457067pt;}
.y39{bottom:265.960000pt;}
.y16{bottom:268.566933pt;}
.y1a4{bottom:269.504667pt;}
.y84{bottom:274.362133pt;}
.y5e{bottom:274.926800pt;}
.y140{bottom:275.509600pt;}
.y118{bottom:280.259333pt;}
.y206{bottom:280.587067pt;}
.yc2{bottom:280.791867pt;}
.y160{bottom:281.367867pt;}
.yf1{bottom:281.433200pt;}
.y1d1{bottom:281.469200pt;}
.y1da{bottom:281.680400pt;}
.y1c2{bottom:281.682533pt;}
.y20d{bottom:281.739067pt;}
.y1b9{bottom:281.748267pt;}
.y218{bottom:281.765733pt;}
.y1f8{bottom:281.948267pt;}
.y1b3{bottom:281.961600pt;}
.y1f0{bottom:282.079467pt;}
.y1ff{bottom:282.083467pt;}
.y1eb{bottom:282.092800pt;}
.y207{bottom:282.093733pt;}
.y1f9{bottom:282.094933pt;}
.y200{bottom:282.096800pt;}
.y20e{bottom:282.099067pt;}
.y1db{bottom:282.107067pt;}
.y1ba{bottom:282.108267pt;}
.y1c3{bottom:282.109200pt;}
.y1c8{bottom:282.122533pt;}
.y1d2{bottom:282.149200pt;}
.y219{bottom:282.712400pt;}
.y38{bottom:284.375333pt;}
.y17c{bottom:284.457067pt;}
.y15{bottom:285.900267pt;}
.y1e4{bottom:286.799467pt;}
.y1ac{bottom:286.801600pt;}
.y83{bottom:292.363467pt;}
.y13f{bottom:293.587600pt;}
.y5d{bottom:294.461467pt;}
.yb3{bottom:298.385200pt;}
.yc1{bottom:298.793200pt;}
.y1a3{bottom:298.838000pt;}
.y117{bottom:298.904667pt;}
.yf0{bottom:299.894533pt;}
.y15f{bottom:300.967867pt;}
.y37{bottom:302.790667pt;}
.y17b{bottom:303.457067pt;}
.y82{bottom:310.364800pt;}
.y13e{bottom:311.665600pt;}
.y9f{bottom:313.711467pt;}
.y5c{bottom:313.996133pt;}
.y14{bottom:314.566933pt;}
.yb2{bottom:316.386533pt;}
.yc0{bottom:316.794533pt;}
.y116{bottom:317.550000pt;}
.yef{bottom:318.355867pt;}
.y36{bottom:321.206000pt;}
.y17a{bottom:322.457067pt;}
.y15e{bottom:328.127867pt;}
.y81{bottom:328.366133pt;}
.y13d{bottom:329.743600pt;}
.y9e{bottom:331.712800pt;}
.y5b{bottom:333.530800pt;}
.yb1{bottom:334.387867pt;}
.ybf{bottom:334.795867pt;}
.y1a2{bottom:335.731333pt;}
.y115{bottom:336.195333pt;}
.yee{bottom:336.804000pt;}
.y35{bottom:339.621333pt;}
.y179{bottom:341.457067pt;}
.y80{bottom:346.367467pt;}
.y13c{bottom:347.821600pt;}
.y9d{bottom:349.714133pt;}
.yb0{bottom:352.389200pt;}
.ybe{bottom:352.797200pt;}
.y1a1{bottom:353.064667pt;}
.y5a{bottom:353.065467pt;}
.y114{bottom:354.840667pt;}
.yed{bottom:355.265333pt;}
.y15d{bottom:355.287867pt;}
.y34{bottom:358.036667pt;}
.y13{bottom:358.353600pt;}
.y178{bottom:360.457067pt;}
.y7f{bottom:364.368800pt;}
.y13b{bottom:365.899600pt;}
.y9c{bottom:367.715467pt;}
.yaf{bottom:370.390533pt;}
.y1a0{bottom:370.398000pt;}
.ybd{bottom:370.798533pt;}
.y59{bottom:372.600133pt;}
.y113{bottom:373.486000pt;}
.yec{bottom:373.726667pt;}
.y15c{bottom:374.887867pt;}
.y33{bottom:376.580000pt;}
.y12{bottom:377.020267pt;}
.y177{bottom:379.457067pt;}
.y7e{bottom:382.370133pt;}
.y13a{bottom:383.977600pt;}
.y9b{bottom:385.716800pt;}
.y19f{bottom:387.731333pt;}
.yae{bottom:388.391867pt;}
.ybc{bottom:388.799867pt;}
.y112{bottom:392.131333pt;}
.y58{bottom:392.134800pt;}
.y15b{bottom:394.487867pt;}
.y32{bottom:394.995333pt;}
.y11{bottom:395.686933pt;}
.y176{bottom:398.457067pt;}
.y7d{bottom:400.371467pt;}
.y139{bottom:402.055600pt;}
.y9a{bottom:403.718133pt;}
.y19e{bottom:405.064667pt;}
.yad{bottom:406.393200pt;}
.ybb{bottom:406.801200pt;}
.y111{bottom:410.776667pt;}
.yeb{bottom:411.087067pt;}
.y57{bottom:411.669467pt;}
.y10{bottom:413.020267pt;}
.y1ed{bottom:413.079467pt;}
.y1dd{bottom:413.093733pt;}
.y1bc{bottom:413.094933pt;}
.y1f1{bottom:413.292800pt;}
.y20f{bottom:413.312400pt;}
.y1d3{bottom:413.362533pt;}
.y202{bottom:413.403467pt;}
.y31{bottom:413.410667pt;}
.y211{bottom:413.525733pt;}
.y1ca{bottom:413.562533pt;}
.y15a{bottom:414.087867pt;}
.y1bd{bottom:414.188267pt;}
.y1f2{bottom:414.212800pt;}
.y1fb{bottom:414.241600pt;}
.y1ec{bottom:414.252800pt;}
.y208{bottom:414.253733pt;}
.y1dc{bottom:414.267067pt;}
.y1bb{bottom:414.268267pt;}
.y1d4{bottom:414.282533pt;}
.y209{bottom:414.307067pt;}
.y1fa{bottom:414.428267pt;}
.y201{bottom:414.430133pt;}
.y212{bottom:414.592400pt;}
.y1b4{bottom:414.601600pt;}
.y21a{bottom:414.605733pt;}
.y1c4{bottom:414.615867pt;}
.y214{bottom:414.619067pt;}
.y1b5{bottom:414.628267pt;}
.y1c9{bottom:414.629200pt;}
.y21b{bottom:414.632400pt;}
.y1c5{bottom:414.642533pt;}
.y213{bottom:414.685733pt;}
.y210{bottom:414.845733pt;}
.y175{bottom:417.457067pt;}
.y7c{bottom:418.372800pt;}
.y138{bottom:420.133600pt;}
.y99{bottom:421.719467pt;}
.y19d{bottom:422.398000pt;}
.yac{bottom:424.394533pt;}
.y110{bottom:429.447467pt;}
.yf{bottom:430.353600pt;}
.y56{bottom:431.208267pt;}
.y30{bottom:431.826000pt;}
.yea{bottom:432.867067pt;}
.y7b{bottom:436.374133pt;}
.y137{bottom:438.211600pt;}
.y98{bottom:439.720800pt;}
.y19c{bottom:439.731333pt;}
.y159{bottom:441.247867pt;}
.yab{bottom:442.395867pt;}
.yba{bottom:442.401200pt;}
.ye{bottom:447.686933pt;}
.y174{bottom:447.790400pt;}
.y10f{bottom:448.092800pt;}
.y2f{bottom:450.241333pt;}
.y55{bottom:450.742933pt;}
.y7a{bottom:454.375467pt;}
.y136{bottom:456.289600pt;}
.y19b{bottom:457.064667pt;}
.y97{bottom:457.722133pt;}
.yaa{bottom:460.397200pt;}
.yd{bottom:465.025467pt;}
.y10e{bottom:466.738133pt;}
.y158{bottom:468.407867pt;}
.y2e{bottom:468.656667pt;}
.y54{bottom:470.303867pt;}
.y79{bottom:472.376800pt;}
.y135{bottom:474.367600pt;}
.y19a{bottom:474.398000pt;}
.y96{bottom:475.723467pt;}
.ya9{bottom:478.398533pt;}
.yc{bottom:482.358800pt;}
.y10d{bottom:485.383467pt;}
.y2d{bottom:487.072000pt;}
.ye9{bottom:488.664267pt;}
.y53{bottom:489.838533pt;}
.y78{bottom:490.378133pt;}
.y199{bottom:491.731333pt;}
.y134{bottom:492.445600pt;}
.y95{bottom:493.724800pt;}
.y157{bottom:495.567867pt;}
.ya8{bottom:496.399867pt;}
.y173{bottom:500.802133pt;}
.y10c{bottom:504.028800pt;}
.y2c{bottom:505.487333pt;}
.ye8{bottom:507.125600pt;}
.y77{bottom:508.379467pt;}
.y198{bottom:509.064667pt;}
.y52{bottom:509.373200pt;}
.y133{bottom:510.523600pt;}
.yb{bottom:511.025467pt;}
.y94{bottom:511.726133pt;}
.ya7{bottom:514.401200pt;}
.y156{bottom:515.167867pt;}
.y10b{bottom:522.674133pt;}
.y2b{bottom:523.902667pt;}
.ye7{bottom:525.481200pt;}
.y76{bottom:526.380800pt;}
.y197{bottom:526.398000pt;}
.y172{bottom:526.468800pt;}
.yd1{bottom:526.819733pt;}
.y132{bottom:528.601600pt;}
.y51{bottom:528.907867pt;}
.y93{bottom:529.727467pt;}
.y10a{bottom:541.319467pt;}
.y2a{bottom:542.318000pt;}
.y155{bottom:542.327867pt;}
.y196{bottom:543.731333pt;}
.ye6{bottom:543.942533pt;}
.y75{bottom:544.382133pt;}
.yd0{bottom:544.821067pt;}
.y1b6{bottom:544.961600pt;}
.y1be{bottom:544.974933pt;}
.y1c6{bottom:544.975867pt;}
.y1cb{bottom:544.989200pt;}
.y1f3{bottom:545.319467pt;}
.y203{bottom:545.350133pt;}
.y21c{bottom:545.352400pt;}
.y1de{bottom:545.360400pt;}
.y1d5{bottom:545.389200pt;}
.y1ee{bottom:546.332800pt;}
.y20a{bottom:546.333733pt;}
.y1fc{bottom:546.334933pt;}
.y215{bottom:546.339067pt;}
.y1cd{bottom:546.375867pt;}
.y131{bottom:546.679600pt;}
.y92{bottom:547.728800pt;}
.y50{bottom:548.442533pt;}
.ya6{bottom:550.401200pt;}
.y109{bottom:559.975600pt;}
.y29{bottom:560.733333pt;}
.y195{bottom:561.064667pt;}
.y154{bottom:561.927867pt;}
.ya{bottom:562.369200pt;}
.y74{bottom:562.383467pt;}
.ye5{bottom:562.403867pt;}
.y130{bottom:564.757600pt;}
.y91{bottom:565.728800pt;}
.y4f{bottom:567.977200pt;}
.y1e5{bottom:575.106133pt;}
.y1ad{bottom:575.108267pt;}
.y194{bottom:578.398000pt;}
.y108{bottom:578.620933pt;}
.y28{bottom:579.148667pt;}
.y73{bottom:580.384800pt;}
.ye4{bottom:580.865200pt;}
.ycf{bottom:581.722133pt;}
.y12f{bottom:582.835600pt;}
.y90{bottom:583.716800pt;}
.y9{bottom:586.374533pt;}
.y4e{bottom:587.511867pt;}
.y153{bottom:589.087867pt;}
.y193{bottom:595.731333pt;}
.y107{bottom:597.266267pt;}
.y27{bottom:597.564000pt;}
.y72{bottom:598.386133pt;}
.ye3{bottom:599.326533pt;}
.y12e{bottom:600.913600pt;}
.y8f{bottom:601.718133pt;}
.yce{bottom:603.052133pt;}
.y171{bottom:603.577867pt;}
.y4d{bottom:607.046533pt;}
.y152{bottom:608.687867pt;}
.y192{bottom:613.064667pt;}
.y106{bottom:615.911600pt;}
.y26{bottom:615.979333pt;}
.y71{bottom:616.387467pt;}
.ye2{bottom:617.787867pt;}
.y12d{bottom:618.991600pt;}
.y8e{bottom:619.719467pt;}
.y170{bottom:623.247867pt;}
.y4c{bottom:626.581200pt;}
.y8{bottom:629.256133pt;}
.y191{bottom:630.398000pt;}
.y70{bottom:634.388800pt;}
.y25{bottom:634.394667pt;}
.y105{bottom:634.564267pt;}
.y151{bottom:635.847867pt;}
.ye1{bottom:636.249200pt;}
.y12c{bottom:637.069600pt;}
.y8d{bottom:637.720800pt;}
.y1d6{bottom:639.535867pt;}
.y1df{bottom:641.093733pt;}
.y204{bottom:641.230133pt;}
.y1f4{bottom:641.479467pt;}
.y4b{bottom:646.115867pt;}
.y190{bottom:647.731333pt;}
.y1e7{bottom:648.786133pt;}
.y1af{bottom:648.788267pt;}
.y16f{bottom:650.477867pt;}
.y6f{bottom:652.390133pt;}
.y1e6{bottom:652.786133pt;}
.y1ae{bottom:652.788267pt;}
.y24{bottom:652.810000pt;}
.y104{bottom:653.238533pt;}
.ye0{bottom:654.710533pt;}
.y12b{bottom:655.147600pt;}
.y150{bottom:655.447867pt;}
.y8c{bottom:655.722133pt;}
.y7{bottom:657.264133pt;}
.ycd{bottom:658.390533pt;}
.y18f{bottom:665.064667pt;}
.y4a{bottom:665.650533pt;}
.y16e{bottom:670.147867pt;}
.y6e{bottom:670.391467pt;}
.y23{bottom:671.225333pt;}
.y103{bottom:671.883867pt;}
.ydf{bottom:673.171867pt;}
.y12a{bottom:673.225600pt;}
.y8b{bottom:673.723467pt;}
.ycc{bottom:676.391867pt;}
.y18e{bottom:682.398000pt;}
.y14f{bottom:682.607867pt;}
.y49{bottom:685.185200pt;}
.y6{bottom:685.272133pt;}
.y6d{bottom:688.392800pt;}
.y22{bottom:689.640667pt;}
.y102{bottom:690.529200pt;}
.y129{bottom:691.332800pt;}
.yde{bottom:691.633200pt;}
.y8a{bottom:691.724800pt;}
.yb9{bottom:694.393200pt;}
.y16d{bottom:697.377867pt;}
.y18d{bottom:699.731333pt;}
.y48{bottom:704.719867pt;}
.y6c{bottom:706.394133pt;}
.y21{bottom:708.056000pt;}
.y101{bottom:709.174533pt;}
.y128{bottom:709.410800pt;}
.y89{bottom:709.726133pt;}
.y14e{bottom:709.767867pt;}
.ydd{bottom:710.094533pt;}
.yb8{bottom:712.394533pt;}
.y16c{bottom:717.047867pt;}
.y18c{bottom:717.064667pt;}
.y47{bottom:724.262533pt;}
.y6b{bottom:724.395467pt;}
.y20{bottom:726.471333pt;}
.y127{bottom:727.488800pt;}
.y88{bottom:727.727467pt;}
.y100{bottom:727.819867pt;}
.ydc{bottom:728.555867pt;}
.y14d{bottom:729.367867pt;}
.yb7{bottom:730.395867pt;}
.y18b{bottom:734.398000pt;}
.y16b{bottom:736.717867pt;}
.y5{bottom:739.727867pt;}
.y1e9{bottom:741.199467pt;}
.y1b1{bottom:741.201600pt;}
.y6a{bottom:742.396800pt;}
.y46{bottom:743.797200pt;}
.y1f{bottom:744.893067pt;}
.y126{bottom:745.566800pt;}
.y87{bottom:745.728800pt;}
.yff{bottom:746.465200pt;}
.ydb{bottom:747.017200pt;}
.yb6{bottom:748.397200pt;}
.y1e8{bottom:749.092800pt;}
.y1b0{bottom:749.094933pt;}
.y18a{bottom:751.731333pt;}
.y14c{bottom:756.527867pt;}
.y4{bottom:758.394533pt;}
.y1e{bottom:763.308400pt;}
.y45{bottom:763.331867pt;}
.y125{bottom:763.644800pt;}
.y86{bottom:763.730133pt;}
.y16a{bottom:763.947867pt;}
.yfe{bottom:765.110533pt;}
.yda{bottom:765.478533pt;}
.yb5{bottom:766.398533pt;}
.y189{bottom:769.064667pt;}
.y14b{bottom:776.127867pt;}
.y69{bottom:779.297733pt;}
.y44{bottom:782.866533pt;}
.y169{bottom:783.617867pt;}
.yfd{bottom:783.755867pt;}
.yd9{bottom:783.939867pt;}
.ya5{bottom:784.399867pt;}
.y3{bottom:784.621200pt;}
.y188{bottom:786.398000pt;}
.y1d{bottom:800.627733pt;}
.y43{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y187{bottom:803.731333pt;}
.y1c{bottom:842.834667pt;}
.y42{bottom:858.834667pt;}
.hd{height:23.761805pt;}
.hb{height:30.107146pt;}
.h7{height:36.229167pt;}
.h19{height:37.942708pt;}
.h1a{height:38.828672pt;}
.he{height:40.757812pt;}
.hc{height:40.768479pt;}
.h15{height:41.507812pt;}
.h4{height:45.286458pt;}
.h18{height:46.119792pt;}
.h3{height:47.550781pt;}
.h17{height:48.425781pt;}
.h9{height:52.079427pt;}
.h11{height:52.084760pt;}
.h12{height:52.116760pt;}
.h13{height:52.122094pt;}
.h14{height:52.132227pt;}
.h10{height:52.132760pt;}
.h16{height:52.994560pt;}
.ha{height:53.037760pt;}
.hf{height:54.343750pt;}
.h2{height:56.608073pt;}
.h8{height:61.136719pt;}
.h6{height:63.401042pt;}
.h5{height:81.515625pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x4{left:73.742000pt;}
.x6{left:74.685467pt;}
.x1{left:75.590533pt;}
.x9{left:85.787867pt;}
.x23{left:90.460267pt;}
.x3{left:93.360533pt;}
.x5{left:94.266000pt;}
.x7{left:96.746400pt;}
.xa{left:103.787867pt;}
.x24{left:106.460267pt;}
.x25{left:126.660267pt;}
.xb{left:129.996133pt;}
.x26{left:142.660267pt;}
.xc{left:145.996133pt;}
.x27{left:162.860267pt;}
.xd{left:166.196133pt;}
.x28{left:178.860267pt;}
.xe{left:182.196133pt;}
.x29{left:199.077600pt;}
.xf{left:202.396133pt;}
.x8{left:205.707333pt;}
.x2{left:207.480400pt;}
.x2a{left:215.077600pt;}
.x10{left:218.396133pt;}
.x2b{left:231.077600pt;}
.x11{left:234.396133pt;}
.x2c{left:251.277600pt;}
.x12{left:254.596133pt;}
.x2d{left:267.283467pt;}
.x13{left:270.613467pt;}
.x14{left:286.613467pt;}
.x2e{left:303.489200pt;}
.x15{left:306.813467pt;}
.x16{left:322.813467pt;}
.x2f{left:339.689200pt;}
.x17{left:343.013467pt;}
.x30{left:355.694933pt;}
.x18{left:359.013467pt;}
.x31{left:371.694933pt;}
.x19{left:379.213467pt;}
.x32{left:387.694933pt;}
.x1a{left:395.213467pt;}
.x33{left:403.694933pt;}
.x1b{left:411.213467pt;}
.x34{left:423.894933pt;}
.x1c{left:431.413467pt;}
.x35{left:439.894933pt;}
.x1d{left:447.436533pt;}
.x36{left:455.894933pt;}
.x1e{left:463.436533pt;}
.x1f{left:479.436533pt;}
.x20{left:533.599600pt;}
.x21{left:551.598267pt;}
.x22{left:566.934267pt;}
}




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