
    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_d0075c4d7fe8f5984ce7d3e6.woff')format("woff");}.ff1{font-family:ff1;line-height:0.984000;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_d3b9655d7a65df87ee95baae.woff')format("woff");}.ff2{font-family:ff2;line-height:1.132457;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_4429295323d84314973627ac.woff')format("woff");}.ff3{font-family:ff3;line-height:0.984048;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_1ea834b6f0d5ebbd50b34dac.woff')format("woff");}.ff4{font-family:ff4;line-height:0.984000;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_11cd316bbeb8e302a40b79f8.woff')format("woff");}.ff5{font-family:ff5;line-height:0.900000;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_02649b7dffe0ff6169a9290f.woff')format("woff");}.ff6{font-family:ff6;line-height:0.923000;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);}
.v2{vertical-align:-50.208000px;}
.v3{vertical-align:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.696000px;}
.ls0{letter-spacing:0.000000px;}
.ls9{letter-spacing:3.006438px;}
.ls2{letter-spacing:3.010332px;}
.ls1{letter-spacing:3.012438px;}
.ls7{letter-spacing:11.768630px;}
.ls5{letter-spacing:12.868502px;}
.lsa{letter-spacing:13.583419px;}
.lsb{letter-spacing:14.244438px;}
.ls6{letter-spacing:15.838157px;}
.ls4{letter-spacing:19.467734px;}
.ls8{letter-spacing:19.782438px;}
.ls3{letter-spacing:26.286941px;}
.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;}
}
.ws7{word-spacing:-12.373560px;}
.ws19{word-spacing:-9.898875px;}
.ws4a{word-spacing:-3.024648px;}
.ws9b{word-spacing:-2.969654px;}
.wsac{word-spacing:-2.914661px;}
.wsab{word-spacing:-2.804674px;}
.ws14{word-spacing:-2.749680px;}
.ws7a{word-spacing:-2.694686px;}
.wsae{word-spacing:-2.584699px;}
.wsaf{word-spacing:-2.529706px;}
.ws95{word-spacing:-2.254738px;}
.ws9e{word-spacing:-2.199744px;}
.wsa0{word-spacing:-2.196936px;}
.ws9f{word-spacing:-2.144750px;}
.ws64{word-spacing:-2.089757px;}
.ws3a{word-spacing:-1.979770px;}
.ws87{word-spacing:-1.924776px;}
.ws4c{word-spacing:-1.814789px;}
.ws6c{word-spacing:-1.704802px;}
.ws86{word-spacing:-1.484827px;}
.ws36{word-spacing:-1.429834px;}
.ws34{word-spacing:-1.413562px;}
.ws23{word-spacing:-1.374840px;}
.wsc1{word-spacing:-1.319846px;}
.ws9d{word-spacing:-1.209859px;}
.ws9c{word-spacing:-1.154866px;}
.ws70{word-spacing:-1.099872px;}
.wsb4{word-spacing:-1.044878px;}
.ws66{word-spacing:-0.934891px;}
.ws48{word-spacing:-0.879898px;}
.ws46{word-spacing:-0.824904px;}
.ws8e{word-spacing:-0.769910px;}
.ws51{word-spacing:-0.659923px;}
.ws6d{word-spacing:-0.604930px;}
.wsaa{word-spacing:-0.494942px;}
.wsa2{word-spacing:-0.384955px;}
.wsa1{word-spacing:-0.329962px;}
.wsb0{word-spacing:-0.274968px;}
.ws30{word-spacing:-0.219974px;}
.ws32{word-spacing:-0.217430px;}
.ws18{word-spacing:-0.179327px;}
.ws7d{word-spacing:-0.164981px;}
.ws44{word-spacing:-0.109987px;}
.ws1a{word-spacing:-0.079191px;}
.ws39{word-spacing:-0.059776px;}
.ws2{word-spacing:-0.054994px;}
.ws5{word-spacing:-0.049495px;}
.ws9a{word-spacing:-0.002726px;}
.ws1{word-spacing:0.000000px;}
.ws63{word-spacing:0.016622px;}
.wsf{word-spacing:0.054994px;}
.ws69{word-spacing:0.109987px;}
.ws49{word-spacing:0.164981px;}
.wsb2{word-spacing:0.219974px;}
.ws26{word-spacing:0.274968px;}
.wsa6{word-spacing:0.292570px;}
.ws98{word-spacing:0.329962px;}
.ws80{word-spacing:0.384955px;}
.ws4f{word-spacing:0.494942px;}
.ws24{word-spacing:0.549936px;}
.wsbb{word-spacing:0.604930px;}
.wsba{word-spacing:0.659923px;}
.wsb6{word-spacing:0.714917px;}
.ws6a{word-spacing:0.769910px;}
.ws22{word-spacing:0.824904px;}
.ws68{word-spacing:0.879898px;}
.ws93{word-spacing:0.934891px;}
.wsad{word-spacing:1.099872px;}
.ws73{word-spacing:1.154866px;}
.ws72{word-spacing:1.209859px;}
.wsb1{word-spacing:1.264853px;}
.ws20{word-spacing:1.319846px;}
.wsb5{word-spacing:1.374840px;}
.ws4d{word-spacing:1.484827px;}
.wsc4{word-spacing:1.539821px;}
.ws28{word-spacing:1.594814px;}
.ws85{word-spacing:1.704802px;}
.ws7c{word-spacing:1.759795px;}
.ws67{word-spacing:1.814789px;}
.ws5d{word-spacing:1.924776px;}
.ws15{word-spacing:1.979770px;}
.ws6e{word-spacing:2.034763px;}
.ws25{word-spacing:2.089757px;}
.wsc0{word-spacing:2.144750px;}
.ws5f{word-spacing:2.199744px;}
.ws62{word-spacing:2.254738px;}
.ws27{word-spacing:2.309731px;}
.ws11{word-spacing:2.364725px;}
.wsc9{word-spacing:2.419718px;}
.ws61{word-spacing:2.474712px;}
.ws99{word-spacing:2.584699px;}
.ws6b{word-spacing:2.914661px;}
.ws55{word-spacing:2.969654px;}
.ws17{word-spacing:3.024648px;}
.ws2b{word-spacing:3.079642px;}
.ws81{word-spacing:3.134635px;}
.ws38{word-spacing:3.189629px;}
.ws78{word-spacing:3.244622px;}
.ws29{word-spacing:3.299616px;}
.ws41{word-spacing:3.354610px;}
.ws50{word-spacing:3.409603px;}
.ws84{word-spacing:3.464597px;}
.wsc7{word-spacing:3.574584px;}
.ws21{word-spacing:3.629578px;}
.ws56{word-spacing:3.684571px;}
.ws57{word-spacing:3.739565px;}
.ws76{word-spacing:3.794558px;}
.ws2d{word-spacing:3.849552px;}
.ws75{word-spacing:3.904546px;}
.wsbf{word-spacing:3.959539px;}
.ws2e{word-spacing:4.014533px;}
.ws2f{word-spacing:4.069526px;}
.ws12{word-spacing:4.124520px;}
.ws92{word-spacing:4.179514px;}
.ws90{word-spacing:4.203528px;}
.ws94{word-spacing:4.234507px;}
.ws74{word-spacing:4.344494px;}
.ws2a{word-spacing:4.399488px;}
.wsa{word-spacing:4.509475px;}
.wsca{word-spacing:4.619462px;}
.ws97{word-spacing:4.784443px;}
.ws7b{word-spacing:4.839437px;}
.ws7e{word-spacing:4.894430px;}
.ws3f{word-spacing:4.949424px;}
.ws43{word-spacing:5.114405px;}
.wscb{word-spacing:5.224392px;}
.wsc3{word-spacing:5.279386px;}
.ws5a{word-spacing:5.334379px;}
.ws5b{word-spacing:5.389373px;}
.ws37{word-spacing:5.554354px;}
.ws53{word-spacing:5.664341px;}
.wsc8{word-spacing:5.774328px;}
.ws45{word-spacing:5.829322px;}
.ws8{word-spacing:5.916610px;}
.ws10{word-spacing:5.951996px;}
.ws9{word-spacing:5.958405px;}
.ws3e{word-spacing:6.049296px;}
.ws77{word-spacing:6.104290px;}
.ws42{word-spacing:6.159283px;}
.ws16{word-spacing:6.269270px;}
.wsb9{word-spacing:6.324264px;}
.wsb7{word-spacing:6.434251px;}
.wsa8{word-spacing:6.544238px;}
.wsa3{word-spacing:6.599232px;}
.ws2c{word-spacing:6.709219px;}
.ws82{word-spacing:6.874200px;}
.ws7f{word-spacing:6.929194px;}
.wsb8{word-spacing:6.929962px;}
.ws4e{word-spacing:7.039181px;}
.wsc6{word-spacing:7.149168px;}
.wsc5{word-spacing:7.204162px;}
.ws8f{word-spacing:7.259155px;}
.wsbe{word-spacing:7.314149px;}
.ws96{word-spacing:7.369142px;}
.ws83{word-spacing:7.589117px;}
.ws91{word-spacing:7.669200px;}
.ws3b{word-spacing:8.469014px;}
.ws3d{word-spacing:8.524008px;}
.ws13{word-spacing:8.908963px;}
.ws79{word-spacing:9.538613px;}
.ws65{word-spacing:10.196737px;}
.wse{word-spacing:10.283803px;}
.ws35{word-spacing:10.889250px;}
.ws4{word-spacing:11.438669px;}
.ws47{word-spacing:11.440950px;}
.ws3{word-spacing:11.493662px;}
.ws33{word-spacing:12.068737px;}
.ws31{word-spacing:12.070950px;}
.ws52{word-spacing:12.231675px;}
.wsb3{word-spacing:12.287250px;}
.wsbd{word-spacing:12.291675px;}
.ws59{word-spacing:12.304950px;}
.ws71{word-spacing:12.450202px;}
.wsa5{word-spacing:12.586950px;}
.wsa7{word-spacing:12.590737px;}
.wsbc{word-spacing:12.952613px;}
.ws6{word-spacing:13.726378px;}
.ws4b{word-spacing:13.792370px;}
.ws1d{word-spacing:13.913381px;}
.ws6f{word-spacing:14.332613px;}
.ws60{word-spacing:14.514525px;}
.ws58{word-spacing:16.016737px;}
.wsa9{word-spacing:16.113125px;}
.wsd{word-spacing:16.168118px;}
.ws1f{word-spacing:16.471728px;}
.ws54{word-spacing:16.550919px;}
.wsc{word-spacing:17.103010px;}
.wsc2{word-spacing:17.637675px;}
.ws5c{word-spacing:17.650613px;}
.wsa4{word-spacing:18.869250px;}
.ws0{word-spacing:19.861103px;}
.ws3c{word-spacing:20.787675px;}
.wsd7{word-spacing:23.262293px;}
.wsd2{word-spacing:29.828237px;}
.wscd{word-spacing:29.850509px;}
.ws1c{word-spacing:30.136493px;}
.ws5e{word-spacing:31.322414px;}
.wsd9{word-spacing:32.116262px;}
.wsd3{word-spacing:32.472662px;}
.wsd6{word-spacing:33.517541px;}
.wsd8{word-spacing:34.096032px;}
.wsce{word-spacing:40.776696px;}
.ws1b{word-spacing:48.064406px;}
.ws88{word-spacing:61.752926px;}
.ws8d{word-spacing:61.756526px;}
.wscf{word-spacing:74.762741px;}
.ws40{word-spacing:75.627405px;}
.wsd5{word-spacing:85.706467px;}
.wsd0{word-spacing:86.531371px;}
.wsd1{word-spacing:102.809477px;}
.wsd4{word-spacing:117.327787px;}
.wscc{word-spacing:133.770874px;}
.ws89{word-spacing:149.198160px;}
.ws8a{word-spacing:421.851542px;}
.wsb{word-spacing:451.607443px;}
.ws8b{word-spacing:477.065117px;}
.ws8c{word-spacing:624.119117px;}
.ws1e{word-spacing:2550.345518px;}
._2a{margin-left:-26.407490px;}
._30{margin-left:-25.306290px;}
._40{margin-left:-10.375859px;}
._38{margin-left:-7.047999px;}
._1e{margin-left:-5.508594px;}
._2{margin-left:-3.913780px;}
._4{margin-left:-2.896432px;}
._0{margin-left:-1.805555px;}
._1{width:1.330409px;}
._4b{width:2.427559px;}
._6{width:3.892270px;}
._4a{width:6.470777px;}
._49{width:7.644110px;}
._3f{width:10.494544px;}
._11{width:12.428554px;}
._5{width:13.808993px;}
._3{width:15.398208px;}
._3d{width:16.910566px;}
._24{width:17.932740px;}
._47{width:18.945090px;}
._22{width:20.145163px;}
._43{width:21.795523px;}
._3c{width:23.189071px;}
._36{width:24.892304px;}
._33{width:26.158486px;}
._23{width:28.074267px;}
._42{width:29.149466px;}
._2b{width:30.805650px;}
._1d{width:32.886173px;}
._1c{width:34.664504px;}
._46{width:37.045890px;}
._29{width:38.605507px;}
._32{width:41.446946px;}
._2f{width:43.215736px;}
._28{width:48.119400px;}
._3a{width:50.005912px;}
._2d{width:53.260007px;}
._4c{width:55.293241px;}
._3e{width:63.154535px;}
._17{width:71.945978px;}
._21{width:73.588705px;}
._41{width:75.706596px;}
._4e{width:80.236991px;}
._4d{width:84.090863px;}
._39{width:91.839312px;}
._2c{width:94.671448px;}
._12{width:119.389561px;}
._18{width:125.977259px;}
._19{width:183.889364px;}
._1b{width:204.081250px;}
._20{width:213.226916px;}
._1f{width:215.675665px;}
._44{width:223.108691px;}
._16{width:241.895999px;}
._1a{width:266.645738px;}
._14{width:339.649708px;}
._15{width:374.167220px;}
._13{width:415.137452px;}
._8{width:428.281466px;}
._45{width:619.719629px;}
._f{width:645.235057px;}
._b{width:860.323955px;}
._a{width:883.684976px;}
._9{width:930.180501px;}
._10{width:951.531642px;}
._e{width:1088.314181px;}
._d{width:1104.553803px;}
._c{width:1185.116392px;}
._48{width:2030.752120px;}
._25{width:2041.030120px;}
._7{width:2057.050120px;}
._3b{width:2059.924120px;}
._35{width:2124.336448px;}
._37{width:2166.754742px;}
._31{width:2298.244440px;}
._26{width:2350.239355px;}
._27{width:2450.512484px;}
._2e{width:2476.038749px;}
._34{width:2597.134656px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:37.395600px;}
.fs4{font-size:41.795400px;}
.fs7{font-size:43.995000px;}
.fs2{font-size:49.494600px;}
.fs1{font-size:54.993600px;}
.fs9{font-size:59.775600px;}
.fs3{font-size:65.992200px;}
.fs8{font-size:79.191000px;}
.fs0{font-size:95.029200px;}
.fs5{font-size:179.327400px;}
.y0{bottom:0.000000px;}
.y107{bottom:85.039500px;}
.y3a{bottom:89.379000px;}
.yd7{bottom:89.415000px;}
.y117{bottom:89.458500px;}
.y106{bottom:102.972000px;}
.yd6{bottom:104.274000px;}
.y116{bottom:104.316000px;}
.y159{bottom:105.387000px;}
.y39{bottom:110.583000px;}
.yb3{bottom:118.239000px;}
.yd5{bottom:119.133000px;}
.y115{bottom:119.175000px;}
.y105{bottom:120.904500px;}
.y17e{bottom:122.692500px;}
.y158{bottom:123.319500px;}
.yd4{bottom:133.990500px;}
.y114{bottom:134.034000px;}
.y17d{bottom:140.625000px;}
.y157{bottom:141.252000px;}
.yb2{bottom:145.137000px;}
.y104{bottom:147.804000px;}
.y38{bottom:155.676000px;}
.y17c{bottom:158.557500px;}
.ye{bottom:158.563500px;}
.y156{bottom:159.184500px;}
.yb1{bottom:163.071000px;}
.y103{bottom:165.736500px;}
.y37{bottom:173.608500px;}
.yd{bottom:176.496000px;}
.y155{bottom:177.117000px;}
.y102{bottom:183.669000px;}
.y17b{bottom:185.457000px;}
.yb0{bottom:189.969000px;}
.y36{bottom:191.541000px;}
.yc{bottom:194.428500px;}
.y154{bottom:195.051000px;}
.y101{bottom:201.601500px;}
.y17a{bottom:203.389500px;}
.y35{bottom:209.475000px;}
.yb{bottom:212.362500px;}
.yaf{bottom:216.868500px;}
.y100{bottom:219.535500px;}
.y153{bottom:221.949000px;}
.y34{bottom:227.407500px;}
.ya{bottom:228.799500px;}
.y179{bottom:230.289000px;}
.yae{bottom:234.801000px;}
.yff{bottom:237.468000px;}
.y152{bottom:239.883000px;}
.y9{bottom:245.238000px;}
.y33{bottom:245.340000px;}
.y178{bottom:248.221500px;}
.y151{bottom:257.815500px;}
.y8{bottom:261.676500px;}
.yad{bottom:261.700500px;}
.yfe{bottom:265.263000px;}
.y32{bottom:272.239500px;}
.y177{bottom:275.119500px;}
.y150{bottom:275.748000px;}
.yac{bottom:279.633000px;}
.y31{bottom:290.172000px;}
.y176{bottom:293.053500px;}
.y14f{bottom:293.680500px;}
.yab{bottom:297.565500px;}
.yfd{bottom:306.744000px;}
.y30{bottom:308.104500px;}
.y14e{bottom:311.613000px;}
.yaa{bottom:315.499500px;}
.yfc{bottom:324.678000px;}
.y2f{bottom:326.037000px;}
.y175{bottom:326.109000px;}
.y14d{bottom:329.545500px;}
.ya9{bottom:333.432000px;}
.yfb{bottom:342.610500px;}
.y14c{bottom:347.479500px;}
.ya8{bottom:351.364500px;}
.yfa{bottom:360.543000px;}
.y14b{bottom:365.412000px;}
.ya7{bottom:369.297000px;}
.y174{bottom:376.021500px;}
.y14a{bottom:383.344500px;}
.y173{bottom:393.954000px;}
.ya6{bottom:397.093500px;}
.yf9{bottom:408.913500px;}
.y149{bottom:410.244000px;}
.y172{bottom:411.888000px;}
.yf8{bottom:426.846000px;}
.y148{bottom:428.176500px;}
.y8f{bottom:431.464500px;}
.y171{bottom:438.786000px;}
.ya5{bottom:439.384500px;}
.y2e{bottom:440.313000px;}
.yf7{bottom:444.778500px;}
.y8e{bottom:449.397000px;}
.y147{bottom:455.076000px;}
.y170{bottom:456.718500px;}
.ya4{bottom:457.317000px;}
.y2d{bottom:458.844000px;}
.ya3{bottom:475.249500px;}
.y8d{bottom:477.192000px;}
.yf6{bottom:478.252500px;}
.y146{bottom:481.974000px;}
.y16f{bottom:483.618000px;}
.yd3{bottom:493.660500px;}
.yf5{bottom:496.186500px;}
.y16e{bottom:501.550500px;}
.ya2{bottom:502.149000px;}
.yf2{bottom:505.152000px;}
.y145{bottom:508.873500px;}
.y7{bottom:511.408500px;}
.yd2{bottom:511.593000px;}
.yf4{bottom:514.119000px;}
.y8c{bottom:519.484500px;}
.ya1{bottom:520.081500px;}
.y6{bottom:529.341000px;}
.yd1{bottom:529.525500px;}
.yf3{bottom:532.051500px;}
.y144{bottom:535.773000px;}
.y8b{bottom:537.417000px;}
.y16d{bottom:546.382500px;}
.ya0{bottom:546.981000px;}
.y5{bottom:547.273500px;}
.yd0{bottom:547.459500px;}
.yf1{bottom:550.582500px;}
.y143{bottom:553.705500px;}
.y8a{bottom:555.349500px;}
.y16c{bottom:564.316500px;}
.y70{bottom:564.913500px;}
.ycf{bottom:565.392000px;}
.yef{bottom:568.515000px;}
.y2c{bottom:572.875500px;}
.y89{bottom:573.282000px;}
.y9f{bottom:573.880500px;}
.y53{bottom:578.184000px;}
.y142{bottom:580.605000px;}
.y6f{bottom:582.846000px;}
.yf0{bottom:586.447500px;}
.y2b{bottom:590.808000px;}
.y16b{bottom:591.214500px;}
.y9e{bottom:591.813000px;}
.yce{bottom:592.291500px;}
.y52{bottom:596.116500px;}
.y88{bottom:600.181500px;}
.y6e{bottom:600.778500px;}
.y12f{bottom:602.422500px;}
.yee{bottom:604.380000px;}
.y141{bottom:607.504500px;}
.y2a{bottom:608.740500px;}
.y16a{bottom:609.147000px;}
.y9d{bottom:609.745500px;}
.ycd{bottom:610.224000px;}
.y51{bottom:614.049000px;}
.y87{bottom:618.114000px;}
.y6d{bottom:618.711000px;}
.y12e{bottom:620.355000px;}
.ye9{bottom:622.312500px;}
.y140{bottom:625.437000px;}
.y29{bottom:626.673000px;}
.y169{bottom:627.081000px;}
.ycc{bottom:628.156500px;}
.y9c{bottom:636.645000px;}
.y12d{bottom:638.289000px;}
.yeb{bottom:640.245000px;}
.y13f{bottom:643.369500px;}
.y28{bottom:644.605500px;}
.y86{bottom:645.013500px;}
.y6c{bottom:645.610500px;}
.ycb{bottom:646.089000px;}
.y50{bottom:647.106000px;}
.y25{bottom:653.572500px;}
.y9b{bottom:654.577500px;}
.y12c{bottom:656.221500px;}
.yed{bottom:658.179000px;}
.y13e{bottom:661.302000px;}
.y27{bottom:662.538000px;}
.y85{bottom:662.946000px;}
.y6b{bottom:663.543000px;}
.yca{bottom:664.021500px;}
.yec{bottom:676.111500px;}
.y26{bottom:680.472000px;}
.y84{bottom:680.878500px;}
.y6a{bottom:681.477000px;}
.yc9{bottom:681.954000px;}
.y12b{bottom:683.119500px;}
.y4{bottom:686.826000px;}
.y13d{bottom:689.098500px;}
.yea{bottom:694.044000px;}
.y4f{bottom:697.018500px;}
.y24{bottom:699.001500px;}
.y9a{bottom:699.409500px;}
.yc8{bottom:699.888000px;}
.y12a{bottom:701.053500px;}
.y3{bottom:704.758500px;}
.y83{bottom:707.778000px;}
.y69{bottom:708.375000px;}
.ye8{bottom:712.575000px;}
.y99{bottom:717.342000px;}
.yc7{bottom:717.820500px;}
.y129{bottom:718.986000px;}
.y2{bottom:722.691000px;}
.y82{bottom:725.710500px;}
.y68{bottom:726.309000px;}
.y4e{bottom:728.101500px;}
.y23{bottom:730.084500px;}
.ye7{bottom:731.104500px;}
.y13c{bottom:731.389500px;}
.yc6{bottom:735.753000px;}
.y128{bottom:736.918500px;}
.y168{bottom:743.643000px;}
.y67{bottom:744.241500px;}
.y13b{bottom:749.322000px;}
.y81{bottom:753.507000px;}
.y127{bottom:754.851000px;}
.y4d{bottom:759.184500px;}
.y22{bottom:760.570500px;}
.y167{bottom:761.575500px;}
.y66{bottom:762.174000px;}
.yc5{bottom:763.548000px;}
.ye6{bottom:764.628000px;}
.y13a{bottom:767.254500px;}
.y98{bottom:771.141000px;}
.y126{bottom:772.783500px;}
.y4c{bottom:777.118500px;}
.y21{bottom:778.503000px;}
.y166{bottom:779.509500px;}
.ye5{bottom:782.560500px;}
.y139{bottom:785.187000px;}
.y1d{bottom:787.470000px;}
.y65{bottom:789.073500px;}
.y4b{bottom:795.051000px;}
.y80{bottom:795.798000px;}
.y20{bottom:796.437000px;}
.y165{bottom:797.442000px;}
.y97{bottom:798.039000px;}
.y125{bottom:799.683000px;}
.ye4{bottom:800.493000px;}
.y138{bottom:803.119500px;}
.yc4{bottom:805.840500px;}
.y1{bottom:805.917000px;}
.y64{bottom:807.006000px;}
.y7f{bottom:813.730500px;}
.y1f{bottom:814.369500px;}
.y124{bottom:817.615500px;}
.ye3{bottom:818.425500px;}
.y137{bottom:821.053500px;}
.yc3{bottom:823.773000px;}
.y63{bottom:824.938500px;}
.y164{bottom:825.237000px;}
.y4a{bottom:826.134000px;}
.y7e{bottom:831.663000px;}
.y1e{bottom:832.302000px;}
.y123{bottom:835.548000px;}
.ye2{bottom:836.359500px;}
.yc2{bottom:841.705500px;}
.y62{bottom:842.871000px;}
.y49{bottom:844.066500px;}
.y136{bottom:847.951500px;}
.y7d{bottom:849.595500px;}
.y1c{bottom:850.833000px;}
.y96{bottom:851.838000px;}
.y122{bottom:853.482000px;}
.ye1{bottom:854.292000px;}
.y163{bottom:858.562500px;}
.yc1{bottom:859.638000px;}
.y15d{bottom:860.803500px;}
.y135{bottom:865.885500px;}
.y61{bottom:869.770500px;}
.y121{bottom:871.414500px;}
.y48{bottom:875.149500px;}
.y7c{bottom:877.392000px;}
.y15c{bottom:878.736000px;}
.y95{bottom:878.737500px;}
.ye0{bottom:881.191500px;}
.y134{bottom:883.818000px;}
.y162{bottom:886.357500px;}
.yc0{bottom:886.537500px;}
.y60{bottom:887.703000px;}
.y47{bottom:893.083500px;}
.y113{bottom:893.860500px;}
.y15b{bottom:896.670000px;}
.y120{bottom:898.314000px;}
.ydf{bottom:899.124000px;}
.y133{bottom:901.750500px;}
.ybf{bottom:904.470000px;}
.y5f{bottom:905.635500px;}
.y46{bottom:911.016000px;}
.y112{bottom:911.793000px;}
.y11f{bottom:916.246500px;}
.yde{bottom:917.056500px;}
.y7b{bottom:919.683000px;}
.ybe{bottom:922.402500px;}
.y5e{bottom:923.568000px;}
.y132{bottom:928.650000px;}
.y111{bottom:929.725500px;}
.y94{bottom:932.535000px;}
.y11e{bottom:934.179000px;}
.ydd{bottom:934.989000px;}
.y7a{bottom:937.615500px;}
.ybd{bottom:940.335000px;}
.y5d{bottom:941.502000px;}
.y45{bottom:942.099000px;}
.y131{bottom:946.582500px;}
.y110{bottom:947.658000px;}
.y11d{bottom:952.111500px;}
.ydc{bottom:952.921500px;}
.y161{bottom:955.548000px;}
.ybc{bottom:958.269000px;}
.y5c{bottom:959.434500px;}
.y44{bottom:960.031500px;}
.y79{bottom:964.515000px;}
.y1b{bottom:964.863000px;}
.y15a{bottom:968.400000px;}
.y11c{bottom:970.044000px;}
.ydb{bottom:970.854000px;}
.y160{bottom:973.482000px;}
.y10f{bottom:974.557500px;}
.ybb{bottom:976.201500px;}
.y43{bottom:977.964000px;}
.y78{bottom:982.447500px;}
.y1a{bottom:982.795500px;}
.y5b{bottom:986.332500px;}
.y93{bottom:986.334000px;}
.y11b{bottom:987.976500px;}
.yda{bottom:988.788000px;}
.y15f{bottom:991.414500px;}
.y10e{bottom:992.490000px;}
.yba{bottom:994.134000px;}
.y42{bottom:995.898000px;}
.y77{bottom:1000.380000px;}
.y19{bottom:1001.326500px;}
.y5a{bottom:1004.266500px;}
.y11a{bottom:1005.910500px;}
.yd9{bottom:1006.720500px;}
.y15e{bottom:1009.347000px;}
.y10d{bottom:1010.422500px;}
.yb9{bottom:1012.066500px;}
.y92{bottom:1013.232000px;}
.y76{bottom:1018.314000px;}
.y18{bottom:1019.922000px;}
.y59{bottom:1022.199000px;}
.y119{bottom:1023.843000px;}
.y41{bottom:1026.981000px;}
.y130{bottom:1027.279500px;}
.y10c{bottom:1028.355000px;}
.yb8{bottom:1029.999000px;}
.yd8{bottom:1034.515500px;}
.y17{bottom:1038.517500px;}
.y58{bottom:1040.131500px;}
.y40{bottom:1044.913500px;}
.y75{bottom:1045.212000px;}
.y10b{bottom:1046.289000px;}
.y118{bottom:1051.638000px;}
.y16{bottom:1056.450000px;}
.yb7{bottom:1057.795500px;}
.y57{bottom:1058.064000px;}
.y3f{bottom:1062.846000px;}
.y74{bottom:1063.144500px;}
.y91{bottom:1067.031000px;}
.y10a{bottom:1073.187000px;}
.y15{bottom:1074.382500px;}
.y56{bottom:1075.996500px;}
.y3e{bottom:1080.778500px;}
.y73{bottom:1081.078500px;}
.y90{bottom:1084.963500px;}
.y109{bottom:1091.121000px;}
.y14{bottom:1092.913500px;}
.y55{bottom:1093.930500px;}
.y3d{bottom:1098.712500px;}
.y72{bottom:1099.011000px;}
.yb6{bottom:1100.086500px;}
.y108{bottom:1109.053500px;}
.y13{bottom:1110.846000px;}
.y54{bottom:1111.863000px;}
.y71{bottom:1126.806000px;}
.yb5{bottom:1126.986000px;}
.y12{bottom:1128.778500px;}
.y3c{bottom:1129.795500px;}
.yb4{bottom:1144.918500px;}
.y11{bottom:1146.712500px;}
.y3b{bottom:1162.851000px;}
.y10{bottom:1165.242000px;}
.yf{bottom:1220.535000px;}
.hc{height:33.299179px;}
.h5{height:36.724993px;}
.h4{height:40.805251px;}
.ha{height:40.807870px;}
.he{height:41.544042px;}
.h6{height:44.072820px;}
.h7{height:48.966212px;}
.h3{height:48.969444px;}
.h9{height:52.716177px;}
.hd{height:58.759722px;}
.h8{height:58.913012px;}
.hf{height:58.919012px;}
.h2{height:70.511666px;}
.hb{height:125.529180px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:85.039500px;}
.x1b{left:98.269500px;}
.x17{left:100.878000px;}
.x10{left:102.142500px;}
.x1c{left:104.766000px;}
.x12{left:109.122000px;}
.x16{left:113.647500px;}
.xc{left:115.249500px;}
.x1e{left:116.413500px;}
.x11{left:119.262000px;}
.x1f{left:122.400000px;}
.xf{left:127.122000px;}
.xe{left:132.210000px;}
.x1d{left:135.012000px;}
.xb{left:142.641000px;}
.xd{left:145.809000px;}
.x1{left:153.894000px;}
.xa{left:155.358000px;}
.x19{left:171.241500px;}
.x15{left:189.166500px;}
.x22{left:282.081000px;}
.x13{left:301.794000px;}
.x9{left:307.020000px;}
.x21{left:319.530000px;}
.x14{left:324.801000px;}
.x6{left:339.054000px;}
.x23{left:349.806000px;}
.x2{left:362.314500px;}
.x18{left:366.324000px;}
.x3{left:369.727500px;}
.x4{left:375.256500px;}
.x7{left:378.148500px;}
.x1a{left:403.866000px;}
.x24{left:407.191500px;}
.x5{left:410.434500px;}
.x20{left:534.192000px;}
@media print{
.v2{vertical-align:-44.629333pt;}
.v3{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.285333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:2.672389pt;}
.ls2{letter-spacing:2.675851pt;}
.ls1{letter-spacing:2.677723pt;}
.ls7{letter-spacing:10.461005pt;}
.ls5{letter-spacing:11.438669pt;}
.lsa{letter-spacing:12.074150pt;}
.lsb{letter-spacing:12.661723pt;}
.ls6{letter-spacing:14.078362pt;}
.ls4{letter-spacing:17.304653pt;}
.ls8{letter-spacing:17.584389pt;}
.ls3{letter-spacing:23.366170pt;}
.ws7{word-spacing:-10.998720pt;}
.ws19{word-spacing:-8.799000pt;}
.ws4a{word-spacing:-2.688576pt;}
.ws9b{word-spacing:-2.639693pt;}
.wsac{word-spacing:-2.590810pt;}
.wsab{word-spacing:-2.493043pt;}
.ws14{word-spacing:-2.444160pt;}
.ws7a{word-spacing:-2.395277pt;}
.wsae{word-spacing:-2.297510pt;}
.wsaf{word-spacing:-2.248627pt;}
.ws95{word-spacing:-2.004211pt;}
.ws9e{word-spacing:-1.955328pt;}
.wsa0{word-spacing:-1.952832pt;}
.ws9f{word-spacing:-1.906445pt;}
.ws64{word-spacing:-1.857562pt;}
.ws3a{word-spacing:-1.759795pt;}
.ws87{word-spacing:-1.710912pt;}
.ws4c{word-spacing:-1.613146pt;}
.ws6c{word-spacing:-1.515379pt;}
.ws86{word-spacing:-1.319846pt;}
.ws36{word-spacing:-1.270963pt;}
.ws34{word-spacing:-1.256499pt;}
.ws23{word-spacing:-1.222080pt;}
.wsc1{word-spacing:-1.173197pt;}
.ws9d{word-spacing:-1.075430pt;}
.ws9c{word-spacing:-1.026547pt;}
.ws70{word-spacing:-0.977664pt;}
.wsb4{word-spacing:-0.928781pt;}
.ws66{word-spacing:-0.831014pt;}
.ws48{word-spacing:-0.782131pt;}
.ws46{word-spacing:-0.733248pt;}
.ws8e{word-spacing:-0.684365pt;}
.ws51{word-spacing:-0.586598pt;}
.ws6d{word-spacing:-0.537715pt;}
.wsaa{word-spacing:-0.439949pt;}
.wsa2{word-spacing:-0.342182pt;}
.wsa1{word-spacing:-0.293299pt;}
.wsb0{word-spacing:-0.244416pt;}
.ws30{word-spacing:-0.195533pt;}
.ws32{word-spacing:-0.193271pt;}
.ws18{word-spacing:-0.159402pt;}
.ws7d{word-spacing:-0.146650pt;}
.ws44{word-spacing:-0.097766pt;}
.ws1a{word-spacing:-0.070392pt;}
.ws39{word-spacing:-0.053134pt;}
.ws2{word-spacing:-0.048883pt;}
.ws5{word-spacing:-0.043995pt;}
.ws9a{word-spacing:-0.002423pt;}
.ws1{word-spacing:0.000000pt;}
.ws63{word-spacing:0.014775pt;}
.wsf{word-spacing:0.048883pt;}
.ws69{word-spacing:0.097766pt;}
.ws49{word-spacing:0.146650pt;}
.wsb2{word-spacing:0.195533pt;}
.ws26{word-spacing:0.244416pt;}
.wsa6{word-spacing:0.260062pt;}
.ws98{word-spacing:0.293299pt;}
.ws80{word-spacing:0.342182pt;}
.ws4f{word-spacing:0.439949pt;}
.ws24{word-spacing:0.488832pt;}
.wsbb{word-spacing:0.537715pt;}
.wsba{word-spacing:0.586598pt;}
.wsb6{word-spacing:0.635482pt;}
.ws6a{word-spacing:0.684365pt;}
.ws22{word-spacing:0.733248pt;}
.ws68{word-spacing:0.782131pt;}
.ws93{word-spacing:0.831014pt;}
.wsad{word-spacing:0.977664pt;}
.ws73{word-spacing:1.026547pt;}
.ws72{word-spacing:1.075430pt;}
.wsb1{word-spacing:1.124314pt;}
.ws20{word-spacing:1.173197pt;}
.wsb5{word-spacing:1.222080pt;}
.ws4d{word-spacing:1.319846pt;}
.wsc4{word-spacing:1.368730pt;}
.ws28{word-spacing:1.417613pt;}
.ws85{word-spacing:1.515379pt;}
.ws7c{word-spacing:1.564262pt;}
.ws67{word-spacing:1.613146pt;}
.ws5d{word-spacing:1.710912pt;}
.ws15{word-spacing:1.759795pt;}
.ws6e{word-spacing:1.808678pt;}
.ws25{word-spacing:1.857562pt;}
.wsc0{word-spacing:1.906445pt;}
.ws5f{word-spacing:1.955328pt;}
.ws62{word-spacing:2.004211pt;}
.ws27{word-spacing:2.053094pt;}
.ws11{word-spacing:2.101978pt;}
.wsc9{word-spacing:2.150861pt;}
.ws61{word-spacing:2.199744pt;}
.ws99{word-spacing:2.297510pt;}
.ws6b{word-spacing:2.590810pt;}
.ws55{word-spacing:2.639693pt;}
.ws17{word-spacing:2.688576pt;}
.ws2b{word-spacing:2.737459pt;}
.ws81{word-spacing:2.786342pt;}
.ws38{word-spacing:2.835226pt;}
.ws78{word-spacing:2.884109pt;}
.ws29{word-spacing:2.932992pt;}
.ws41{word-spacing:2.981875pt;}
.ws50{word-spacing:3.030758pt;}
.ws84{word-spacing:3.079642pt;}
.wsc7{word-spacing:3.177408pt;}
.ws21{word-spacing:3.226291pt;}
.ws56{word-spacing:3.275174pt;}
.ws57{word-spacing:3.324058pt;}
.ws76{word-spacing:3.372941pt;}
.ws2d{word-spacing:3.421824pt;}
.ws75{word-spacing:3.470707pt;}
.wsbf{word-spacing:3.519590pt;}
.ws2e{word-spacing:3.568474pt;}
.ws2f{word-spacing:3.617357pt;}
.ws12{word-spacing:3.666240pt;}
.ws92{word-spacing:3.715123pt;}
.ws90{word-spacing:3.736469pt;}
.ws94{word-spacing:3.764006pt;}
.ws74{word-spacing:3.861773pt;}
.ws2a{word-spacing:3.910656pt;}
.wsa{word-spacing:4.008422pt;}
.wsca{word-spacing:4.106189pt;}
.ws97{word-spacing:4.252838pt;}
.ws7b{word-spacing:4.301722pt;}
.ws7e{word-spacing:4.350605pt;}
.ws3f{word-spacing:4.399488pt;}
.ws43{word-spacing:4.546138pt;}
.wscb{word-spacing:4.643904pt;}
.wsc3{word-spacing:4.692787pt;}
.ws5a{word-spacing:4.741670pt;}
.ws5b{word-spacing:4.790554pt;}
.ws37{word-spacing:4.937203pt;}
.ws53{word-spacing:5.034970pt;}
.wsc8{word-spacing:5.132736pt;}
.ws45{word-spacing:5.181619pt;}
.ws8{word-spacing:5.259209pt;}
.ws10{word-spacing:5.290663pt;}
.ws9{word-spacing:5.296360pt;}
.ws3e{word-spacing:5.377152pt;}
.ws77{word-spacing:5.426035pt;}
.ws42{word-spacing:5.474918pt;}
.ws16{word-spacing:5.572685pt;}
.wsb9{word-spacing:5.621568pt;}
.wsb7{word-spacing:5.719334pt;}
.wsa8{word-spacing:5.817101pt;}
.wsa3{word-spacing:5.865984pt;}
.ws2c{word-spacing:5.963750pt;}
.ws82{word-spacing:6.110400pt;}
.ws7f{word-spacing:6.159283pt;}
.wsb8{word-spacing:6.159966pt;}
.ws4e{word-spacing:6.257050pt;}
.wsc6{word-spacing:6.354816pt;}
.wsc5{word-spacing:6.403699pt;}
.ws8f{word-spacing:6.452582pt;}
.wsbe{word-spacing:6.501466pt;}
.ws96{word-spacing:6.550349pt;}
.ws83{word-spacing:6.745882pt;}
.ws91{word-spacing:6.817067pt;}
.ws3b{word-spacing:7.528013pt;}
.ws3d{word-spacing:7.576896pt;}
.ws13{word-spacing:7.919078pt;}
.ws79{word-spacing:8.478767pt;}
.ws65{word-spacing:9.063767pt;}
.wse{word-spacing:9.141158pt;}
.ws35{word-spacing:9.679334pt;}
.ws4{word-spacing:10.167706pt;}
.ws47{word-spacing:10.169733pt;}
.ws3{word-spacing:10.216589pt;}
.ws33{word-spacing:10.727767pt;}
.ws31{word-spacing:10.729733pt;}
.ws52{word-spacing:10.872600pt;}
.wsb3{word-spacing:10.922000pt;}
.wsbd{word-spacing:10.925933pt;}
.ws59{word-spacing:10.937733pt;}
.ws71{word-spacing:11.066846pt;}
.wsa5{word-spacing:11.188400pt;}
.wsa7{word-spacing:11.191767pt;}
.wsbc{word-spacing:11.513434pt;}
.ws6{word-spacing:12.201225pt;}
.ws4b{word-spacing:12.259884pt;}
.ws1d{word-spacing:12.367450pt;}
.ws6f{word-spacing:12.740100pt;}
.ws60{word-spacing:12.901800pt;}
.ws58{word-spacing:14.237100pt;}
.wsa9{word-spacing:14.322778pt;}
.wsd{word-spacing:14.371661pt;}
.ws1f{word-spacing:14.641536pt;}
.ws54{word-spacing:14.711928pt;}
.wsc{word-spacing:15.202675pt;}
.wsc2{word-spacing:15.677933pt;}
.ws5c{word-spacing:15.689434pt;}
.wsa4{word-spacing:16.772667pt;}
.ws0{word-spacing:17.654314pt;}
.ws3c{word-spacing:18.477933pt;}
.wsd7{word-spacing:20.677594pt;}
.wsd2{word-spacing:26.513988pt;}
.wscd{word-spacing:26.533786pt;}
.ws1c{word-spacing:26.787994pt;}
.ws5e{word-spacing:27.842146pt;}
.wsd9{word-spacing:28.547789pt;}
.wsd3{word-spacing:28.864589pt;}
.wsd6{word-spacing:29.793370pt;}
.wsd8{word-spacing:30.307584pt;}
.wsce{word-spacing:36.245952pt;}
.ws1b{word-spacing:42.723917pt;}
.ws88{word-spacing:54.891490pt;}
.ws8d{word-spacing:54.894690pt;}
.wscf{word-spacing:66.455770pt;}
.ws40{word-spacing:67.224360pt;}
.wsd5{word-spacing:76.183526pt;}
.wsd0{word-spacing:76.916774pt;}
.wsd1{word-spacing:91.386202pt;}
.wsd4{word-spacing:104.291366pt;}
.wscc{word-spacing:118.907443pt;}
.ws89{word-spacing:132.620587pt;}
.ws8a{word-spacing:374.979149pt;}
.wsb{word-spacing:401.428838pt;}
.ws8b{word-spacing:424.057882pt;}
.ws8c{word-spacing:554.772548pt;}
.ws1e{word-spacing:2266.973794pt;}
._2a{margin-left:-23.473325pt;}
._30{margin-left:-22.494480pt;}
._40{margin-left:-9.222986pt;}
._38{margin-left:-6.264888pt;}
._1e{margin-left:-4.896528pt;}
._2{margin-left:-3.478915pt;}
._4{margin-left:-2.574606pt;}
._0{margin-left:-1.604938pt;}
._1{width:1.182586pt;}
._4b{width:2.157830pt;}
._6{width:3.459795pt;}
._4a{width:5.751802pt;}
._49{width:6.794765pt;}
._3f{width:9.328483pt;}
._11{width:11.047603pt;}
._5{width:12.274661pt;}
._3{width:13.687296pt;}
._3d{width:15.031614pt;}
._24{width:15.940213pt;}
._47{width:16.840080pt;}
._22{width:17.906812pt;}
._43{width:19.373798pt;}
._3c{width:20.612507pt;}
._36{width:22.126493pt;}
._33{width:23.251987pt;}
._23{width:24.954904pt;}
._42{width:25.910637pt;}
._2b{width:27.382800pt;}
._1d{width:29.232154pt;}
._1c{width:30.812893pt;}
._46{width:32.929680pt;}
._29{width:34.316006pt;}
._32{width:36.841730pt;}
._2f{width:38.413987pt;}
._28{width:42.772800pt;}
._3a{width:44.449699pt;}
._2d{width:47.342229pt;}
._4c{width:49.149547pt;}
._3e{width:56.137365pt;}
._17{width:63.951981pt;}
._21{width:65.412182pt;}
._41{width:67.294752pt;}
._4e{width:71.321770pt;}
._4d{width:74.747434pt;}
._39{width:81.634944pt;}
._2c{width:84.152398pt;}
._12{width:106.124054pt;}
._18{width:111.979786pt;}
._19{width:163.457213pt;}
._1b{width:181.405555pt;}
._20{width:189.535037pt;}
._1f{width:191.711702pt;}
._44{width:198.318836pt;}
._16{width:215.018666pt;}
._1a{width:237.018434pt;}
._14{width:301.910851pt;}
._15{width:332.593085pt;}
._13{width:369.011069pt;}
._8{width:380.694636pt;}
._45{width:550.861892pt;}
._f{width:573.542273pt;}
._b{width:764.732404pt;}
._a{width:785.497757pt;}
._9{width:826.827112pt;}
._10{width:845.805904pt;}
._e{width:967.390383pt;}
._d{width:981.825603pt;}
._c{width:1053.436793pt;}
._48{width:1805.112996pt;}
._25{width:1814.248996pt;}
._7{width:1828.488996pt;}
._3b{width:1831.043662pt;}
._35{width:1888.299065pt;}
._37{width:1926.004215pt;}
._31{width:2042.883947pt;}
._26{width:2089.101649pt;}
._27{width:2178.233319pt;}
._2e{width:2200.923332pt;}
._34{width:2308.564139pt;}
.fs6{font-size:33.240533pt;}
.fs4{font-size:37.151467pt;}
.fs7{font-size:39.106667pt;}
.fs2{font-size:43.995200pt;}
.fs1{font-size:48.883200pt;}
.fs9{font-size:53.133867pt;}
.fs3{font-size:58.659733pt;}
.fs8{font-size:70.392000pt;}
.fs0{font-size:84.470400pt;}
.fs5{font-size:159.402133pt;}
.y0{bottom:0.000000pt;}
.y107{bottom:75.590667pt;}
.y3a{bottom:79.448000pt;}
.yd7{bottom:79.480000pt;}
.y117{bottom:79.518667pt;}
.y106{bottom:91.530667pt;}
.yd6{bottom:92.688000pt;}
.y116{bottom:92.725333pt;}
.y159{bottom:93.677333pt;}
.y39{bottom:98.296000pt;}
.yb3{bottom:105.101333pt;}
.yd5{bottom:105.896000pt;}
.y115{bottom:105.933333pt;}
.y105{bottom:107.470667pt;}
.y17e{bottom:109.060000pt;}
.y158{bottom:109.617333pt;}
.yd4{bottom:119.102667pt;}
.y114{bottom:119.141333pt;}
.y17d{bottom:125.000000pt;}
.y157{bottom:125.557333pt;}
.yb2{bottom:129.010667pt;}
.y104{bottom:131.381333pt;}
.y38{bottom:138.378667pt;}
.y17c{bottom:140.940000pt;}
.ye{bottom:140.945333pt;}
.y156{bottom:141.497333pt;}
.yb1{bottom:144.952000pt;}
.y103{bottom:147.321333pt;}
.y37{bottom:154.318667pt;}
.yd{bottom:156.885333pt;}
.y155{bottom:157.437333pt;}
.y102{bottom:163.261333pt;}
.y17b{bottom:164.850667pt;}
.yb0{bottom:168.861333pt;}
.y36{bottom:170.258667pt;}
.yc{bottom:172.825333pt;}
.y154{bottom:173.378667pt;}
.y101{bottom:179.201333pt;}
.y17a{bottom:180.790667pt;}
.y35{bottom:186.200000pt;}
.yb{bottom:188.766667pt;}
.yaf{bottom:192.772000pt;}
.y100{bottom:195.142667pt;}
.y153{bottom:197.288000pt;}
.y34{bottom:202.140000pt;}
.ya{bottom:203.377333pt;}
.y179{bottom:204.701333pt;}
.yae{bottom:208.712000pt;}
.yff{bottom:211.082667pt;}
.y152{bottom:213.229333pt;}
.y9{bottom:217.989333pt;}
.y33{bottom:218.080000pt;}
.y178{bottom:220.641333pt;}
.y151{bottom:229.169333pt;}
.y8{bottom:232.601333pt;}
.yad{bottom:232.622667pt;}
.yfe{bottom:235.789333pt;}
.y32{bottom:241.990667pt;}
.y177{bottom:244.550667pt;}
.y150{bottom:245.109333pt;}
.yac{bottom:248.562667pt;}
.y31{bottom:257.930667pt;}
.y176{bottom:260.492000pt;}
.y14f{bottom:261.049333pt;}
.yab{bottom:264.502667pt;}
.yfd{bottom:272.661333pt;}
.y30{bottom:273.870667pt;}
.y14e{bottom:276.989333pt;}
.yaa{bottom:280.444000pt;}
.yfc{bottom:288.602667pt;}
.y2f{bottom:289.810667pt;}
.y175{bottom:289.874667pt;}
.y14d{bottom:292.929333pt;}
.ya9{bottom:296.384000pt;}
.yfb{bottom:304.542667pt;}
.y14c{bottom:308.870667pt;}
.ya8{bottom:312.324000pt;}
.yfa{bottom:320.482667pt;}
.y14b{bottom:324.810667pt;}
.ya7{bottom:328.264000pt;}
.y174{bottom:334.241333pt;}
.y14a{bottom:340.750667pt;}
.y173{bottom:350.181333pt;}
.ya6{bottom:352.972000pt;}
.yf9{bottom:363.478667pt;}
.y149{bottom:364.661333pt;}
.y172{bottom:366.122667pt;}
.yf8{bottom:379.418667pt;}
.y148{bottom:380.601333pt;}
.y8f{bottom:383.524000pt;}
.y171{bottom:390.032000pt;}
.ya5{bottom:390.564000pt;}
.y2e{bottom:391.389333pt;}
.yf7{bottom:395.358667pt;}
.y8e{bottom:399.464000pt;}
.y147{bottom:404.512000pt;}
.y170{bottom:405.972000pt;}
.ya4{bottom:406.504000pt;}
.y2d{bottom:407.861333pt;}
.ya3{bottom:422.444000pt;}
.y8d{bottom:424.170667pt;}
.yf6{bottom:425.113333pt;}
.y146{bottom:428.421333pt;}
.y16f{bottom:429.882667pt;}
.yd3{bottom:438.809333pt;}
.yf5{bottom:441.054667pt;}
.y16e{bottom:445.822667pt;}
.ya2{bottom:446.354667pt;}
.yf2{bottom:449.024000pt;}
.y145{bottom:452.332000pt;}
.y7{bottom:454.585333pt;}
.yd2{bottom:454.749333pt;}
.yf4{bottom:456.994667pt;}
.y8c{bottom:461.764000pt;}
.ya1{bottom:462.294667pt;}
.y6{bottom:470.525333pt;}
.yd1{bottom:470.689333pt;}
.yf3{bottom:472.934667pt;}
.y144{bottom:476.242667pt;}
.y8b{bottom:477.704000pt;}
.y16d{bottom:485.673333pt;}
.ya0{bottom:486.205333pt;}
.y5{bottom:486.465333pt;}
.yd0{bottom:486.630667pt;}
.yf1{bottom:489.406667pt;}
.y143{bottom:492.182667pt;}
.y8a{bottom:493.644000pt;}
.y16c{bottom:501.614667pt;}
.y70{bottom:502.145333pt;}
.ycf{bottom:502.570667pt;}
.yef{bottom:505.346667pt;}
.y2c{bottom:509.222667pt;}
.y89{bottom:509.584000pt;}
.y9f{bottom:510.116000pt;}
.y53{bottom:513.941333pt;}
.y142{bottom:516.093333pt;}
.y6f{bottom:518.085333pt;}
.yf0{bottom:521.286667pt;}
.y2b{bottom:525.162667pt;}
.y16b{bottom:525.524000pt;}
.y9e{bottom:526.056000pt;}
.yce{bottom:526.481333pt;}
.y52{bottom:529.881333pt;}
.y88{bottom:533.494667pt;}
.y6e{bottom:534.025333pt;}
.y12f{bottom:535.486667pt;}
.yee{bottom:537.226667pt;}
.y141{bottom:540.004000pt;}
.y2a{bottom:541.102667pt;}
.y16a{bottom:541.464000pt;}
.y9d{bottom:541.996000pt;}
.ycd{bottom:542.421333pt;}
.y51{bottom:545.821333pt;}
.y87{bottom:549.434667pt;}
.y6d{bottom:549.965333pt;}
.y12e{bottom:551.426667pt;}
.ye9{bottom:553.166667pt;}
.y140{bottom:555.944000pt;}
.y29{bottom:557.042667pt;}
.y169{bottom:557.405333pt;}
.ycc{bottom:558.361333pt;}
.y9c{bottom:565.906667pt;}
.y12d{bottom:567.368000pt;}
.yeb{bottom:569.106667pt;}
.y13f{bottom:571.884000pt;}
.y28{bottom:572.982667pt;}
.y86{bottom:573.345333pt;}
.y6c{bottom:573.876000pt;}
.ycb{bottom:574.301333pt;}
.y50{bottom:575.205333pt;}
.y25{bottom:580.953333pt;}
.y9b{bottom:581.846667pt;}
.y12c{bottom:583.308000pt;}
.yed{bottom:585.048000pt;}
.y13e{bottom:587.824000pt;}
.y27{bottom:588.922667pt;}
.y85{bottom:589.285333pt;}
.y6b{bottom:589.816000pt;}
.yca{bottom:590.241333pt;}
.yec{bottom:600.988000pt;}
.y26{bottom:604.864000pt;}
.y84{bottom:605.225333pt;}
.y6a{bottom:605.757333pt;}
.yc9{bottom:606.181333pt;}
.y12b{bottom:607.217333pt;}
.y4{bottom:610.512000pt;}
.y13d{bottom:612.532000pt;}
.yea{bottom:616.928000pt;}
.y4f{bottom:619.572000pt;}
.y24{bottom:621.334667pt;}
.y9a{bottom:621.697333pt;}
.yc8{bottom:622.122667pt;}
.y12a{bottom:623.158667pt;}
.y3{bottom:626.452000pt;}
.y83{bottom:629.136000pt;}
.y69{bottom:629.666667pt;}
.ye8{bottom:633.400000pt;}
.y99{bottom:637.637333pt;}
.yc7{bottom:638.062667pt;}
.y129{bottom:639.098667pt;}
.y2{bottom:642.392000pt;}
.y82{bottom:645.076000pt;}
.y68{bottom:645.608000pt;}
.y4e{bottom:647.201333pt;}
.y23{bottom:648.964000pt;}
.ye7{bottom:649.870667pt;}
.y13c{bottom:650.124000pt;}
.yc6{bottom:654.002667pt;}
.y128{bottom:655.038667pt;}
.y168{bottom:661.016000pt;}
.y67{bottom:661.548000pt;}
.y13b{bottom:666.064000pt;}
.y81{bottom:669.784000pt;}
.y127{bottom:670.978667pt;}
.y4d{bottom:674.830667pt;}
.y22{bottom:676.062667pt;}
.y167{bottom:676.956000pt;}
.y66{bottom:677.488000pt;}
.yc5{bottom:678.709333pt;}
.ye6{bottom:679.669333pt;}
.y13a{bottom:682.004000pt;}
.y98{bottom:685.458667pt;}
.y126{bottom:686.918667pt;}
.y4c{bottom:690.772000pt;}
.y21{bottom:692.002667pt;}
.y166{bottom:692.897333pt;}
.ye5{bottom:695.609333pt;}
.y139{bottom:697.944000pt;}
.y1d{bottom:699.973333pt;}
.y65{bottom:701.398667pt;}
.y4b{bottom:706.712000pt;}
.y80{bottom:707.376000pt;}
.y20{bottom:707.944000pt;}
.y165{bottom:708.837333pt;}
.y97{bottom:709.368000pt;}
.y125{bottom:710.829333pt;}
.ye4{bottom:711.549333pt;}
.y138{bottom:713.884000pt;}
.yc4{bottom:716.302667pt;}
.y1{bottom:716.370667pt;}
.y64{bottom:717.338667pt;}
.y7f{bottom:723.316000pt;}
.y1f{bottom:723.884000pt;}
.y124{bottom:726.769333pt;}
.ye3{bottom:727.489333pt;}
.y137{bottom:729.825333pt;}
.yc3{bottom:732.242667pt;}
.y63{bottom:733.278667pt;}
.y164{bottom:733.544000pt;}
.y4a{bottom:734.341333pt;}
.y7e{bottom:739.256000pt;}
.y1e{bottom:739.824000pt;}
.y123{bottom:742.709333pt;}
.ye2{bottom:743.430667pt;}
.yc2{bottom:748.182667pt;}
.y62{bottom:749.218667pt;}
.y49{bottom:750.281333pt;}
.y136{bottom:753.734667pt;}
.y7d{bottom:755.196000pt;}
.y1c{bottom:756.296000pt;}
.y96{bottom:757.189333pt;}
.y122{bottom:758.650667pt;}
.ye1{bottom:759.370667pt;}
.y163{bottom:763.166667pt;}
.yc1{bottom:764.122667pt;}
.y15d{bottom:765.158667pt;}
.y135{bottom:769.676000pt;}
.y61{bottom:773.129333pt;}
.y121{bottom:774.590667pt;}
.y48{bottom:777.910667pt;}
.y7c{bottom:779.904000pt;}
.y15c{bottom:781.098667pt;}
.y95{bottom:781.100000pt;}
.ye0{bottom:783.281333pt;}
.y134{bottom:785.616000pt;}
.y162{bottom:787.873333pt;}
.yc0{bottom:788.033333pt;}
.y60{bottom:789.069333pt;}
.y47{bottom:793.852000pt;}
.y113{bottom:794.542667pt;}
.y15b{bottom:797.040000pt;}
.y120{bottom:798.501333pt;}
.ydf{bottom:799.221333pt;}
.y133{bottom:801.556000pt;}
.ybf{bottom:803.973333pt;}
.y5f{bottom:805.009333pt;}
.y46{bottom:809.792000pt;}
.y112{bottom:810.482667pt;}
.y11f{bottom:814.441333pt;}
.yde{bottom:815.161333pt;}
.y7b{bottom:817.496000pt;}
.ybe{bottom:819.913333pt;}
.y5e{bottom:820.949333pt;}
.y132{bottom:825.466667pt;}
.y111{bottom:826.422667pt;}
.y94{bottom:828.920000pt;}
.y11e{bottom:830.381333pt;}
.ydd{bottom:831.101333pt;}
.y7a{bottom:833.436000pt;}
.ybd{bottom:835.853333pt;}
.y5d{bottom:836.890667pt;}
.y45{bottom:837.421333pt;}
.y131{bottom:841.406667pt;}
.y110{bottom:842.362667pt;}
.y11d{bottom:846.321333pt;}
.ydc{bottom:847.041333pt;}
.y161{bottom:849.376000pt;}
.ybc{bottom:851.794667pt;}
.y5c{bottom:852.830667pt;}
.y44{bottom:853.361333pt;}
.y79{bottom:857.346667pt;}
.y1b{bottom:857.656000pt;}
.y15a{bottom:860.800000pt;}
.y11c{bottom:862.261333pt;}
.ydb{bottom:862.981333pt;}
.y160{bottom:865.317333pt;}
.y10f{bottom:866.273333pt;}
.ybb{bottom:867.734667pt;}
.y43{bottom:869.301333pt;}
.y78{bottom:873.286667pt;}
.y1a{bottom:873.596000pt;}
.y5b{bottom:876.740000pt;}
.y93{bottom:876.741333pt;}
.y11b{bottom:878.201333pt;}
.yda{bottom:878.922667pt;}
.y15f{bottom:881.257333pt;}
.y10e{bottom:882.213333pt;}
.yba{bottom:883.674667pt;}
.y42{bottom:885.242667pt;}
.y77{bottom:889.226667pt;}
.y19{bottom:890.068000pt;}
.y5a{bottom:892.681333pt;}
.y11a{bottom:894.142667pt;}
.yd9{bottom:894.862667pt;}
.y15e{bottom:897.197333pt;}
.y10d{bottom:898.153333pt;}
.yb9{bottom:899.614667pt;}
.y92{bottom:900.650667pt;}
.y76{bottom:905.168000pt;}
.y18{bottom:906.597333pt;}
.y59{bottom:908.621333pt;}
.y119{bottom:910.082667pt;}
.y41{bottom:912.872000pt;}
.y130{bottom:913.137333pt;}
.y10c{bottom:914.093333pt;}
.yb8{bottom:915.554667pt;}
.yd8{bottom:919.569333pt;}
.y17{bottom:923.126667pt;}
.y58{bottom:924.561333pt;}
.y40{bottom:928.812000pt;}
.y75{bottom:929.077333pt;}
.y10b{bottom:930.034667pt;}
.y118{bottom:934.789333pt;}
.y16{bottom:939.066667pt;}
.yb7{bottom:940.262667pt;}
.y57{bottom:940.501333pt;}
.y3f{bottom:944.752000pt;}
.y74{bottom:945.017333pt;}
.y91{bottom:948.472000pt;}
.y10a{bottom:953.944000pt;}
.y15{bottom:955.006667pt;}
.y56{bottom:956.441333pt;}
.y3e{bottom:960.692000pt;}
.y73{bottom:960.958667pt;}
.y90{bottom:964.412000pt;}
.y109{bottom:969.885333pt;}
.y14{bottom:971.478667pt;}
.y55{bottom:972.382667pt;}
.y3d{bottom:976.633333pt;}
.y72{bottom:976.898667pt;}
.yb6{bottom:977.854667pt;}
.y108{bottom:985.825333pt;}
.y13{bottom:987.418667pt;}
.y54{bottom:988.322667pt;}
.y71{bottom:1001.605333pt;}
.yb5{bottom:1001.765333pt;}
.y12{bottom:1003.358667pt;}
.y3c{bottom:1004.262667pt;}
.yb4{bottom:1017.705333pt;}
.y11{bottom:1019.300000pt;}
.y3b{bottom:1033.645333pt;}
.y10{bottom:1035.770667pt;}
.yf{bottom:1084.920000pt;}
.hc{height:29.599270pt;}
.h5{height:32.644438pt;}
.h4{height:36.271334pt;}
.ha{height:36.273662pt;}
.he{height:36.928037pt;}
.h6{height:39.175840pt;}
.h7{height:43.525522pt;}
.h3{height:43.528395pt;}
.h9{height:46.858824pt;}
.hd{height:52.230864pt;}
.h8{height:52.367122pt;}
.hf{height:52.372456pt;}
.h2{height:62.677037pt;}
.hb{height:111.581493pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:75.590667pt;}
.x1b{left:87.350667pt;}
.x17{left:89.669333pt;}
.x10{left:90.793333pt;}
.x1c{left:93.125333pt;}
.x12{left:96.997333pt;}
.x16{left:101.020000pt;}
.xc{left:102.444000pt;}
.x1e{left:103.478667pt;}
.x11{left:106.010667pt;}
.x1f{left:108.800000pt;}
.xf{left:112.997333pt;}
.xe{left:117.520000pt;}
.x1d{left:120.010667pt;}
.xb{left:126.792000pt;}
.xd{left:129.608000pt;}
.x1{left:136.794667pt;}
.xa{left:138.096000pt;}
.x19{left:152.214667pt;}
.x15{left:168.148000pt;}
.x22{left:250.738667pt;}
.x13{left:268.261333pt;}
.x9{left:272.906667pt;}
.x21{left:284.026667pt;}
.x14{left:288.712000pt;}
.x6{left:301.381333pt;}
.x23{left:310.938667pt;}
.x2{left:322.057333pt;}
.x18{left:325.621333pt;}
.x3{left:328.646667pt;}
.x4{left:333.561333pt;}
.x7{left:336.132000pt;}
.x1a{left:358.992000pt;}
.x24{left:361.948000pt;}
.x5{left:364.830667pt;}
.x20{left:474.837333pt;}
}




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