
    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;}
.ff1{font-family:sans-serif;visibility:hidden;}
.ff2{font-family:sans-serif;visibility:hidden;}
.ff3{font-family:sans-serif;visibility:hidden;}
.m0{transform:matrix(0.232495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232495,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.247494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247494,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.247495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247495,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.247497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247497,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249994,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249996,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:-33.161621px;}
.ls3{letter-spacing:-28.978620px;}
.ls4{letter-spacing:-26.332746px;}
.ls22{letter-spacing:-23.758931px;}
.ls25{letter-spacing:-14.426313px;}
.ls6{letter-spacing:-12.959424px;}
.ls7{letter-spacing:-12.881458px;}
.ls9{letter-spacing:-12.767462px;}
.ls5{letter-spacing:-12.482474px;}
.ls29{letter-spacing:-12.067858px;}
.ls18{letter-spacing:-11.961062px;}
.ls24{letter-spacing:-11.843436px;}
.ls2f{letter-spacing:-11.800870px;}
.ls36{letter-spacing:-11.710094px;}
.ls19{letter-spacing:-11.694074px;}
.ls33{letter-spacing:-11.659810px;}
.ls3a{letter-spacing:-11.617152px;}
.ls35{letter-spacing:-11.612412px;}
.ls30{letter-spacing:-11.427086px;}
.lsa{letter-spacing:-11.285525px;}
.ls2e{letter-spacing:-10.946508px;}
.ls2b{letter-spacing:-10.669200px;}
.ls27{letter-spacing:-10.664460px;}
.ls2c{letter-spacing:-10.640761px;}
.ls2{letter-spacing:-10.583496px;}
.ls17{letter-spacing:-10.253354px;}
.ls1f{letter-spacing:-10.163564px;}
.ls8{letter-spacing:-10.145573px;}
.ls3d{letter-spacing:-10.036357px;}
.ls11{letter-spacing:-9.795648px;}
.lsc{letter-spacing:-9.791568px;}
.ls1e{letter-spacing:-9.750770px;}
.ls28{letter-spacing:-9.669110px;}
.ls38{letter-spacing:-9.621713px;}
.ls1b{letter-spacing:-9.504773px;}
.lse{letter-spacing:-9.220393px;}
.ls3b{letter-spacing:-9.005544px;}
.lsd{letter-spacing:-8.938886px;}
.ls14{letter-spacing:-8.934806px;}
.ls2a{letter-spacing:-8.673761px;}
.ls20{letter-spacing:-8.403840px;}
.ls1d{letter-spacing:-8.367711px;}
.ls13{letter-spacing:-8.363631px;}
.lsf{letter-spacing:-8.078044px;}
.ls26{letter-spacing:-7.874625px;}
.ls21{letter-spacing:-7.517678px;}
.ls10{letter-spacing:-7.262080px;}
.ls3c{letter-spacing:-6.730459px;}
.ls1c{letter-spacing:-6.405317px;}
.ls39{letter-spacing:-6.140724px;}
.ls15{letter-spacing:-6.119730px;}
.ls16{letter-spacing:-5.651717px;}
.ls12{letter-spacing:-5.548555px;}
.ls32{letter-spacing:-5.286362px;}
.ls1a{letter-spacing:-5.072772px;}
.ls31{letter-spacing:-4.165013px;}
.lsb{letter-spacing:-3.835031px;}
.ls34{letter-spacing:-2.749061px;}
.ls2d{letter-spacing:-0.763101px;}
.ls37{letter-spacing:-0.758362px;}
.ls0{letter-spacing:0.000000px;}
.ls23{letter-spacing:1.199946px;}
.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;}
}
.ws22{word-spacing:-1.199946px;}
.ws0{word-spacing:0.000000px;}
.ws35{word-spacing:0.758362px;}
.ws2c{word-spacing:0.763101px;}
.ws33{word-spacing:2.749061px;}
.wsa{word-spacing:3.835031px;}
.ws30{word-spacing:4.165013px;}
.ws19{word-spacing:5.072772px;}
.ws31{word-spacing:5.286362px;}
.ws11{word-spacing:5.548555px;}
.ws15{word-spacing:5.651717px;}
.ws14{word-spacing:6.119730px;}
.ws36{word-spacing:6.140724px;}
.ws1b{word-spacing:6.405317px;}
.ws39{word-spacing:6.730459px;}
.wsf{word-spacing:7.262080px;}
.ws20{word-spacing:7.517678px;}
.ws25{word-spacing:7.874625px;}
.wsd{word-spacing:8.078044px;}
.ws12{word-spacing:8.363631px;}
.ws1c{word-spacing:8.367711px;}
.ws1f{word-spacing:8.403840px;}
.ws29{word-spacing:8.673761px;}
.ws13{word-spacing:8.934806px;}
.wsc{word-spacing:8.938886px;}
.ws38{word-spacing:9.005544px;}
.wse{word-spacing:9.220393px;}
.ws1a{word-spacing:9.504773px;}
.ws27{word-spacing:9.669110px;}
.ws1d{word-spacing:9.750770px;}
.wsb{word-spacing:9.791568px;}
.ws10{word-spacing:9.795648px;}
.ws3a{word-spacing:10.036357px;}
.ws7{word-spacing:10.145573px;}
.ws1e{word-spacing:10.163564px;}
.ws16{word-spacing:10.253354px;}
.ws2{word-spacing:10.583496px;}
.ws2b{word-spacing:10.640761px;}
.ws26{word-spacing:10.664460px;}
.ws2a{word-spacing:10.669200px;}
.ws2d{word-spacing:10.946508px;}
.ws9{word-spacing:11.285525px;}
.ws2f{word-spacing:11.427086px;}
.ws34{word-spacing:11.612412px;}
.ws37{word-spacing:11.617152px;}
.ws32{word-spacing:11.659810px;}
.ws18{word-spacing:11.694074px;}
.ws2e{word-spacing:11.800870px;}
.ws23{word-spacing:11.843436px;}
.ws17{word-spacing:11.961062px;}
.ws28{word-spacing:12.067858px;}
.ws5{word-spacing:12.482474px;}
.ws8{word-spacing:12.767462px;}
.ws6{word-spacing:12.959424px;}
.ws24{word-spacing:14.426313px;}
.ws21{word-spacing:23.758931px;}
.ws4{word-spacing:26.332746px;}
.ws3{word-spacing:28.978620px;}
.ws1{word-spacing:33.161621px;}
._10{margin-left:-151.167601px;}
._f{margin-left:-150.109252px;}
._4{margin-left:-130.000609px;}
._9{margin-left:-121.357421px;}
._e{margin-left:-112.185058px;}
._c{margin-left:-106.716918px;}
._6{margin-left:-100.895995px;}
._5{margin-left:-88.195800px;}
._13{margin-left:-86.683872px;}
._37{margin-left:-85.672382px;}
._38{margin-left:-84.049779px;}
._39{margin-left:-82.987700px;}
._a{margin-left:-80.787353px;}
._3{margin-left:-77.259521px;}
._16{margin-left:-76.100376px;}
._3a{margin-left:-73.796679px;}
._8{margin-left:-71.085815px;}
._d{margin-left:-69.886352px;}
._3b{margin-left:-68.756906px;}
._b{margin-left:-67.734374px;}
._1{margin-left:-66.323242px;}
._2{margin-left:-62.619018px;}
._7{margin-left:-58.914794px;}
._14{margin-left:-57.831246px;}
._11{margin-left:-55.210571px;}
._3c{margin-left:-53.757581px;}
._19{margin-left:-52.665492px;}
._3d{margin-left:-51.615703px;}
._15{margin-left:-50.019618px;}
._3f{margin-left:-48.994579px;}
._0{margin-left:-47.978515px;}
._3e{margin-left:-46.587558px;}
._2e{margin-left:-45.493853px;}
._17{margin-left:-44.249093px;}
._26{margin-left:-42.927144px;}
._1f{margin-left:-41.304305px;}
._24{margin-left:-40.303603px;}
._21{margin-left:-38.587375px;}
._1d{margin-left:-37.155631px;}
._28{margin-left:-35.970217px;}
._1a{margin-left:-34.270368px;}
._27{margin-left:-32.896304px;}
._23{margin-left:-31.519673px;}
._30{margin-left:-30.076094px;}
._1c{margin-left:-28.852626px;}
._12{margin-left:-26.957765px;}
._22{margin-left:-25.534925px;}
._20{margin-left:-24.394973px;}
._29{margin-left:-23.198023px;}
._1e{margin-left:-22.001074px;}
._2b{margin-left:-20.177150px;}
._31{margin-left:-19.136248px;}
._25{margin-left:-17.718690px;}
._2f{margin-left:-16.489189px;}
._2a{margin-left:-15.123319px;}
._35{margin-left:-14.110009px;}
._18{margin-left:-13.103376px;}
._41{margin-left:-12.009223px;}
._2d{margin-left:-10.988696px;}
._32{margin-left:-9.680576px;}
._34{margin-left:-8.369570px;}
._36{margin-left:-7.305245px;}
._1b{margin-left:-5.165754px;}
._33{margin-left:-3.316030px;}
._2c{margin-left:-1.578222px;}
._42{width:2.489922px;}
._43{width:3.492947px;}
._44{width:4.929350px;}
._40{width:9.779002px;}
.fc3{color:transparent;}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(114,114,114);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:23.785200px;}
.fs11{font-size:31.131000px;}
.fs7{font-size:34.798200px;}
.fs8{font-size:35.998200px;}
.fs5{font-size:40.798200px;}
.fsd{font-size:41.998200px;}
.fsa{font-size:44.997600px;}
.fs9{font-size:46.797600px;}
.fsf{font-size:47.397600px;}
.fs10{font-size:50.997600px;}
.fsb{font-size:53.397600px;}
.fs4{font-size:53.997600px;}
.fs3{font-size:56.997600px;}
.fse{font-size:62.997000px;}
.fs2{font-size:73.454400px;}
.fsc{font-size:119.994600px;}
.fs1{font-size:125.994000px;}
.fs0{font-size:176.391600px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.840495px;}
.y89{bottom:28.656105px;}
.y117{bottom:68.714343px;}
.y4e{bottom:69.182955px;}
.y4d{bottom:69.183113px;}
.y203{bottom:69.435333px;}
.y143{bottom:69.758579px;}
.y21b{bottom:70.263244px;}
.y21a{bottom:82.259955px;}
.y219{bottom:82.260215px;}
.y115{bottom:84.455717px;}
.y116{bottom:84.455955px;}
.y202{bottom:85.184955px;}
.y201{bottom:85.185711px;}
.y142{bottom:85.428105px;}
.y141{bottom:85.428884px;}
.y4b{bottom:87.182768px;}
.y4c{bottom:87.182955px;}
.y218{bottom:94.266105px;}
.y114{bottom:100.205339px;}
.y200{bottom:100.935333px;}
.y140{bottom:101.106420px;}
.y4a{bottom:105.182610px;}
.y216{bottom:107.103201px;}
.y217{bottom:107.103450px;}
.y1fe{bottom:116.684493px;}
.y1ff{bottom:116.684955px;}
.y13e{bottom:116.783429px;}
.y13f{bottom:116.783955px;}
.y113{bottom:121.211955px;}
.y215{bottom:122.097560px;}
.y49{bottom:130.832955px;}
.y1fd{bottom:132.426105px;}
.y13d{bottom:132.452955px;}
.y213{bottom:134.103201px;}
.y214{bottom:134.103450px;}
.y111{bottom:136.961955px;}
.y112{bottom:137.802450px;}
.y84{bottom:143.049262px;}
.y1fb{bottom:148.176105px;}
.y47{bottom:148.832955px;}
.y13b{bottom:148.971389px;}
.y13c{bottom:148.971600px;}
.y1fc{bottom:149.016600px;}
.y212{bottom:149.097560px;}
.y48{bottom:149.673450px;}
.y10f{bottom:152.711955px;}
.y110{bottom:153.552450px;}
.y83{bottom:155.793600px;}
.y210{bottom:161.103381px;}
.y211{bottom:161.103450px;}
.y13a{bottom:164.640915px;}
.y45{bottom:166.832955px;}
.y46{bottom:167.673450px;}
.y10d{bottom:168.453105px;}
.y1f9{bottom:169.181955px;}
.y10e{bottom:169.293600px;}
.y1fa{bottom:170.022450px;}
.y20f{bottom:176.097739px;}
.y139{bottom:180.318450px;}
.y138{bottom:180.318539px;}
.y10b{bottom:184.203105px;}
.y43{bottom:184.832955px;}
.y1f7{bottom:184.931955px;}
.y10c{bottom:185.043600px;}
.y82{bottom:185.555875px;}
.y44{bottom:185.673450px;}
.y1f8{bottom:185.772450px;}
.y20d{bottom:188.093912px;}
.y20e{bottom:188.094450px;}
.y137{bottom:195.988065px;}
.y81{bottom:198.300138px;}
.y109{bottom:199.953105px;}
.y1f5{bottom:200.681955px;}
.y10a{bottom:200.793600px;}
.y1f6{bottom:201.522450px;}
.y41{bottom:202.832955px;}
.y20c{bottom:203.097450px;}
.y20b{bottom:203.098221px;}
.y42{bottom:203.673450px;}
.y136{bottom:211.665600px;}
.y135{bottom:211.665915px;}
.y80{bottom:213.177294px;}
.y20a{bottom:215.094932px;}
.y107{bottom:215.703105px;}
.y1f3{bottom:216.422955px;}
.y108{bottom:216.543600px;}
.y1f4{bottom:217.263450px;}
.y134{bottom:227.343450px;}
.y7f{bottom:228.054450px;}
.y3f{bottom:228.483105px;}
.y40{bottom:229.323600px;}
.y209{bottom:230.097450px;}
.y208{bottom:230.098179px;}
.y105{bottom:231.453105px;}
.y1f1{bottom:232.172955px;}
.y106{bottom:232.293600px;}
.y1f2{bottom:233.013450px;}
.y207{bottom:242.094889px;}
.y7d{bottom:242.930633px;}
.y7e{bottom:242.931600px;}
.y3d{bottom:246.483105px;}
.y103{bottom:247.203105px;}
.y3e{bottom:247.323600px;}
.y1ef{bottom:247.922955px;}
.y104{bottom:248.043600px;}
.y132{bottom:248.267924px;}
.y1f0{bottom:248.763450px;}
.y133{bottom:252.714450px;}
.y205{bottom:254.091560px;}
.y206{bottom:254.091600px;}
.y7c{bottom:257.798517px;}
.y101{bottom:262.953105px;}
.y102{bottom:263.793600px;}
.y130{bottom:263.937389px;}
.y131{bottom:263.937450px;}
.y3b{bottom:264.483105px;}
.y3c{bottom:265.323600px;}
.y204{bottom:266.097450px;}
.y1ed{bottom:268.928955px;}
.y1ee{bottom:269.769450px;}
.y7b{bottom:270.552034px;}
.yff{bottom:278.703105px;}
.y100{bottom:279.543600px;}
.y12f{bottom:279.614924px;}
.y39{bottom:282.483105px;}
.y7a{bottom:283.305551px;}
.y3a{bottom:283.323600px;}
.y1eb{bottom:284.678955px;}
.y1ec{bottom:285.519450px;}
.yfd{bottom:294.453105px;}
.y12d{bottom:295.284450px;}
.y12c{bottom:295.285379px;}
.yfe{bottom:295.293600px;}
.y79{bottom:296.049889px;}
.y12e{bottom:299.730450px;}
.y1e9{bottom:300.419955px;}
.y37{bottom:300.483105px;}
.y1ea{bottom:301.260450px;}
.y38{bottom:301.323600px;}
.y18c{bottom:308.673105px;}
.y78{bottom:310.926953px;}
.y12b{bottom:310.962915px;}
.yfb{bottom:315.449955px;}
.y1e8{bottom:316.169955px;}
.yfc{bottom:316.290450px;}
.y18b{bottom:317.010450px;}
.y18a{bottom:317.011206px;}
.y35{bottom:318.483105px;}
.y36{bottom:319.323600px;}
.y76{bottom:323.678854px;}
.y77{bottom:323.679450px;}
.y12a{bottom:326.640450px;}
.yf9{bottom:331.199955px;}
.yfa{bottom:332.040450px;}
.y189{bottom:332.760828px;}
.y75{bottom:336.423191px;}
.y33{bottom:336.483105px;}
.y1e6{bottom:337.176105px;}
.y34{bottom:337.323600px;}
.y1e7{bottom:338.016600px;}
.yf7{bottom:346.950105px;}
.y127{bottom:347.564893px;}
.y128{bottom:347.565450px;}
.yf8{bottom:347.790600px;}
.y187{bottom:348.509436px;}
.y188{bottom:348.510450px;}
.y74{bottom:349.176709px;}
.y129{bottom:352.002450px;}
.y1e4{bottom:352.926105px;}
.y1e5{bottom:353.766600px;}
.y31{bottom:354.483105px;}
.y32{bottom:355.323600px;}
.yf5{bottom:362.699205px;}
.y126{bottom:363.235754px;}
.yf6{bottom:363.539700px;}
.y73{bottom:364.050712px;}
.y186{bottom:364.261728px;}
.y1e2{bottom:368.672505px;}
.y1e3{bottom:369.513000px;}
.y2f{bottom:372.479505px;}
.y30{bottom:373.320000px;}
.y71{bottom:376.799978px;}
.y72{bottom:376.800150px;}
.yf3{bottom:378.448305px;}
.y125{bottom:378.909285px;}
.yf4{bottom:379.288800px;}
.y184{bottom:380.010456px;}
.y185{bottom:380.011350px;}
.y1e0{bottom:384.421455px;}
.y1e1{bottom:385.261950px;}
.yf1{bottom:394.197255px;}
.y123{bottom:394.583685px;}
.y124{bottom:394.584150px;}
.yf2{bottom:395.037750px;}
.y183{bottom:395.760078px;}
.y70{bottom:398.052780px;}
.y2d{bottom:398.132205px;}
.y2e{bottom:398.972700px;}
.y1de{bottom:400.170555px;}
.y1df{bottom:401.011050px;}
.yef{bottom:409.946355px;}
.y122{bottom:410.258550px;}
.yf0{bottom:410.786850px;}
.y181{bottom:411.508506px;}
.y182{bottom:411.509700px;}
.y6f{bottom:412.928824px;}
.y1dc{bottom:415.919655px;}
.y2b{bottom:416.131155px;}
.y1dd{bottom:416.760150px;}
.y2c{bottom:416.971650px;}
.yed{bottom:425.695605px;}
.yee{bottom:426.536100px;}
.y180{bottom:427.258128px;}
.y121{bottom:431.183550px;}
.y1da{bottom:431.669655px;}
.y1db{bottom:432.510150px;}
.y29{bottom:434.130255px;}
.y6e{bottom:434.181626px;}
.y2a{bottom:434.970750px;}
.yeb{bottom:441.445605px;}
.yec{bottom:442.286100px;}
.y17f{bottom:443.007750px;}
.y17e{bottom:443.008128px;}
.y6d{bottom:449.056650px;}
.y6c{bottom:449.056928px;}
.y27{bottom:452.129355px;}
.y1d8{bottom:452.669505px;}
.y28{bottom:452.969850px;}
.y1d9{bottom:453.510000px;}
.ye9{bottom:457.194705px;}
.yea{bottom:458.035200px;}
.y17d{bottom:458.757750px;}
.y120{bottom:462.610335px;}
.y6b{bottom:463.931951px;}
.y1d6{bottom:468.418605px;}
.y1d7{bottom:469.259100px;}
.ye7{bottom:472.943655px;}
.ye8{bottom:473.784150px;}
.y6a{bottom:476.681389px;}
.y25{bottom:477.781155px;}
.y11e{bottom:478.284119px;}
.y11f{bottom:478.285200px;}
.y26{bottom:478.621650px;}
.y17c{bottom:479.757662px;}
.y1d4{bottom:484.167555px;}
.y1d5{bottom:485.008050px;}
.ye5{bottom:488.692755px;}
.ye6{bottom:489.533250px;}
.y69{bottom:491.556412px;}
.y11d{bottom:493.958985px;}
.y17b{bottom:495.506700px;}
.y23{bottom:495.780255px;}
.y24{bottom:496.620750px;}
.y1d2{bottom:499.917555px;}
.y1d3{bottom:500.758050px;}
.y68{bottom:504.305850px;}
.y67{bottom:504.305914px;}
.ye3{bottom:504.441855px;}
.ye4{bottom:505.282350px;}
.y11c{bottom:509.633850px;}
.y11b{bottom:509.633969px;}
.y21{bottom:513.780255px;}
.y22{bottom:514.620750px;}
.y66{bottom:517.055351px;}
.ye1{bottom:520.191105px;}
.y1d0{bottom:520.917255px;}
.ye2{bottom:521.031600px;}
.y1d1{bottom:521.757750px;}
.y11a{bottom:525.307500px;}
.y17a{bottom:527.008728px;}
.y65{bottom:529.804789px;}
.y1f{bottom:531.779355px;}
.y20{bottom:532.619850px;}
.ydf{bottom:535.940955px;}
.y1ce{bottom:536.666355px;}
.ye0{bottom:536.781450px;}
.y1cf{bottom:537.506850px;}
.y119{bottom:540.981285px;}
.y64{bottom:542.554226px;}
.y178{bottom:542.757828px;}
.y179{bottom:542.758350px;}
.y1d{bottom:549.778455px;}
.y1e{bottom:550.618950px;}
.y1cc{bottom:552.416355px;}
.y1cd{bottom:553.256850px;}
.y118{bottom:556.656150px;}
.yde{bottom:556.940655px;}
.y62{bottom:557.429138px;}
.y63{bottom:557.429250px;}
.y177{bottom:558.507450px;}
.y1ca{bottom:568.165455px;}
.y1cb{bottom:569.005950px;}
.y61{bottom:570.178575px;}
.y1b{bottom:575.430255px;}
.y1c{bottom:576.270750px;}
.y176{bottom:579.508112px;}
.y60{bottom:582.928013px;}
.y1c8{bottom:583.914555px;}
.y1c9{bottom:584.755050px;}
.y19{bottom:593.429355px;}
.y1a{bottom:594.269850px;}
.y175{bottom:595.257150px;}
.ydc{bottom:595.578555px;}
.y5f{bottom:595.677450px;}
.ydd{bottom:596.419050px;}
.y1c5{bottom:599.663655px;}
.y1c6{bottom:600.504150px;}
.y1c7{bottom:604.949250px;}
.y5e{bottom:610.552650px;}
.y17{bottom:611.428455px;}
.y18{bottom:612.268950px;}
.y1c3{bottom:615.412755px;}
.y1c4{bottom:616.253250px;}
.yda{bottom:621.076973px;}
.ydb{bottom:621.917850px;}
.y5d{bottom:623.302013px;}
.y173{bottom:626.757906px;}
.y15{bottom:629.427555px;}
.y16{bottom:630.268050px;}
.y1c1{bottom:631.161855px;}
.y174{bottom:631.204050px;}
.y1c2{bottom:632.002350px;}
.y5c{bottom:636.051450px;}
.y5b{bottom:636.051551px;}
.y172{bottom:642.507528px;}
.y1bf{bottom:646.910955px;}
.y13{bottom:647.426655px;}
.y1c0{bottom:647.751450px;}
.y14{bottom:648.267150px;}
.y5a{bottom:648.800989px;}
.yd8{bottom:652.575555px;}
.yd9{bottom:653.416050px;}
.y170{bottom:658.257006px;}
.y171{bottom:658.257150px;}
.y59{bottom:661.550426px;}
.y1bd{bottom:662.660955px;}
.y1be{bottom:663.501450px;}
.y11{bottom:665.425755px;}
.y12{bottom:666.266250px;}
.y16f{bottom:674.006628px;}
.y58{bottom:676.425450px;}
.y57{bottom:676.425765px;}
.y1bb{bottom:678.410055px;}
.y1bc{bottom:679.250550px;}
.yf{bottom:683.424855px;}
.yd6{bottom:684.074655px;}
.y10{bottom:684.265350px;}
.yd7{bottom:684.915150px;}
.y16d{bottom:689.755206px;}
.y16e{bottom:689.756250px;}
.y56{bottom:691.300789px;}
.y1b9{bottom:699.409755px;}
.y1ba{bottom:700.250250px;}
.yd{bottom:701.423955px;}
.ye{bottom:702.264450px;}
.y55{bottom:704.050226px;}
.y16c{bottom:705.504828px;}
.yd4{bottom:715.572855px;}
.yd5{bottom:716.413350px;}
.y52{bottom:718.925231px;}
.y54{bottom:718.925250px;}
.yb{bottom:719.423055px;}
.yc{bottom:720.263550px;}
.y16a{bottom:721.253406px;}
.y16b{bottom:721.254450px;}
.y53{bottom:722.321850px;}
.y1b7{bottom:730.912455px;}
.y1b8{bottom:731.752950px;}
.y51{bottom:733.801275px;}
.y169{bottom:737.003028px;}
.y9{bottom:737.422155px;}
.ya{bottom:738.262650px;}
.y50{bottom:746.550712px;}
.y1b5{bottom:746.661555px;}
.y1b6{bottom:747.502050px;}
.y167{bottom:752.751602px;}
.y168{bottom:752.752650px;}
.y7{bottom:755.422155px;}
.y8{bottom:756.262650px;}
.y4f{bottom:759.300150px;}
.yd2{bottom:759.826755px;}
.yd3{bottom:760.667250px;}
.y1b3{bottom:762.410655px;}
.y1b4{bottom:763.251150px;}
.y166{bottom:768.501224px;}
.y1b1{bottom:778.159905px;}
.y1b2{bottom:779.000400px;}
.y164{bottom:789.502092px;}
.y165{bottom:789.502500px;}
.y1af{bottom:793.908855px;}
.y1b0{bottom:794.749350px;}
.yd0{bottom:801.014229px;}
.yd1{bottom:801.014250px;}
.y163{bottom:805.251714px;}
.y1ad{bottom:809.657955px;}
.y1ae{bottom:810.498450px;}
.ycf{bottom:813.013999px;}
.yc6{bottom:815.173305px;}
.ycd{bottom:825.012621px;}
.yce{bottom:825.012750px;}
.y1ab{bottom:825.407955px;}
.y1ac{bottom:826.248450px;}
.yc4{bottom:827.172855px;}
.yc5{bottom:828.013350px;}
.y162{bottom:836.753628px;}
.yc2{bottom:839.171655px;}
.ycc{bottom:840.012079px;}
.yc3{bottom:840.012150px;}
.y1a9{bottom:841.157055px;}
.y1aa{bottom:841.997550px;}
.yc0{bottom:851.171355px;}
.yc1{bottom:852.011850px;}
.ycb{bottom:852.011929px;}
.y160{bottom:852.502356px;}
.y161{bottom:852.503250px;}
.y88{bottom:853.572802px;}
.y1a7{bottom:856.906305px;}
.y1a8{bottom:857.746800px;}
.ybe{bottom:863.171205px;}
.yca{bottom:864.011541px;}
.ybf{bottom:864.011700px;}
.y15f{bottom:868.251978px;}
.y87{bottom:869.322535px;}
.y1a5{bottom:872.655255px;}
.y1a6{bottom:873.495750px;}
.ybc{bottom:875.170005px;}
.ybd{bottom:876.010500px;}
.yc9{bottom:879.010999px;}
.y15c{bottom:884.000928px;}
.y15e{bottom:884.001600px;}
.y1a3{bottom:888.404505px;}
.y15d{bottom:888.446550px;}
.y1a4{bottom:889.245000px;}
.yba{bottom:890.169255px;}
.y86{bottom:890.321788px;}
.yc8{bottom:891.009679px;}
.ybb{bottom:891.009750px;}
.y15a{bottom:899.749352px;}
.y15b{bottom:899.750550px;}
.yb8{bottom:902.168955px;}
.yb9{bottom:903.009450px;}
.y85{bottom:906.070350px;}
.y1a1{bottom:909.404955px;}
.y1a2{bottom:910.245450px;}
.yb6{bottom:917.168355px;}
.yc7{bottom:918.008779px;}
.yb7{bottom:918.008850px;}
.y159{bottom:920.750628px;}
.y19f{bottom:925.154055px;}
.y1a0{bottom:925.994550px;}
.yb4{bottom:929.168055px;}
.yb5{bottom:930.008550px;}
.y157{bottom:936.499206px;}
.y158{bottom:936.500250px;}
.y19d{bottom:946.154655px;}
.y19e{bottom:946.995150px;}
.y156{bottom:952.248828px;}
.y9c{bottom:964.908855px;}
.y19b{bottom:967.154355px;}
.y19c{bottom:967.994850px;}
.y154{bottom:967.996730px;}
.y155{bottom:967.998450px;}
.yb2{bottom:972.408555px;}
.yb3{bottom:973.249050px;}
.y9b{bottom:973.249056px;}
.y5{bottom:979.055055px;}
.y199{bottom:982.903455px;}
.y19a{bottom:983.743950px;}
.y153{bottom:983.746352px;}
.y9a{bottom:988.998678px;}
.y6{bottom:989.544555px;}
.yb0{bottom:989.908155px;}
.yb1{bottom:990.748650px;}
.y197{bottom:998.652555px;}
.y198{bottom:999.493050px;}
.y98{bottom:1004.747106px;}
.y152{bottom:1004.747628px;}
.y99{bottom:1004.748300px;}
.yae{bottom:1007.407755px;}
.yaf{bottom:1008.248250px;}
.y195{bottom:1019.653155px;}
.y196{bottom:1020.493650px;}
.y150{bottom:1020.496206px;}
.y97{bottom:1020.496728px;}
.y151{bottom:1020.497250px;}
.y4{bottom:1023.152775px;}
.yac{bottom:1024.906455px;}
.yad{bottom:1025.746950px;}
.y193{bottom:1035.402255px;}
.y194{bottom:1036.242750px;}
.y14f{bottom:1036.245828px;}
.y96{bottom:1036.246350px;}
.yaa{bottom:1042.406055px;}
.yab{bottom:1043.246550px;}
.y191{bottom:1051.151355px;}
.y192{bottom:1051.991850px;}
.y14d{bottom:1051.994252px;}
.y95{bottom:1051.994774px;}
.y14e{bottom:1051.995450px;}
.ya8{bottom:1059.904755px;}
.ya9{bottom:1060.745250px;}
.y18f{bottom:1072.151955px;}
.y190{bottom:1072.992450px;}
.y93{bottom:1072.995006px;}
.y14c{bottom:1072.995528px;}
.y94{bottom:1072.996050px;}
.y3{bottom:1073.552265px;}
.ya6{bottom:1077.404505px;}
.ya7{bottom:1078.245000px;}
.y14a{bottom:1088.744102px;}
.y92{bottom:1088.744628px;}
.y14b{bottom:1088.745150px;}
.ya4{bottom:1094.903955px;}
.ya5{bottom:1095.744450px;}
.y18e{bottom:1103.653755px;}
.y149{bottom:1104.493724px;}
.y90{bottom:1104.493728px;}
.y91{bottom:1104.494250px;}
.ya2{bottom:1117.654027px;}
.ya3{bottom:1118.494650px;}
.y18d{bottom:1119.402861px;}
.y8f{bottom:1120.243350px;}
.y2{bottom:1120.798755px;}
.y148{bottom:1125.495000px;}
.y8e{bottom:1135.152483px;}
.ya1{bottom:1135.153755px;}
.ya0{bottom:1135.153933px;}
.y146{bottom:1140.402411px;}
.y147{bottom:1140.403455px;}
.y8c{bottom:1150.901642px;}
.y8d{bottom:1150.902105px;}
.y9f{bottom:1152.652327px;}
.y145{bottom:1156.152033px;}
.y9d{bottom:1170.151477px;}
.y9e{bottom:1170.152055px;}
.y8b{bottom:1171.901583px;}
.y144{bottom:1171.901655px;}
.y8a{bottom:1187.651205px;}
.h8{height:22.595940px;}
.h13{height:29.574450px;}
.h9{height:33.058290px;}
.ha{height:34.198290px;}
.h7{height:38.758290px;}
.hf{height:39.898290px;}
.hc{height:42.747720px;}
.hb{height:44.457720px;}
.h11{height:45.027720px;}
.h12{height:48.447720px;}
.hd{height:50.727720px;}
.h6{height:51.297720px;}
.h5{height:54.147720px;}
.h10{height:59.847150px;}
.h4{height:69.781680px;}
.he{height:113.994870px;}
.h3{height:119.694300px;}
.h2{height:167.572020px;}
.h1{height:1261.440000px;}
.h0{height:1263.000000px;}
.w2{width:892.440000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x1f{left:44.642700px;}
.x4{left:59.523450px;}
.x1{left:62.712450px;}
.x5c{left:74.380800px;}
.x2{left:86.398650px;}
.x27{left:103.234350px;}
.x3{left:104.357700px;}
.x26{left:105.477150px;}
.x28{left:106.722450px;}
.x5b{left:121.116600px;}
.x39{left:126.325500px;}
.x60{left:132.481350px;}
.x25{left:133.874250px;}
.x23{left:135.676500px;}
.x34{left:136.677600px;}
.x22{left:138.359550px;}
.x35{left:139.427550px;}
.x24{left:140.562150px;}
.x8{left:141.994200px;}
.x9{left:144.086700px;}
.x7{left:145.383150px;}
.x6{left:147.948000px;}
.x5{left:149.572350px;}
.xa{left:154.422450px;}
.x33{left:157.689000px;}
.x62{left:168.822000px;}
.x5f{left:175.742100px;}
.x36{left:241.468200px;}
.x65{left:269.865000px;}
.x2f{left:309.495000px;}
.x30{left:314.774550px;}
.x2e{left:318.074400px;}
.x32{left:323.773950px;}
.x64{left:325.717500px;}
.x5d{left:333.849600px;}
.x5e{left:338.464800px;}
.x21{left:341.499300px;}
.x37{left:345.064500px;}
.x38{left:348.091200px;}
.xb{left:365.037900px;}
.x20{left:366.955950px;}
.x17{left:369.924300px;}
.x61{left:380.335500px;}
.x63{left:381.709800px;}
.x18{left:389.028600px;}
.x2d{left:400.560450px;}
.x47{left:403.910100px;}
.x3c{left:410.193300px;}
.x4c{left:419.921493px;}
.x3e{left:424.369950px;}
.x2a{left:446.243250px;}
.x67{left:452.159550px;}
.x1e{left:464.872500px;}
.xc{left:519.948000px;}
.x16{left:522.171450px;}
.xd{left:528.434100px;}
.x51{left:532.735050px;}
.xe{left:534.249000px;}
.x69{left:535.522350px;}
.x12{left:539.489850px;}
.x2c{left:547.523700px;}
.x29{left:552.367350px;}
.x19{left:572.189550px;}
.x4f{left:574.702200px;}
.x4a{left:577.507800px;}
.x50{left:579.317400px;}
.x14{left:583.428750px;}
.x10{left:585.040200px;}
.x15{left:591.822750px;}
.x31{left:593.545950px;}
.x11{left:601.267350px;}
.x13{left:602.440200px;}
.x4d{left:609.852450px;}
.x2b{left:611.748000px;}
.x45{left:615.395250px;}
.x66{left:618.694350px;}
.x52{left:620.171400px;}
.x4b{left:621.532950px;}
.x44{left:628.410600px;}
.xf{left:638.097150px;}
.x49{left:640.121850px;}
.x56{left:641.768850px;}
.x1b{left:644.602950px;}
.x4e{left:646.081950px;}
.x41{left:653.466750px;}
.x1a{left:659.887650px;}
.x59{left:661.553550px;}
.x3a{left:664.840050px;}
.x68{left:666.427350px;}
.x3f{left:667.894500px;}
.x55{left:669.829950px;}
.x40{left:672.508800px;}
.x46{left:678.129300px;}
.x3b{left:679.617600px;}
.x43{left:680.698800px;}
.x42{left:688.090500px;}
.x48{left:689.246400px;}
.x3d{left:691.681500px;}
.x1d{left:693.500550px;}
.x54{left:695.593650px;}
.x57{left:697.769550px;}
.x5a{left:702.092700px;}
.x53{left:705.004800px;}
.x58{left:710.744850px;}
.x1c{left:711.890100px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:-29.476996pt;}
.ls3{letter-spacing:-25.758773pt;}
.ls4{letter-spacing:-23.406885pt;}
.ls22{letter-spacing:-21.119050pt;}
.ls25{letter-spacing:-12.823389pt;}
.ls6{letter-spacing:-11.519488pt;}
.ls7{letter-spacing:-11.450185pt;}
.ls9{letter-spacing:-11.348855pt;}
.ls5{letter-spacing:-11.095533pt;}
.ls29{letter-spacing:-10.726985pt;}
.ls18{letter-spacing:-10.632055pt;}
.ls24{letter-spacing:-10.527499pt;}
.ls2f{letter-spacing:-10.489662pt;}
.ls36{letter-spacing:-10.408972pt;}
.ls19{letter-spacing:-10.394733pt;}
.ls33{letter-spacing:-10.364275pt;}
.ls3a{letter-spacing:-10.326357pt;}
.ls35{letter-spacing:-10.322144pt;}
.ls30{letter-spacing:-10.157410pt;}
.lsa{letter-spacing:-10.031578pt;}
.ls2e{letter-spacing:-9.730229pt;}
.ls2b{letter-spacing:-9.483733pt;}
.ls27{letter-spacing:-9.479520pt;}
.ls2c{letter-spacing:-9.458454pt;}
.ls2{letter-spacing:-9.407552pt;}
.ls17{letter-spacing:-9.114093pt;}
.ls1f{letter-spacing:-9.034279pt;}
.ls8{letter-spacing:-9.018287pt;}
.ls3d{letter-spacing:-8.921206pt;}
.ls11{letter-spacing:-8.707243pt;}
.lsc{letter-spacing:-8.703616pt;}
.ls1e{letter-spacing:-8.667351pt;}
.ls28{letter-spacing:-8.594765pt;}
.ls38{letter-spacing:-8.552634pt;}
.ls1b{letter-spacing:-8.448687pt;}
.lse{letter-spacing:-8.195905pt;}
.ls3b{letter-spacing:-8.004928pt;}
.lsd{letter-spacing:-7.945676pt;}
.ls14{letter-spacing:-7.942050pt;}
.ls2a{letter-spacing:-7.710010pt;}
.ls20{letter-spacing:-7.470080pt;}
.ls1d{letter-spacing:-7.437965pt;}
.ls13{letter-spacing:-7.434339pt;}
.lsf{letter-spacing:-7.180483pt;}
.ls26{letter-spacing:-6.999667pt;}
.ls21{letter-spacing:-6.682380pt;}
.ls10{letter-spacing:-6.455182pt;}
.ls3c{letter-spacing:-5.982630pt;}
.ls1c{letter-spacing:-5.693615pt;}
.ls39{letter-spacing:-5.458421pt;}
.ls15{letter-spacing:-5.439760pt;}
.ls16{letter-spacing:-5.023749pt;}
.ls12{letter-spacing:-4.932049pt;}
.ls32{letter-spacing:-4.698989pt;}
.ls1a{letter-spacing:-4.509131pt;}
.ls31{letter-spacing:-3.702234pt;}
.lsb{letter-spacing:-3.408916pt;}
.ls34{letter-spacing:-2.443610pt;}
.ls2d{letter-spacing:-0.678312pt;}
.ls37{letter-spacing:-0.674099pt;}
.ls0{letter-spacing:0.000000pt;}
.ls23{letter-spacing:1.066619pt;}
.ws22{word-spacing:-1.066619pt;}
.ws0{word-spacing:0.000000pt;}
.ws35{word-spacing:0.674099pt;}
.ws2c{word-spacing:0.678312pt;}
.ws33{word-spacing:2.443610pt;}
.wsa{word-spacing:3.408916pt;}
.ws30{word-spacing:3.702234pt;}
.ws19{word-spacing:4.509131pt;}
.ws31{word-spacing:4.698989pt;}
.ws11{word-spacing:4.932049pt;}
.ws15{word-spacing:5.023749pt;}
.ws14{word-spacing:5.439760pt;}
.ws36{word-spacing:5.458421pt;}
.ws1b{word-spacing:5.693615pt;}
.ws39{word-spacing:5.982630pt;}
.wsf{word-spacing:6.455182pt;}
.ws20{word-spacing:6.682380pt;}
.ws25{word-spacing:6.999667pt;}
.wsd{word-spacing:7.180483pt;}
.ws12{word-spacing:7.434339pt;}
.ws1c{word-spacing:7.437965pt;}
.ws1f{word-spacing:7.470080pt;}
.ws29{word-spacing:7.710010pt;}
.ws13{word-spacing:7.942050pt;}
.wsc{word-spacing:7.945676pt;}
.ws38{word-spacing:8.004928pt;}
.wse{word-spacing:8.195905pt;}
.ws1a{word-spacing:8.448687pt;}
.ws27{word-spacing:8.594765pt;}
.ws1d{word-spacing:8.667351pt;}
.wsb{word-spacing:8.703616pt;}
.ws10{word-spacing:8.707243pt;}
.ws3a{word-spacing:8.921206pt;}
.ws7{word-spacing:9.018287pt;}
.ws1e{word-spacing:9.034279pt;}
.ws16{word-spacing:9.114093pt;}
.ws2{word-spacing:9.407552pt;}
.ws2b{word-spacing:9.458454pt;}
.ws26{word-spacing:9.479520pt;}
.ws2a{word-spacing:9.483733pt;}
.ws2d{word-spacing:9.730229pt;}
.ws9{word-spacing:10.031578pt;}
.ws2f{word-spacing:10.157410pt;}
.ws34{word-spacing:10.322144pt;}
.ws37{word-spacing:10.326357pt;}
.ws32{word-spacing:10.364275pt;}
.ws18{word-spacing:10.394733pt;}
.ws2e{word-spacing:10.489662pt;}
.ws23{word-spacing:10.527499pt;}
.ws17{word-spacing:10.632055pt;}
.ws28{word-spacing:10.726985pt;}
.ws5{word-spacing:11.095533pt;}
.ws8{word-spacing:11.348855pt;}
.ws6{word-spacing:11.519488pt;}
.ws24{word-spacing:12.823389pt;}
.ws21{word-spacing:21.119050pt;}
.ws4{word-spacing:23.406885pt;}
.ws3{word-spacing:25.758773pt;}
.ws1{word-spacing:29.476996pt;}
._10{margin-left:-134.371201pt;}
._f{margin-left:-133.430446pt;}
._4{margin-left:-115.556097pt;}
._9{margin-left:-107.873263pt;}
._e{margin-left:-99.720051pt;}
._c{margin-left:-94.859483pt;}
._6{margin-left:-89.685329pt;}
._5{margin-left:-78.396267pt;}
._13{margin-left:-77.052331pt;}
._37{margin-left:-76.153229pt;}
._38{margin-left:-74.710915pt;}
._39{margin-left:-73.766845pt;}
._a{margin-left:-71.810980pt;}
._3{margin-left:-68.675130pt;}
._16{margin-left:-67.644779pt;}
._3a{margin-left:-65.597048pt;}
._8{margin-left:-63.187391pt;}
._d{margin-left:-62.121202pt;}
._3b{margin-left:-61.117250pt;}
._b{margin-left:-60.208333pt;}
._1{margin-left:-58.953993pt;}
._2{margin-left:-55.661349pt;}
._7{margin-left:-52.368706pt;}
._14{margin-left:-51.405552pt;}
._11{margin-left:-49.076063pt;}
._3c{margin-left:-47.784516pt;}
._19{margin-left:-46.813771pt;}
._3d{margin-left:-45.880625pt;}
._15{margin-left:-44.461883pt;}
._3f{margin-left:-43.550737pt;}
._0{margin-left:-42.647569pt;}
._3e{margin-left:-41.411162pt;}
._2e{margin-left:-40.438980pt;}
._17{margin-left:-39.332527pt;}
._26{margin-left:-38.157461pt;}
._1f{margin-left:-36.714938pt;}
._24{margin-left:-35.825425pt;}
._21{margin-left:-34.299889pt;}
._1d{margin-left:-33.027227pt;}
._28{margin-left:-31.973526pt;}
._1a{margin-left:-30.462549pt;}
._27{margin-left:-29.241159pt;}
._23{margin-left:-28.017487pt;}
._30{margin-left:-26.734306pt;}
._1c{margin-left:-25.646779pt;}
._12{margin-left:-23.962458pt;}
._22{margin-left:-22.697711pt;}
._20{margin-left:-21.684420pt;}
._29{margin-left:-20.620465pt;}
._1e{margin-left:-19.556510pt;}
._2b{margin-left:-17.935245pt;}
._31{margin-left:-17.009998pt;}
._25{margin-left:-15.749947pt;}
._2f{margin-left:-14.657057pt;}
._2a{margin-left:-13.442950pt;}
._35{margin-left:-12.542230pt;}
._18{margin-left:-11.647445pt;}
._41{margin-left:-10.674865pt;}
._2d{margin-left:-9.767730pt;}
._32{margin-left:-8.604957pt;}
._34{margin-left:-7.439618pt;}
._36{margin-left:-6.493551pt;}
._1b{margin-left:-4.591781pt;}
._33{margin-left:-2.947582pt;}
._2c{margin-left:-1.402864pt;}
._42{width:2.213264pt;}
._43{width:3.104842pt;}
._44{width:4.381645pt;}
._40{width:8.692447pt;}
.fs6{font-size:21.142400pt;}
.fs11{font-size:27.672000pt;}
.fs7{font-size:30.931733pt;}
.fs8{font-size:31.998400pt;}
.fs5{font-size:36.265067pt;}
.fsd{font-size:37.331733pt;}
.fsa{font-size:39.997867pt;}
.fs9{font-size:41.597867pt;}
.fsf{font-size:42.131200pt;}
.fs10{font-size:45.331200pt;}
.fsb{font-size:47.464533pt;}
.fs4{font-size:47.997867pt;}
.fs3{font-size:50.664533pt;}
.fse{font-size:55.997333pt;}
.fs2{font-size:65.292800pt;}
.fsc{font-size:106.661867pt;}
.fs1{font-size:111.994667pt;}
.fs0{font-size:156.792533pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.747107pt;}
.y89{bottom:25.472093pt;}
.y117{bottom:61.079416pt;}
.y4e{bottom:61.495960pt;}
.y4d{bottom:61.496100pt;}
.y203{bottom:61.720296pt;}
.y143{bottom:62.007626pt;}
.y21b{bottom:62.456217pt;}
.y21a{bottom:73.119960pt;}
.y219{bottom:73.120191pt;}
.y115{bottom:75.071748pt;}
.y116{bottom:75.071960pt;}
.y202{bottom:75.719960pt;}
.y201{bottom:75.720632pt;}
.y142{bottom:75.936093pt;}
.y141{bottom:75.936786pt;}
.y4b{bottom:77.495794pt;}
.y4c{bottom:77.495960pt;}
.y218{bottom:83.792093pt;}
.y114{bottom:89.071413pt;}
.y200{bottom:89.720296pt;}
.y140{bottom:89.872373pt;}
.y4a{bottom:93.495653pt;}
.y216{bottom:95.202846pt;}
.y217{bottom:95.203067pt;}
.y1fe{bottom:103.719549pt;}
.y1ff{bottom:103.719960pt;}
.y13e{bottom:103.807493pt;}
.y13f{bottom:103.807960pt;}
.y113{bottom:107.743960pt;}
.y215{bottom:108.531164pt;}
.y49{bottom:116.295960pt;}
.y1fd{bottom:117.712093pt;}
.y13d{bottom:117.735960pt;}
.y213{bottom:119.202846pt;}
.y214{bottom:119.203067pt;}
.y111{bottom:121.743960pt;}
.y112{bottom:122.491067pt;}
.y84{bottom:127.154900pt;}
.y1fb{bottom:131.712093pt;}
.y47{bottom:132.295960pt;}
.y13b{bottom:132.419012pt;}
.y13c{bottom:132.419200pt;}
.y1fc{bottom:132.459200pt;}
.y212{bottom:132.531164pt;}
.y48{bottom:133.043067pt;}
.y10f{bottom:135.743960pt;}
.y110{bottom:136.491067pt;}
.y83{bottom:138.483200pt;}
.y210{bottom:143.203005pt;}
.y211{bottom:143.203067pt;}
.y13a{bottom:146.347480pt;}
.y45{bottom:148.295960pt;}
.y46{bottom:149.043067pt;}
.y10d{bottom:149.736093pt;}
.y1f9{bottom:150.383960pt;}
.y10e{bottom:150.483200pt;}
.y1fa{bottom:151.131067pt;}
.y20f{bottom:156.531324pt;}
.y139{bottom:160.283067pt;}
.y138{bottom:160.283146pt;}
.y10b{bottom:163.736093pt;}
.y43{bottom:164.295960pt;}
.y1f7{bottom:164.383960pt;}
.y10c{bottom:164.483200pt;}
.y82{bottom:164.938556pt;}
.y44{bottom:165.043067pt;}
.y1f8{bottom:165.131067pt;}
.y20d{bottom:167.194588pt;}
.y20e{bottom:167.195067pt;}
.y137{bottom:174.211613pt;}
.y81{bottom:176.266789pt;}
.y109{bottom:177.736093pt;}
.y1f5{bottom:178.383960pt;}
.y10a{bottom:178.483200pt;}
.y1f6{bottom:179.131067pt;}
.y41{bottom:180.295960pt;}
.y20c{bottom:180.531067pt;}
.y20b{bottom:180.531752pt;}
.y42{bottom:181.043067pt;}
.y136{bottom:188.147200pt;}
.y135{bottom:188.147480pt;}
.y80{bottom:189.490928pt;}
.y20a{bottom:191.195495pt;}
.y107{bottom:191.736093pt;}
.y1f3{bottom:192.375960pt;}
.y108{bottom:192.483200pt;}
.y1f4{bottom:193.123067pt;}
.y134{bottom:202.083067pt;}
.y7f{bottom:202.715067pt;}
.y3f{bottom:203.096093pt;}
.y40{bottom:203.843200pt;}
.y209{bottom:204.531067pt;}
.y208{bottom:204.531714pt;}
.y105{bottom:205.736093pt;}
.y1f1{bottom:206.375960pt;}
.y106{bottom:206.483200pt;}
.y1f2{bottom:207.123067pt;}
.y207{bottom:215.195457pt;}
.y7d{bottom:215.938340pt;}
.y7e{bottom:215.939200pt;}
.y3d{bottom:219.096093pt;}
.y103{bottom:219.736093pt;}
.y3e{bottom:219.843200pt;}
.y1ef{bottom:220.375960pt;}
.y104{bottom:220.483200pt;}
.y132{bottom:220.682599pt;}
.y1f0{bottom:221.123067pt;}
.y133{bottom:224.635067pt;}
.y205{bottom:225.859164pt;}
.y206{bottom:225.859200pt;}
.y7c{bottom:229.154237pt;}
.y101{bottom:233.736093pt;}
.y102{bottom:234.483200pt;}
.y130{bottom:234.611012pt;}
.y131{bottom:234.611067pt;}
.y3b{bottom:235.096093pt;}
.y3c{bottom:235.843200pt;}
.y204{bottom:236.531067pt;}
.y1ed{bottom:239.047960pt;}
.y1ee{bottom:239.795067pt;}
.y7b{bottom:240.490697pt;}
.yff{bottom:247.736093pt;}
.y100{bottom:248.483200pt;}
.y12f{bottom:248.546599pt;}
.y39{bottom:251.096093pt;}
.y7a{bottom:251.827157pt;}
.y3a{bottom:251.843200pt;}
.y1eb{bottom:253.047960pt;}
.y1ec{bottom:253.795067pt;}
.yfd{bottom:261.736093pt;}
.y12d{bottom:262.475067pt;}
.y12c{bottom:262.475893pt;}
.yfe{bottom:262.483200pt;}
.y79{bottom:263.155457pt;}
.y12e{bottom:266.427067pt;}
.y1e9{bottom:267.039960pt;}
.y37{bottom:267.096093pt;}
.y1ea{bottom:267.787067pt;}
.y38{bottom:267.843200pt;}
.y18c{bottom:274.376093pt;}
.y78{bottom:276.379513pt;}
.y12b{bottom:276.411480pt;}
.yfb{bottom:280.399960pt;}
.y1e8{bottom:281.039960pt;}
.yfc{bottom:281.147067pt;}
.y18b{bottom:281.787067pt;}
.y18a{bottom:281.787738pt;}
.y35{bottom:283.096093pt;}
.y36{bottom:283.843200pt;}
.y76{bottom:287.714537pt;}
.y77{bottom:287.715067pt;}
.y12a{bottom:290.347067pt;}
.yf9{bottom:294.399960pt;}
.yfa{bottom:295.147067pt;}
.y189{bottom:295.787403pt;}
.y75{bottom:299.042837pt;}
.y33{bottom:299.096093pt;}
.y1e6{bottom:299.712093pt;}
.y34{bottom:299.843200pt;}
.y1e7{bottom:300.459200pt;}
.yf7{bottom:308.400093pt;}
.y127{bottom:308.946572pt;}
.y128{bottom:308.947067pt;}
.yf8{bottom:309.147200pt;}
.y187{bottom:309.786165pt;}
.y188{bottom:309.787067pt;}
.y74{bottom:310.379297pt;}
.y129{bottom:312.891067pt;}
.y1e4{bottom:313.712093pt;}
.y1e5{bottom:314.459200pt;}
.y31{bottom:315.096093pt;}
.y32{bottom:315.843200pt;}
.yf5{bottom:322.399293pt;}
.y126{bottom:322.876226pt;}
.yf6{bottom:323.146400pt;}
.y73{bottom:323.600633pt;}
.y186{bottom:323.788203pt;}
.y1e2{bottom:327.708893pt;}
.y1e3{bottom:328.456000pt;}
.y2f{bottom:331.092893pt;}
.y30{bottom:331.840000pt;}
.y71{bottom:334.933314pt;}
.y72{bottom:334.933467pt;}
.yf3{bottom:336.398493pt;}
.y125{bottom:336.808253pt;}
.yf4{bottom:337.145600pt;}
.y184{bottom:337.787072pt;}
.y185{bottom:337.787867pt;}
.y1e0{bottom:341.707960pt;}
.y1e1{bottom:342.455067pt;}
.yf1{bottom:350.397560pt;}
.y123{bottom:350.741053pt;}
.y124{bottom:350.741467pt;}
.yf2{bottom:351.144667pt;}
.y183{bottom:351.786736pt;}
.y70{bottom:353.824694pt;}
.y2d{bottom:353.895293pt;}
.y2e{bottom:354.642400pt;}
.y1de{bottom:355.707160pt;}
.y1df{bottom:356.454267pt;}
.yef{bottom:364.396760pt;}
.y122{bottom:364.674267pt;}
.yf0{bottom:365.143867pt;}
.y181{bottom:365.785338pt;}
.y182{bottom:365.786400pt;}
.y6f{bottom:367.047844pt;}
.y1dc{bottom:369.706360pt;}
.y2b{bottom:369.894360pt;}
.y1dd{bottom:370.453467pt;}
.y2c{bottom:370.641467pt;}
.yed{bottom:378.396093pt;}
.yee{bottom:379.143200pt;}
.y180{bottom:379.785003pt;}
.y121{bottom:383.274267pt;}
.y1da{bottom:383.706360pt;}
.y1db{bottom:384.453467pt;}
.y29{bottom:385.893560pt;}
.y6e{bottom:385.939223pt;}
.y2a{bottom:386.640667pt;}
.yeb{bottom:392.396093pt;}
.yec{bottom:393.143200pt;}
.y17f{bottom:393.784667pt;}
.y17e{bottom:393.785003pt;}
.y6d{bottom:399.161467pt;}
.y6c{bottom:399.161713pt;}
.y27{bottom:401.892760pt;}
.y1d8{bottom:402.372893pt;}
.y28{bottom:402.639867pt;}
.y1d9{bottom:403.120000pt;}
.ye9{bottom:406.395293pt;}
.yea{bottom:407.142400pt;}
.y17d{bottom:407.784667pt;}
.y120{bottom:411.209186pt;}
.y6b{bottom:412.383957pt;}
.y1d6{bottom:416.372093pt;}
.y1d7{bottom:417.119200pt;}
.ye7{bottom:420.394360pt;}
.ye8{bottom:421.141467pt;}
.y6a{bottom:423.716790pt;}
.y25{bottom:424.694360pt;}
.y11e{bottom:425.141439pt;}
.y11f{bottom:425.142400pt;}
.y26{bottom:425.441467pt;}
.y17c{bottom:426.451256pt;}
.y1d4{bottom:430.371160pt;}
.y1d5{bottom:431.118267pt;}
.ye5{bottom:434.393560pt;}
.ye6{bottom:435.140667pt;}
.y69{bottom:436.939033pt;}
.y11d{bottom:439.074653pt;}
.y17b{bottom:440.450400pt;}
.y23{bottom:440.693560pt;}
.y24{bottom:441.440667pt;}
.y1d2{bottom:444.371160pt;}
.y1d3{bottom:445.118267pt;}
.y68{bottom:448.271867pt;}
.y67{bottom:448.271923pt;}
.ye3{bottom:448.392760pt;}
.ye4{bottom:449.139867pt;}
.y11c{bottom:453.007867pt;}
.y11b{bottom:453.007973pt;}
.y21{bottom:456.693560pt;}
.y22{bottom:457.440667pt;}
.y66{bottom:459.604757pt;}
.ye1{bottom:462.392093pt;}
.y1d0{bottom:463.037560pt;}
.ye2{bottom:463.139200pt;}
.y1d1{bottom:463.784667pt;}
.y11a{bottom:466.940000pt;}
.y17a{bottom:468.452203pt;}
.y65{bottom:470.937590pt;}
.y1f{bottom:472.692760pt;}
.y20{bottom:473.439867pt;}
.ydf{bottom:476.391960pt;}
.y1ce{bottom:477.036760pt;}
.ye0{bottom:477.139067pt;}
.y1cf{bottom:477.783867pt;}
.y119{bottom:480.872253pt;}
.y64{bottom:482.270423pt;}
.y178{bottom:482.451403pt;}
.y179{bottom:482.451867pt;}
.y1d{bottom:488.691960pt;}
.y1e{bottom:489.439067pt;}
.y1cc{bottom:491.036760pt;}
.y1cd{bottom:491.783867pt;}
.y118{bottom:494.805467pt;}
.yde{bottom:495.058360pt;}
.y62{bottom:495.492567pt;}
.y63{bottom:495.492667pt;}
.y177{bottom:496.451067pt;}
.y1ca{bottom:505.035960pt;}
.y1cb{bottom:505.783067pt;}
.y61{bottom:506.825400pt;}
.y1b{bottom:511.493560pt;}
.y1c{bottom:512.240667pt;}
.y176{bottom:515.118322pt;}
.y60{bottom:518.158233pt;}
.y1c8{bottom:519.035160pt;}
.y1c9{bottom:519.782267pt;}
.y19{bottom:527.492760pt;}
.y1a{bottom:528.239867pt;}
.y175{bottom:529.117467pt;}
.ydc{bottom:529.403160pt;}
.y5f{bottom:529.491067pt;}
.ydd{bottom:530.150267pt;}
.y1c5{bottom:533.034360pt;}
.y1c6{bottom:533.781467pt;}
.y1c7{bottom:537.732667pt;}
.y5e{bottom:542.713467pt;}
.y17{bottom:543.491960pt;}
.y18{bottom:544.239067pt;}
.y1c3{bottom:547.033560pt;}
.y1c4{bottom:547.780667pt;}
.yda{bottom:552.068420pt;}
.ydb{bottom:552.815867pt;}
.y5d{bottom:554.046233pt;}
.y173{bottom:557.118138pt;}
.y15{bottom:559.491160pt;}
.y16{bottom:560.238267pt;}
.y1c1{bottom:561.032760pt;}
.y174{bottom:561.070267pt;}
.y1c2{bottom:561.779867pt;}
.y5c{bottom:565.379067pt;}
.y5b{bottom:565.379157pt;}
.y172{bottom:571.117803pt;}
.y1bf{bottom:575.031960pt;}
.y13{bottom:575.490360pt;}
.y1c0{bottom:575.779067pt;}
.y14{bottom:576.237467pt;}
.y5a{bottom:576.711990pt;}
.yd8{bottom:580.067160pt;}
.yd9{bottom:580.814267pt;}
.y170{bottom:585.117338pt;}
.y171{bottom:585.117467pt;}
.y59{bottom:588.044823pt;}
.y1bd{bottom:589.031960pt;}
.y1be{bottom:589.779067pt;}
.y11{bottom:591.489560pt;}
.y12{bottom:592.236667pt;}
.y16f{bottom:599.117003pt;}
.y58{bottom:601.267067pt;}
.y57{bottom:601.267347pt;}
.y1bb{bottom:603.031160pt;}
.y1bc{bottom:603.778267pt;}
.yf{bottom:607.488760pt;}
.yd6{bottom:608.066360pt;}
.y10{bottom:608.235867pt;}
.yd7{bottom:608.813467pt;}
.y16d{bottom:613.115738pt;}
.y16e{bottom:613.116667pt;}
.y56{bottom:614.489590pt;}
.y1b9{bottom:621.697560pt;}
.y1ba{bottom:622.444667pt;}
.yd{bottom:623.487960pt;}
.ye{bottom:624.235067pt;}
.y55{bottom:625.822423pt;}
.y16c{bottom:627.115403pt;}
.yd4{bottom:636.064760pt;}
.yd5{bottom:636.811867pt;}
.y52{bottom:639.044650pt;}
.y54{bottom:639.044667pt;}
.yb{bottom:639.487160pt;}
.yc{bottom:640.234267pt;}
.y16a{bottom:641.114138pt;}
.y16b{bottom:641.115067pt;}
.y53{bottom:642.063867pt;}
.y1b7{bottom:649.699960pt;}
.y1b8{bottom:650.447067pt;}
.y51{bottom:652.267800pt;}
.y169{bottom:655.113803pt;}
.y9{bottom:655.486360pt;}
.ya{bottom:656.233467pt;}
.y50{bottom:663.600633pt;}
.y1b5{bottom:663.699160pt;}
.y1b6{bottom:664.446267pt;}
.y167{bottom:669.112535pt;}
.y168{bottom:669.113467pt;}
.y7{bottom:671.486360pt;}
.y8{bottom:672.233467pt;}
.y4f{bottom:674.933467pt;}
.yd2{bottom:675.401560pt;}
.yd3{bottom:676.148667pt;}
.y1b3{bottom:677.698360pt;}
.y1b4{bottom:678.445467pt;}
.y166{bottom:683.112199pt;}
.y1b1{bottom:691.697693pt;}
.y1b2{bottom:692.444800pt;}
.y164{bottom:701.779637pt;}
.y165{bottom:701.780000pt;}
.y1af{bottom:705.696760pt;}
.y1b0{bottom:706.443867pt;}
.yd0{bottom:712.012648pt;}
.yd1{bottom:712.012667pt;}
.y163{bottom:715.779301pt;}
.y1ad{bottom:719.695960pt;}
.y1ae{bottom:720.443067pt;}
.ycf{bottom:722.679111pt;}
.yc6{bottom:724.598493pt;}
.ycd{bottom:733.344552pt;}
.yce{bottom:733.344667pt;}
.y1ab{bottom:733.695960pt;}
.y1ac{bottom:734.443067pt;}
.yc4{bottom:735.264760pt;}
.yc5{bottom:736.011867pt;}
.y162{bottom:743.781003pt;}
.yc2{bottom:745.930360pt;}
.ycc{bottom:746.677404pt;}
.yc3{bottom:746.677467pt;}
.y1a9{bottom:747.695160pt;}
.y1aa{bottom:748.442267pt;}
.yc0{bottom:756.596760pt;}
.yc1{bottom:757.343867pt;}
.ycb{bottom:757.343937pt;}
.y160{bottom:757.779872pt;}
.y161{bottom:757.780667pt;}
.y88{bottom:758.731380pt;}
.y1a7{bottom:761.694493pt;}
.y1a8{bottom:762.441600pt;}
.ybe{bottom:767.263293pt;}
.yca{bottom:768.010259pt;}
.ybf{bottom:768.010400pt;}
.y15f{bottom:771.779536pt;}
.y87{bottom:772.731142pt;}
.y1a5{bottom:775.693560pt;}
.y1a6{bottom:776.440667pt;}
.ybc{bottom:777.928893pt;}
.ybd{bottom:778.676000pt;}
.yc9{bottom:781.343111pt;}
.y15c{bottom:785.778603pt;}
.y15e{bottom:785.779200pt;}
.y1a3{bottom:789.692893pt;}
.y15d{bottom:789.730267pt;}
.y1a4{bottom:790.440000pt;}
.yba{bottom:791.261560pt;}
.y86{bottom:791.397145pt;}
.yc8{bottom:792.008604pt;}
.ybb{bottom:792.008667pt;}
.y15a{bottom:799.777202pt;}
.y15b{bottom:799.778267pt;}
.yb8{bottom:801.927960pt;}
.yb9{bottom:802.675067pt;}
.y85{bottom:805.395867pt;}
.y1a1{bottom:808.359960pt;}
.y1a2{bottom:809.107067pt;}
.yb6{bottom:815.260760pt;}
.yc7{bottom:816.007804pt;}
.yb7{bottom:816.007867pt;}
.y159{bottom:818.445003pt;}
.y19f{bottom:822.359160pt;}
.y1a0{bottom:823.106267pt;}
.yb4{bottom:825.927160pt;}
.yb5{bottom:826.674267pt;}
.y157{bottom:832.443738pt;}
.y158{bottom:832.444667pt;}
.y19d{bottom:841.026360pt;}
.y19e{bottom:841.773467pt;}
.y156{bottom:846.443403pt;}
.y9c{bottom:857.696760pt;}
.y19b{bottom:859.692760pt;}
.y19c{bottom:860.439867pt;}
.y154{bottom:860.441537pt;}
.y155{bottom:860.443067pt;}
.yb2{bottom:864.363160pt;}
.yb3{bottom:865.110267pt;}
.y9b{bottom:865.110272pt;}
.y5{bottom:870.271160pt;}
.y199{bottom:873.691960pt;}
.y19a{bottom:874.439067pt;}
.y153{bottom:874.441202pt;}
.y9a{bottom:879.109936pt;}
.y6{bottom:879.595160pt;}
.yb0{bottom:879.918360pt;}
.yb1{bottom:880.665467pt;}
.y197{bottom:887.691160pt;}
.y198{bottom:888.438267pt;}
.y98{bottom:893.108538pt;}
.y152{bottom:893.109003pt;}
.y99{bottom:893.109600pt;}
.yae{bottom:895.473560pt;}
.yaf{bottom:896.220667pt;}
.y195{bottom:906.358360pt;}
.y196{bottom:907.105467pt;}
.y150{bottom:907.107738pt;}
.y97{bottom:907.108203pt;}
.y151{bottom:907.108667pt;}
.y4{bottom:909.469133pt;}
.yac{bottom:911.027960pt;}
.yad{bottom:911.775067pt;}
.y193{bottom:920.357560pt;}
.y194{bottom:921.104667pt;}
.y14f{bottom:921.107403pt;}
.y96{bottom:921.107867pt;}
.yaa{bottom:926.583160pt;}
.yab{bottom:927.330267pt;}
.y191{bottom:934.356760pt;}
.y192{bottom:935.103867pt;}
.y14d{bottom:935.106002pt;}
.y95{bottom:935.106466pt;}
.y14e{bottom:935.107067pt;}
.ya8{bottom:942.137560pt;}
.ya9{bottom:942.884667pt;}
.y18f{bottom:953.023960pt;}
.y190{bottom:953.771067pt;}
.y93{bottom:953.773338pt;}
.y14c{bottom:953.773803pt;}
.y94{bottom:953.774267pt;}
.y3{bottom:954.268680pt;}
.ya6{bottom:957.692893pt;}
.ya7{bottom:958.440000pt;}
.y14a{bottom:967.772535pt;}
.y92{bottom:967.773003pt;}
.y14b{bottom:967.773467pt;}
.ya4{bottom:973.247960pt;}
.ya5{bottom:973.995067pt;}
.y18e{bottom:981.025560pt;}
.y149{bottom:981.772199pt;}
.y90{bottom:981.772203pt;}
.y91{bottom:981.772667pt;}
.ya2{bottom:993.470246pt;}
.ya3{bottom:994.217467pt;}
.y18d{bottom:995.024765pt;}
.y8f{bottom:995.771867pt;}
.y2{bottom:996.265560pt;}
.y148{bottom:1000.440000pt;}
.y8e{bottom:1009.024429pt;}
.ya1{bottom:1009.025560pt;}
.ya0{bottom:1009.025718pt;}
.y146{bottom:1013.691032pt;}
.y147{bottom:1013.691960pt;}
.y8c{bottom:1023.023682pt;}
.y8d{bottom:1023.024093pt;}
.y9f{bottom:1024.579846pt;}
.y145{bottom:1027.690696pt;}
.y9d{bottom:1040.134646pt;}
.y9e{bottom:1040.135160pt;}
.y8b{bottom:1041.690296pt;}
.y144{bottom:1041.690360pt;}
.y8a{bottom:1055.689960pt;}
.h8{height:20.085280pt;}
.h13{height:26.288400pt;}
.h9{height:29.385147pt;}
.ha{height:30.398480pt;}
.h7{height:34.451813pt;}
.hf{height:35.465147pt;}
.hc{height:37.997973pt;}
.hb{height:39.517973pt;}
.h11{height:40.024640pt;}
.h12{height:43.064640pt;}
.hd{height:45.091307pt;}
.h6{height:45.597973pt;}
.h5{height:48.131307pt;}
.h10{height:53.197467pt;}
.h4{height:62.028160pt;}
.he{height:101.328773pt;}
.h3{height:106.394933pt;}
.h2{height:148.952907pt;}
.h1{height:1121.280000pt;}
.h0{height:1122.666667pt;}
.w2{width:793.280000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x1f{left:39.682400pt;}
.x4{left:52.909733pt;}
.x1{left:55.744400pt;}
.x5c{left:66.116267pt;}
.x2{left:76.798800pt;}
.x27{left:91.763867pt;}
.x3{left:92.762400pt;}
.x26{left:93.757467pt;}
.x28{left:94.864400pt;}
.x5b{left:107.659200pt;}
.x39{left:112.289333pt;}
.x60{left:117.761200pt;}
.x25{left:118.999333pt;}
.x23{left:120.601333pt;}
.x34{left:121.491200pt;}
.x22{left:122.986267pt;}
.x35{left:123.935600pt;}
.x24{left:124.944133pt;}
.x8{left:126.217067pt;}
.x9{left:128.077067pt;}
.x7{left:129.229467pt;}
.x6{left:131.509333pt;}
.x5{left:132.953200pt;}
.xa{left:137.264400pt;}
.x33{left:140.168000pt;}
.x62{left:150.064000pt;}
.x5f{left:156.215200pt;}
.x36{left:214.638400pt;}
.x65{left:239.880000pt;}
.x2f{left:275.106667pt;}
.x30{left:279.799600pt;}
.x2e{left:282.732800pt;}
.x32{left:287.799067pt;}
.x64{left:289.526667pt;}
.x5d{left:296.755200pt;}
.x5e{left:300.857600pt;}
.x21{left:303.554933pt;}
.x37{left:306.724000pt;}
.x38{left:309.414400pt;}
.xb{left:324.478133pt;}
.x20{left:326.183067pt;}
.x17{left:328.821600pt;}
.x61{left:338.076000pt;}
.x63{left:339.297600pt;}
.x18{left:345.803200pt;}
.x2d{left:356.053733pt;}
.x47{left:359.031200pt;}
.x3c{left:364.616267pt;}
.x4c{left:373.263549pt;}
.x3e{left:377.217733pt;}
.x2a{left:396.660667pt;}
.x67{left:401.919600pt;}
.x1e{left:413.220000pt;}
.xc{left:462.176000pt;}
.x16{left:464.152400pt;}
.xd{left:469.719200pt;}
.x51{left:473.542267pt;}
.xe{left:474.888000pt;}
.x69{left:476.019867pt;}
.x12{left:479.546533pt;}
.x2c{left:486.687733pt;}
.x29{left:490.993200pt;}
.x19{left:508.612933pt;}
.x4f{left:510.846400pt;}
.x4a{left:513.340267pt;}
.x50{left:514.948800pt;}
.x14{left:518.603333pt;}
.x10{left:520.035733pt;}
.x15{left:526.064667pt;}
.x31{left:527.596400pt;}
.x11{left:534.459867pt;}
.x13{left:535.502400pt;}
.x4d{left:542.091067pt;}
.x2b{left:543.776000pt;}
.x45{left:547.018000pt;}
.x66{left:549.950533pt;}
.x52{left:551.263467pt;}
.x4b{left:552.473733pt;}
.x44{left:558.587200pt;}
.xf{left:567.197467pt;}
.x49{left:568.997200pt;}
.x56{left:570.461200pt;}
.x1b{left:572.980400pt;}
.x4e{left:574.295067pt;}
.x41{left:580.859333pt;}
.x1a{left:586.566800pt;}
.x59{left:588.047600pt;}
.x3a{left:590.968933pt;}
.x68{left:592.379867pt;}
.x3f{left:593.684000pt;}
.x55{left:595.404400pt;}
.x40{left:597.785600pt;}
.x46{left:602.781600pt;}
.x3b{left:604.104533pt;}
.x43{left:605.065600pt;}
.x42{left:611.636000pt;}
.x48{left:612.663467pt;}
.x3d{left:614.828000pt;}
.x1d{left:616.444933pt;}
.x54{left:618.305467pt;}
.x57{left:620.239600pt;}
.x5a{left:624.082400pt;}
.x53{left:626.670933pt;}
.x58{left:631.773200pt;}
.x1c{left:632.791200pt;}
}




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