
    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_457cc852b03c9f2a172e1f56.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.929000;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_a65bca7785aacdf9e116557d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.941000;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_6bbd0a476aeedafbe9b75e67.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893555;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_2905b557ee6597b94cbc2621.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893066;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_47165c106d98941f1ed0a4d5.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.093262;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_7d581cfc6c4a3717f71143f7.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.034000;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_caf1b93199c7dd20bed7773b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.988000;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:ff8;src:url('chunks/assets/font_e0fd053b6c52c8489fe895d3.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.951000;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:ff9;src:url('chunks/assets/font_324902bb05affd3a5f4057ab.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.911000;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:ffa;src:url('chunks/assets/font_aa27f71a8b7143793d41b226.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.925293;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:ffb;src:url('chunks/assets/font_e11256d5666c2b63d918e449.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.913574;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:ffc;src:url('chunks/assets/font_dc21c7e083678ce37e6de0f9.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.869629;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:ffd;src:url('chunks/assets/font_47abd3504c03fd716d5a4a7e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.718750;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:ffe;src:url('chunks/assets/font_44e53533a14bb7cdbe1a1fab.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.873000;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:fff;src:url('chunks/assets/font_d396775f75cd8a8db624f77a.woff2')format("woff");}.fff{font-family:fff;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_d194ca8b191d17ccd34e8048.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_e63231471d0afd190187d67d.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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:-15.984000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.976000px;}
.ls15{letter-spacing:-0.900000px;}
.lsf{letter-spacing:-0.675000px;}
.ls13{letter-spacing:-0.600000px;}
.lse{letter-spacing:-0.540000px;}
.lsd{letter-spacing:-0.462000px;}
.ls8{letter-spacing:-0.330000px;}
.ls14{letter-spacing:-0.300000px;}
.ls1{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.132000px;}
.lsa{letter-spacing:0.198000px;}
.lsb{letter-spacing:0.270000px;}
.ls0{letter-spacing:0.540000px;}
.ls10{letter-spacing:0.600000px;}
.ls9{letter-spacing:0.660000px;}
.ls12{letter-spacing:0.900000px;}
.ls11{letter-spacing:3.420000px;}
.ls3{letter-spacing:4.806000px;}
.ls2{letter-spacing:4.812000px;}
.ls5{letter-spacing:6.006000px;}
.ls4{letter-spacing:6.012000px;}
.ls6{letter-spacing:19.800000px;}
.lsc{letter-spacing:2558.574000px;}
.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;}
}
.ws5c{word-spacing:-2558.574000px;}
.wsb{word-spacing:-16.632000px;}
.wsa{word-spacing:-16.500000px;}
.ws9{word-spacing:-16.170000px;}
.wsa0{word-spacing:-15.900000px;}
.ws9e{word-spacing:-15.600000px;}
.ws7{word-spacing:-15.174000px;}
.wsa1{word-spacing:-15.000000px;}
.wsa2{word-spacing:-14.700000px;}
.ws8{word-spacing:-14.634000px;}
.ws9f{word-spacing:-14.400000px;}
.wsed{word-spacing:-14.100000px;}
.ws0{word-spacing:-13.344000px;}
.ws9c{word-spacing:-12.195000px;}
.ws6{word-spacing:-11.676000px;}
.ws1{word-spacing:-10.494000px;}
.ws2{word-spacing:-7.583664px;}
.ws46{word-spacing:-5.280000px;}
.ws98{word-spacing:-5.184000px;}
.ws91{word-spacing:-4.950000px;}
.ws74{word-spacing:-4.488000px;}
.wscc{word-spacing:-4.260000px;}
.ws5e{word-spacing:-4.026000px;}
.ws4{word-spacing:-3.960000px;}
.ws89{word-spacing:-3.696000px;}
.wsfa{word-spacing:-3.660000px;}
.wsa9{word-spacing:-3.600000px;}
.ws8e{word-spacing:-3.564000px;}
.wsa7{word-spacing:-3.420000px;}
.ws62{word-spacing:-3.300000px;}
.ws84{word-spacing:-3.234000px;}
.ws43{word-spacing:-3.036000px;}
.ws97{word-spacing:-3.024000px;}
.wsac{word-spacing:-2.940000px;}
.ws30{word-spacing:-2.904000px;}
.ws31{word-spacing:-2.838000px;}
.wsb1{word-spacing:-2.580000px;}
.wsbd{word-spacing:-2.520000px;}
.wscf{word-spacing:-2.340000px;}
.ws2b{word-spacing:-2.244000px;}
.wsc5{word-spacing:-2.220000px;}
.ws13{word-spacing:-2.112000px;}
.ws90{word-spacing:-2.046000px;}
.ws19{word-spacing:-1.980000px;}
.wsad{word-spacing:-1.920000px;}
.wsbb{word-spacing:-1.740000px;}
.wsd3{word-spacing:-1.620000px;}
.ws87{word-spacing:-1.584000px;}
.ws38{word-spacing:-1.518000px;}
.ws82{word-spacing:-1.386000px;}
.wsc3{word-spacing:-1.380000px;}
.wsb4{word-spacing:-1.200000px;}
.ws68{word-spacing:-1.188000px;}
.wsca{word-spacing:-1.080000px;}
.wsef{word-spacing:-1.020000px;}
.wsd8{word-spacing:-0.960000px;}
.wsf5{word-spacing:-0.900000px;}
.wsc2{word-spacing:-0.840000px;}
.wsa4{word-spacing:-0.660000px;}
.wsb7{word-spacing:-0.600000px;}
.ws5{word-spacing:-0.540000px;}
.ws6c{word-spacing:-0.462000px;}
.ws2f{word-spacing:-0.396000px;}
.ws3b{word-spacing:-0.330000px;}
.ws78{word-spacing:-0.270000px;}
.ws4b{word-spacing:-0.264000px;}
.wsdf{word-spacing:-0.180000px;}
.ws50{word-spacing:-0.132000px;}
.ws49{word-spacing:-0.066000px;}
.wse{word-spacing:-0.006000px;}
.ws3{word-spacing:0.000000px;}
.wsdc{word-spacing:0.240000px;}
.ws88{word-spacing:0.264000px;}
.wsb9{word-spacing:0.300000px;}
.ws93{word-spacing:0.324000px;}
.ws24{word-spacing:0.330000px;}
.ws86{word-spacing:0.396000px;}
.wsc{word-spacing:0.534000px;}
.ws77{word-spacing:0.540000px;}
.wsc8{word-spacing:0.600000px;}
.ws9d{word-spacing:0.675000px;}
.wsd{word-spacing:0.684000px;}
.ws2e{word-spacing:0.726000px;}
.wsd6{word-spacing:0.780000px;}
.ws1f{word-spacing:0.792000px;}
.wsfb{word-spacing:0.840000px;}
.ws34{word-spacing:0.990000px;}
.ws36{word-spacing:1.056000px;}
.wsf8{word-spacing:1.260000px;}
.ws75{word-spacing:1.320000px;}
.wscb{word-spacing:1.380000px;}
.ws4c{word-spacing:1.386000px;}
.wsee{word-spacing:1.560000px;}
.ws85{word-spacing:1.848000px;}
.wsc6{word-spacing:1.860000px;}
.wsc9{word-spacing:1.920000px;}
.wsaa{word-spacing:1.980000px;}
.wsd1{word-spacing:2.040000px;}
.ws64{word-spacing:2.046000px;}
.ws81{word-spacing:2.178000px;}
.ws72{word-spacing:2.244000px;}
.wse6{word-spacing:2.280000px;}
.wsc0{word-spacing:2.400000px;}
.ws8d{word-spacing:2.508000px;}
.ws83{word-spacing:2.574000px;}
.ws61{word-spacing:2.640000px;}
.wsd0{word-spacing:2.760000px;}
.wsdd{word-spacing:2.820000px;}
.wsa6{word-spacing:2.880000px;}
.ws27{word-spacing:2.904000px;}
.wsf4{word-spacing:2.940000px;}
.ws44{word-spacing:3.102000px;}
.wsd2{word-spacing:3.120000px;}
.ws8b{word-spacing:3.168000px;}
.ws37{word-spacing:3.234000px;}
.ws26{word-spacing:3.498000px;}
.wsa3{word-spacing:3.720000px;}
.wse5{word-spacing:3.780000px;}
.ws8c{word-spacing:3.894000px;}
.ws48{word-spacing:3.960000px;}
.ws8a{word-spacing:4.092000px;}
.wsd5{word-spacing:4.140000px;}
.ws71{word-spacing:4.158000px;}
.ws8f{word-spacing:4.224000px;}
.ws96{word-spacing:4.320000px;}
.ws6b{word-spacing:4.356000px;}
.wsf6{word-spacing:4.440000px;}
.ws35{word-spacing:4.488000px;}
.ws99{word-spacing:4.590000px;}
.ws95{word-spacing:4.644000px;}
.wscd{word-spacing:4.680000px;}
.ws47{word-spacing:4.686000px;}
.ws32{word-spacing:4.752000px;}
.ws7a{word-spacing:4.818000px;}
.wsc4{word-spacing:4.860000px;}
.ws5a{word-spacing:4.884000px;}
.wsc1{word-spacing:4.980000px;}
.ws1b{word-spacing:5.214000px;}
.wsf7{word-spacing:5.220000px;}
.ws29{word-spacing:5.544000px;}
.wsbe{word-spacing:5.760000px;}
.ws18{word-spacing:5.808000px;}
.wse3{word-spacing:5.880000px;}
.wsaf{word-spacing:6.060000px;}
.ws66{word-spacing:6.072000px;}
.wsfd{word-spacing:6.180000px;}
.ws94{word-spacing:6.210000px;}
.wsa5{word-spacing:6.240000px;}
.ws53{word-spacing:6.336000px;}
.ws17{word-spacing:6.402000px;}
.wsb5{word-spacing:6.480000px;}
.wsde{word-spacing:6.600000px;}
.ws39{word-spacing:6.666000px;}
.ws7e{word-spacing:6.732000px;}
.ws15{word-spacing:6.798000px;}
.wse1{word-spacing:6.900000px;}
.wsb0{word-spacing:6.960000px;}
.ws63{word-spacing:6.996000px;}
.ws10{word-spacing:7.008000px;}
.ws33{word-spacing:7.128000px;}
.ws58{word-spacing:7.194000px;}
.wsba{word-spacing:7.200000px;}
.ws92{word-spacing:7.260000px;}
.wsd9{word-spacing:7.320000px;}
.ws5f{word-spacing:7.392000px;}
.wsf{word-spacing:7.536000px;}
.ws54{word-spacing:7.590000px;}
.ws22{word-spacing:7.656000px;}
.wsb3{word-spacing:7.800000px;}
.ws79{word-spacing:7.854000px;}
.ws25{word-spacing:7.920000px;}
.wse9{word-spacing:7.980000px;}
.ws7d{word-spacing:7.986000px;}
.ws55{word-spacing:8.184000px;}
.ws60{word-spacing:8.316000px;}
.wsc7{word-spacing:8.340000px;}
.ws3e{word-spacing:8.382000px;}
.ws1e{word-spacing:8.580000px;}
.wsfc{word-spacing:8.640000px;}
.ws59{word-spacing:8.646000px;}
.wsd7{word-spacing:8.700000px;}
.ws28{word-spacing:8.778000px;}
.ws12{word-spacing:8.844000px;}
.ws1d{word-spacing:8.910000px;}
.ws1c{word-spacing:9.108000px;}
.wsb2{word-spacing:9.240000px;}
.wsbc{word-spacing:9.300000px;}
.ws6d{word-spacing:9.372000px;}
.ws51{word-spacing:10.098000px;}
.ws3f{word-spacing:10.296000px;}
.ws5d{word-spacing:10.824000px;}
.wsa8{word-spacing:10.860000px;}
.ws21{word-spacing:10.956000px;}
.ws3d{word-spacing:11.022000px;}
.wse4{word-spacing:11.280000px;}
.wse2{word-spacing:11.340000px;}
.ws2d{word-spacing:11.352000px;}
.ws23{word-spacing:11.484000px;}
.wsf2{word-spacing:11.520000px;}
.ws3c{word-spacing:11.550000px;}
.wsd4{word-spacing:11.580000px;}
.ws2c{word-spacing:11.682000px;}
.wsb8{word-spacing:11.700000px;}
.ws7c{word-spacing:11.748000px;}
.ws4a{word-spacing:11.814000px;}
.ws5b{word-spacing:11.880000px;}
.wsab{word-spacing:12.120000px;}
.ws76{word-spacing:12.342000px;}
.ws2a{word-spacing:12.672000px;}
.wsf1{word-spacing:12.720000px;}
.wsbf{word-spacing:12.840000px;}
.wsce{word-spacing:13.020000px;}
.ws67{word-spacing:13.200000px;}
.ws42{word-spacing:13.398000px;}
.ws56{word-spacing:13.728000px;}
.wsae{word-spacing:13.980000px;}
.wsff{word-spacing:14.040000px;}
.ws45{word-spacing:14.388000px;}
.ws80{word-spacing:14.982000px;}
.ws14{word-spacing:15.642000px;}
.wsf0{word-spacing:15.780000px;}
.ws1a{word-spacing:15.840000px;}
.ws65{word-spacing:16.038000px;}
.wsea{word-spacing:16.380000px;}
.wseb{word-spacing:16.740000px;}
.wse0{word-spacing:17.640000px;}
.ws69{word-spacing:17.754000px;}
.ws7b{word-spacing:17.820000px;}
.ws6a{word-spacing:17.952000px;}
.ws4f{word-spacing:18.150000px;}
.ws16{word-spacing:18.414000px;}
.ws41{word-spacing:18.876000px;}
.wsdb{word-spacing:19.260000px;}
.ws40{word-spacing:19.338000px;}
.ws57{word-spacing:19.536000px;}
.ws4d{word-spacing:19.800000px;}
.ws3a{word-spacing:20.196000px;}
.ws11{word-spacing:20.394000px;}
.wse8{word-spacing:20.400000px;}
.wsda{word-spacing:22.560000px;}
.ws6e{word-spacing:22.704000px;}
.wsec{word-spacing:22.920000px;}
.ws73{word-spacing:23.298000px;}
.ws20{word-spacing:23.430000px;}
.wsf3{word-spacing:23.700000px;}
.ws6f{word-spacing:26.466000px;}
.ws52{word-spacing:28.050000px;}
.wsfe{word-spacing:28.920000px;}
.wse7{word-spacing:28.980000px;}
.wsb6{word-spacing:30.360000px;}
.ws4e{word-spacing:31.350000px;}
.ws7f{word-spacing:34.914000px;}
.ws70{word-spacing:37.224000px;}
.ws9b{word-spacing:177.570000px;}
.ws9a{word-spacing:318.645000px;}
.wsf9{word-spacing:2558.569200px;}
._e{margin-left:-34.848000px;}
._3d{margin-left:-31.801800px;}
._f{margin-left:-26.724600px;}
._3c{margin-left:-21.900000px;}
._3e{margin-left:-15.000000px;}
._12{margin-left:-13.500000px;}
._10{margin-left:-8.778000px;}
._1{margin-left:-7.176000px;}
._d{margin-left:-5.916000px;}
._a{margin-left:-4.488000px;}
._3{margin-left:-2.646000px;}
._0{margin-left:-1.344000px;}
._7{width:1.044000px;}
._4{width:2.088000px;}
._2{width:3.888000px;}
._6{width:5.292000px;}
._5{width:6.588000px;}
._8{width:7.992000px;}
._3b{width:10.500000px;}
._c{width:11.748000px;}
._11{width:13.332000px;}
._b{width:19.912200px;}
._2c{width:40.815000px;}
._37{width:41.973000px;}
._15{width:43.131600px;}
._32{width:44.190000px;}
._1b{width:51.705000px;}
._17{width:53.775000px;}
._39{width:60.300000px;}
._23{width:61.425000px;}
._19{width:70.785000px;}
._33{width:72.090000px;}
._16{width:77.940000px;}
._22{width:107.370000px;}
._2e{width:116.595000px;}
._2d{width:154.260000px;}
._2f{width:160.605000px;}
._18{width:187.200000px;}
._24{width:209.520000px;}
._27{width:213.435000px;}
._31{width:250.965000px;}
._3a{width:261.900000px;}
._34{width:279.135000px;}
._1c{width:287.820000px;}
._25{width:314.055000px;}
._26{width:336.600000px;}
._2a{width:719.100000px;}
._13{width:725.130000px;}
._36{width:834.030000px;}
._28{width:840.555000px;}
._1a{width:852.795000px;}
._30{width:931.590000px;}
._14{width:937.215000px;}
._21{width:1157.040000px;}
._38{width:1167.345000px;}
._1e{width:1204.830000px;}
._35{width:1609.695000px;}
._20{width:1610.730000px;}
._29{width:1685.700000px;}
._1d{width:1728.495000px;}
._2b{width:1824.390000px;}
._1f{width:1826.325000px;}
._9{width:2558.574000px;}
.fc1{color:rgb(36,70,135);}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:27.984000px;}
.fs3{font-size:41.976000px;}
.fs6{font-size:42.000000px;}
.fs8{font-size:45.000000px;}
.fs0{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs9{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:78.000000px;}
.y0{bottom:0.000000px;}
.y94{bottom:68.371800px;}
.y33{bottom:68.373450px;}
.yf8{bottom:110.799300px;}
.y10a{bottom:110.800050px;}
.y106{bottom:110.802900px;}
.yfb{bottom:110.806200px;}
.y10b{bottom:110.811300px;}
.yff{bottom:110.817450px;}
.y10c{bottom:110.822550px;}
.y103{bottom:110.828700px;}
.y10d{bottom:110.833800px;}
.y104{bottom:110.839950px;}
.y10e{bottom:110.845050px;}
.y105{bottom:110.851200px;}
.y10f{bottom:110.856300px;}
.y110{bottom:110.867550px;}
.y111{bottom:110.878800px;}
.yf7{bottom:114.399300px;}
.y188{bottom:117.380250px;}
.y14c{bottom:117.870750px;}
.y30{bottom:120.288150px;}
.y187{bottom:133.880250px;}
.y14b{bottom:134.370750px;}
.yc8{bottom:134.397600px;}
.y2f{bottom:135.286650px;}
.y93{bottom:135.405150px;}
.y69{bottom:135.414150px;}
.yc7{bottom:149.397600px;}
.y2e{bottom:150.285150px;}
.y186{bottom:150.380250px;}
.y92{bottom:153.406650px;}
.y68{bottom:153.415650px;}
.y14a{bottom:155.115750px;}
.yc6{bottom:164.402100px;}
.y2d{bottom:165.283650px;}
.y185{bottom:166.880250px;}
.y67{bottom:171.391650px;}
.y91{bottom:171.408150px;}
.y149{bottom:171.615750px;}
.yc5{bottom:179.400600px;}
.y2c{bottom:180.282150px;}
.y184{bottom:183.380250px;}
.ydf{bottom:184.598550px;}
.yf3{bottom:184.774200px;}
.y148{bottom:188.115750px;}
.y66{bottom:189.393150px;}
.y90{bottom:189.409650px;}
.y2b{bottom:195.280650px;}
.yf2{bottom:200.972550px;}
.yde{bottom:202.600050px;}
.yc4{bottom:202.647600px;}
.y183{bottom:204.125250px;}
.y147{bottom:204.615750px;}
.y65{bottom:207.394650px;}
.y8f{bottom:207.411150px;}
.y2a{bottom:210.279150px;}
.yf1{bottom:217.172550px;}
.yc3{bottom:217.647600px;}
.ydd{bottom:220.601550px;}
.y182{bottom:220.625250px;}
.y146{bottom:221.115750px;}
.y29{bottom:225.277650px;}
.y64{bottom:225.396150px;}
.y8e{bottom:225.412650px;}
.yc2{bottom:232.647600px;}
.yf0{bottom:233.372550px;}
.y181{bottom:237.125250px;}
.ydc{bottom:238.603050px;}
.y28{bottom:240.276150px;}
.y145{bottom:241.860750px;}
.y63{bottom:243.397650px;}
.y8d{bottom:243.414150px;}
.yef{bottom:249.572550px;}
.y180{bottom:253.625250px;}
.y27{bottom:255.274650px;}
.ydb{bottom:256.604550px;}
.y144{bottom:258.360750px;}
.y62{bottom:261.399150px;}
.y8c{bottom:261.415650px;}
.yee{bottom:265.772550px;}
.y17f{bottom:270.125250px;}
.y26{bottom:270.273150px;}
.yda{bottom:274.606050px;}
.y143{bottom:274.860750px;}
.y61{bottom:279.400650px;}
.y8b{bottom:279.414150px;}
.yed{bottom:281.972550px;}
.y25{bottom:285.271650px;}
.y17e{bottom:290.870250px;}
.yd9{bottom:292.607550px;}
.y142{bottom:295.605750px;}
.y60{bottom:297.402150px;}
.y8a{bottom:297.415650px;}
.yec{bottom:298.172550px;}
.y17d{bottom:307.370250px;}
.yd8{bottom:310.609050px;}
.y141{bottom:312.105750px;}
.y5f{bottom:315.403650px;}
.y89{bottom:315.414150px;}
.y24{bottom:317.280150px;}
.y17c{bottom:323.870250px;}
.yeb{bottom:327.130050px;}
.y140{bottom:328.605750px;}
.yd7{bottom:328.610550px;}
.y23{bottom:332.298600px;}
.y5e{bottom:333.405150px;}
.y88{bottom:333.415650px;}
.y107{bottom:334.014150px;}
.yfc{bottom:334.017450px;}
.y100{bottom:334.028700px;}
.y17b{bottom:340.370250px;}
.y13f{bottom:345.105750px;}
.yd6{bottom:346.612050px;}
.y5d{bottom:351.406650px;}
.y87{bottom:351.417150px;}
.y22{bottom:360.054600px;}
.y17a{bottom:361.115250px;}
.y13e{bottom:361.605750px;}
.yd5{bottom:364.613550px;}
.y86{bottom:369.396150px;}
.y5c{bottom:369.408150px;}
.y179{bottom:377.615250px;}
.y13d{bottom:378.105750px;}
.yea{bottom:379.622550px;}
.yd4{bottom:382.615050px;}
.y85{bottom:387.397650px;}
.y5b{bottom:387.409650px;}
.y178{bottom:394.115250px;}
.y13c{bottom:394.605750px;}
.ye9{bottom:397.624050px;}
.yd3{bottom:400.616550px;}
.y84{bottom:405.399150px;}
.y5a{bottom:405.411150px;}
.y21{bottom:407.817600px;}
.y177{bottom:410.622300px;}
.y13b{bottom:411.105750px;}
.ye8{bottom:415.625550px;}
.yd2{bottom:418.618050px;}
.y83{bottom:423.400650px;}
.y59{bottom:423.412650px;}
.y13a{bottom:427.605750px;}
.y176{bottom:431.367300px;}
.y20{bottom:431.820600px;}
.ye7{bottom:433.627050px;}
.yd1{bottom:436.619550px;}
.y82{bottom:441.402150px;}
.y58{bottom:441.414150px;}
.y139{bottom:444.105750px;}
.y1f{bottom:446.819100px;}
.y175{bottom:447.867300px;}
.ye6{bottom:451.628550px;}
.yd0{bottom:454.621050px;}
.y81{bottom:459.403650px;}
.y57{bottom:459.415650px;}
.y138{bottom:460.605750px;}
.y1e{bottom:461.817600px;}
.y174{bottom:464.367300px;}
.ye5{bottom:469.630050px;}
.ycf{bottom:472.622550px;}
.y1d{bottom:476.816100px;}
.y137{bottom:477.105750px;}
.y56{bottom:477.394650px;}
.y80{bottom:477.405150px;}
.y173{bottom:480.888150px;}
.ye4{bottom:487.621050px;}
.yce{bottom:490.624050px;}
.y1c{bottom:491.814600px;}
.y136{bottom:493.605750px;}
.y55{bottom:495.396150px;}
.y7f{bottom:495.406650px;}
.y172{bottom:501.633150px;}
.ye3{bottom:505.622550px;}
.y1b{bottom:506.813100px;}
.ycd{bottom:508.625550px;}
.y135{bottom:510.105750px;}
.y54{bottom:513.397650px;}
.y7e{bottom:513.408150px;}
.y171{bottom:518.133150px;}
.y1a{bottom:521.811600px;}
.ye2{bottom:523.624050px;}
.y134{bottom:526.605750px;}
.ycc{bottom:526.627050px;}
.y53{bottom:531.399150px;}
.y7d{bottom:531.409650px;}
.y170{bottom:534.633150px;}
.y19{bottom:536.810100px;}
.ye1{bottom:541.625550px;}
.y133{bottom:543.105750px;}
.y52{bottom:549.400650px;}
.y7c{bottom:549.411150px;}
.y16f{bottom:551.133150px;}
.y18{bottom:551.808600px;}
.ycb{bottom:559.627050px;}
.y132{bottom:563.850750px;}
.y17{bottom:566.807100px;}
.y51{bottom:567.402150px;}
.y7b{bottom:567.412650px;}
.y16e{bottom:571.878150px;}
.yca{bottom:577.628550px;}
.y131{bottom:580.399500px;}
.y16{bottom:581.805600px;}
.y50{bottom:585.403650px;}
.y7a{bottom:585.414150px;}
.yf9{bottom:586.134300px;}
.y16d{bottom:588.378150px;}
.ye0{bottom:595.597050px;}
.yc9{bottom:595.630050px;}
.y15{bottom:596.804100px;}
.y130{bottom:596.899500px;}
.y4f{bottom:603.405150px;}
.y79{bottom:603.415650px;}
.y16c{bottom:604.878150px;}
.y14{bottom:611.802600px;}
.y12f{bottom:613.399500px;}
.y16b{bottom:621.378150px;}
.y4e{bottom:621.406650px;}
.y78{bottom:621.411150px;}
.y13{bottom:626.801100px;}
.y12e{bottom:634.144500px;}
.y4d{bottom:639.408150px;}
.y77{bottom:639.412650px;}
.y12{bottom:641.799600px;}
.y16a{bottom:642.123150px;}
.yfa{bottom:646.051800px;}
.y12d{bottom:650.644500px;}
.y4c{bottom:657.409650px;}
.y76{bottom:657.414150px;}
.y169{bottom:658.623150px;}
.y11{bottom:669.555600px;}
.y12c{bottom:671.389500px;}
.y168{bottom:675.123150px;}
.y4b{bottom:675.411150px;}
.y75{bottom:675.415650px;}
.yf6{bottom:687.515400px;}
.y12b{bottom:687.889500px;}
.y167{bottom:691.623150px;}
.y74{bottom:693.394650px;}
.y4a{bottom:693.412650px;}
.yf5{bottom:702.513900px;}
.y12a{bottom:704.389500px;}
.y166{bottom:708.123150px;}
.y73{bottom:711.396150px;}
.y49{bottom:711.414150px;}
.y108{bottom:717.613800px;}
.yfd{bottom:717.631200px;}
.y101{bottom:717.642450px;}
.y129{bottom:720.889500px;}
.yf4{bottom:725.760900px;}
.y165{bottom:728.882100px;}
.y72{bottom:729.397650px;}
.y48{bottom:729.415650px;}
.y128{bottom:741.634500px;}
.y10{bottom:743.826600px;}
.y164{bottom:745.382100px;}
.y71{bottom:747.399150px;}
.y47{bottom:747.409650px;}
.yc1{bottom:749.078850px;}
.yab{bottom:749.090550px;}
.y127{bottom:758.134500px;}
.y70{bottom:765.400650px;}
.y46{bottom:765.411150px;}
.yf{bottom:765.570600px;}
.y163{bottom:766.127100px;}
.yc0{bottom:767.078850px;}
.yaa{bottom:767.092050px;}
.y126{bottom:774.634500px;}
.y162{bottom:782.634150px;}
.ye{bottom:783.066600px;}
.y6f{bottom:783.402150px;}
.y45{bottom:783.412650px;}
.ybf{bottom:785.077350px;}
.ya9{bottom:785.093550px;}
.y125{bottom:795.379500px;}
.y161{bottom:799.134150px;}
.yd{bottom:800.820600px;}
.y6e{bottom:801.403650px;}
.y44{bottom:801.414150px;}
.ybe{bottom:803.078850px;}
.ya8{bottom:803.095050px;}
.y124{bottom:811.879500px;}
.yc{bottom:814.326600px;}
.y6d{bottom:819.405150px;}
.y43{bottom:819.415650px;}
.y160{bottom:819.879150px;}
.ybd{bottom:821.078850px;}
.ya7{bottom:821.090550px;}
.y123{bottom:832.624500px;}
.y15f{bottom:836.379150px;}
.y6c{bottom:837.406650px;}
.y42{bottom:837.414150px;}
.ybc{bottom:839.075850px;}
.ya6{bottom:839.092050px;}
.yb{bottom:840.066600px;}
.y122{bottom:849.124500px;}
.y15e{bottom:852.879150px;}
.y6b{bottom:855.408150px;}
.y41{bottom:855.415650px;}
.ybb{bottom:857.077350px;}
.ya5{bottom:857.093550px;}
.ya{bottom:857.820600px;}
.y121{bottom:865.624500px;}
.y15d{bottom:869.379150px;}
.y9{bottom:871.320600px;}
.y6a{bottom:873.409650px;}
.y40{bottom:873.417150px;}
.yba{bottom:875.078850px;}
.ya4{bottom:875.095050px;}
.y120{bottom:882.124500px;}
.y15c{bottom:885.879150px;}
.yb9{bottom:893.075850px;}
.ya3{bottom:893.092050px;}
.y15b{bottom:902.379150px;}
.y11f{bottom:902.869500px;}
.y8{bottom:908.207100px;}
.yb8{bottom:911.077350px;}
.ya2{bottom:911.093550px;}
.y3f{bottom:911.133900px;}
.y15a{bottom:918.879150px;}
.y11e{bottom:919.369500px;}
.y3e{bottom:924.501900px;}
.yb7{bottom:929.078850px;}
.ya1{bottom:929.095050px;}
.y11d{bottom:935.869500px;}
.y159{bottom:939.631050px;}
.yb6{bottom:947.078850px;}
.ya0{bottom:947.095050px;}
.y11c{bottom:952.369500px;}
.y158{bottom:956.131050px;}
.y3d{bottom:959.001900px;}
.yb5{bottom:965.077350px;}
.y9f{bottom:965.095050px;}
.y3c{bottom:972.525900px;}
.y157{bottom:972.675750px;}
.y11b{bottom:973.114500px;}
.yb4{bottom:983.078850px;}
.y9e{bottom:983.095050px;}
.y3b{bottom:985.917900px;}
.y7{bottom:986.207100px;}
.y156{bottom:989.175750px;}
.y11a{bottom:989.614500px;}
.y109{bottom:991.753800px;}
.yfe{bottom:991.771200px;}
.y102{bottom:991.782450px;}
.yb3{bottom:1001.078850px;}
.y9d{bottom:1001.084550px;}
.y119{bottom:1006.114500px;}
.y155{bottom:1009.920750px;}
.y3a{bottom:1011.417900px;}
.y6{bottom:1011.701100px;}
.yb2{bottom:1019.077350px;}
.y9c{bottom:1019.086050px;}
.y118{bottom:1022.615400px;}
.y154{bottom:1026.420750px;}
.yb1{bottom:1037.078850px;}
.y9b{bottom:1037.087550px;}
.y5{bottom:1037.207100px;}
.y153{bottom:1042.920750px;}
.y117{bottom:1043.360400px;}
.yb0{bottom:1055.078850px;}
.y9a{bottom:1055.089050px;}
.y18f{bottom:1059.383100px;}
.y18e{bottom:1059.390000px;}
.y152{bottom:1059.420750px;}
.y116{bottom:1059.860400px;}
.y39{bottom:1062.180900px;}
.y99{bottom:1073.090550px;}
.y18d{bottom:1075.890000px;}
.y115{bottom:1076.360400px;}
.y31{bottom:1079.584200px;}
.y151{bottom:1080.165750px;}
.y38{bottom:1086.180900px;}
.yaf{bottom:1091.069550px;}
.y98{bottom:1091.092050px;}
.y114{bottom:1092.860400px;}
.y18c{bottom:1096.635000px;}
.y150{bottom:1096.665750px;}
.y37{bottom:1101.180900px;}
.yae{bottom:1109.071050px;}
.y97{bottom:1109.093550px;}
.y113{bottom:1109.360400px;}
.y18b{bottom:1113.135000px;}
.y14f{bottom:1113.165750px;}
.y36{bottom:1116.180900px;}
.yad{bottom:1127.072550px;}
.y96{bottom:1127.095050px;}
.y18a{bottom:1129.635000px;}
.y14e{bottom:1129.665750px;}
.y35{bottom:1131.180900px;}
.y112{bottom:1145.000400px;}
.yac{bottom:1145.074050px;}
.y95{bottom:1145.095050px;}
.y189{bottom:1146.135000px;}
.y14d{bottom:1146.165750px;}
.y34{bottom:1146.181500px;}
.y4{bottom:1166.131050px;}
.y3{bottom:1179.631050px;}
.y32{bottom:1188.850350px;}
.y2{bottom:1193.131050px;}
.y1{bottom:1206.631050px;}
.h6{height:22.464000px;}
.h9{height:30.702000px;}
.ha{height:34.945312px;}
.h2{height:35.088000px;}
.h16{height:36.045000px;}
.h14{height:38.124000px;}
.h5{height:38.448000px;}
.h19{height:41.660156px;}
.h7{height:43.254000px;}
.h15{height:47.381836px;}
.h17{height:48.060000px;}
.h1a{height:52.467684px;}
.h18{height:52.646484px;}
.h3{height:52.863281px;}
.hb{height:57.911133px;}
.hc{height:57.923133px;}
.h11{height:57.929133px;}
.h10{height:57.935133px;}
.hd{height:57.941133px;}
.h13{height:57.947133px;}
.he{height:58.001133px;}
.hf{height:58.013133px;}
.h12{height:58.043133px;}
.h8{height:62.478000px;}
.h4{height:63.175781px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x16{left:72.283500px;}
.x11{left:89.291400px;}
.x31{left:93.538500px;}
.x13{left:105.791250px;}
.x2f{left:110.546250px;}
.x1a{left:116.291250px;}
.xe{left:119.055150px;}
.x12{left:136.063500px;}
.xf{left:138.549150px;}
.x9{left:148.771050px;}
.xb{left:150.873150px;}
.x8{left:179.007300px;}
.x6{left:219.121050px;}
.xa{left:228.015750px;}
.x5{left:229.222050px;}
.xc{left:235.137600px;}
.x1b{left:265.027350px;}
.x7{left:285.703500px;}
.xd{left:305.205600px;}
.x17{left:306.755100px;}
.x1d{left:311.935350px;}
.x1c{left:326.931600px;}
.x1e{left:346.060350px;}
.x1f{left:365.185350px;}
.x10{left:378.044100px;}
.x20{left:380.181600px;}
.x21{left:399.317850px;}
.x22{left:414.314100px;}
.x23{left:433.450350px;}
.x18{left:448.582500px;}
.x24{left:452.575350px;}
.x14{left:465.579900px;}
.x32{left:469.843500px;}
.x25{left:471.700350px;}
.x19{left:475.582650px;}
.x15{left:482.089500px;}
.x30{left:486.841200px;}
.x26{left:490.828800px;}
.x27{left:505.825050px;}
.x28{left:524.965050px;}
.x4{left:544.908600px;}
.x29{left:563.215050px;}
.x2a{left:582.340050px;}
.x2b{left:601.465050px;}
.x2c{left:620.590050px;}
.x2d{left:639.715050px;}
.x2e{left:658.840050px;}
.x1{left:691.512600px;}
.x3{left:699.936600px;}
.x2{left:712.836600px;}
@media print{
.v2{vertical-align:-14.208000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.312000pt;}
.ls15{letter-spacing:-0.800000pt;}
.lsf{letter-spacing:-0.600000pt;}
.ls13{letter-spacing:-0.533333pt;}
.lse{letter-spacing:-0.480000pt;}
.lsd{letter-spacing:-0.410667pt;}
.ls8{letter-spacing:-0.293333pt;}
.ls14{letter-spacing:-0.266667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.117333pt;}
.lsa{letter-spacing:0.176000pt;}
.lsb{letter-spacing:0.240000pt;}
.ls0{letter-spacing:0.480000pt;}
.ls10{letter-spacing:0.533333pt;}
.ls9{letter-spacing:0.586667pt;}
.ls12{letter-spacing:0.800000pt;}
.ls11{letter-spacing:3.040000pt;}
.ls3{letter-spacing:4.272000pt;}
.ls2{letter-spacing:4.277333pt;}
.ls5{letter-spacing:5.338667pt;}
.ls4{letter-spacing:5.344000pt;}
.ls6{letter-spacing:17.600000pt;}
.lsc{letter-spacing:2274.288000pt;}
.ws5c{word-spacing:-2274.288000pt;}
.wsb{word-spacing:-14.784000pt;}
.wsa{word-spacing:-14.666667pt;}
.ws9{word-spacing:-14.373333pt;}
.wsa0{word-spacing:-14.133333pt;}
.ws9e{word-spacing:-13.866667pt;}
.ws7{word-spacing:-13.488000pt;}
.wsa1{word-spacing:-13.333333pt;}
.wsa2{word-spacing:-13.066667pt;}
.ws8{word-spacing:-13.008000pt;}
.ws9f{word-spacing:-12.800000pt;}
.wsed{word-spacing:-12.533333pt;}
.ws0{word-spacing:-11.861333pt;}
.ws9c{word-spacing:-10.840000pt;}
.ws6{word-spacing:-10.378667pt;}
.ws1{word-spacing:-9.328000pt;}
.ws2{word-spacing:-6.741035pt;}
.ws46{word-spacing:-4.693333pt;}
.ws98{word-spacing:-4.608000pt;}
.ws91{word-spacing:-4.400000pt;}
.ws74{word-spacing:-3.989333pt;}
.wscc{word-spacing:-3.786667pt;}
.ws5e{word-spacing:-3.578667pt;}
.ws4{word-spacing:-3.520000pt;}
.ws89{word-spacing:-3.285333pt;}
.wsfa{word-spacing:-3.253333pt;}
.wsa9{word-spacing:-3.200000pt;}
.ws8e{word-spacing:-3.168000pt;}
.wsa7{word-spacing:-3.040000pt;}
.ws62{word-spacing:-2.933333pt;}
.ws84{word-spacing:-2.874667pt;}
.ws43{word-spacing:-2.698667pt;}
.ws97{word-spacing:-2.688000pt;}
.wsac{word-spacing:-2.613333pt;}
.ws30{word-spacing:-2.581333pt;}
.ws31{word-spacing:-2.522667pt;}
.wsb1{word-spacing:-2.293333pt;}
.wsbd{word-spacing:-2.240000pt;}
.wscf{word-spacing:-2.080000pt;}
.ws2b{word-spacing:-1.994667pt;}
.wsc5{word-spacing:-1.973333pt;}
.ws13{word-spacing:-1.877333pt;}
.ws90{word-spacing:-1.818667pt;}
.ws19{word-spacing:-1.760000pt;}
.wsad{word-spacing:-1.706667pt;}
.wsbb{word-spacing:-1.546667pt;}
.wsd3{word-spacing:-1.440000pt;}
.ws87{word-spacing:-1.408000pt;}
.ws38{word-spacing:-1.349333pt;}
.ws82{word-spacing:-1.232000pt;}
.wsc3{word-spacing:-1.226667pt;}
.wsb4{word-spacing:-1.066667pt;}
.ws68{word-spacing:-1.056000pt;}
.wsca{word-spacing:-0.960000pt;}
.wsef{word-spacing:-0.906667pt;}
.wsd8{word-spacing:-0.853333pt;}
.wsf5{word-spacing:-0.800000pt;}
.wsc2{word-spacing:-0.746667pt;}
.wsa4{word-spacing:-0.586667pt;}
.wsb7{word-spacing:-0.533333pt;}
.ws5{word-spacing:-0.480000pt;}
.ws6c{word-spacing:-0.410667pt;}
.ws2f{word-spacing:-0.352000pt;}
.ws3b{word-spacing:-0.293333pt;}
.ws78{word-spacing:-0.240000pt;}
.ws4b{word-spacing:-0.234667pt;}
.wsdf{word-spacing:-0.160000pt;}
.ws50{word-spacing:-0.117333pt;}
.ws49{word-spacing:-0.058667pt;}
.wse{word-spacing:-0.005333pt;}
.ws3{word-spacing:0.000000pt;}
.wsdc{word-spacing:0.213333pt;}
.ws88{word-spacing:0.234667pt;}
.wsb9{word-spacing:0.266667pt;}
.ws93{word-spacing:0.288000pt;}
.ws24{word-spacing:0.293333pt;}
.ws86{word-spacing:0.352000pt;}
.wsc{word-spacing:0.474667pt;}
.ws77{word-spacing:0.480000pt;}
.wsc8{word-spacing:0.533333pt;}
.ws9d{word-spacing:0.600000pt;}
.wsd{word-spacing:0.608000pt;}
.ws2e{word-spacing:0.645333pt;}
.wsd6{word-spacing:0.693333pt;}
.ws1f{word-spacing:0.704000pt;}
.wsfb{word-spacing:0.746667pt;}
.ws34{word-spacing:0.880000pt;}
.ws36{word-spacing:0.938667pt;}
.wsf8{word-spacing:1.120000pt;}
.ws75{word-spacing:1.173333pt;}
.wscb{word-spacing:1.226667pt;}
.ws4c{word-spacing:1.232000pt;}
.wsee{word-spacing:1.386667pt;}
.ws85{word-spacing:1.642667pt;}
.wsc6{word-spacing:1.653333pt;}
.wsc9{word-spacing:1.706667pt;}
.wsaa{word-spacing:1.760000pt;}
.wsd1{word-spacing:1.813333pt;}
.ws64{word-spacing:1.818667pt;}
.ws81{word-spacing:1.936000pt;}
.ws72{word-spacing:1.994667pt;}
.wse6{word-spacing:2.026667pt;}
.wsc0{word-spacing:2.133333pt;}
.ws8d{word-spacing:2.229333pt;}
.ws83{word-spacing:2.288000pt;}
.ws61{word-spacing:2.346667pt;}
.wsd0{word-spacing:2.453333pt;}
.wsdd{word-spacing:2.506667pt;}
.wsa6{word-spacing:2.560000pt;}
.ws27{word-spacing:2.581333pt;}
.wsf4{word-spacing:2.613333pt;}
.ws44{word-spacing:2.757333pt;}
.wsd2{word-spacing:2.773333pt;}
.ws8b{word-spacing:2.816000pt;}
.ws37{word-spacing:2.874667pt;}
.ws26{word-spacing:3.109333pt;}
.wsa3{word-spacing:3.306667pt;}
.wse5{word-spacing:3.360000pt;}
.ws8c{word-spacing:3.461333pt;}
.ws48{word-spacing:3.520000pt;}
.ws8a{word-spacing:3.637333pt;}
.wsd5{word-spacing:3.680000pt;}
.ws71{word-spacing:3.696000pt;}
.ws8f{word-spacing:3.754667pt;}
.ws96{word-spacing:3.840000pt;}
.ws6b{word-spacing:3.872000pt;}
.wsf6{word-spacing:3.946667pt;}
.ws35{word-spacing:3.989333pt;}
.ws99{word-spacing:4.080000pt;}
.ws95{word-spacing:4.128000pt;}
.wscd{word-spacing:4.160000pt;}
.ws47{word-spacing:4.165333pt;}
.ws32{word-spacing:4.224000pt;}
.ws7a{word-spacing:4.282667pt;}
.wsc4{word-spacing:4.320000pt;}
.ws5a{word-spacing:4.341333pt;}
.wsc1{word-spacing:4.426667pt;}
.ws1b{word-spacing:4.634667pt;}
.wsf7{word-spacing:4.640000pt;}
.ws29{word-spacing:4.928000pt;}
.wsbe{word-spacing:5.120000pt;}
.ws18{word-spacing:5.162667pt;}
.wse3{word-spacing:5.226667pt;}
.wsaf{word-spacing:5.386667pt;}
.ws66{word-spacing:5.397333pt;}
.wsfd{word-spacing:5.493333pt;}
.ws94{word-spacing:5.520000pt;}
.wsa5{word-spacing:5.546667pt;}
.ws53{word-spacing:5.632000pt;}
.ws17{word-spacing:5.690667pt;}
.wsb5{word-spacing:5.760000pt;}
.wsde{word-spacing:5.866667pt;}
.ws39{word-spacing:5.925333pt;}
.ws7e{word-spacing:5.984000pt;}
.ws15{word-spacing:6.042667pt;}
.wse1{word-spacing:6.133333pt;}
.wsb0{word-spacing:6.186667pt;}
.ws63{word-spacing:6.218667pt;}
.ws10{word-spacing:6.229333pt;}
.ws33{word-spacing:6.336000pt;}
.ws58{word-spacing:6.394667pt;}
.wsba{word-spacing:6.400000pt;}
.ws92{word-spacing:6.453333pt;}
.wsd9{word-spacing:6.506667pt;}
.ws5f{word-spacing:6.570667pt;}
.wsf{word-spacing:6.698667pt;}
.ws54{word-spacing:6.746667pt;}
.ws22{word-spacing:6.805333pt;}
.wsb3{word-spacing:6.933333pt;}
.ws79{word-spacing:6.981333pt;}
.ws25{word-spacing:7.040000pt;}
.wse9{word-spacing:7.093333pt;}
.ws7d{word-spacing:7.098667pt;}
.ws55{word-spacing:7.274667pt;}
.ws60{word-spacing:7.392000pt;}
.wsc7{word-spacing:7.413333pt;}
.ws3e{word-spacing:7.450667pt;}
.ws1e{word-spacing:7.626667pt;}
.wsfc{word-spacing:7.680000pt;}
.ws59{word-spacing:7.685333pt;}
.wsd7{word-spacing:7.733333pt;}
.ws28{word-spacing:7.802667pt;}
.ws12{word-spacing:7.861333pt;}
.ws1d{word-spacing:7.920000pt;}
.ws1c{word-spacing:8.096000pt;}
.wsb2{word-spacing:8.213333pt;}
.wsbc{word-spacing:8.266667pt;}
.ws6d{word-spacing:8.330667pt;}
.ws51{word-spacing:8.976000pt;}
.ws3f{word-spacing:9.152000pt;}
.ws5d{word-spacing:9.621333pt;}
.wsa8{word-spacing:9.653333pt;}
.ws21{word-spacing:9.738667pt;}
.ws3d{word-spacing:9.797333pt;}
.wse4{word-spacing:10.026667pt;}
.wse2{word-spacing:10.080000pt;}
.ws2d{word-spacing:10.090667pt;}
.ws23{word-spacing:10.208000pt;}
.wsf2{word-spacing:10.240000pt;}
.ws3c{word-spacing:10.266667pt;}
.wsd4{word-spacing:10.293333pt;}
.ws2c{word-spacing:10.384000pt;}
.wsb8{word-spacing:10.400000pt;}
.ws7c{word-spacing:10.442667pt;}
.ws4a{word-spacing:10.501333pt;}
.ws5b{word-spacing:10.560000pt;}
.wsab{word-spacing:10.773333pt;}
.ws76{word-spacing:10.970667pt;}
.ws2a{word-spacing:11.264000pt;}
.wsf1{word-spacing:11.306667pt;}
.wsbf{word-spacing:11.413333pt;}
.wsce{word-spacing:11.573333pt;}
.ws67{word-spacing:11.733333pt;}
.ws42{word-spacing:11.909333pt;}
.ws56{word-spacing:12.202667pt;}
.wsae{word-spacing:12.426667pt;}
.wsff{word-spacing:12.480000pt;}
.ws45{word-spacing:12.789333pt;}
.ws80{word-spacing:13.317333pt;}
.ws14{word-spacing:13.904000pt;}
.wsf0{word-spacing:14.026667pt;}
.ws1a{word-spacing:14.080000pt;}
.ws65{word-spacing:14.256000pt;}
.wsea{word-spacing:14.560000pt;}
.wseb{word-spacing:14.880000pt;}
.wse0{word-spacing:15.680000pt;}
.ws69{word-spacing:15.781333pt;}
.ws7b{word-spacing:15.840000pt;}
.ws6a{word-spacing:15.957333pt;}
.ws4f{word-spacing:16.133333pt;}
.ws16{word-spacing:16.368000pt;}
.ws41{word-spacing:16.778667pt;}
.wsdb{word-spacing:17.120000pt;}
.ws40{word-spacing:17.189333pt;}
.ws57{word-spacing:17.365333pt;}
.ws4d{word-spacing:17.600000pt;}
.ws3a{word-spacing:17.952000pt;}
.ws11{word-spacing:18.128000pt;}
.wse8{word-spacing:18.133333pt;}
.wsda{word-spacing:20.053333pt;}
.ws6e{word-spacing:20.181333pt;}
.wsec{word-spacing:20.373333pt;}
.ws73{word-spacing:20.709333pt;}
.ws20{word-spacing:20.826667pt;}
.wsf3{word-spacing:21.066667pt;}
.ws6f{word-spacing:23.525333pt;}
.ws52{word-spacing:24.933333pt;}
.wsfe{word-spacing:25.706667pt;}
.wse7{word-spacing:25.760000pt;}
.wsb6{word-spacing:26.986667pt;}
.ws4e{word-spacing:27.866667pt;}
.ws7f{word-spacing:31.034667pt;}
.ws70{word-spacing:33.088000pt;}
.ws9b{word-spacing:157.840000pt;}
.ws9a{word-spacing:283.240000pt;}
.wsf9{word-spacing:2274.283733pt;}
._e{margin-left:-30.976000pt;}
._3d{margin-left:-28.268267pt;}
._f{margin-left:-23.755200pt;}
._3c{margin-left:-19.466667pt;}
._3e{margin-left:-13.333333pt;}
._12{margin-left:-12.000000pt;}
._10{margin-left:-7.802667pt;}
._1{margin-left:-6.378667pt;}
._d{margin-left:-5.258667pt;}
._a{margin-left:-3.989333pt;}
._3{margin-left:-2.352000pt;}
._0{margin-left:-1.194667pt;}
._7{width:0.928000pt;}
._4{width:1.856000pt;}
._2{width:3.456000pt;}
._6{width:4.704000pt;}
._5{width:5.856000pt;}
._8{width:7.104000pt;}
._3b{width:9.333333pt;}
._c{width:10.442667pt;}
._11{width:11.850667pt;}
._b{width:17.699733pt;}
._2c{width:36.280000pt;}
._37{width:37.309333pt;}
._15{width:38.339200pt;}
._32{width:39.280000pt;}
._1b{width:45.960000pt;}
._17{width:47.800000pt;}
._39{width:53.600000pt;}
._23{width:54.600000pt;}
._19{width:62.920000pt;}
._33{width:64.080000pt;}
._16{width:69.280000pt;}
._22{width:95.440000pt;}
._2e{width:103.640000pt;}
._2d{width:137.120000pt;}
._2f{width:142.760000pt;}
._18{width:166.400000pt;}
._24{width:186.240000pt;}
._27{width:189.720000pt;}
._31{width:223.080000pt;}
._3a{width:232.800000pt;}
._34{width:248.120000pt;}
._1c{width:255.840000pt;}
._25{width:279.160000pt;}
._26{width:299.200000pt;}
._2a{width:639.200000pt;}
._13{width:644.560000pt;}
._36{width:741.360000pt;}
._28{width:747.160000pt;}
._1a{width:758.040000pt;}
._30{width:828.080000pt;}
._14{width:833.080000pt;}
._21{width:1028.480000pt;}
._38{width:1037.640000pt;}
._1e{width:1070.960000pt;}
._35{width:1430.840000pt;}
._20{width:1431.760000pt;}
._29{width:1498.400000pt;}
._1d{width:1536.440000pt;}
._2b{width:1621.680000pt;}
._1f{width:1623.400000pt;}
._9{width:2274.288000pt;}
.fs4{font-size:24.874667pt;}
.fs3{font-size:37.312000pt;}
.fs6{font-size:37.333333pt;}
.fs8{font-size:40.000000pt;}
.fs0{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs9{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:69.333333pt;}
.y0{bottom:0.000000pt;}
.y94{bottom:60.774933pt;}
.y33{bottom:60.776400pt;}
.yf8{bottom:98.488267pt;}
.y10a{bottom:98.488933pt;}
.y106{bottom:98.491467pt;}
.yfb{bottom:98.494400pt;}
.y10b{bottom:98.498933pt;}
.yff{bottom:98.504400pt;}
.y10c{bottom:98.508933pt;}
.y103{bottom:98.514400pt;}
.y10d{bottom:98.518933pt;}
.y104{bottom:98.524400pt;}
.y10e{bottom:98.528933pt;}
.y105{bottom:98.534400pt;}
.y10f{bottom:98.538933pt;}
.y110{bottom:98.548933pt;}
.y111{bottom:98.558933pt;}
.yf7{bottom:101.688267pt;}
.y188{bottom:104.338000pt;}
.y14c{bottom:104.774000pt;}
.y30{bottom:106.922800pt;}
.y187{bottom:119.004667pt;}
.y14b{bottom:119.440667pt;}
.yc8{bottom:119.464533pt;}
.y2f{bottom:120.254800pt;}
.y93{bottom:120.360133pt;}
.y69{bottom:120.368133pt;}
.yc7{bottom:132.797867pt;}
.y2e{bottom:133.586800pt;}
.y186{bottom:133.671333pt;}
.y92{bottom:136.361467pt;}
.y68{bottom:136.369467pt;}
.y14a{bottom:137.880667pt;}
.yc6{bottom:146.135200pt;}
.y2d{bottom:146.918800pt;}
.y185{bottom:148.338000pt;}
.y67{bottom:152.348133pt;}
.y91{bottom:152.362800pt;}
.y149{bottom:152.547333pt;}
.yc5{bottom:159.467200pt;}
.y2c{bottom:160.250800pt;}
.y184{bottom:163.004667pt;}
.ydf{bottom:164.087600pt;}
.yf3{bottom:164.243733pt;}
.y148{bottom:167.214000pt;}
.y66{bottom:168.349467pt;}
.y90{bottom:168.364133pt;}
.y2b{bottom:173.582800pt;}
.yf2{bottom:178.642267pt;}
.yde{bottom:180.088933pt;}
.yc4{bottom:180.131200pt;}
.y183{bottom:181.444667pt;}
.y147{bottom:181.880667pt;}
.y65{bottom:184.350800pt;}
.y8f{bottom:184.365467pt;}
.y2a{bottom:186.914800pt;}
.yf1{bottom:193.042267pt;}
.yc3{bottom:193.464533pt;}
.ydd{bottom:196.090267pt;}
.y182{bottom:196.111333pt;}
.y146{bottom:196.547333pt;}
.y29{bottom:200.246800pt;}
.y64{bottom:200.352133pt;}
.y8e{bottom:200.366800pt;}
.yc2{bottom:206.797867pt;}
.yf0{bottom:207.442267pt;}
.y181{bottom:210.778000pt;}
.ydc{bottom:212.091600pt;}
.y28{bottom:213.578800pt;}
.y145{bottom:214.987333pt;}
.y63{bottom:216.353467pt;}
.y8d{bottom:216.368133pt;}
.yef{bottom:221.842267pt;}
.y180{bottom:225.444667pt;}
.y27{bottom:226.910800pt;}
.ydb{bottom:228.092933pt;}
.y144{bottom:229.654000pt;}
.y62{bottom:232.354800pt;}
.y8c{bottom:232.369467pt;}
.yee{bottom:236.242267pt;}
.y17f{bottom:240.111333pt;}
.y26{bottom:240.242800pt;}
.yda{bottom:244.094267pt;}
.y143{bottom:244.320667pt;}
.y61{bottom:248.356133pt;}
.y8b{bottom:248.368133pt;}
.yed{bottom:250.642267pt;}
.y25{bottom:253.574800pt;}
.y17e{bottom:258.551333pt;}
.yd9{bottom:260.095600pt;}
.y142{bottom:262.760667pt;}
.y60{bottom:264.357467pt;}
.y8a{bottom:264.369467pt;}
.yec{bottom:265.042267pt;}
.y17d{bottom:273.218000pt;}
.yd8{bottom:276.096933pt;}
.y141{bottom:277.427333pt;}
.y5f{bottom:280.358800pt;}
.y89{bottom:280.368133pt;}
.y24{bottom:282.026800pt;}
.y17c{bottom:287.884667pt;}
.yeb{bottom:290.782267pt;}
.y140{bottom:292.094000pt;}
.yd7{bottom:292.098267pt;}
.y23{bottom:295.376533pt;}
.y5e{bottom:296.360133pt;}
.y88{bottom:296.369467pt;}
.y107{bottom:296.901467pt;}
.yfc{bottom:296.904400pt;}
.y100{bottom:296.914400pt;}
.y17b{bottom:302.551333pt;}
.y13f{bottom:306.760667pt;}
.yd6{bottom:308.099600pt;}
.y5d{bottom:312.361467pt;}
.y87{bottom:312.370800pt;}
.y22{bottom:320.048533pt;}
.y17a{bottom:320.991333pt;}
.y13e{bottom:321.427333pt;}
.yd5{bottom:324.100933pt;}
.y86{bottom:328.352133pt;}
.y5c{bottom:328.362800pt;}
.y179{bottom:335.658000pt;}
.y13d{bottom:336.094000pt;}
.yea{bottom:337.442267pt;}
.yd4{bottom:340.102267pt;}
.y85{bottom:344.353467pt;}
.y5b{bottom:344.364133pt;}
.y178{bottom:350.324667pt;}
.y13c{bottom:350.760667pt;}
.ye9{bottom:353.443600pt;}
.yd3{bottom:356.103600pt;}
.y84{bottom:360.354800pt;}
.y5a{bottom:360.365467pt;}
.y21{bottom:362.504533pt;}
.y177{bottom:364.997600pt;}
.y13b{bottom:365.427333pt;}
.ye8{bottom:369.444933pt;}
.yd2{bottom:372.104933pt;}
.y83{bottom:376.356133pt;}
.y59{bottom:376.366800pt;}
.y13a{bottom:380.094000pt;}
.y176{bottom:383.437600pt;}
.y20{bottom:383.840533pt;}
.ye7{bottom:385.446267pt;}
.yd1{bottom:388.106267pt;}
.y82{bottom:392.357467pt;}
.y58{bottom:392.368133pt;}
.y139{bottom:394.760667pt;}
.y1f{bottom:397.172533pt;}
.y175{bottom:398.104267pt;}
.ye6{bottom:401.447600pt;}
.yd0{bottom:404.107600pt;}
.y81{bottom:408.358800pt;}
.y57{bottom:408.369467pt;}
.y138{bottom:409.427333pt;}
.y1e{bottom:410.504533pt;}
.y174{bottom:412.770933pt;}
.ye5{bottom:417.448933pt;}
.ycf{bottom:420.108933pt;}
.y1d{bottom:423.836533pt;}
.y137{bottom:424.094000pt;}
.y56{bottom:424.350800pt;}
.y80{bottom:424.360133pt;}
.y173{bottom:427.456133pt;}
.ye4{bottom:433.440933pt;}
.yce{bottom:436.110267pt;}
.y1c{bottom:437.168533pt;}
.y136{bottom:438.760667pt;}
.y55{bottom:440.352133pt;}
.y7f{bottom:440.361467pt;}
.y172{bottom:445.896133pt;}
.ye3{bottom:449.442267pt;}
.y1b{bottom:450.500533pt;}
.ycd{bottom:452.111600pt;}
.y135{bottom:453.427333pt;}
.y54{bottom:456.353467pt;}
.y7e{bottom:456.362800pt;}
.y171{bottom:460.562800pt;}
.y1a{bottom:463.832533pt;}
.ye2{bottom:465.443600pt;}
.y134{bottom:468.094000pt;}
.ycc{bottom:468.112933pt;}
.y53{bottom:472.354800pt;}
.y7d{bottom:472.364133pt;}
.y170{bottom:475.229467pt;}
.y19{bottom:477.164533pt;}
.ye1{bottom:481.444933pt;}
.y133{bottom:482.760667pt;}
.y52{bottom:488.356133pt;}
.y7c{bottom:488.365467pt;}
.y16f{bottom:489.896133pt;}
.y18{bottom:490.496533pt;}
.ycb{bottom:497.446267pt;}
.y132{bottom:501.200667pt;}
.y17{bottom:503.828533pt;}
.y51{bottom:504.357467pt;}
.y7b{bottom:504.366800pt;}
.y16e{bottom:508.336133pt;}
.yca{bottom:513.447600pt;}
.y131{bottom:515.910667pt;}
.y16{bottom:517.160533pt;}
.y50{bottom:520.358800pt;}
.y7a{bottom:520.368133pt;}
.yf9{bottom:521.008267pt;}
.y16d{bottom:523.002800pt;}
.ye0{bottom:529.419600pt;}
.yc9{bottom:529.448933pt;}
.y15{bottom:530.492533pt;}
.y130{bottom:530.577333pt;}
.y4f{bottom:536.360133pt;}
.y79{bottom:536.369467pt;}
.y16c{bottom:537.669467pt;}
.y14{bottom:543.824533pt;}
.y12f{bottom:545.244000pt;}
.y16b{bottom:552.336133pt;}
.y4e{bottom:552.361467pt;}
.y78{bottom:552.365467pt;}
.y13{bottom:557.156533pt;}
.y12e{bottom:563.684000pt;}
.y4d{bottom:568.362800pt;}
.y77{bottom:568.366800pt;}
.y12{bottom:570.488533pt;}
.y16a{bottom:570.776133pt;}
.yfa{bottom:574.268267pt;}
.y12d{bottom:578.350667pt;}
.y4c{bottom:584.364133pt;}
.y76{bottom:584.368133pt;}
.y169{bottom:585.442800pt;}
.y11{bottom:595.160533pt;}
.y12c{bottom:596.790667pt;}
.y168{bottom:600.109467pt;}
.y4b{bottom:600.365467pt;}
.y75{bottom:600.369467pt;}
.yf6{bottom:611.124800pt;}
.y12b{bottom:611.457333pt;}
.y167{bottom:614.776133pt;}
.y74{bottom:616.350800pt;}
.y4a{bottom:616.366800pt;}
.yf5{bottom:624.456800pt;}
.y12a{bottom:626.124000pt;}
.y166{bottom:629.442800pt;}
.y73{bottom:632.352133pt;}
.y49{bottom:632.368133pt;}
.y108{bottom:637.878933pt;}
.yfd{bottom:637.894400pt;}
.y101{bottom:637.904400pt;}
.y129{bottom:640.790667pt;}
.yf4{bottom:645.120800pt;}
.y165{bottom:647.895200pt;}
.y72{bottom:648.353467pt;}
.y48{bottom:648.369467pt;}
.y128{bottom:659.230667pt;}
.y10{bottom:661.179200pt;}
.y164{bottom:662.561867pt;}
.y71{bottom:664.354800pt;}
.y47{bottom:664.364133pt;}
.yc1{bottom:665.847867pt;}
.yab{bottom:665.858267pt;}
.y127{bottom:673.897333pt;}
.y70{bottom:680.356133pt;}
.y46{bottom:680.365467pt;}
.yf{bottom:680.507200pt;}
.y163{bottom:681.001867pt;}
.yc0{bottom:681.847867pt;}
.yaa{bottom:681.859600pt;}
.y126{bottom:688.564000pt;}
.y162{bottom:695.674800pt;}
.ye{bottom:696.059200pt;}
.y6f{bottom:696.357467pt;}
.y45{bottom:696.366800pt;}
.ybf{bottom:697.846533pt;}
.ya9{bottom:697.860933pt;}
.y125{bottom:707.004000pt;}
.y161{bottom:710.341467pt;}
.yd{bottom:711.840533pt;}
.y6e{bottom:712.358800pt;}
.y44{bottom:712.368133pt;}
.ybe{bottom:713.847867pt;}
.ya8{bottom:713.862267pt;}
.y124{bottom:721.670667pt;}
.yc{bottom:723.845867pt;}
.y6d{bottom:728.360133pt;}
.y43{bottom:728.369467pt;}
.y160{bottom:728.781467pt;}
.ybd{bottom:729.847867pt;}
.ya7{bottom:729.858267pt;}
.y123{bottom:740.110667pt;}
.y15f{bottom:743.448133pt;}
.y6c{bottom:744.361467pt;}
.y42{bottom:744.368133pt;}
.ybc{bottom:745.845200pt;}
.ya6{bottom:745.859600pt;}
.yb{bottom:746.725867pt;}
.y122{bottom:754.777333pt;}
.y15e{bottom:758.114800pt;}
.y6b{bottom:760.362800pt;}
.y41{bottom:760.369467pt;}
.ybb{bottom:761.846533pt;}
.ya5{bottom:761.860933pt;}
.ya{bottom:762.507200pt;}
.y121{bottom:769.444000pt;}
.y15d{bottom:772.781467pt;}
.y9{bottom:774.507200pt;}
.y6a{bottom:776.364133pt;}
.y40{bottom:776.370800pt;}
.yba{bottom:777.847867pt;}
.ya4{bottom:777.862267pt;}
.y120{bottom:784.110667pt;}
.y15c{bottom:787.448133pt;}
.yb9{bottom:793.845200pt;}
.ya3{bottom:793.859600pt;}
.y15b{bottom:802.114800pt;}
.y11f{bottom:802.550667pt;}
.y8{bottom:807.295200pt;}
.yb8{bottom:809.846533pt;}
.ya2{bottom:809.860933pt;}
.y3f{bottom:809.896800pt;}
.y15a{bottom:816.781467pt;}
.y11e{bottom:817.217333pt;}
.y3e{bottom:821.779467pt;}
.yb7{bottom:825.847867pt;}
.ya1{bottom:825.862267pt;}
.y11d{bottom:831.884000pt;}
.y159{bottom:835.227600pt;}
.yb6{bottom:841.847867pt;}
.ya0{bottom:841.862267pt;}
.y11c{bottom:846.550667pt;}
.y158{bottom:849.894267pt;}
.y3d{bottom:852.446133pt;}
.yb5{bottom:857.846533pt;}
.y9f{bottom:857.862267pt;}
.y3c{bottom:864.467467pt;}
.y157{bottom:864.600667pt;}
.y11b{bottom:864.990667pt;}
.yb4{bottom:873.847867pt;}
.y9e{bottom:873.862267pt;}
.y3b{bottom:876.371467pt;}
.y7{bottom:876.628533pt;}
.y156{bottom:879.267333pt;}
.y11a{bottom:879.657333pt;}
.y109{bottom:881.558933pt;}
.yfe{bottom:881.574400pt;}
.y102{bottom:881.584400pt;}
.yb3{bottom:889.847867pt;}
.y9d{bottom:889.852933pt;}
.y119{bottom:894.324000pt;}
.y155{bottom:897.707333pt;}
.y3a{bottom:899.038133pt;}
.y6{bottom:899.289867pt;}
.yb2{bottom:905.846533pt;}
.y9c{bottom:905.854267pt;}
.y118{bottom:908.991467pt;}
.y154{bottom:912.374000pt;}
.yb1{bottom:921.847867pt;}
.y9b{bottom:921.855600pt;}
.y5{bottom:921.961867pt;}
.y153{bottom:927.040667pt;}
.y117{bottom:927.431467pt;}
.yb0{bottom:937.847867pt;}
.y9a{bottom:937.856933pt;}
.y18f{bottom:941.673867pt;}
.y18e{bottom:941.680000pt;}
.y152{bottom:941.707333pt;}
.y116{bottom:942.098133pt;}
.y39{bottom:944.160800pt;}
.y99{bottom:953.858267pt;}
.y18d{bottom:956.346667pt;}
.y115{bottom:956.764800pt;}
.y31{bottom:959.630400pt;}
.y151{bottom:960.147333pt;}
.y38{bottom:965.494133pt;}
.yaf{bottom:969.839600pt;}
.y98{bottom:969.859600pt;}
.y114{bottom:971.431467pt;}
.y18c{bottom:974.786667pt;}
.y150{bottom:974.814000pt;}
.y37{bottom:978.827467pt;}
.yae{bottom:985.840933pt;}
.y97{bottom:985.860933pt;}
.y113{bottom:986.098133pt;}
.y18b{bottom:989.453333pt;}
.y14f{bottom:989.480667pt;}
.y36{bottom:992.160800pt;}
.yad{bottom:1001.842267pt;}
.y96{bottom:1001.862267pt;}
.y18a{bottom:1004.120000pt;}
.y14e{bottom:1004.147333pt;}
.y35{bottom:1005.494133pt;}
.y112{bottom:1017.778133pt;}
.yac{bottom:1017.843600pt;}
.y95{bottom:1017.862267pt;}
.y189{bottom:1018.786667pt;}
.y14d{bottom:1018.814000pt;}
.y34{bottom:1018.828000pt;}
.y4{bottom:1036.560933pt;}
.y3{bottom:1048.560933pt;}
.y32{bottom:1056.755867pt;}
.y2{bottom:1060.560933pt;}
.y1{bottom:1072.560933pt;}
.h6{height:19.968000pt;}
.h9{height:27.290667pt;}
.ha{height:31.062500pt;}
.h2{height:31.189333pt;}
.h16{height:32.040000pt;}
.h14{height:33.888000pt;}
.h5{height:34.176000pt;}
.h19{height:37.031250pt;}
.h7{height:38.448000pt;}
.h15{height:42.117188pt;}
.h17{height:42.720000pt;}
.h1a{height:46.637942pt;}
.h18{height:46.796875pt;}
.h3{height:46.989583pt;}
.hb{height:51.476562pt;}
.hc{height:51.487229pt;}
.h11{height:51.492563pt;}
.h10{height:51.497896pt;}
.hd{height:51.503229pt;}
.h13{height:51.508562pt;}
.he{height:51.556562pt;}
.hf{height:51.567229pt;}
.h12{height:51.593896pt;}
.h8{height:55.536000pt;}
.h4{height:56.156250pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x16{left:64.252000pt;}
.x11{left:79.370133pt;}
.x31{left:83.145333pt;}
.x13{left:94.036667pt;}
.x2f{left:98.263333pt;}
.x1a{left:103.370000pt;}
.xe{left:105.826800pt;}
.x12{left:120.945333pt;}
.xf{left:123.154800pt;}
.x9{left:132.240933pt;}
.xb{left:134.109467pt;}
.x8{left:159.117600pt;}
.x6{left:194.774267pt;}
.xa{left:202.680667pt;}
.x5{left:203.752933pt;}
.xc{left:209.011200pt;}
.x1b{left:235.579867pt;}
.x7{left:253.958667pt;}
.xd{left:271.293867pt;}
.x17{left:272.671200pt;}
.x1d{left:277.275867pt;}
.x1c{left:290.605867pt;}
.x1e{left:307.609200pt;}
.x1f{left:324.609200pt;}
.x10{left:336.039200pt;}
.x20{left:337.939200pt;}
.x21{left:354.949200pt;}
.x22{left:368.279200pt;}
.x23{left:385.289200pt;}
.x18{left:398.740000pt;}
.x24{left:402.289200pt;}
.x14{left:413.848800pt;}
.x32{left:417.638667pt;}
.x25{left:419.289200pt;}
.x19{left:422.740133pt;}
.x15{left:428.524000pt;}
.x30{left:432.747733pt;}
.x26{left:436.292267pt;}
.x27{left:449.622267pt;}
.x28{left:466.635600pt;}
.x4{left:484.363200pt;}
.x29{left:500.635600pt;}
.x2a{left:517.635600pt;}
.x2b{left:534.635600pt;}
.x2c{left:551.635600pt;}
.x2d{left:568.635600pt;}
.x2e{left:585.635600pt;}
.x1{left:614.677867pt;}
.x3{left:622.165867pt;}
.x2{left:633.632533pt;}
}




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