
    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_bbb9022a1e2d068da761c27b.woff')format("woff");}.ff1{font-family:ff1;line-height:1.069824;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_f34ae3257fc3d1f9f4e3e308.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_d7f6990d90966eaa9b8bd5a6.woff')format("woff");}.ff3{font-family:ff3;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_28d9abe17bd2261a03d5cae0.woff')format("woff");}.ff4{font-family:ff4;line-height:1.106445;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_1f35edd6f6a85f22c2e7d7d8.woff')format("woff");}.ff5{font-family:ff5;line-height:0.908203;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_e36ddca460a4d4e4a636aeeb.woff')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_07dbe9d519558a6bdee5b21d.woff')format("woff");}.ff7{font-family:ff7;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-59.497200px;}
.v9{vertical-align:-38.248200px;}
.v8{vertical-align:-33.998400px;}
.v2{vertical-align:-16.999200px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:25.498800px;}
.v1{vertical-align:42.498000px;}
.v7{vertical-align:46.747800px;}
.v5{vertical-align:50.997600px;}
.v3{vertical-align:59.497200px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000105px;}
.ls2{letter-spacing:0.000109px;}
.ls3{letter-spacing:4.216601px;}
.ls7{letter-spacing:7.086542px;}
.ls5{letter-spacing:10.627900px;}
.ls4{letter-spacing:21.186687px;}
.ls6{letter-spacing:24.794183px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-79.301268px;}
.ws18{word-spacing:-67.996800px;}
.ws56{word-spacing:-64.444817px;}
.ws2{word-spacing:-56.959064px;}
.ws3b{word-spacing:-56.649834px;}
.ws25{word-spacing:-51.030799px;}
.ws23{word-spacing:-50.997651px;}
.ws54{word-spacing:-50.278534px;}
.ws59{word-spacing:-49.176187px;}
.ws1{word-spacing:-48.839497px;}
.ws20{word-spacing:-46.747851px;}
.ws3e{word-spacing:-45.302868px;}
.ws5a{word-spacing:-44.749189px;}
.ws2b{word-spacing:-40.689406px;}
.ws61{word-spacing:-39.650796px;}
.ws48{word-spacing:-37.790017px;}
.ws51{word-spacing:-37.635324px;}
.ws17{word-spacing:-37.506556px;}
.ws2c{word-spacing:-37.304265px;}
.ws27{word-spacing:-37.152547px;}
.ws55{word-spacing:-36.862711px;}
.ws37{word-spacing:-36.798539px;}
.ws2f{word-spacing:-36.744141px;}
.ws3{word-spacing:-36.629623px;}
.ws11{word-spacing:-36.621322px;}
.ws10{word-spacing:-36.515077px;}
.ws33{word-spacing:-36.476404px;}
.wsa{word-spacing:-36.373559px;}
.wsd{word-spacing:-36.090097px;}
.ws34{word-spacing:-35.763288px;}
.ws5{word-spacing:-35.736089px;}
.ws31{word-spacing:-35.483226px;}
.ws19{word-spacing:-35.381656px;}
.ws4f{word-spacing:-35.109243px;}
.ws6{word-spacing:-35.027647px;}
.ws2d{word-spacing:-34.815157px;}
.ws1a{word-spacing:-34.673639px;}
.ws1b{word-spacing:-34.673214px;}
.ws8{word-spacing:-34.572494px;}
.ws9{word-spacing:-34.201061px;}
.ws1c{word-spacing:-33.965197px;}
.ws14{word-spacing:-33.474770px;}
.ws21{word-spacing:-33.385524px;}
.ws1e{word-spacing:-33.256756px;}
.ws1d{word-spacing:-33.115237px;}
.ws43{word-spacing:-32.973719px;}
.ws4b{word-spacing:-32.902747px;}
.ws50{word-spacing:-32.821151px;}
.ws5b{word-spacing:-32.785028px;}
.ws3d{word-spacing:-32.539315px;}
.ws22{word-spacing:-32.371522px;}
.ws47{word-spacing:-32.194306px;}
.ws24{word-spacing:-31.840297px;}
.ws4a{word-spacing:-31.536861px;}
.ws15{word-spacing:-31.453990px;}
.ws5d{word-spacing:-31.245341px;}
.ws35{word-spacing:-31.067684px;}
.ws58{word-spacing:-30.990337px;}
.ws29{word-spacing:-30.777847px;}
.ws2a{word-spacing:-30.565357px;}
.ws28{word-spacing:-30.423839px;}
.ws4e{word-spacing:-29.715397px;}
.ws46{word-spacing:-29.552205px;}
.ws44{word-spacing:-29.551780px;}
.ws62{word-spacing:-29.356730px;}
.ws63{word-spacing:-29.002297px;}
.ws32{word-spacing:-28.534803px;}
.ws49{word-spacing:-28.363111px;}
.ws45{word-spacing:-28.197794px;}
.ws1f{word-spacing:-28.121722px;}
.ws52{word-spacing:-27.944506px;}
.ws64{word-spacing:-27.940272px;}
.wsb{word-spacing:-27.590497px;}
.ws36{word-spacing:-27.263688px;}
.ws7{word-spacing:-26.882056px;}
.ws2e{word-spacing:-26.817884px;}
.ws30{word-spacing:-26.528047px;}
.ws5e{word-spacing:-26.523388px;}
.ws13{word-spacing:-26.431577px;}
.ws60{word-spacing:-26.305374px;}
.ws4c{word-spacing:-25.111589px;}
.ws4{word-spacing:-24.499618px;}
.ws26{word-spacing:-24.113311px;}
.ws57{word-spacing:-22.568084px;}
.wse{word-spacing:-22.126529px;}
.ws16{word-spacing:-22.065757px;}
.ws5c{word-spacing:-21.758513px;}
.wsc{word-spacing:-20.725370px;}
.ws5f{word-spacing:-19.113437px;}
.ws53{word-spacing:-19.090897px;}
.ws4d{word-spacing:-17.390977px;}
.ws3c{word-spacing:-16.446430px;}
.ws12{word-spacing:-14.454790px;}
.ws65{word-spacing:-7.753297px;}
.ws66{word-spacing:-6.691272px;}
.wsf{word-spacing:0.000000px;}
.ws41{word-spacing:7.031590px;}
.ws38{word-spacing:245.160891px;}
.ws3a{word-spacing:275.001488px;}
.ws40{word-spacing:381.247515px;}
.ws42{word-spacing:383.875178px;}
.ws39{word-spacing:469.353341px;}
.ws3f{word-spacing:587.769716px;}
._10{margin-left:-68.041287px;}
._0{width:1.062141px;}
._5{width:2.106092px;}
._2{width:3.116395px;}
._1{width:4.249854px;}
._3{width:5.666422px;}
._4{width:6.880212px;}
._9{width:8.135358px;}
._7{width:9.349601px;}
._6{width:10.482676px;}
._8{width:11.551065px;}
._a{width:13.247256px;}
._f{width:14.345339px;}
._11{width:16.908146px;}
._e{width:19.092264px;}
._b{width:21.215920px;}
._c{width:23.798985px;}
._d{width:788.387031px;}
.fc6{color:rgb(255,0,0);}
.fc4{color:rgb(50,50,47);}
.fc2{color:rgb(32,32,128);}
.fc5{color:rgb(17,17,17);}
.fc3{color:rgb(34,30,31);}
.fc1{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:39.650634px;}
.fs4{font-size:45.302868px;}
.fs2{font-size:50.997600px;}
.fs3{font-size:56.649834px;}
.fs6{font-size:62.302068px;}
.fs1{font-size:67.996800px;}
.fs0{font-size:79.301268px;}
.y0{bottom:0.000000px;}
.ye4{bottom:7.188000px;}
.y52{bottom:8.428500px;}
.y2e{bottom:8.464050px;}
.y1c0{bottom:11.152800px;}
.y83{bottom:11.544750px;}
.y130{bottom:12.358800px;}
.y6e{bottom:13.705200px;}
.y1f3{bottom:19.617750px;}
.y192{bottom:22.875600px;}
.y166{bottom:23.974050px;}
.ye3{bottom:26.312100px;}
.yc4{bottom:29.535300px;}
.y115{bottom:30.455550px;}
.y51{bottom:33.927300px;}
.y2d{bottom:33.962850px;}
.y1f2{bottom:34.492050px;}
.y1bf{bottom:36.651600px;}
.y82{bottom:37.043550px;}
.y12f{bottom:37.857600px;}
.y6d{bottom:39.204000px;}
.y1c1{bottom:43.839900px;}
.ye5{bottom:43.840650px;}
.y1{bottom:43.840950px;}
.yc5{bottom:43.841250px;}
.y165{bottom:45.223050px;}
.y191{bottom:48.374400px;}
.ye2{bottom:48.623550px;}
.y1f1{bottom:49.366350px;}
.yc3{bottom:55.034100px;}
.y114{bottom:55.954350px;}
.y50{bottom:59.426100px;}
.y2c{bottom:59.461650px;}
.y1be{bottom:62.150400px;}
.y81{bottom:62.542350px;}
.y12e{bottom:63.356400px;}
.y1f0{bottom:64.240650px;}
.y6c{bottom:64.702800px;}
.y164{bottom:66.472050px;}
.y10a{bottom:66.614100px;}
.y190{bottom:73.873200px;}
.y1ef{bottom:79.114950px;}
.yc2{bottom:80.532900px;}
.y113{bottom:81.453150px;}
.y4f{bottom:84.924900px;}
.y2b{bottom:84.960450px;}
.y1bd{bottom:87.649200px;}
.y80{bottom:88.041150px;}
.y163{bottom:88.783500px;}
.y12d{bottom:88.855200px;}
.y109{bottom:88.925550px;}
.y6b{bottom:90.201600px;}
.y1ee{bottom:93.989250px;}
.y18f{bottom:104.684250px;}
.yc1{bottom:106.031700px;}
.y112{bottom:106.951950px;}
.y1ed{bottom:108.863550px;}
.y2a{bottom:110.459250px;}
.y1bc{bottom:113.148000px;}
.y162{bottom:114.282300px;}
.y12c{bottom:114.354000px;}
.y108{bottom:114.424350px;}
.y6a{bottom:115.700400px;}
.y7f{bottom:118.852200px;}
.y4e{bottom:118.923300px;}
.y111{bottom:129.263400px;}
.y18e{bottom:130.183050px;}
.yc0{bottom:131.530500px;}
.y1ec{bottom:133.299900px;}
.y29{bottom:135.958050px;}
.y1bb{bottom:138.646800px;}
.y161{bottom:139.781100px;}
.y12b{bottom:139.852800px;}
.y107{bottom:139.923150px;}
.y69{bottom:141.199200px;}
.y7e{bottom:144.351000px;}
.y4d{bottom:144.422100px;}
.y1eb{bottom:148.174200px;}
.y110{bottom:151.574850px;}
.y147{bottom:152.566350px;}
.y18d{bottom:155.681850px;}
.ybf{bottom:157.029300px;}
.y1ea{bottom:163.048500px;}
.y1ba{bottom:164.145600px;}
.y160{bottom:165.279900px;}
.y12a{bottom:165.351600px;}
.y106{bottom:165.421950px;}
.y68{bottom:166.698000px;}
.y7d{bottom:169.849800px;}
.y4c{bottom:169.920900px;}
.y28{bottom:169.956450px;}
.y10f{bottom:177.073650px;}
.y1e9{bottom:177.922800px;}
.y146{bottom:178.065150px;}
.y18c{bottom:181.180650px;}
.ybe{bottom:182.528100px;}
.y1b9{bottom:189.644400px;}
.y15f{bottom:190.778700px;}
.y129{bottom:190.850400px;}
.y105{bottom:190.920750px;}
.y67{bottom:192.196800px;}
.y1e8{bottom:192.797100px;}
.y7c{bottom:195.348600px;}
.y4b{bottom:195.419700px;}
.y145{bottom:203.563950px;}
.y27{bottom:203.954850px;}
.yee{bottom:205.830900px;}
.y18b{bottom:206.679450px;}
.y1e7{bottom:207.671400px;}
.ybd{bottom:208.026900px;}
.y1b8{bottom:215.143200px;}
.y15e{bottom:216.277500px;}
.y128{bottom:216.349200px;}
.y104{bottom:216.419550px;}
.y4a{bottom:220.918500px;}
.yed{bottom:224.955000px;}
.y7b{bottom:226.159650px;}
.y66{bottom:226.195200px;}
.y144{bottom:229.062750px;}
.y26{bottom:229.453650px;}
.y1e6{bottom:231.045300px;}
.y18a{bottom:232.178250px;}
.ybc{bottom:233.525700px;}
.y1b7{bottom:240.642000px;}
.y15d{bottom:241.776300px;}
.y103{bottom:241.918350px;}
.yec{bottom:244.079100px;}
.y1e5{bottom:245.919600px;}
.y49{bottom:246.417300px;}
.y127{bottom:247.160250px;}
.y7a{bottom:251.658450px;}
.y65{bottom:251.694000px;}
.y143{bottom:254.561550px;}
.y189{bottom:257.677050px;}
.ybb{bottom:259.024500px;}
.y1e4{bottom:260.793900px;}
.yeb{bottom:263.203200px;}
.y25{bottom:263.452050px;}
.y1b6{bottom:266.140800px;}
.y15c{bottom:267.275100px;}
.y102{bottom:267.417150px;}
.y126{bottom:272.659050px;}
.y1e3{bottom:275.668200px;}
.y79{bottom:277.157250px;}
.y64{bottom:277.192800px;}
.y142{bottom:280.060350px;}
.y48{bottom:280.415700px;}
.y188{bottom:283.175850px;}
.yba{bottom:284.523300px;}
.y24{bottom:288.950850px;}
.y1e2{bottom:290.542500px;}
.y1b5{bottom:291.639600px;}
.y15b{bottom:292.773900px;}
.y101{bottom:292.915950px;}
.y125{bottom:294.970500px;}
.y78{bottom:302.656050px;}
.y63{bottom:302.691600px;}
.y141{bottom:305.559150px;}
.y47{bottom:305.914500px;}
.yb9{bottom:306.834750px;}
.y187{bottom:308.674650px;}
.y1e1{bottom:313.916400px;}
.y23{bottom:314.449650px;}
.y1b4{bottom:317.138400px;}
.y124{bottom:317.281950px;}
.y15a{bottom:318.272700px;}
.y100{bottom:318.414750px;}
.ya5{bottom:324.931950px;}
.y77{bottom:328.154850px;}
.y62{bottom:328.190400px;}
.yb8{bottom:330.208650px;}
.y140{bottom:331.057950px;}
.y46{bottom:331.413300px;}
.y186{bottom:334.173450px;}
.y22{bottom:339.948450px;}
.y1b3{bottom:342.637200px;}
.y123{bottom:342.780750px;}
.y159{bottom:343.771500px;}
.yff{bottom:343.913550px;}
.ya4{bottom:344.056050px;}
.yb7{bottom:346.145400px;}
.yb6{bottom:348.270300px;}
.y76{bottom:353.653650px;}
.y61{bottom:353.689200px;}
.y13f{bottom:356.556750px;}
.y45{bottom:356.912100px;}
.y185{bottom:359.672250px;}
.yb4{bottom:361.019700px;}
.yb5{bottom:363.144600px;}
.ya3{bottom:363.180150px;}
.y122{bottom:365.092200px;}
.y21{bottom:365.447250px;}
.y1b2{bottom:368.136000px;}
.y158{bottom:369.270300px;}
.yfe{bottom:369.412350px;}
.y1e0{bottom:370.226250px;}
.y75{bottom:379.152450px;}
.y13e{bottom:382.055550px;}
.ya2{bottom:382.304250px;}
.y44{bottom:382.410900px;}
.y184{bottom:385.171050px;}
.yb3{bottom:388.643400px;}
.y20{bottom:390.946050px;}
.y1b1{bottom:393.634800px;}
.y157{bottom:394.769100px;}
.yfd{bottom:394.911150px;}
.y1df{bottom:395.725050px;}
.yb2{bottom:403.517700px;}
.ya1{bottom:404.615700px;}
.y74{bottom:404.651250px;}
.y13d{bottom:407.554350px;}
.y43{bottom:407.909700px;}
.y183{bottom:410.669850px;}
.y1f{bottom:416.444850px;}
.y1b0{bottom:419.133600px;}
.y156{bottom:420.267900px;}
.yfc{bottom:420.409950px;}
.yb1{bottom:420.516900px;}
.y1de{bottom:421.223850px;}
.y21d{bottom:423.313050px;}
.ya0{bottom:430.114500px;}
.y73{bottom:430.150050px;}
.y42{bottom:430.221150px;}
.y13c{bottom:433.053150px;}
.y182{bottom:436.168650px;}
.yb0{bottom:439.641000px;}
.y1e{bottom:441.943650px;}
.y1af{bottom:444.632400px;}
.y155{bottom:445.766700px;}
.yfb{bottom:445.908750px;}
.y1dd{bottom:446.722650px;}
.y21c{bottom:448.811850px;}
.y9f{bottom:455.613300px;}
.y72{bottom:455.648850px;}
.y13b{bottom:458.551950px;}
.yaf{bottom:458.765100px;}
.y181{bottom:461.667450px;}
.y21b{bottom:463.686150px;}
.y1d{bottom:467.442450px;}
.y1ae{bottom:470.131200px;}
.y154{bottom:471.265500px;}
.yfa{bottom:471.407550px;}
.y1dc{bottom:472.221450px;}
.ye1{bottom:472.541100px;}
.yae{bottom:481.076550px;}
.y9e{bottom:481.112100px;}
.y13a{bottom:484.050750px;}
.y71{bottom:486.459900px;}
.y21a{bottom:487.060050px;}
.y180{bottom:487.166250px;}
.ye0{bottom:491.665200px;}
.y1c{bottom:492.941250px;}
.y1ad{bottom:495.630000px;}
.y153{bottom:496.764300px;}
.yf9{bottom:496.906350px;}
.y1db{bottom:497.720250px;}
.y219{bottom:501.934350px;}
.yad{bottom:506.575350px;}
.y9d{bottom:506.610900px;}
.y139{bottom:509.549550px;}
.ydf{bottom:510.789300px;}
.y17f{bottom:512.665050px;}
.y218{bottom:516.808650px;}
.y1b{bottom:518.440050px;}
.y1ac{bottom:521.128800px;}
.y152{bottom:522.263100px;}
.yf8{bottom:522.405150px;}
.y1da{bottom:523.219050px;}
.y217{bottom:531.682950px;}
.yac{bottom:532.074150px;}
.y9c{bottom:532.109700px;}
.yde{bottom:533.100750px;}
.y138{bottom:535.048350px;}
.y17e{bottom:538.163850px;}
.y1a{bottom:543.938850px;}
.y1ab{bottom:546.627600px;}
.y151{bottom:547.761900px;}
.yf7{bottom:547.903950px;}
.y1d9{bottom:548.717850px;}
.y216{bottom:555.056850px;}
.yab{bottom:557.572950px;}
.y9b{bottom:557.608500px;}
.ydd{bottom:558.599550px;}
.y137{bottom:560.547150px;}
.y17d{bottom:563.662650px;}
.y19{bottom:569.437650px;}
.y215{bottom:569.931150px;}
.y1aa{bottom:572.126400px;}
.y1d8{bottom:573.154200px;}
.y150{bottom:573.260700px;}
.yf6{bottom:573.402750px;}
.yaa{bottom:583.071750px;}
.y9a{bottom:583.107300px;}
.ydc{bottom:584.098350px;}
.y136{bottom:586.045950px;}
.y17c{bottom:589.161450px;}
.y214{bottom:593.305050px;}
.y18{bottom:594.936450px;}
.y1a9{bottom:597.625200px;}
.y14f{bottom:598.759500px;}
.yf5{bottom:598.901550px;}
.y135{bottom:608.357400px;}
.ya9{bottom:608.570550px;}
.y99{bottom:608.606100px;}
.ydb{bottom:609.597150px;}
.y17b{bottom:614.660250px;}
.y213{bottom:616.678950px;}
.y17{bottom:620.435250px;}
.y1d7{bottom:623.089350px;}
.y1a8{bottom:623.124000px;}
.y14e{bottom:624.258300px;}
.yf4{bottom:624.400350px;}
.y134{bottom:627.481500px;}
.y212{bottom:631.553250px;}
.ya8{bottom:634.069350px;}
.y98{bottom:634.104900px;}
.yda{bottom:635.095950px;}
.y17a{bottom:640.159050px;}
.y10e{bottom:645.614100px;}
.y16{bottom:645.934050px;}
.y1d6{bottom:648.588150px;}
.y1a7{bottom:648.622800px;}
.y14d{bottom:649.757100px;}
.y133{bottom:652.980300px;}
.y211{bottom:654.927150px;}
.yf3{bottom:658.398750px;}
.ya7{bottom:659.568150px;}
.y97{bottom:659.603700px;}
.yd9{bottom:660.594750px;}
.y10d{bottom:664.738200px;}
.y179{bottom:665.657850px;}
.y210{bottom:669.801450px;}
.y15{bottom:671.432850px;}
.y1d5{bottom:674.086950px;}
.y1a6{bottom:674.121600px;}
.y14c{bottom:675.255900px;}
.y41{bottom:677.772000px;}
.yea{bottom:680.746050px;}
.yf2{bottom:683.897550px;}
.ya6{bottom:685.066950px;}
.y96{bottom:685.102500px;}
.yd8{bottom:686.093550px;}
.y10c{bottom:687.049650px;}
.y178{bottom:691.156650px;}
.y20f{bottom:694.237800px;}
.y14{bottom:696.931650px;}
.y1d4{bottom:699.585750px;}
.y1a5{bottom:699.620400px;}
.ye9{bottom:699.870150px;}
.y40{bottom:700.083450px;}
.y14b{bottom:700.754700px;}
.y20e{bottom:709.112100px;}
.yf1{bottom:709.396350px;}
.y95{bottom:710.601300px;}
.yd7{bottom:711.592350px;}
.y10b{bottom:712.548450px;}
.y177{bottom:716.655450px;}
.ye8{bottom:718.994250px;}
.y13{bottom:722.430450px;}
.y20d{bottom:723.986400px;}
.y1d3{bottom:725.084550px;}
.y1a4{bottom:725.119200px;}
.y3f{bottom:725.582250px;}
.y14a{bottom:726.253500px;}
.yf0{bottom:734.895150px;}
.y94{bottom:736.100100px;}
.ye7{bottom:741.305700px;}
.y176{bottom:742.154250px;}
.yd6{bottom:742.403400px;}
.y12{bottom:747.929250px;}
.y20c{bottom:748.422750px;}
.y1d2{bottom:750.583350px;}
.y1a3{bottom:750.618000px;}
.y3e{bottom:751.081050px;}
.y149{bottom:751.752300px;}
.yef{bottom:760.393950px;}
.y20b{bottom:763.297050px;}
.y175{bottom:767.653050px;}
.yd5{bottom:767.902200px;}
.y93{bottom:770.098500px;}
.y11{bottom:773.428050px;}
.y1d1{bottom:776.082150px;}
.y1a2{bottom:776.116800px;}
.y3d{bottom:776.579850px;}
.y148{bottom:777.251100px;}
.y20a{bottom:778.171350px;}
.y209{bottom:793.045650px;}
.y174{bottom:793.151850px;}
.yd4{bottom:793.401000px;}
.y92{bottom:795.597300px;}
.y10{bottom:798.926850px;}
.y1d0{bottom:801.580950px;}
.y1a1{bottom:801.615600px;}
.y3c{bottom:810.578250px;}
.y208{bottom:816.419550px;}
.y173{bottom:818.650650px;}
.yd3{bottom:818.899800px;}
.y60{bottom:819.042300px;}
.y91{bottom:821.096100px;}
.yf{bottom:824.425650px;}
.y1cf{bottom:827.079750px;}
.y1a0{bottom:827.114400px;}
.y3b{bottom:836.077050px;}
.y207{bottom:839.793450px;}
.y172{bottom:844.149450px;}
.yd2{bottom:844.398600px;}
.y90{bottom:846.594900px;}
.ye{bottom:849.924450px;}
.y1ce{bottom:852.578550px;}
.y19f{bottom:852.613200px;}
.y5f{bottom:853.040700px;}
.y206{bottom:854.667750px;}
.y3a{bottom:861.575850px;}
.y205{bottom:869.542050px;}
.y171{bottom:869.648250px;}
.yd1{bottom:869.897400px;}
.y8f{bottom:872.093700px;}
.yd{bottom:875.423250px;}
.y1cd{bottom:878.077350px;}
.y19e{bottom:878.112000px;}
.y5e{bottom:878.539500px;}
.y121{bottom:881.442900px;}
.y204{bottom:884.416350px;}
.y170{bottom:895.147050px;}
.yd0{bottom:895.396200px;}
.y39{bottom:895.574250px;}
.y8e{bottom:897.592500px;}
.y203{bottom:899.290650px;}
.yc{bottom:900.922050px;}
.y1cc{bottom:903.576150px;}
.y19d{bottom:903.610800px;}
.y120{bottom:903.754350px;}
.y5d{bottom:904.038300px;}
.y16f{bottom:920.645850px;}
.y38{bottom:921.073050px;}
.y202{bottom:922.664550px;}
.y8d{bottom:923.091300px;}
.yb{bottom:926.420850px;}
.y1cb{bottom:929.074950px;}
.y19c{bottom:929.109600px;}
.y11f{bottom:929.253150px;}
.ycf{bottom:929.394600px;}
.y5c{bottom:929.537100px;}
.y201{bottom:937.538850px;}
.y16e{bottom:946.144650px;}
.y37{bottom:946.571850px;}
.y8c{bottom:948.590100px;}
.ya{bottom:951.919650px;}
.y200{bottom:952.413150px;}
.y1ca{bottom:954.573750px;}
.y19b{bottom:954.608400px;}
.y11e{bottom:954.751950px;}
.yce{bottom:954.893400px;}
.y5b{bottom:955.035900px;}
.y1ff{bottom:967.287450px;}
.y16d{bottom:971.643450px;}
.y36{bottom:972.070650px;}
.y8b{bottom:974.088900px;}
.y1c9{bottom:980.072550px;}
.y19a{bottom:980.107200px;}
.y11d{bottom:980.250750px;}
.ycd{bottom:980.392200px;}
.y5a{bottom:980.534700px;}
.y9{bottom:985.918050px;}
.y1fe{bottom:990.661350px;}
.y16c{bottom:997.142250px;}
.y35{bottom:997.569450px;}
.y8a{bottom:999.587700px;}
.y1fd{bottom:1005.535650px;}
.y1c8{bottom:1005.571350px;}
.y199{bottom:1005.606000px;}
.y11c{bottom:1005.749550px;}
.ycc{bottom:1005.891000px;}
.y59{bottom:1006.033500px;}
.y8{bottom:1011.416850px;}
.y1fc{bottom:1020.409950px;}
.y34{bottom:1023.068250px;}
.y89{bottom:1025.086500px;}
.y1c7{bottom:1031.070150px;}
.y198{bottom:1031.104800px;}
.y11b{bottom:1031.248350px;}
.ycb{bottom:1031.389800px;}
.y58{bottom:1031.532300px;}
.y7{bottom:1036.915650px;}
.y16b{bottom:1039.640250px;}
.y1fb{bottom:1043.783850px;}
.y88{bottom:1055.897550px;}
.y1c6{bottom:1056.568950px;}
.y197{bottom:1056.603600px;}
.y11a{bottom:1056.747150px;}
.yca{bottom:1056.888600px;}
.y57{bottom:1057.031100px;}
.y33{bottom:1057.066650px;}
.y1fa{bottom:1058.658150px;}
.y6{bottom:1060.289550px;}
.y16a{bottom:1065.139050px;}
.y1f9{bottom:1073.532450px;}
.y1c5{bottom:1082.067750px;}
.y196{bottom:1082.102400px;}
.y119{bottom:1082.245950px;}
.yc9{bottom:1082.387400px;}
.y87{bottom:1082.458800px;}
.y56{bottom:1082.529900px;}
.y32{bottom:1082.565450px;}
.y5{bottom:1082.601000px;}
.y169{bottom:1090.637850px;}
.y1f8{bottom:1096.906350px;}
.y4{bottom:1103.850000px;}
.y1c4{bottom:1107.566550px;}
.y195{bottom:1107.601200px;}
.y118{bottom:1107.744750px;}
.yc8{bottom:1107.886200px;}
.y86{bottom:1107.957600px;}
.y55{bottom:1108.028700px;}
.y31{bottom:1108.064250px;}
.y1f7{bottom:1111.780650px;}
.y168{bottom:1116.136650px;}
.y3{bottom:1122.974100px;}
.y1f6{bottom:1126.654950px;}
.y1c3{bottom:1133.065350px;}
.y194{bottom:1133.100000px;}
.y132{bottom:1133.207700px;}
.y117{bottom:1133.243550px;}
.yc7{bottom:1133.385000px;}
.y85{bottom:1133.456400px;}
.y54{bottom:1133.527500px;}
.y30{bottom:1133.563050px;}
.y70{bottom:1136.679300px;}
.y2{bottom:1143.160650px;}
.y1f5{bottom:1150.028850px;}
.y1c2{bottom:1158.564150px;}
.y193{bottom:1158.598800px;}
.y167{bottom:1158.634650px;}
.y131{bottom:1158.706500px;}
.y116{bottom:1158.742350px;}
.yc6{bottom:1158.883800px;}
.y84{bottom:1158.955200px;}
.y6f{bottom:1158.990750px;}
.y53{bottom:1159.026300px;}
.y2f{bottom:1159.061850px;}
.ye6{bottom:1162.035900px;}
.y1f4{bottom:1164.903150px;}
.ha{height:38.467621px;}
.h11{height:39.334016px;}
.h14{height:41.524572px;}
.h5{height:45.320133px;}
.hd{height:47.411043px;}
.h8{height:48.102569px;}
.h7{height:56.907478px;}
.h3{height:57.737517px;}
.h2{height:66.368346px;}
.h4{height:67.336379px;}
.h12{height:73.601369px;}
.h6{height:85.801138px;}
.h10{height:90.050938px;}
.hb{height:98.408643px;}
.hc{height:106.908243px;}
.h9{height:107.599769px;}
.he{height:1177.158750px;}
.h1{height:1177.159050px;}
.hf{height:1177.159350px;}
.h13{height:1177.160100px;}
.h0{height:1264.500000px;}
.w1{width:808.500000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x2{left:25.498800px;}
.x4{left:35.791284px;}
.x1{left:43.500000px;}
.x3{left:65.639542px;}
.xd{left:78.886913px;}
.xf{left:88.249753px;}
.x12{left:91.154916px;}
.xc{left:106.062365px;}
.x8{left:147.564318px;}
.x10{left:161.293191px;}
.x11{left:246.571377px;}
.x7{left:278.229094px;}
.x9{left:281.167405px;}
.x5{left:314.203013px;}
.xe{left:348.417197px;}
.x6{left:406.121513px;}
.xa{left:519.156205px;}
.x18{left:530.228953px;}
.x16{left:592.797271px;}
.x17{left:618.279497px;}
.x19{left:620.005978px;}
.x14{left:658.254178px;}
.xb{left:663.649405px;}
.x13{left:668.563237px;}
.x15{left:786.744225px;}
@media print{
.v4{vertical-align:-52.886400pt;}
.v9{vertical-align:-33.998400pt;}
.v8{vertical-align:-30.220800pt;}
.v2{vertical-align:-15.110400pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:22.665600pt;}
.v1{vertical-align:37.776000pt;}
.v7{vertical-align:41.553600pt;}
.v5{vertical-align:45.331200pt;}
.v3{vertical-align:52.886400pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000094pt;}
.ls2{letter-spacing:0.000097pt;}
.ls3{letter-spacing:3.748089pt;}
.ls7{letter-spacing:6.299148pt;}
.ls5{letter-spacing:9.447022pt;}
.ls4{letter-spacing:18.832611pt;}
.ls6{letter-spacing:22.039274pt;}
.ws0{word-spacing:-70.490016pt;}
.ws18{word-spacing:-60.441600pt;}
.ws56{word-spacing:-57.284282pt;}
.ws2{word-spacing:-50.630279pt;}
.ws3b{word-spacing:-50.355408pt;}
.ws25{word-spacing:-45.360711pt;}
.ws23{word-spacing:-45.331245pt;}
.ws54{word-spacing:-44.692030pt;}
.ws59{word-spacing:-43.712166pt;}
.ws1{word-spacing:-43.412886pt;}
.ws20{word-spacing:-41.553645pt;}
.ws3e{word-spacing:-40.269216pt;}
.ws5a{word-spacing:-39.777057pt;}
.ws2b{word-spacing:-36.168361pt;}
.ws61{word-spacing:-35.245152pt;}
.ws48{word-spacing:-33.591126pt;}
.ws51{word-spacing:-33.453622pt;}
.ws17{word-spacing:-33.339160pt;}
.ws2c{word-spacing:-33.159347pt;}
.ws27{word-spacing:-33.024486pt;}
.ws55{word-spacing:-32.766854pt;}
.ws37{word-spacing:-32.709812pt;}
.ws2f{word-spacing:-32.661459pt;}
.ws3{word-spacing:-32.559665pt;}
.ws11{word-spacing:-32.552286pt;}
.ws10{word-spacing:-32.457846pt;}
.ws33{word-spacing:-32.423470pt;}
.wsa{word-spacing:-32.332052pt;}
.wsd{word-spacing:-32.080086pt;}
.ws34{word-spacing:-31.789589pt;}
.ws5{word-spacing:-31.765412pt;}
.ws31{word-spacing:-31.540645pt;}
.ws19{word-spacing:-31.450360pt;}
.ws4f{word-spacing:-31.208216pt;}
.ws6{word-spacing:-31.135686pt;}
.ws2d{word-spacing:-30.946806pt;}
.ws1a{word-spacing:-30.821012pt;}
.ws1b{word-spacing:-30.820635pt;}
.ws8{word-spacing:-30.731105pt;}
.ws9{word-spacing:-30.400943pt;}
.ws1c{word-spacing:-30.191286pt;}
.ws14{word-spacing:-29.755351pt;}
.ws21{word-spacing:-29.676022pt;}
.ws1e{word-spacing:-29.561560pt;}
.ws1d{word-spacing:-29.435766pt;}
.ws43{word-spacing:-29.309972pt;}
.ws4b{word-spacing:-29.246886pt;}
.ws50{word-spacing:-29.174356pt;}
.ws5b{word-spacing:-29.142247pt;}
.ws3d{word-spacing:-28.923836pt;}
.ws22{word-spacing:-28.774686pt;}
.ws47{word-spacing:-28.617160pt;}
.ws24{word-spacing:-28.302486pt;}
.ws4a{word-spacing:-28.032766pt;}
.ws15{word-spacing:-27.959103pt;}
.ws5d{word-spacing:-27.773637pt;}
.ws35{word-spacing:-27.615719pt;}
.ws58{word-spacing:-27.546966pt;}
.ws29{word-spacing:-27.358086pt;}
.ws2a{word-spacing:-27.169206pt;}
.ws28{word-spacing:-27.043412pt;}
.ws4e{word-spacing:-26.413686pt;}
.ws46{word-spacing:-26.268627pt;}
.ws44{word-spacing:-26.268249pt;}
.ws62{word-spacing:-26.094871pt;}
.ws63{word-spacing:-25.779819pt;}
.ws32{word-spacing:-25.364269pt;}
.ws49{word-spacing:-25.211654pt;}
.ws45{word-spacing:-25.064705pt;}
.ws1f{word-spacing:-24.997086pt;}
.ws52{word-spacing:-24.839560pt;}
.ws64{word-spacing:-24.835797pt;}
.wsb{word-spacing:-24.524886pt;}
.ws36{word-spacing:-24.234389pt;}
.ws7{word-spacing:-23.895160pt;}
.ws2e{word-spacing:-23.838119pt;}
.ws30{word-spacing:-23.580486pt;}
.ws5e{word-spacing:-23.576345pt;}
.ws13{word-spacing:-23.494735pt;}
.ws60{word-spacing:-23.382554pt;}
.ws4c{word-spacing:-22.321412pt;}
.ws4{word-spacing:-21.777438pt;}
.ws26{word-spacing:-21.434054pt;}
.ws57{word-spacing:-20.060519pt;}
.wse{word-spacing:-19.668026pt;}
.ws16{word-spacing:-19.614006pt;}
.ws5c{word-spacing:-19.340900pt;}
.wsc{word-spacing:-18.422551pt;}
.ws5f{word-spacing:-16.989722pt;}
.ws53{word-spacing:-16.969686pt;}
.ws4d{word-spacing:-15.458646pt;}
.ws3c{word-spacing:-14.619049pt;}
.ws12{word-spacing:-12.848703pt;}
.ws65{word-spacing:-6.891819pt;}
.ws66{word-spacing:-5.947797pt;}
.wsf{word-spacing:0.000000pt;}
.ws41{word-spacing:6.250302pt;}
.ws38{word-spacing:217.920792pt;}
.ws3a{word-spacing:244.445767pt;}
.ws40{word-spacing:338.886680pt;}
.ws42{word-spacing:341.222380pt;}
.ws39{word-spacing:417.202970pt;}
.ws3f{word-spacing:522.461970pt;}
._10{margin-left:-60.481144pt;}
._0{width:0.944125pt;}
._5{width:1.872082pt;}
._2{width:2.770129pt;}
._1{width:3.777648pt;}
._3{width:5.036819pt;}
._4{width:6.115744pt;}
._9{width:7.231429pt;}
._7{width:8.310756pt;}
._6{width:9.317934pt;}
._8{width:10.267614pt;}
._a{width:11.775338pt;}
._f{width:12.751413pt;}
._11{width:15.029463pt;}
._e{width:16.970901pt;}
._b{width:18.858595pt;}
._c{width:21.154654pt;}
._d{width:700.788472pt;}
.fs5{font-size:35.245008pt;}
.fs4{font-size:40.269216pt;}
.fs2{font-size:45.331200pt;}
.fs3{font-size:50.355408pt;}
.fs6{font-size:55.379616pt;}
.fs1{font-size:60.441600pt;}
.fs0{font-size:70.490016pt;}
.y0{bottom:0.000000pt;}
.ye4{bottom:6.389333pt;}
.y52{bottom:7.492000pt;}
.y2e{bottom:7.523600pt;}
.y1c0{bottom:9.913600pt;}
.y83{bottom:10.262000pt;}
.y130{bottom:10.985600pt;}
.y6e{bottom:12.182400pt;}
.y1f3{bottom:17.438000pt;}
.y192{bottom:20.333867pt;}
.y166{bottom:21.310267pt;}
.ye3{bottom:23.388533pt;}
.yc4{bottom:26.253600pt;}
.y115{bottom:27.071600pt;}
.y51{bottom:30.157600pt;}
.y2d{bottom:30.189200pt;}
.y1f2{bottom:30.659600pt;}
.y1bf{bottom:32.579200pt;}
.y82{bottom:32.927600pt;}
.y12f{bottom:33.651200pt;}
.y6d{bottom:34.848000pt;}
.y1c1{bottom:38.968800pt;}
.ye5{bottom:38.969467pt;}
.y1{bottom:38.969733pt;}
.yc5{bottom:38.970000pt;}
.y165{bottom:40.198267pt;}
.y191{bottom:42.999467pt;}
.ye2{bottom:43.220933pt;}
.y1f1{bottom:43.881200pt;}
.yc3{bottom:48.919200pt;}
.y114{bottom:49.737200pt;}
.y50{bottom:52.823200pt;}
.y2c{bottom:52.854800pt;}
.y1be{bottom:55.244800pt;}
.y81{bottom:55.593200pt;}
.y12e{bottom:56.316800pt;}
.y1f0{bottom:57.102800pt;}
.y6c{bottom:57.513600pt;}
.y164{bottom:59.086267pt;}
.y10a{bottom:59.212533pt;}
.y190{bottom:65.665067pt;}
.y1ef{bottom:70.324400pt;}
.yc2{bottom:71.584800pt;}
.y113{bottom:72.402800pt;}
.y4f{bottom:75.488800pt;}
.y2b{bottom:75.520400pt;}
.y1bd{bottom:77.910400pt;}
.y80{bottom:78.258800pt;}
.y163{bottom:78.918667pt;}
.y12d{bottom:78.982400pt;}
.y109{bottom:79.044933pt;}
.y6b{bottom:80.179200pt;}
.y1ee{bottom:83.546000pt;}
.y18f{bottom:93.052667pt;}
.yc1{bottom:94.250400pt;}
.y112{bottom:95.068400pt;}
.y1ed{bottom:96.767600pt;}
.y2a{bottom:98.186000pt;}
.y1bc{bottom:100.576000pt;}
.y162{bottom:101.584267pt;}
.y12c{bottom:101.648000pt;}
.y108{bottom:101.710533pt;}
.y6a{bottom:102.844800pt;}
.y7f{bottom:105.646400pt;}
.y4e{bottom:105.709600pt;}
.y111{bottom:114.900800pt;}
.y18e{bottom:115.718267pt;}
.yc0{bottom:116.916000pt;}
.y1ec{bottom:118.488800pt;}
.y29{bottom:120.851600pt;}
.y1bb{bottom:123.241600pt;}
.y161{bottom:124.249867pt;}
.y12b{bottom:124.313600pt;}
.y107{bottom:124.376133pt;}
.y69{bottom:125.510400pt;}
.y7e{bottom:128.312000pt;}
.y4d{bottom:128.375200pt;}
.y1eb{bottom:131.710400pt;}
.y110{bottom:134.733200pt;}
.y147{bottom:135.614533pt;}
.y18d{bottom:138.383867pt;}
.ybf{bottom:139.581600pt;}
.y1ea{bottom:144.932000pt;}
.y1ba{bottom:145.907200pt;}
.y160{bottom:146.915467pt;}
.y12a{bottom:146.979200pt;}
.y106{bottom:147.041733pt;}
.y68{bottom:148.176000pt;}
.y7d{bottom:150.977600pt;}
.y4c{bottom:151.040800pt;}
.y28{bottom:151.072400pt;}
.y10f{bottom:157.398800pt;}
.y1e9{bottom:158.153600pt;}
.y146{bottom:158.280133pt;}
.y18c{bottom:161.049467pt;}
.ybe{bottom:162.247200pt;}
.y1b9{bottom:168.572800pt;}
.y15f{bottom:169.581067pt;}
.y129{bottom:169.644800pt;}
.y105{bottom:169.707333pt;}
.y67{bottom:170.841600pt;}
.y1e8{bottom:171.375200pt;}
.y7c{bottom:173.643200pt;}
.y4b{bottom:173.706400pt;}
.y145{bottom:180.945733pt;}
.y27{bottom:181.293200pt;}
.yee{bottom:182.960800pt;}
.y18b{bottom:183.715067pt;}
.y1e7{bottom:184.596800pt;}
.ybd{bottom:184.912800pt;}
.y1b8{bottom:191.238400pt;}
.y15e{bottom:192.246667pt;}
.y128{bottom:192.310400pt;}
.y104{bottom:192.372933pt;}
.y4a{bottom:196.372000pt;}
.yed{bottom:199.960000pt;}
.y7b{bottom:201.030800pt;}
.y66{bottom:201.062400pt;}
.y144{bottom:203.611333pt;}
.y26{bottom:203.958800pt;}
.y1e6{bottom:205.373600pt;}
.y18a{bottom:206.380667pt;}
.ybc{bottom:207.578400pt;}
.y1b7{bottom:213.904000pt;}
.y15d{bottom:214.912267pt;}
.y103{bottom:215.038533pt;}
.yec{bottom:216.959200pt;}
.y1e5{bottom:218.595200pt;}
.y49{bottom:219.037600pt;}
.y127{bottom:219.698000pt;}
.y7a{bottom:223.696400pt;}
.y65{bottom:223.728000pt;}
.y143{bottom:226.276933pt;}
.y189{bottom:229.046267pt;}
.ybb{bottom:230.244000pt;}
.y1e4{bottom:231.816800pt;}
.yeb{bottom:233.958400pt;}
.y25{bottom:234.179600pt;}
.y1b6{bottom:236.569600pt;}
.y15c{bottom:237.577867pt;}
.y102{bottom:237.704133pt;}
.y126{bottom:242.363600pt;}
.y1e3{bottom:245.038400pt;}
.y79{bottom:246.362000pt;}
.y64{bottom:246.393600pt;}
.y142{bottom:248.942533pt;}
.y48{bottom:249.258400pt;}
.y188{bottom:251.711867pt;}
.yba{bottom:252.909600pt;}
.y24{bottom:256.845200pt;}
.y1e2{bottom:258.260000pt;}
.y1b5{bottom:259.235200pt;}
.y15b{bottom:260.243467pt;}
.y101{bottom:260.369733pt;}
.y125{bottom:262.196000pt;}
.y78{bottom:269.027600pt;}
.y63{bottom:269.059200pt;}
.y141{bottom:271.608133pt;}
.y47{bottom:271.924000pt;}
.yb9{bottom:272.742000pt;}
.y187{bottom:274.377467pt;}
.y1e1{bottom:279.036800pt;}
.y23{bottom:279.510800pt;}
.y1b4{bottom:281.900800pt;}
.y124{bottom:282.028400pt;}
.y15a{bottom:282.909067pt;}
.y100{bottom:283.035333pt;}
.ya5{bottom:288.828400pt;}
.y77{bottom:291.693200pt;}
.y62{bottom:291.724800pt;}
.yb8{bottom:293.518800pt;}
.y140{bottom:294.273733pt;}
.y46{bottom:294.589600pt;}
.y186{bottom:297.043067pt;}
.y22{bottom:302.176400pt;}
.y1b3{bottom:304.566400pt;}
.y123{bottom:304.694000pt;}
.y159{bottom:305.574667pt;}
.yff{bottom:305.700933pt;}
.ya4{bottom:305.827600pt;}
.yb7{bottom:307.684800pt;}
.yb6{bottom:309.573600pt;}
.y76{bottom:314.358800pt;}
.y61{bottom:314.390400pt;}
.y13f{bottom:316.939333pt;}
.y45{bottom:317.255200pt;}
.y185{bottom:319.708667pt;}
.yb4{bottom:320.906400pt;}
.yb5{bottom:322.795200pt;}
.ya3{bottom:322.826800pt;}
.y122{bottom:324.526400pt;}
.y21{bottom:324.842000pt;}
.y1b2{bottom:327.232000pt;}
.y158{bottom:328.240267pt;}
.yfe{bottom:328.366533pt;}
.y1e0{bottom:329.090000pt;}
.y75{bottom:337.024400pt;}
.y13e{bottom:339.604933pt;}
.ya2{bottom:339.826000pt;}
.y44{bottom:339.920800pt;}
.y184{bottom:342.374267pt;}
.yb3{bottom:345.460800pt;}
.y20{bottom:347.507600pt;}
.y1b1{bottom:349.897600pt;}
.y157{bottom:350.905867pt;}
.yfd{bottom:351.032133pt;}
.y1df{bottom:351.755600pt;}
.yb2{bottom:358.682400pt;}
.ya1{bottom:359.658400pt;}
.y74{bottom:359.690000pt;}
.y13d{bottom:362.270533pt;}
.y43{bottom:362.586400pt;}
.y183{bottom:365.039867pt;}
.y1f{bottom:370.173200pt;}
.y1b0{bottom:372.563200pt;}
.y156{bottom:373.571467pt;}
.yfc{bottom:373.697733pt;}
.yb1{bottom:373.792800pt;}
.y1de{bottom:374.421200pt;}
.y21d{bottom:376.278267pt;}
.ya0{bottom:382.324000pt;}
.y73{bottom:382.355600pt;}
.y42{bottom:382.418800pt;}
.y13c{bottom:384.936133pt;}
.y182{bottom:387.705467pt;}
.yb0{bottom:390.792000pt;}
.y1e{bottom:392.838800pt;}
.y1af{bottom:395.228800pt;}
.y155{bottom:396.237067pt;}
.yfb{bottom:396.363333pt;}
.y1dd{bottom:397.086800pt;}
.y21c{bottom:398.943867pt;}
.y9f{bottom:404.989600pt;}
.y72{bottom:405.021200pt;}
.y13b{bottom:407.601733pt;}
.yaf{bottom:407.791200pt;}
.y181{bottom:410.371067pt;}
.y21b{bottom:412.165467pt;}
.y1d{bottom:415.504400pt;}
.y1ae{bottom:417.894400pt;}
.y154{bottom:418.902667pt;}
.yfa{bottom:419.028933pt;}
.y1dc{bottom:419.752400pt;}
.ye1{bottom:420.036533pt;}
.yae{bottom:427.623600pt;}
.y9e{bottom:427.655200pt;}
.y13a{bottom:430.267333pt;}
.y71{bottom:432.408800pt;}
.y21a{bottom:432.942267pt;}
.y180{bottom:433.036667pt;}
.ye0{bottom:437.035733pt;}
.y1c{bottom:438.170000pt;}
.y1ad{bottom:440.560000pt;}
.y153{bottom:441.568267pt;}
.yf9{bottom:441.694533pt;}
.y1db{bottom:442.418000pt;}
.y219{bottom:446.163867pt;}
.yad{bottom:450.289200pt;}
.y9d{bottom:450.320800pt;}
.y139{bottom:452.932933pt;}
.ydf{bottom:454.034933pt;}
.y17f{bottom:455.702267pt;}
.y218{bottom:459.385467pt;}
.y1b{bottom:460.835600pt;}
.y1ac{bottom:463.225600pt;}
.y152{bottom:464.233867pt;}
.yf8{bottom:464.360133pt;}
.y1da{bottom:465.083600pt;}
.y217{bottom:472.607067pt;}
.yac{bottom:472.954800pt;}
.y9c{bottom:472.986400pt;}
.yde{bottom:473.867333pt;}
.y138{bottom:475.598533pt;}
.y17e{bottom:478.367867pt;}
.y1a{bottom:483.501200pt;}
.y1ab{bottom:485.891200pt;}
.y151{bottom:486.899467pt;}
.yf7{bottom:487.025733pt;}
.y1d9{bottom:487.749200pt;}
.y216{bottom:493.383867pt;}
.yab{bottom:495.620400pt;}
.y9b{bottom:495.652000pt;}
.ydd{bottom:496.532933pt;}
.y137{bottom:498.264133pt;}
.y17d{bottom:501.033467pt;}
.y19{bottom:506.166800pt;}
.y215{bottom:506.605467pt;}
.y1aa{bottom:508.556800pt;}
.y1d8{bottom:509.470400pt;}
.y150{bottom:509.565067pt;}
.yf6{bottom:509.691333pt;}
.yaa{bottom:518.286000pt;}
.y9a{bottom:518.317600pt;}
.ydc{bottom:519.198533pt;}
.y136{bottom:520.929733pt;}
.y17c{bottom:523.699067pt;}
.y214{bottom:527.382267pt;}
.y18{bottom:528.832400pt;}
.y1a9{bottom:531.222400pt;}
.y14f{bottom:532.230667pt;}
.yf5{bottom:532.356933pt;}
.y135{bottom:540.762133pt;}
.ya9{bottom:540.951600pt;}
.y99{bottom:540.983200pt;}
.ydb{bottom:541.864133pt;}
.y17b{bottom:546.364667pt;}
.y213{bottom:548.159067pt;}
.y17{bottom:551.498000pt;}
.y1d7{bottom:553.857200pt;}
.y1a8{bottom:553.888000pt;}
.y14e{bottom:554.896267pt;}
.yf4{bottom:555.022533pt;}
.y134{bottom:557.761333pt;}
.y212{bottom:561.380667pt;}
.ya8{bottom:563.617200pt;}
.y98{bottom:563.648800pt;}
.yda{bottom:564.529733pt;}
.y17a{bottom:569.030267pt;}
.y10e{bottom:573.879200pt;}
.y16{bottom:574.163600pt;}
.y1d6{bottom:576.522800pt;}
.y1a7{bottom:576.553600pt;}
.y14d{bottom:577.561867pt;}
.y133{bottom:580.426933pt;}
.y211{bottom:582.157467pt;}
.yf3{bottom:585.243333pt;}
.ya7{bottom:586.282800pt;}
.y97{bottom:586.314400pt;}
.yd9{bottom:587.195333pt;}
.y10d{bottom:590.878400pt;}
.y179{bottom:591.695867pt;}
.y210{bottom:595.379067pt;}
.y15{bottom:596.829200pt;}
.y1d5{bottom:599.188400pt;}
.y1a6{bottom:599.219200pt;}
.y14c{bottom:600.227467pt;}
.y41{bottom:602.464000pt;}
.yea{bottom:605.107600pt;}
.yf2{bottom:607.908933pt;}
.ya6{bottom:608.948400pt;}
.y96{bottom:608.980000pt;}
.yd8{bottom:609.860933pt;}
.y10c{bottom:610.710800pt;}
.y178{bottom:614.361467pt;}
.y20f{bottom:617.100267pt;}
.y14{bottom:619.494800pt;}
.y1d4{bottom:621.854000pt;}
.y1a5{bottom:621.884800pt;}
.ye9{bottom:622.106800pt;}
.y40{bottom:622.296400pt;}
.y14b{bottom:622.893067pt;}
.y20e{bottom:630.321867pt;}
.yf1{bottom:630.574533pt;}
.y95{bottom:631.645600pt;}
.yd7{bottom:632.526533pt;}
.y10b{bottom:633.376400pt;}
.y177{bottom:637.027067pt;}
.ye8{bottom:639.106000pt;}
.y13{bottom:642.160400pt;}
.y20d{bottom:643.543467pt;}
.y1d3{bottom:644.519600pt;}
.y1a4{bottom:644.550400pt;}
.y3f{bottom:644.962000pt;}
.y14a{bottom:645.558667pt;}
.yf0{bottom:653.240133pt;}
.y94{bottom:654.311200pt;}
.ye7{bottom:658.938400pt;}
.y176{bottom:659.692667pt;}
.yd6{bottom:659.914133pt;}
.y12{bottom:664.826000pt;}
.y20c{bottom:665.264667pt;}
.y1d2{bottom:667.185200pt;}
.y1a3{bottom:667.216000pt;}
.y3e{bottom:667.627600pt;}
.y149{bottom:668.224267pt;}
.yef{bottom:675.905733pt;}
.y20b{bottom:678.486267pt;}
.y175{bottom:682.358267pt;}
.yd5{bottom:682.579733pt;}
.y93{bottom:684.532000pt;}
.y11{bottom:687.491600pt;}
.y1d1{bottom:689.850800pt;}
.y1a2{bottom:689.881600pt;}
.y3d{bottom:690.293200pt;}
.y148{bottom:690.889867pt;}
.y20a{bottom:691.707867pt;}
.y209{bottom:704.929467pt;}
.y174{bottom:705.023867pt;}
.yd4{bottom:705.245333pt;}
.y92{bottom:707.197600pt;}
.y10{bottom:710.157200pt;}
.y1d0{bottom:712.516400pt;}
.y1a1{bottom:712.547200pt;}
.y3c{bottom:720.514000pt;}
.y208{bottom:725.706267pt;}
.y173{bottom:727.689467pt;}
.yd3{bottom:727.910933pt;}
.y60{bottom:728.037600pt;}
.y91{bottom:729.863200pt;}
.yf{bottom:732.822800pt;}
.y1cf{bottom:735.182000pt;}
.y1a0{bottom:735.212800pt;}
.y3b{bottom:743.179600pt;}
.y207{bottom:746.483067pt;}
.y172{bottom:750.355067pt;}
.yd2{bottom:750.576533pt;}
.y90{bottom:752.528800pt;}
.ye{bottom:755.488400pt;}
.y1ce{bottom:757.847600pt;}
.y19f{bottom:757.878400pt;}
.y5f{bottom:758.258400pt;}
.y206{bottom:759.704667pt;}
.y3a{bottom:765.845200pt;}
.y205{bottom:772.926267pt;}
.y171{bottom:773.020667pt;}
.yd1{bottom:773.242133pt;}
.y8f{bottom:775.194400pt;}
.yd{bottom:778.154000pt;}
.y1cd{bottom:780.513200pt;}
.y19e{bottom:780.544000pt;}
.y5e{bottom:780.924000pt;}
.y121{bottom:783.504800pt;}
.y204{bottom:786.147867pt;}
.y170{bottom:795.686267pt;}
.yd0{bottom:795.907733pt;}
.y39{bottom:796.066000pt;}
.y8e{bottom:797.860000pt;}
.y203{bottom:799.369467pt;}
.yc{bottom:800.819600pt;}
.y1cc{bottom:803.178800pt;}
.y19d{bottom:803.209600pt;}
.y120{bottom:803.337200pt;}
.y5d{bottom:803.589600pt;}
.y16f{bottom:818.351867pt;}
.y38{bottom:818.731600pt;}
.y202{bottom:820.146267pt;}
.y8d{bottom:820.525600pt;}
.yb{bottom:823.485200pt;}
.y1cb{bottom:825.844400pt;}
.y19c{bottom:825.875200pt;}
.y11f{bottom:826.002800pt;}
.ycf{bottom:826.128533pt;}
.y5c{bottom:826.255200pt;}
.y201{bottom:833.367867pt;}
.y16e{bottom:841.017467pt;}
.y37{bottom:841.397200pt;}
.y8c{bottom:843.191200pt;}
.ya{bottom:846.150800pt;}
.y200{bottom:846.589467pt;}
.y1ca{bottom:848.510000pt;}
.y19b{bottom:848.540800pt;}
.y11e{bottom:848.668400pt;}
.yce{bottom:848.794133pt;}
.y5b{bottom:848.920800pt;}
.y1ff{bottom:859.811067pt;}
.y16d{bottom:863.683067pt;}
.y36{bottom:864.062800pt;}
.y8b{bottom:865.856800pt;}
.y1c9{bottom:871.175600pt;}
.y19a{bottom:871.206400pt;}
.y11d{bottom:871.334000pt;}
.ycd{bottom:871.459733pt;}
.y5a{bottom:871.586400pt;}
.y9{bottom:876.371600pt;}
.y1fe{bottom:880.587867pt;}
.y16c{bottom:886.348667pt;}
.y35{bottom:886.728400pt;}
.y8a{bottom:888.522400pt;}
.y1fd{bottom:893.809467pt;}
.y1c8{bottom:893.841200pt;}
.y199{bottom:893.872000pt;}
.y11c{bottom:893.999600pt;}
.ycc{bottom:894.125333pt;}
.y59{bottom:894.252000pt;}
.y8{bottom:899.037200pt;}
.y1fc{bottom:907.031067pt;}
.y34{bottom:909.394000pt;}
.y89{bottom:911.188000pt;}
.y1c7{bottom:916.506800pt;}
.y198{bottom:916.537600pt;}
.y11b{bottom:916.665200pt;}
.ycb{bottom:916.790933pt;}
.y58{bottom:916.917600pt;}
.y7{bottom:921.702800pt;}
.y16b{bottom:924.124667pt;}
.y1fb{bottom:927.807867pt;}
.y88{bottom:938.575600pt;}
.y1c6{bottom:939.172400pt;}
.y197{bottom:939.203200pt;}
.y11a{bottom:939.330800pt;}
.yca{bottom:939.456533pt;}
.y57{bottom:939.583200pt;}
.y33{bottom:939.614800pt;}
.y1fa{bottom:941.029467pt;}
.y6{bottom:942.479600pt;}
.y16a{bottom:946.790267pt;}
.y1f9{bottom:954.251067pt;}
.y1c5{bottom:961.838000pt;}
.y196{bottom:961.868800pt;}
.y119{bottom:961.996400pt;}
.yc9{bottom:962.122133pt;}
.y87{bottom:962.185600pt;}
.y56{bottom:962.248800pt;}
.y32{bottom:962.280400pt;}
.y5{bottom:962.312000pt;}
.y169{bottom:969.455867pt;}
.y1f8{bottom:975.027867pt;}
.y4{bottom:981.200000pt;}
.y1c4{bottom:984.503600pt;}
.y195{bottom:984.534400pt;}
.y118{bottom:984.662000pt;}
.yc8{bottom:984.787733pt;}
.y86{bottom:984.851200pt;}
.y55{bottom:984.914400pt;}
.y31{bottom:984.946000pt;}
.y1f7{bottom:988.249467pt;}
.y168{bottom:992.121467pt;}
.y3{bottom:998.199200pt;}
.y1f6{bottom:1001.471067pt;}
.y1c3{bottom:1007.169200pt;}
.y194{bottom:1007.200000pt;}
.y132{bottom:1007.295733pt;}
.y117{bottom:1007.327600pt;}
.yc7{bottom:1007.453333pt;}
.y85{bottom:1007.516800pt;}
.y54{bottom:1007.580000pt;}
.y30{bottom:1007.611600pt;}
.y70{bottom:1010.381600pt;}
.y2{bottom:1016.142800pt;}
.y1f5{bottom:1022.247867pt;}
.y1c2{bottom:1029.834800pt;}
.y193{bottom:1029.865600pt;}
.y167{bottom:1029.897467pt;}
.y131{bottom:1029.961333pt;}
.y116{bottom:1029.993200pt;}
.yc6{bottom:1030.118933pt;}
.y84{bottom:1030.182400pt;}
.y6f{bottom:1030.214000pt;}
.y53{bottom:1030.245600pt;}
.y2f{bottom:1030.277200pt;}
.ye6{bottom:1032.920800pt;}
.y1f4{bottom:1035.469467pt;}
.ha{height:34.193441pt;}
.h11{height:34.963569pt;}
.h14{height:36.910730pt;}
.h5{height:40.284562pt;}
.hd{height:42.143149pt;}
.h8{height:42.757839pt;}
.h7{height:50.584425pt;}
.h3{height:51.322237pt;}
.h2{height:58.994086pt;}
.h4{height:59.854559pt;}
.h12{height:65.423439pt;}
.h6{height:76.267678pt;}
.h10{height:80.045278pt;}
.hb{height:87.474349pt;}
.hc{height:95.029549pt;}
.h9{height:95.644239pt;}
.he{height:1046.363333pt;}
.h1{height:1046.363600pt;}
.hf{height:1046.363867pt;}
.h13{height:1046.364533pt;}
.h0{height:1124.000000pt;}
.w1{width:718.666667pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x2{left:22.665600pt;}
.x4{left:31.814475pt;}
.x1{left:38.666667pt;}
.x3{left:58.346260pt;}
.xd{left:70.121700pt;}
.xf{left:78.444225pt;}
.x12{left:81.026592pt;}
.xc{left:94.277658pt;}
.x8{left:131.168283pt;}
.x10{left:143.371725pt;}
.x11{left:219.174558pt;}
.x7{left:247.314750pt;}
.x9{left:249.926583pt;}
.x5{left:279.291567pt;}
.xe{left:309.704175pt;}
.x6{left:360.996900pt;}
.xa{left:461.472183pt;}
.x18{left:471.314625pt;}
.x16{left:526.930908pt;}
.x17{left:549.581775pt;}
.x19{left:551.116425pt;}
.x14{left:585.114825pt;}
.xb{left:589.910583pt;}
.x13{left:594.278433pt;}
.x15{left:699.328200pt;}
}




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