
    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_46bef187f43dc0ff032e7a1c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.999512;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_fd151aa2da49e457ed9df1cf.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_ed6d316f5b5535ebcdde5401.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.202148;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.003906;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_29b12bce2d4f7f7cfdc0e06e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.941406;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_e679b7d94d99b181783a2e78.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.999512;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_125505d48d9c42485514ff32.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.999512;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_04c12b2a5d8884498290d5eb.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.999512;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_8e55c7a6e2efacf72ee5317e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.962402;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_ad71a7001519c4c5f35f92aa.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.047852;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_83e19b9d7cef4898b0514556.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.047852;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_50e1fb3ad2d645650204cbd9.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.999512;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_e3da02382771a1749a36d811.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.708008;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_27fb3c20856f0669d0fa40a0.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.739746;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_538d6f8196fea9c9b9006e05.woff2')format("woff");}.fff{font-family:fff;line-height:0.961914;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_4fdb2515721297c80a630316.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.941406;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_d189e3ed10c4017b20fb8327.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.912598;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:ff12;src:url('chunks/assets/font_7f5b859dd982b57eab9e2a0e.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.708008;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:ff13;src:url('chunks/assets/font_bdab7bec37cdfc00e86c9378.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.697266;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:ff14;src:url('chunks/assets/font_537047baaebf784ba1267c62.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.695312;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.000000px;}
.ls2a{letter-spacing:-0.816000px;}
.ls4{letter-spacing:-0.792000px;}
.ls25{letter-spacing:-0.522000px;}
.ls3f{letter-spacing:-0.516000px;}
.lse{letter-spacing:-0.504000px;}
.ls15{letter-spacing:-0.480000px;}
.ls4e{letter-spacing:-0.420000px;}
.ls3c{letter-spacing:-0.408000px;}
.ls27{letter-spacing:-0.390000px;}
.ls3e{letter-spacing:-0.384000px;}
.ls30{letter-spacing:-0.336000px;}
.ls2b{letter-spacing:-0.288000px;}
.ls4c{letter-spacing:-0.252000px;}
.ls46{letter-spacing:-0.216000px;}
.ls1e{letter-spacing:-0.192000px;}
.ls4d{letter-spacing:-0.180000px;}
.ls14{letter-spacing:-0.168000px;}
.lsa{letter-spacing:-0.126000px;}
.ls2c{letter-spacing:-0.120000px;}
.lsf{letter-spacing:-0.024000px;}
.ls2{letter-spacing:0.000000px;}
.ls3d{letter-spacing:0.000001px;}
.ls49{letter-spacing:0.000003px;}
.ls2e{letter-spacing:0.024000px;}
.ls28{letter-spacing:0.072000px;}
.ls29{letter-spacing:0.090000px;}
.ls40{letter-spacing:0.096000px;}
.lsb{letter-spacing:0.102000px;}
.ls1f{letter-spacing:0.120000px;}
.ls0{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.192000px;}
.ls22{letter-spacing:0.216000px;}
.ls10{letter-spacing:0.240000px;}
.ls2d{letter-spacing:0.288000px;}
.ls39{letter-spacing:0.300000px;}
.ls13{letter-spacing:0.360000px;}
.ls1a{letter-spacing:0.384000px;}
.ls5{letter-spacing:0.408000px;}
.ls4b{letter-spacing:0.414000px;}
.ls9{letter-spacing:0.432000px;}
.ls31{letter-spacing:0.474000px;}
.ls26{letter-spacing:0.552000px;}
.ls4a{letter-spacing:0.564000px;}
.ls7{letter-spacing:0.576000px;}
.ls3{letter-spacing:0.600000px;}
.ls47{letter-spacing:0.672000px;}
.ls17{letter-spacing:0.804000px;}
.ls1d{letter-spacing:0.864000px;}
.ls1c{letter-spacing:2.400000px;}
.ls16{letter-spacing:4.800000px;}
.ls3a{letter-spacing:6.000000px;}
.ls19{letter-spacing:14.400000px;}
.ls37{letter-spacing:20.964000px;}
.ls35{letter-spacing:24.564000px;}
.ls1b{letter-spacing:25.200000px;}
.ls43{letter-spacing:30.564000px;}
.ls42{letter-spacing:31.764000px;}
.ls44{letter-spacing:32.904000px;}
.ls41{letter-spacing:35.364000px;}
.ls45{letter-spacing:36.504000px;}
.ls21{letter-spacing:38.052000px;}
.ls23{letter-spacing:40.632000px;}
.ls33{letter-spacing:41.154000px;}
.ls20{letter-spacing:42.972000px;}
.ls36{letter-spacing:43.584000px;}
.ls24{letter-spacing:44.232000px;}
.ls3b{letter-spacing:44.784000px;}
.ls32{letter-spacing:44.964000px;}
.ls48{letter-spacing:48.354000px;}
.ls2f{letter-spacing:53.154000px;}
.lsc{letter-spacing:61.854000px;}
.lsd{letter-spacing:71.664000px;}
.ls38{letter-spacing:79.584000px;}
.ls34{letter-spacing:80.784000px;}
.ls18{letter-spacing:81.984000px;}
.ls12{letter-spacing:83.184000px;}
.ls11{letter-spacing:139.734000px;}
.ls8{letter-spacing:837.642000px;}
.ls6{letter-spacing:844.314000px;}
.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;}
}
.ws1f{word-spacing:-72.000000px;}
.ws0{word-spacing:-66.000000px;}
.wsd{word-spacing:-16.272000px;}
.wsc{word-spacing:-16.248000px;}
.wsb{word-spacing:-15.768000px;}
.ws20{word-spacing:-15.216000px;}
.wse{word-spacing:-15.192000px;}
.ws2a{word-spacing:-15.072000px;}
.ws3{word-spacing:-15.000000px;}
.ws18{word-spacing:-14.904000px;}
.ws2d{word-spacing:-14.832003px;}
.wsf{word-spacing:-14.832000px;}
.ws1e{word-spacing:-14.808000px;}
.ws2b{word-spacing:-14.784000px;}
.ws1b{word-spacing:-14.688000px;}
.ws29{word-spacing:-14.640000px;}
.ws11{word-spacing:-14.616000px;}
.ws2{word-spacing:-14.592000px;}
.ws17{word-spacing:-14.544000px;}
.ws2c{word-spacing:-14.520000px;}
.ws1d{word-spacing:-14.496000px;}
.ws1c{word-spacing:-14.424000px;}
.ws26{word-spacing:-14.400001px;}
.ws1{word-spacing:-14.400000px;}
.ws28{word-spacing:-14.376000px;}
.ws23{word-spacing:-14.280000px;}
.ws10{word-spacing:-14.208000px;}
.ws27{word-spacing:-14.184000px;}
.ws19{word-spacing:-14.112000px;}
.ws24{word-spacing:-14.016000px;}
.ws7{word-spacing:-13.776000px;}
.ws2f{word-spacing:-13.764000px;}
.ws15{word-spacing:-13.752000px;}
.ws8{word-spacing:-13.632000px;}
.ws30{word-spacing:-13.614000px;}
.ws4{word-spacing:-13.608000px;}
.ws14{word-spacing:-13.416000px;}
.wsa{word-spacing:-13.302000px;}
.ws2e{word-spacing:-13.290000px;}
.ws6{word-spacing:-13.200000px;}
.ws9{word-spacing:-13.074000px;}
.ws32{word-spacing:-13.020000px;}
.ws31{word-spacing:-12.948000px;}
.ws16{word-spacing:-12.810000px;}
.ws33{word-spacing:-12.780000px;}
.ws13{word-spacing:-12.720000px;}
.ws12{word-spacing:-12.678000px;}
.ws25{word-spacing:-10.284000px;}
.ws1a{word-spacing:-9.744000px;}
.ws21{word-spacing:-0.480000px;}
.ws22{word-spacing:-0.048000px;}
.ws5{word-spacing:0.000000px;}
._11{margin-left:-14.700000px;}
._12{margin-left:-12.810000px;}
._14{margin-left:-11.688000px;}
._d{margin-left:-10.632000px;}
._10{margin-left:-9.420000px;}
._a{margin-left:-8.268000px;}
._13{margin-left:-7.104000px;}
._c{margin-left:-5.856000px;}
._41{margin-left:-4.536000px;}
._8{margin-left:-3.456000px;}
._9{margin-left:-2.376000px;}
._1{margin-left:-1.206000px;}
._0{width:1.056000px;}
._e{width:2.454000px;}
._f{width:3.618000px;}
._16{width:5.082000px;}
._21{width:7.086000px;}
._1d{width:8.232000px;}
._1e{width:10.008000px;}
._2a{width:11.010000px;}
._1a{width:12.048000px;}
._1b{width:13.374000px;}
._1c{width:16.146000px;}
._22{width:17.394000px;}
._23{width:18.768000px;}
._2b{width:19.770000px;}
._18{width:20.832000px;}
._17{width:21.870000px;}
._19{width:22.914000px;}
._1f{width:24.768000px;}
._20{width:25.992000px;}
._31{width:27.324000px;}
._29{width:29.016000px;}
._42{width:30.156000px;}
._30{width:31.614000px;}
._2f{width:32.802000px;}
._2c{width:34.704000px;}
._2d{width:36.366000px;}
._2e{width:37.566000px;}
._37{width:38.736000px;}
._43{width:39.750000px;}
._38{width:40.842000px;}
._3d{width:43.920000px;}
._3e{width:45.288000px;}
._3c{width:66.312000px;}
._36{width:70.938000px;}
._24{width:78.840000px;}
._25{width:80.346000px;}
._6{width:103.200000px;}
._35{width:176.814000px;}
._34{width:201.834000px;}
._27{width:229.008000px;}
._3{width:294.624000px;}
._4{width:570.864000px;}
._26{width:687.180000px;}
._2{width:710.352000px;}
._3f{width:1017.900000px;}
._3b{width:1019.100000px;}
._40{width:1021.500000px;}
._32{width:1022.700000px;}
._39{width:1025.100000px;}
._33{width:1027.500000px;}
._3a{width:1028.700000px;}
._b{width:1055.100000px;}
._15{width:1057.500000px;}
._7{width:1059.900000px;}
._28{width:1061.100000px;}
._5{width:1090.584000px;}
.fc3{color:rgb(79,129,189);}
.fc2{color:transparent;}
.fc1{color:rgb(31,73,125);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:96.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y162{bottom:3.900000px;}
.yaa{bottom:7.500000px;}
.yb8{bottom:7.515000px;}
.yac{bottom:7.800000px;}
.yba{bottom:7.815000px;}
.ya6{bottom:8.700000px;}
.y110{bottom:9.945000px;}
.y139{bottom:10.185000px;}
.y13b{bottom:10.200000px;}
.y1a9{bottom:10.500000px;}
.yee{bottom:10.515000px;}
.y1a3{bottom:10.545000px;}
.yed{bottom:11.400000px;}
.yec{bottom:12.015000px;}
.y111{bottom:12.045000px;}
.y1a7{bottom:13.800000px;}
.y1a5{bottom:14.100000px;}
.y1ec{bottom:14.385000px;}
.y1a8{bottom:14.400000px;}
.y1fc{bottom:14.415000px;}
.y1ee{bottom:14.700000px;}
.y1f8{bottom:14.745000px;}
.y1f{bottom:15.600000px;}
.y20c{bottom:15.900000px;}
.y211{bottom:16.185000px;}
.y20f{bottom:16.200000px;}
.y213{bottom:16.215000px;}
.y138{bottom:16.230000px;}
.y13d{bottom:17.700000px;}
.y33{bottom:18.030000px;}
.y164{bottom:18.600000px;}
.yf4{bottom:18.900000px;}
.y29{bottom:19.200000px;}
.y2d{bottom:19.215000px;}
.y1cb{bottom:19.800000px;}
.y1cd{bottom:19.830000px;}
.y1d2{bottom:20.100000px;}
.y1a2{bottom:23.400000px;}
.y10e{bottom:23.700000px;}
.y20d{bottom:25.200000px;}
.y27{bottom:26.400000px;}
.y1c4{bottom:26.415000px;}
.y31{bottom:26.685000px;}
.y20b{bottom:26.700000px;}
.y15{bottom:27.600000px;}
.y17{bottom:27.900000px;}
.y1a{bottom:27.915000px;}
.y13{bottom:27.945000px;}
.y1f0{bottom:29.700000px;}
.y1d1{bottom:30.000000px;}
.yc9{bottom:30.585000px;}
.ya9{bottom:30.600000px;}
.yae{bottom:30.630000px;}
.yb0{bottom:30.885000px;}
.yb5{bottom:30.900000px;}
.yc2{bottom:30.915000px;}
.yf3{bottom:39.600000px;}
.y1fa{bottom:44.700000px;}
.y1f6{bottom:44.745000px;}
.y1f1{bottom:45.000000px;}
.y1d0{bottom:45.300000px;}
.yc5{bottom:46.500000px;}
.y1e{bottom:48.645000px;}
.y2b{bottom:49.500000px;}
.ya8{bottom:53.700000px;}
.y10d{bottom:54.000000px;}
.yc1{bottom:54.015000px;}
.y26{bottom:56.745000px;}
.y1f4{bottom:60.045000px;}
.yf2{bottom:60.345000px;}
.y12{bottom:60.930000px;}
.y136{bottom:69.030000px;}
.y19{bottom:72.945000px;}
.y1f5{bottom:75.045000px;}
.yf1{bottom:81.045000px;}
.y10b{bottom:84.045000px;}
.y6{bottom:85.237500px;}
.y137{bottom:90.930000px;}
.y10c{bottom:93.045000px;}
.y1f7{bottom:105.345000px;}
.yf0{bottom:116.445000px;}
.y10a{bottom:123.345000px;}
.y133{bottom:155.430000px;}
.y2{bottom:157.830000px;}
.y19c{bottom:159.030000px;}
.y19f{bottom:167.430000px;}
.yad{bottom:167.745000px;}
.y10f{bottom:168.030000px;}
.y8a{bottom:169.845000px;}
.y23{bottom:170.745000px;}
.y1b0{bottom:172.230000px;}
.y146{bottom:174.330000px;}
.y1bf{bottom:176.145000px;}
.y180{bottom:179.775000px;}
.y105{bottom:180.675000px;}
.y19b{bottom:184.275000px;}
.y1{bottom:191.775000px;}
.y89{bottom:195.075000px;}
.y19e{bottom:198.675000px;}
.y1be{bottom:201.375000px;}
.y1af{bottom:203.175000px;}
.y17f{bottom:204.975000px;}
.y104{bottom:206.175000px;}
.y1e9{bottom:206.775000px;}
.yc4{bottom:207.375000px;}
.y19a{bottom:209.775000px;}
.y145{bottom:211.275000px;}
.y1c9{bottom:211.575000px;}
.y22{bottom:213.675000px;}
.y1a0{bottom:216.375000px;}
.y88{bottom:220.275000px;}
.yd2{bottom:223.275000px;}
.y1bd{bottom:226.875000px;}
.y19d{bottom:229.575000px;}
.yab{bottom:230.475000px;}
.y103{bottom:231.375000px;}
.y1e8{bottom:231.975000px;}
.y1ae{bottom:234.375000px;}
.y144{bottom:236.775000px;}
.y160{bottom:238.575000px;}
.y1c8{bottom:242.775000px;}
.y199{bottom:243.975000px;}
.y17e{bottom:245.175000px;}
.y87{bottom:245.775000px;}
.y1bc{bottom:252.075000px;}
.yd1{bottom:254.475000px;}
.y102{bottom:256.575000px;}
.y21{bottom:256.875000px;}
.y1e7{bottom:257.175000px;}
.y143{bottom:261.975000px;}
.y15f{bottom:263.775000px;}
.y1a6{bottom:268.875000px;}
.y1ad{bottom:269.775000px;}
.ya7{bottom:270.375000px;}
.y86{bottom:270.975000px;}
.y20{bottom:273.675000px;}
.y1bb{bottom:277.275000px;}
.y1c7{bottom:277.875000px;}
.y101{bottom:281.775000px;}
.y1e6{bottom:282.375000px;}
.yc3{bottom:285.975000px;}
.y142{bottom:287.175000px;}
.y67{bottom:289.275000px;}
.yd0{bottom:289.575000px;}
.y1ff{bottom:289.875000px;}
.y1ac{bottom:292.875000px;}
.y17d{bottom:295.575000px;}
.y85{bottom:296.175000px;}
.y1c6{bottom:300.075000px;}
.y100{bottom:306.975000px;}
.y132{bottom:307.275000px;}
.y1e5{bottom:307.875000px;}
.y204{bottom:308.775000px;}
.y66{bottom:311.475000px;}
.y141{bottom:312.375000px;}
.ycf{bottom:312.975000px;}
.y15e{bottom:314.475000px;}
.y1d{bottom:318.675000px;}
.y17c{bottom:321.075000px;}
.y84{bottom:321.375000px;}
.y1fe{bottom:324.975000px;}
.yff{bottom:332.475000px;}
.y1e4{bottom:333.075000px;}
.y1ba{bottom:336.375000px;}
.y198{bottom:337.575000px;}
.y140{bottom:337.875000px;}
.y15d{bottom:339.675000px;}
.y65{bottom:344.175000px;}
.y83{bottom:346.620000px;}
.yc0{bottom:348.705000px;}
.ya5{bottom:356.205000px;}
.yfe{bottom:357.705000px;}
.y1e3{bottom:358.320000px;}
.y1fd{bottom:359.220000px;}
.y17b{bottom:361.320000px;}
.y13f{bottom:363.120000px;}
.y203{bottom:364.605000px;}
.y15c{bottom:364.905000px;}
.y82{bottom:372.105000px;}
.y1c5{bottom:373.005000px;}
.y64{bottom:376.920000px;}
.y1fb{bottom:382.005000px;}
.yfd{bottom:382.920000px;}
.y1e2{bottom:383.505000px;}
.y1c{bottom:384.405000px;}
.y17a{bottom:386.505000px;}
.y197{bottom:388.320000px;}
.y202{bottom:390.120000px;}
.y15b{bottom:390.420000px;}
.ya4{bottom:393.420000px;}
.y81{bottom:397.320000px;}
.y13e{bottom:398.820000px;}
.ya2{bottom:406.320000px;}
.yfc{bottom:408.120000px;}
.y131{bottom:408.420000px;}
.y1e1{bottom:408.705000px;}
.y63{bottom:409.620000px;}
.y179{bottom:411.705000px;}
.y13c{bottom:413.205000px;}
.y196{bottom:413.505000px;}
.y201{bottom:415.320000px;}
.y7{bottom:415.620000px;}
.y80{bottom:422.505000px;}
.ya3{bottom:424.620000px;}
.y1b{bottom:429.405000px;}
.y1f9{bottom:430.620000px;}
.yfb{bottom:433.620000px;}
.y1e0{bottom:434.205000px;}
.ybf{bottom:434.820000px;}
.y4e{bottom:435.120000px;}
.y178{bottom:437.205000px;}
.y195{bottom:438.705000px;}
.y200{bottom:440.505000px;}
.y15a{bottom:440.820000px;}
.y62{bottom:442.320000px;}
.y1c3{bottom:446.205000px;}
.y7f{bottom:447.705000px;}
.y13a{bottom:449.205000px;}
.ya1{bottom:449.505000px;}
.y109{bottom:457.005000px;}
.yfa{bottom:458.820000px;}
.y1df{bottom:459.405000px;}
.y177{bottom:462.420000px;}
.y194{bottom:464.205000px;}
.yea{bottom:465.705000px;}
.y159{bottom:466.005000px;}
.y7e{bottom:473.205000px;}
.y18{bottom:474.405000px;}
.ya0{bottom:474.705000px;}
.y61{bottom:475.005000px;}
.y127{bottom:479.505000px;}
.y4d{bottom:484.005000px;}
.y1de{bottom:484.620000px;}
.y21b{bottom:485.220000px;}
.y176{bottom:487.620000px;}
.y193{bottom:489.420000px;}
.yce{bottom:490.620000px;}
.ye9{bottom:491.205000px;}
.y7d{bottom:498.405000px;}
.y9f{bottom:500.220000px;}
.y130{bottom:502.005000px;}
.y135{bottom:502.320000px;}
.y126{bottom:504.720000px;}
.y60{bottom:507.705000px;}
.yf9{bottom:509.205000px;}
.y1f3{bottom:509.505000px;}
.y1dd{bottom:509.820000px;}
.y175{bottom:512.820000px;}
.ybe{bottom:514.050000px;}
.y192{bottom:514.650000px;}
.ye8{bottom:516.450000px;}
.y158{bottom:516.750000px;}
.y1c2{bottom:519.150000px;}
.y7c{bottom:523.650000px;}
.y9e{bottom:525.450000px;}
.y4c{bottom:527.250000px;}
.y21a{bottom:528.450000px;}
.y125{bottom:529.950000px;}
.yf8{bottom:534.450000px;}
.y1dc{bottom:535.350000px;}
.y191{bottom:539.850000px;}
.y5f{bottom:540.450000px;}
.ye7{bottom:541.650000px;}
.y157{bottom:541.950000px;}
.y1b9{bottom:544.050000px;}
.y219{bottom:545.850000px;}
.y7b{bottom:548.850000px;}
.y9d{bottom:550.650000px;}
.y12f{bottom:552.750000px;}
.y174{bottom:553.050000px;}
.ybd{bottom:553.650000px;}
.y124{bottom:555.150000px;}
.yf7{bottom:559.950000px;}
.y1db{bottom:560.550000px;}
.y16{bottom:564.450000px;}
.y190{bottom:565.050000px;}
.ye6{bottom:566.850000px;}
.y156{bottom:567.150000px;}
.y1b8{bottom:568.950000px;}
.y4b{bottom:570.150000px;}
.y5e{bottom:573.150000px;}
.y7a{bottom:574.050000px;}
.y9c{bottom:575.850000px;}
.y12e{bottom:577.950000px;}
.y173{bottom:578.550000px;}
.y218{bottom:580.050000px;}
.y123{bottom:580.650000px;}
.yf6{bottom:585.150000px;}
.y18f{bottom:590.550000px;}
.ye5{bottom:592.050000px;}
.y4a{bottom:592.950000px;}
.ybc{bottom:593.550000px;}
.y1b7{bottom:594.450000px;}
.y1da{bottom:594.750000px;}
.y12b{bottom:599.250000px;}
.y79{bottom:599.550000px;}
.y1ab{bottom:599.850000px;}
.ycd{bottom:600.150000px;}
.y9b{bottom:601.050000px;}
.y155{bottom:601.350000px;}
.y172{bottom:603.750000px;}
.y5d{bottom:605.850000px;}
.y14{bottom:609.450000px;}
.y35{bottom:613.950000px;}
.y49{bottom:614.850000px;}
.y18e{bottom:615.750000px;}
.yf5{bottom:616.350000px;}
.ye4{bottom:617.550000px;}
.y108{bottom:619.350000px;}
.y78{bottom:624.750000px;}
.y1a4{bottom:625.350000px;}
.y9a{bottom:626.550000px;}
.y12d{bottom:627.150000px;}
.y171{bottom:628.950000px;}
.y1b6{bottom:629.850000px;}
.y122{bottom:631.050000px;}
.y48{bottom:636.450000px;}
.y1d9{bottom:637.950000px;}
.y5c{bottom:638.550000px;}
.yef{bottom:640.650000px;}
.y18d{bottom:640.950000px;}
.ye3{bottom:642.750000px;}
.y154{bottom:644.850000px;}
.y217{bottom:647.850000px;}
.y1f2{bottom:648.750000px;}
.y77{bottom:649.950000px;}
.y107{bottom:650.250000px;}
.y99{bottom:651.750000px;}
.y1aa{bottom:652.050000px;}
.y1b5{bottom:652.950000px;}
.y11{bottom:654.150000px;}
.ybb{bottom:656.250000px;}
.y47{bottom:658.350000px;}
.y34{bottom:658.950000px;}
.y1d8{bottom:663.450000px;}
.y12c{bottom:665.550000px;}
.y18c{bottom:666.150000px;}
.ye2{bottom:667.950000px;}
.y5b{bottom:671.250000px;}
.ycc{bottom:673.950000px;}
.y1c1{bottom:674.850000px;}
.y76{bottom:675.150000px;}
.y32{bottom:676.950000px;}
.y153{bottom:677.550000px;}
.y170{bottom:679.650000px;}
.y46{bottom:679.950000px;}
.y121{bottom:681.480000px;}
.y216{bottom:681.780000px;}
.y1d7{bottom:688.695000px;}
.y18b{bottom:691.695000px;}
.ye1{bottom:693.195000px;}
.yb9{bottom:695.880000px;}
.y1ef{bottom:697.380000px;}
.y12a{bottom:700.395000px;}
.y75{bottom:700.695000px;}
.y45{bottom:701.880000px;}
.y98{bottom:702.195000px;}
.y152{bottom:702.780000px;}
.y5a{bottom:703.995000px;}
.y16f{bottom:704.880000px;}
.y120{bottom:706.995000px;}
.y1c0{bottom:709.095000px;}
.y1d6{bottom:713.895000px;}
.y30{bottom:715.095000px;}
.y215{bottom:715.695000px;}
.y18a{bottom:716.880000px;}
.ye0{bottom:718.695000px;}
.y44{bottom:723.480000px;}
.y74{bottom:725.895000px;}
.y97{bottom:727.695000px;}
.y151{bottom:727.995000px;}
.y1a1{bottom:731.880000px;}
.y11f{bottom:732.195000px;}
.ycb{bottom:735.780000px;}
.y59{bottom:736.695000px;}
.y129{bottom:739.080000px;}
.y189{bottom:742.080000px;}
.ydf{bottom:743.880000px;}
.y16e{bottom:745.095000px;}
.y43{bottom:745.380000px;}
.y214{bottom:749.880000px;}
.y73{bottom:751.095000px;}
.y96{bottom:752.895000px;}
.y150{bottom:753.495000px;}
.y11e{bottom:757.380000px;}
.y10{bottom:758.595000px;}
.yb7{bottom:758.880000px;}
.y128{bottom:762.480000px;}
.y1d5{bottom:764.295000px;}
.y42{bottom:766.995000px;}
.y188{bottom:767.280000px;}
.yde{bottom:769.080000px;}
.y58{bottom:769.380000px;}
.y16d{bottom:770.295000px;}
.y2f{bottom:773.880000px;}
.yca{bottom:775.380000px;}
.y1ed{bottom:776.280000px;}
.y72{bottom:776.295000px;}
.y95{bottom:778.080000px;}
.y14f{bottom:778.695000px;}
.y11d{bottom:782.580000px;}
.y212{bottom:783.780000px;}
.yeb{bottom:784.980000px;}
.y41{bottom:788.880000px;}
.y187{bottom:792.795000px;}
.ydd{bottom:794.295000px;}
.y16c{bottom:795.795000px;}
.yb6{bottom:798.480000px;}
.y185{bottom:800.580000px;}
.yf{bottom:801.495000px;}
.y71{bottom:801.795000px;}
.y57{bottom:802.080000px;}
.y94{bottom:803.295000px;}
.y14e{bottom:803.880000px;}
.y2e{bottom:806.895000px;}
.y11c{bottom:808.080000px;}
.y40{bottom:810.495000px;}
.y1d4{bottom:813.795000px;}
.yc8{bottom:814.995000px;}
.y134{bottom:815.295000px;}
.y210{bottom:817.695000px;}
.y186{bottom:817.980000px;}
.ydc{bottom:819.795000px;}
.y16b{bottom:820.995000px;}
.y2c{bottom:824.580000px;}
.y1eb{bottom:825.195000px;}
.y70{bottom:826.995000px;}
.y93{bottom:828.795000px;}
.y14d{bottom:829.080000px;}
.y184{bottom:831.795000px;}
.y3f{bottom:832.080000px;}
.y11b{bottom:833.295000px;}
.y56{bottom:835.080000px;}
.ye{bottom:839.295000px;}
.ydb{bottom:844.995000px;}
.y16a{bottom:846.195000px;}
.y1d3{bottom:849.225000px;}
.y20e{bottom:851.625000px;}
.y6f{bottom:852.225000px;}
.y3e{bottom:854.025000px;}
.y14c{bottom:854.325000px;}
.y11a{bottom:858.525000px;}
.y2a{bottom:860.025000px;}
.yb4{bottom:861.225000px;}
.y183{bottom:862.725000px;}
.y55{bottom:867.825000px;}
.yd{bottom:868.425000px;}
.yda{bottom:870.225000px;}
.y169{bottom:871.425000px;}
.y6e{bottom:877.425000px;}
.yc7{bottom:877.725000px;}
.y92{bottom:879.225000px;}
.y1ea{bottom:879.525000px;}
.y14b{bottom:879.825000px;}
.y119{bottom:883.725000px;}
.y3d{bottom:885.525000px;}
.yd9{bottom:895.425000px;}
.y182{bottom:898.125000px;}
.y54{bottom:900.525000px;}
.y6d{bottom:902.625000px;}
.y91{bottom:904.425000px;}
.y14a{bottom:905.025000px;}
.y1cf{bottom:905.925000px;}
.y118{bottom:909.225000px;}
.y168{bottom:911.625000px;}
.yc{bottom:912.225000px;}
.yc6{bottom:917.625000px;}
.yd8{bottom:920.625000px;}
.y181{bottom:921.525000px;}
.yb3{bottom:924.225000px;}
.y28{bottom:925.725000px;}
.y6c{bottom:928.125000px;}
.y3c{bottom:928.725000px;}
.y90{bottom:929.625000px;}
.y53{bottom:933.225000px;}
.y117{bottom:934.425000px;}
.y167{bottom:937.125000px;}
.y149{bottom:943.725000px;}
.yd7{bottom:946.125000px;}
.y1b4{bottom:949.125000px;}
.y3b{bottom:951.825000px;}
.y6b{bottom:953.325000px;}
.y8f{bottom:955.125000px;}
.yb{bottom:958.425000px;}
.y116{bottom:959.625000px;}
.y25{bottom:961.425000px;}
.y166{bottom:962.325000px;}
.y20a{bottom:962.625000px;}
.yb2{bottom:963.825000px;}
.y52{bottom:965.925000px;}
.y163{bottom:967.725000px;}
.y1ce{bottom:968.925000px;}
.yd6{bottom:971.325000px;}
.y3a{bottom:973.425000px;}
.y1b3{bottom:974.625000px;}
.y6a{bottom:978.525000px;}
.y8e{bottom:980.325000px;}
.y148{bottom:982.425000px;}
.y115{bottom:984.825000px;}
.y106{bottom:987.525000px;}
.y39{bottom:995.325000px;}
.yd5{bottom:996.525000px;}
.y51{bottom:998.625000px;}
.y1b2{bottom:999.825000px;}
.yb1{bottom:1003.425000px;}
.y69{bottom:1003.725000px;}
.y8d{bottom:1005.525000px;}
.ya{bottom:1007.625000px;}
.y114{bottom:1010.025000px;}
.y1cc{bottom:1012.125000px;}
.y165{bottom:1012.725000px;}
.y147{bottom:1013.325000px;}
.y38{bottom:1016.955000px;}
.yd4{bottom:1021.755000px;}
.y209{bottom:1023.870000px;}
.y1b1{bottom:1025.070000px;}
.y8c{bottom:1030.755000px;}
.y68{bottom:1038.255000px;}
.y9{bottom:1038.570000px;}
.y50{bottom:1042.170000px;}
.yaf{bottom:1043.070000px;}
.y161{bottom:1045.170000px;}
.yd3{bottom:1047.255000px;}
.y37{bottom:1048.455000px;}
.y24{bottom:1050.255000px;}
.y113{bottom:1051.455000px;}
.y208{bottom:1055.070000px;}
.y1ca{bottom:1055.370000px;}
.y8b{bottom:1056.255000px;}
.y4f{bottom:1075.755000px;}
.y36{bottom:1081.455000px;}
.y8{bottom:1081.755000px;}
.y112{bottom:1085.670000px;}
.y207{bottom:1112.670000px;}
.y5{bottom:1121.070000px;}
.y206{bottom:1132.755000px;}
.y4{bottom:1141.170000px;}
.y205{bottom:1152.870000px;}
.y3{bottom:1161.255000px;}
.h32{height:20.700000px;}
.h20{height:23.100000px;}
.h1f{height:23.137500px;}
.h1c{height:23.400000px;}
.h19{height:24.300000px;}
.h44{height:30.000000px;}
.h3f{height:30.037500px;}
.h40{height:30.300000px;}
.h36{height:30.900000px;}
.h33{height:31.500000px;}
.h45{height:33.000000px;}
.h48{height:33.285000px;}
.h46{height:33.300000px;}
.h47{height:33.337500px;}
.h31{height:34.500000px;}
.h11{height:34.800000px;}
.h13{height:34.837500px;}
.h2e{height:36.000000px;}
.h15{height:37.237500px;}
.h35{height:37.537500px;}
.h34{height:40.200000px;}
.h28{height:41.053711px;}
.h14{height:42.285000px;}
.h3c{height:42.300000px;}
.h3d{height:42.337500px;}
.h3e{height:42.600000px;}
.h2d{height:43.664062px;}
.h30{height:44.100000px;}
.hb{height:44.700000px;}
.hc{height:45.000000px;}
.h21{height:46.200000px;}
.h24{height:46.222500px;}
.h1d{height:46.237500px;}
.h1e{height:46.500000px;}
.h38{height:48.761719px;}
.h18{height:49.992188px;}
.h2{height:50.176758px;}
.h25{height:52.417969px;}
.h7{height:52.628906px;}
.h1b{height:53.367188px;}
.h29{height:54.105469px;}
.hf{height:54.140625px;}
.h5{height:54.738281px;}
.h39{height:55.200000px;}
.h3b{height:55.237500px;}
.h3a{height:55.500000px;}
.h17{height:58.218750px;}
.h43{height:60.300000px;}
.h2a{height:60.492188px;}
.h41{height:60.600000px;}
.h23{height:62.100000px;}
.h12{height:65.100000px;}
.h4{height:65.645508px;}
.he{height:65.737500px;}
.h3{height:67.579102px;}
.h1a{height:69.300000px;}
.h22{height:69.600000px;}
.h10{height:72.337500px;}
.h9{height:72.984375px;}
.h16{height:73.722656px;}
.ha{height:78.037500px;}
.h8{height:82.107422px;}
.hd{height:90.037500px;}
.h42{height:120.937500px;}
.h27{height:129.337500px;}
.h2b{height:138.937500px;}
.h1{height:207.375000px;}
.h2f{height:225.075000px;}
.h2c{height:272.475000px;}
.h26{height:306.075000px;}
.h37{height:335.775000px;}
.h6{height:907.425000px;}
.h0{height:1263.000000px;}
.w1b{width:52.500000px;}
.w8{width:54.937500px;}
.w19{width:57.000000px;}
.wa{width:94.537500px;}
.wc{width:105.637500px;}
.wb{width:116.137500px;}
.w2b{width:126.037500px;}
.w2e{width:134.137500px;}
.w7{width:136.237500px;}
.w1f{width:165.975000px;}
.w20{width:166.230000px;}
.w21{width:166.245000px;}
.w22{width:166.275000px;}
.w5{width:170.130000px;}
.w1a{width:176.175000px;}
.w18{width:181.875000px;}
.w1c{width:183.075000px;}
.w2d{width:188.175000px;}
.w9{width:192.345000px;}
.w2f{width:198.675000px;}
.we{width:201.375000px;}
.w26{width:216.075000px;}
.w10{width:222.375000px;}
.w2c{width:223.875000px;}
.w16{width:224.175000px;}
.w17{width:224.475000px;}
.w13{width:225.675000px;}
.w12{width:225.975000px;}
.w23{width:242.175000px;}
.wf{width:254.475000px;}
.w2{width:273.405000px;}
.w24{width:277.875000px;}
.w29{width:313.320000px;}
.w27{width:314.220000px;}
.w1e{width:325.920000px;}
.w1d{width:329.205000px;}
.wd{width:361.020000px;}
.w28{width:361.620000px;}
.w2a{width:362.520000px;}
.w6{width:383.520000px;}
.w15{width:450.150000px;}
.w30{width:499.050000px;}
.w11{width:617.280000px;}
.w25{width:666.225000px;}
.w14{width:677.325000px;}
.w4{width:893.099969px;}
.w3{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x7{left:-36.900031px;}
.x0{left:0.000000px;}
.x4a{left:1.500000px;}
.x3e{left:3.900000px;}
.x11{left:7.500000px;}
.x41{left:8.700000px;}
.x3{left:10.800000px;}
.x37{left:13.500000px;}
.x1b{left:17.100000px;}
.x1c{left:20.992500px;}
.x18{left:27.592500px;}
.xf{left:31.845000px;}
.x1a{left:33.892500px;}
.x2c{left:49.485000px;}
.x36{left:116.437500px;}
.x43{left:121.837487px;}
.xb{left:127.537487px;}
.x17{left:129.037500px;}
.x32{left:131.437500px;}
.x3d{left:136.537500px;}
.x1d{left:138.337487px;}
.x2{left:140.130000px;}
.x44{left:148.837487px;}
.x38{left:154.529987px;}
.x16{left:159.929987px;}
.x2d{left:163.575000px;}
.x2e{left:168.360000px;}
.x2b{left:170.782500px;}
.x39{left:181.574987px;}
.x19{left:185.475000px;}
.x25{left:189.330000px;}
.x42{left:203.782500px;}
.xa{left:205.574987px;}
.x3a{left:208.874987px;}
.xc{left:210.375000px;}
.x21{left:212.460000px;}
.x1f{left:216.682500px;}
.x12{left:223.875000px;}
.x3b{left:235.574987px;}
.x4b{left:255.975000px;}
.x2f{left:274.612500px;}
.x33{left:298.920000px;}
.x27{left:324.420000px;}
.x4e{left:328.020000px;}
.x14{left:330.420000px;}
.x13{left:340.620000px;}
.x5{left:342.704987px;}
.x20{left:353.520000px;}
.x24{left:355.020000px;}
.x31{left:358.619987px;}
.x40{left:361.620000px;}
.x9{left:368.819987px;}
.x4{left:372.119987px;}
.xd{left:380.520000px;}
.x28{left:382.920000px;}
.x3c{left:405.119987px;}
.x49{left:443.250000px;}
.x8{left:446.549987px;}
.x6{left:460.049987px;}
.x34{left:466.650000px;}
.x30{left:471.750000px;}
.x4c{left:481.050000px;}
.xe{left:516.750000px;}
.x29{left:560.595000px;}
.x10{left:571.695000px;}
.x22{left:579.195000px;}
.x23{left:580.695000px;}
.x15{left:585.780000px;}
.x2a{left:614.595000px;}
.x1{left:619.695000px;}
.x35{left:634.395000px;}
.x3f{left:663.532500px;}
.x4d{left:670.725000px;}
.x45{left:696.224987px;}
.x26{left:750.824987px;}
.x47{left:765.524987px;}
.x46{left:786.869987px;}
.x48{left:799.754987px;}
.x1e{left:804.569987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.333333pt;}
.ls2a{letter-spacing:-0.725333pt;}
.ls4{letter-spacing:-0.704000pt;}
.ls25{letter-spacing:-0.464000pt;}
.ls3f{letter-spacing:-0.458667pt;}
.lse{letter-spacing:-0.448000pt;}
.ls15{letter-spacing:-0.426667pt;}
.ls4e{letter-spacing:-0.373333pt;}
.ls3c{letter-spacing:-0.362667pt;}
.ls27{letter-spacing:-0.346667pt;}
.ls3e{letter-spacing:-0.341333pt;}
.ls30{letter-spacing:-0.298667pt;}
.ls2b{letter-spacing:-0.256000pt;}
.ls4c{letter-spacing:-0.224000pt;}
.ls46{letter-spacing:-0.192000pt;}
.ls1e{letter-spacing:-0.170667pt;}
.ls4d{letter-spacing:-0.160000pt;}
.ls14{letter-spacing:-0.149333pt;}
.lsa{letter-spacing:-0.112000pt;}
.ls2c{letter-spacing:-0.106667pt;}
.lsf{letter-spacing:-0.021333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3d{letter-spacing:0.000001pt;}
.ls49{letter-spacing:0.000003pt;}
.ls2e{letter-spacing:0.021333pt;}
.ls28{letter-spacing:0.064000pt;}
.ls29{letter-spacing:0.080000pt;}
.ls40{letter-spacing:0.085333pt;}
.lsb{letter-spacing:0.090667pt;}
.ls1f{letter-spacing:0.106667pt;}
.ls0{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.170667pt;}
.ls22{letter-spacing:0.192000pt;}
.ls10{letter-spacing:0.213333pt;}
.ls2d{letter-spacing:0.256000pt;}
.ls39{letter-spacing:0.266667pt;}
.ls13{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:0.341333pt;}
.ls5{letter-spacing:0.362667pt;}
.ls4b{letter-spacing:0.368000pt;}
.ls9{letter-spacing:0.384000pt;}
.ls31{letter-spacing:0.421333pt;}
.ls26{letter-spacing:0.490667pt;}
.ls4a{letter-spacing:0.501333pt;}
.ls7{letter-spacing:0.512000pt;}
.ls3{letter-spacing:0.533333pt;}
.ls47{letter-spacing:0.597333pt;}
.ls17{letter-spacing:0.714667pt;}
.ls1d{letter-spacing:0.768000pt;}
.ls1c{letter-spacing:2.133333pt;}
.ls16{letter-spacing:4.266667pt;}
.ls3a{letter-spacing:5.333333pt;}
.ls19{letter-spacing:12.800000pt;}
.ls37{letter-spacing:18.634667pt;}
.ls35{letter-spacing:21.834667pt;}
.ls1b{letter-spacing:22.400000pt;}
.ls43{letter-spacing:27.168000pt;}
.ls42{letter-spacing:28.234667pt;}
.ls44{letter-spacing:29.248000pt;}
.ls41{letter-spacing:31.434667pt;}
.ls45{letter-spacing:32.448000pt;}
.ls21{letter-spacing:33.824000pt;}
.ls23{letter-spacing:36.117333pt;}
.ls33{letter-spacing:36.581333pt;}
.ls20{letter-spacing:38.197333pt;}
.ls36{letter-spacing:38.741333pt;}
.ls24{letter-spacing:39.317333pt;}
.ls3b{letter-spacing:39.808000pt;}
.ls32{letter-spacing:39.968000pt;}
.ls48{letter-spacing:42.981333pt;}
.ls2f{letter-spacing:47.248000pt;}
.lsc{letter-spacing:54.981333pt;}
.lsd{letter-spacing:63.701333pt;}
.ls38{letter-spacing:70.741333pt;}
.ls34{letter-spacing:71.808000pt;}
.ls18{letter-spacing:72.874667pt;}
.ls12{letter-spacing:73.941333pt;}
.ls11{letter-spacing:124.208000pt;}
.ls8{letter-spacing:744.570667pt;}
.ls6{letter-spacing:750.501333pt;}
.ws1f{word-spacing:-64.000000pt;}
.ws0{word-spacing:-58.666667pt;}
.wsd{word-spacing:-14.464000pt;}
.wsc{word-spacing:-14.442667pt;}
.wsb{word-spacing:-14.016000pt;}
.ws20{word-spacing:-13.525333pt;}
.wse{word-spacing:-13.504000pt;}
.ws2a{word-spacing:-13.397333pt;}
.ws3{word-spacing:-13.333333pt;}
.ws18{word-spacing:-13.248000pt;}
.ws2d{word-spacing:-13.184003pt;}
.wsf{word-spacing:-13.184000pt;}
.ws1e{word-spacing:-13.162667pt;}
.ws2b{word-spacing:-13.141333pt;}
.ws1b{word-spacing:-13.056000pt;}
.ws29{word-spacing:-13.013333pt;}
.ws11{word-spacing:-12.992000pt;}
.ws2{word-spacing:-12.970667pt;}
.ws17{word-spacing:-12.928000pt;}
.ws2c{word-spacing:-12.906667pt;}
.ws1d{word-spacing:-12.885333pt;}
.ws1c{word-spacing:-12.821333pt;}
.ws26{word-spacing:-12.800001pt;}
.ws1{word-spacing:-12.800000pt;}
.ws28{word-spacing:-12.778667pt;}
.ws23{word-spacing:-12.693333pt;}
.ws10{word-spacing:-12.629333pt;}
.ws27{word-spacing:-12.608000pt;}
.ws19{word-spacing:-12.544000pt;}
.ws24{word-spacing:-12.458667pt;}
.ws7{word-spacing:-12.245333pt;}
.ws2f{word-spacing:-12.234667pt;}
.ws15{word-spacing:-12.224000pt;}
.ws8{word-spacing:-12.117333pt;}
.ws30{word-spacing:-12.101333pt;}
.ws4{word-spacing:-12.096000pt;}
.ws14{word-spacing:-11.925333pt;}
.wsa{word-spacing:-11.824000pt;}
.ws2e{word-spacing:-11.813333pt;}
.ws6{word-spacing:-11.733333pt;}
.ws9{word-spacing:-11.621333pt;}
.ws32{word-spacing:-11.573333pt;}
.ws31{word-spacing:-11.509333pt;}
.ws16{word-spacing:-11.386667pt;}
.ws33{word-spacing:-11.360000pt;}
.ws13{word-spacing:-11.306667pt;}
.ws12{word-spacing:-11.269333pt;}
.ws25{word-spacing:-9.141333pt;}
.ws1a{word-spacing:-8.661333pt;}
.ws21{word-spacing:-0.426667pt;}
.ws22{word-spacing:-0.042667pt;}
.ws5{word-spacing:0.000000pt;}
._11{margin-left:-13.066667pt;}
._12{margin-left:-11.386667pt;}
._14{margin-left:-10.389333pt;}
._d{margin-left:-9.450667pt;}
._10{margin-left:-8.373333pt;}
._a{margin-left:-7.349333pt;}
._13{margin-left:-6.314667pt;}
._c{margin-left:-5.205333pt;}
._41{margin-left:-4.032000pt;}
._8{margin-left:-3.072000pt;}
._9{margin-left:-2.112000pt;}
._1{margin-left:-1.072000pt;}
._0{width:0.938667pt;}
._e{width:2.181333pt;}
._f{width:3.216000pt;}
._16{width:4.517333pt;}
._21{width:6.298667pt;}
._1d{width:7.317333pt;}
._1e{width:8.896000pt;}
._2a{width:9.786667pt;}
._1a{width:10.709333pt;}
._1b{width:11.888000pt;}
._1c{width:14.352000pt;}
._22{width:15.461333pt;}
._23{width:16.682667pt;}
._2b{width:17.573333pt;}
._18{width:18.517333pt;}
._17{width:19.440000pt;}
._19{width:20.368000pt;}
._1f{width:22.016000pt;}
._20{width:23.104000pt;}
._31{width:24.288000pt;}
._29{width:25.792000pt;}
._42{width:26.805333pt;}
._30{width:28.101333pt;}
._2f{width:29.157333pt;}
._2c{width:30.848000pt;}
._2d{width:32.325333pt;}
._2e{width:33.392000pt;}
._37{width:34.432000pt;}
._43{width:35.333333pt;}
._38{width:36.304000pt;}
._3d{width:39.040000pt;}
._3e{width:40.256000pt;}
._3c{width:58.944000pt;}
._36{width:63.056000pt;}
._24{width:70.080000pt;}
._25{width:71.418667pt;}
._6{width:91.733333pt;}
._35{width:157.168000pt;}
._34{width:179.408000pt;}
._27{width:203.562667pt;}
._3{width:261.888000pt;}
._4{width:507.434667pt;}
._26{width:610.826667pt;}
._2{width:631.424000pt;}
._3f{width:904.800000pt;}
._3b{width:905.866667pt;}
._40{width:908.000000pt;}
._32{width:909.066667pt;}
._39{width:911.200000pt;}
._33{width:913.333333pt;}
._3a{width:914.400000pt;}
._b{width:937.866667pt;}
._15{width:940.000000pt;}
._7{width:942.133333pt;}
._28{width:943.200000pt;}
._5{width:969.408000pt;}
.fs6{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:85.333333pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y162{bottom:3.466667pt;}
.yaa{bottom:6.666667pt;}
.yb8{bottom:6.680000pt;}
.yac{bottom:6.933333pt;}
.yba{bottom:6.946667pt;}
.ya6{bottom:7.733333pt;}
.y110{bottom:8.840000pt;}
.y139{bottom:9.053333pt;}
.y13b{bottom:9.066667pt;}
.y1a9{bottom:9.333333pt;}
.yee{bottom:9.346667pt;}
.y1a3{bottom:9.373333pt;}
.yed{bottom:10.133333pt;}
.yec{bottom:10.680000pt;}
.y111{bottom:10.706667pt;}
.y1a7{bottom:12.266667pt;}
.y1a5{bottom:12.533333pt;}
.y1ec{bottom:12.786667pt;}
.y1a8{bottom:12.800000pt;}
.y1fc{bottom:12.813333pt;}
.y1ee{bottom:13.066667pt;}
.y1f8{bottom:13.106667pt;}
.y1f{bottom:13.866667pt;}
.y20c{bottom:14.133333pt;}
.y211{bottom:14.386667pt;}
.y20f{bottom:14.400000pt;}
.y213{bottom:14.413333pt;}
.y138{bottom:14.426667pt;}
.y13d{bottom:15.733333pt;}
.y33{bottom:16.026667pt;}
.y164{bottom:16.533333pt;}
.yf4{bottom:16.800000pt;}
.y29{bottom:17.066667pt;}
.y2d{bottom:17.080000pt;}
.y1cb{bottom:17.600000pt;}
.y1cd{bottom:17.626667pt;}
.y1d2{bottom:17.866667pt;}
.y1a2{bottom:20.800000pt;}
.y10e{bottom:21.066667pt;}
.y20d{bottom:22.400000pt;}
.y27{bottom:23.466667pt;}
.y1c4{bottom:23.480000pt;}
.y31{bottom:23.720000pt;}
.y20b{bottom:23.733333pt;}
.y15{bottom:24.533333pt;}
.y17{bottom:24.800000pt;}
.y1a{bottom:24.813333pt;}
.y13{bottom:24.840000pt;}
.y1f0{bottom:26.400000pt;}
.y1d1{bottom:26.666667pt;}
.yc9{bottom:27.186667pt;}
.ya9{bottom:27.200000pt;}
.yae{bottom:27.226667pt;}
.yb0{bottom:27.453333pt;}
.yb5{bottom:27.466667pt;}
.yc2{bottom:27.480000pt;}
.yf3{bottom:35.200000pt;}
.y1fa{bottom:39.733333pt;}
.y1f6{bottom:39.773333pt;}
.y1f1{bottom:40.000000pt;}
.y1d0{bottom:40.266667pt;}
.yc5{bottom:41.333333pt;}
.y1e{bottom:43.240000pt;}
.y2b{bottom:44.000000pt;}
.ya8{bottom:47.733333pt;}
.y10d{bottom:48.000000pt;}
.yc1{bottom:48.013333pt;}
.y26{bottom:50.440000pt;}
.y1f4{bottom:53.373333pt;}
.yf2{bottom:53.640000pt;}
.y12{bottom:54.160000pt;}
.y136{bottom:61.360000pt;}
.y19{bottom:64.840000pt;}
.y1f5{bottom:66.706667pt;}
.yf1{bottom:72.040000pt;}
.y10b{bottom:74.706667pt;}
.y6{bottom:75.766667pt;}
.y137{bottom:80.826667pt;}
.y10c{bottom:82.706667pt;}
.y1f7{bottom:93.640000pt;}
.yf0{bottom:103.506667pt;}
.y10a{bottom:109.640000pt;}
.y133{bottom:138.160000pt;}
.y2{bottom:140.293333pt;}
.y19c{bottom:141.360000pt;}
.y19f{bottom:148.826667pt;}
.yad{bottom:149.106667pt;}
.y10f{bottom:149.360000pt;}
.y8a{bottom:150.973333pt;}
.y23{bottom:151.773333pt;}
.y1b0{bottom:153.093333pt;}
.y146{bottom:154.960000pt;}
.y1bf{bottom:156.573333pt;}
.y180{bottom:159.800000pt;}
.y105{bottom:160.600000pt;}
.y19b{bottom:163.800000pt;}
.y1{bottom:170.466667pt;}
.y89{bottom:173.400000pt;}
.y19e{bottom:176.600000pt;}
.y1be{bottom:179.000000pt;}
.y1af{bottom:180.600000pt;}
.y17f{bottom:182.200000pt;}
.y104{bottom:183.266667pt;}
.y1e9{bottom:183.800000pt;}
.yc4{bottom:184.333333pt;}
.y19a{bottom:186.466667pt;}
.y145{bottom:187.800000pt;}
.y1c9{bottom:188.066667pt;}
.y22{bottom:189.933333pt;}
.y1a0{bottom:192.333333pt;}
.y88{bottom:195.800000pt;}
.yd2{bottom:198.466667pt;}
.y1bd{bottom:201.666667pt;}
.y19d{bottom:204.066667pt;}
.yab{bottom:204.866667pt;}
.y103{bottom:205.666667pt;}
.y1e8{bottom:206.200000pt;}
.y1ae{bottom:208.333333pt;}
.y144{bottom:210.466667pt;}
.y160{bottom:212.066667pt;}
.y1c8{bottom:215.800000pt;}
.y199{bottom:216.866667pt;}
.y17e{bottom:217.933333pt;}
.y87{bottom:218.466667pt;}
.y1bc{bottom:224.066667pt;}
.yd1{bottom:226.200000pt;}
.y102{bottom:228.066667pt;}
.y21{bottom:228.333333pt;}
.y1e7{bottom:228.600000pt;}
.y143{bottom:232.866667pt;}
.y15f{bottom:234.466667pt;}
.y1a6{bottom:239.000000pt;}
.y1ad{bottom:239.800000pt;}
.ya7{bottom:240.333333pt;}
.y86{bottom:240.866667pt;}
.y20{bottom:243.266667pt;}
.y1bb{bottom:246.466667pt;}
.y1c7{bottom:247.000000pt;}
.y101{bottom:250.466667pt;}
.y1e6{bottom:251.000000pt;}
.yc3{bottom:254.200000pt;}
.y142{bottom:255.266667pt;}
.y67{bottom:257.133333pt;}
.yd0{bottom:257.400000pt;}
.y1ff{bottom:257.666667pt;}
.y1ac{bottom:260.333333pt;}
.y17d{bottom:262.733333pt;}
.y85{bottom:263.266667pt;}
.y1c6{bottom:266.733333pt;}
.y100{bottom:272.866667pt;}
.y132{bottom:273.133333pt;}
.y1e5{bottom:273.666667pt;}
.y204{bottom:274.466667pt;}
.y66{bottom:276.866667pt;}
.y141{bottom:277.666667pt;}
.ycf{bottom:278.200000pt;}
.y15e{bottom:279.533333pt;}
.y1d{bottom:283.266667pt;}
.y17c{bottom:285.400000pt;}
.y84{bottom:285.666667pt;}
.y1fe{bottom:288.866667pt;}
.yff{bottom:295.533333pt;}
.y1e4{bottom:296.066667pt;}
.y1ba{bottom:299.000000pt;}
.y198{bottom:300.066667pt;}
.y140{bottom:300.333333pt;}
.y15d{bottom:301.933333pt;}
.y65{bottom:305.933333pt;}
.y83{bottom:308.106667pt;}
.yc0{bottom:309.960000pt;}
.ya5{bottom:316.626667pt;}
.yfe{bottom:317.960000pt;}
.y1e3{bottom:318.506667pt;}
.y1fd{bottom:319.306667pt;}
.y17b{bottom:321.173333pt;}
.y13f{bottom:322.773333pt;}
.y203{bottom:324.093333pt;}
.y15c{bottom:324.360000pt;}
.y82{bottom:330.760000pt;}
.y1c5{bottom:331.560000pt;}
.y64{bottom:335.040000pt;}
.y1fb{bottom:339.560000pt;}
.yfd{bottom:340.373333pt;}
.y1e2{bottom:340.893333pt;}
.y1c{bottom:341.693333pt;}
.y17a{bottom:343.560000pt;}
.y197{bottom:345.173333pt;}
.y202{bottom:346.773333pt;}
.y15b{bottom:347.040000pt;}
.ya4{bottom:349.706667pt;}
.y81{bottom:353.173333pt;}
.y13e{bottom:354.506667pt;}
.ya2{bottom:361.173333pt;}
.yfc{bottom:362.773333pt;}
.y131{bottom:363.040000pt;}
.y1e1{bottom:363.293333pt;}
.y63{bottom:364.106667pt;}
.y179{bottom:365.960000pt;}
.y13c{bottom:367.293333pt;}
.y196{bottom:367.560000pt;}
.y201{bottom:369.173333pt;}
.y7{bottom:369.440000pt;}
.y80{bottom:375.560000pt;}
.ya3{bottom:377.440000pt;}
.y1b{bottom:381.693333pt;}
.y1f9{bottom:382.773333pt;}
.yfb{bottom:385.440000pt;}
.y1e0{bottom:385.960000pt;}
.ybf{bottom:386.506667pt;}
.y4e{bottom:386.773333pt;}
.y178{bottom:388.626667pt;}
.y195{bottom:389.960000pt;}
.y200{bottom:391.560000pt;}
.y15a{bottom:391.840000pt;}
.y62{bottom:393.173333pt;}
.y1c3{bottom:396.626667pt;}
.y7f{bottom:397.960000pt;}
.y13a{bottom:399.293333pt;}
.ya1{bottom:399.560000pt;}
.y109{bottom:406.226667pt;}
.yfa{bottom:407.840000pt;}
.y1df{bottom:408.360000pt;}
.y177{bottom:411.040000pt;}
.y194{bottom:412.626667pt;}
.yea{bottom:413.960000pt;}
.y159{bottom:414.226667pt;}
.y7e{bottom:420.626667pt;}
.y18{bottom:421.693333pt;}
.ya0{bottom:421.960000pt;}
.y61{bottom:422.226667pt;}
.y127{bottom:426.226667pt;}
.y4d{bottom:430.226667pt;}
.y1de{bottom:430.773333pt;}
.y21b{bottom:431.306667pt;}
.y176{bottom:433.440000pt;}
.y193{bottom:435.040000pt;}
.yce{bottom:436.106667pt;}
.ye9{bottom:436.626667pt;}
.y7d{bottom:443.026667pt;}
.y9f{bottom:444.640000pt;}
.y130{bottom:446.226667pt;}
.y135{bottom:446.506667pt;}
.y126{bottom:448.640000pt;}
.y60{bottom:451.293333pt;}
.yf9{bottom:452.626667pt;}
.y1f3{bottom:452.893333pt;}
.y1dd{bottom:453.173333pt;}
.y175{bottom:455.840000pt;}
.ybe{bottom:456.933333pt;}
.y192{bottom:457.466667pt;}
.ye8{bottom:459.066667pt;}
.y158{bottom:459.333333pt;}
.y1c2{bottom:461.466667pt;}
.y7c{bottom:465.466667pt;}
.y9e{bottom:467.066667pt;}
.y4c{bottom:468.666667pt;}
.y21a{bottom:469.733333pt;}
.y125{bottom:471.066667pt;}
.yf8{bottom:475.066667pt;}
.y1dc{bottom:475.866667pt;}
.y191{bottom:479.866667pt;}
.y5f{bottom:480.400000pt;}
.ye7{bottom:481.466667pt;}
.y157{bottom:481.733333pt;}
.y1b9{bottom:483.600000pt;}
.y219{bottom:485.200000pt;}
.y7b{bottom:487.866667pt;}
.y9d{bottom:489.466667pt;}
.y12f{bottom:491.333333pt;}
.y174{bottom:491.600000pt;}
.ybd{bottom:492.133333pt;}
.y124{bottom:493.466667pt;}
.yf7{bottom:497.733333pt;}
.y1db{bottom:498.266667pt;}
.y16{bottom:501.733333pt;}
.y190{bottom:502.266667pt;}
.ye6{bottom:503.866667pt;}
.y156{bottom:504.133333pt;}
.y1b8{bottom:505.733333pt;}
.y4b{bottom:506.800000pt;}
.y5e{bottom:509.466667pt;}
.y7a{bottom:510.266667pt;}
.y9c{bottom:511.866667pt;}
.y12e{bottom:513.733333pt;}
.y173{bottom:514.266667pt;}
.y218{bottom:515.600000pt;}
.y123{bottom:516.133333pt;}
.yf6{bottom:520.133333pt;}
.y18f{bottom:524.933333pt;}
.ye5{bottom:526.266667pt;}
.y4a{bottom:527.066667pt;}
.ybc{bottom:527.600000pt;}
.y1b7{bottom:528.400000pt;}
.y1da{bottom:528.666667pt;}
.y12b{bottom:532.666667pt;}
.y79{bottom:532.933333pt;}
.y1ab{bottom:533.200000pt;}
.ycd{bottom:533.466667pt;}
.y9b{bottom:534.266667pt;}
.y155{bottom:534.533333pt;}
.y172{bottom:536.666667pt;}
.y5d{bottom:538.533333pt;}
.y14{bottom:541.733333pt;}
.y35{bottom:545.733333pt;}
.y49{bottom:546.533333pt;}
.y18e{bottom:547.333333pt;}
.yf5{bottom:547.866667pt;}
.ye4{bottom:548.933333pt;}
.y108{bottom:550.533333pt;}
.y78{bottom:555.333333pt;}
.y1a4{bottom:555.866667pt;}
.y9a{bottom:556.933333pt;}
.y12d{bottom:557.466667pt;}
.y171{bottom:559.066667pt;}
.y1b6{bottom:559.866667pt;}
.y122{bottom:560.933333pt;}
.y48{bottom:565.733333pt;}
.y1d9{bottom:567.066667pt;}
.y5c{bottom:567.600000pt;}
.yef{bottom:569.466667pt;}
.y18d{bottom:569.733333pt;}
.ye3{bottom:571.333333pt;}
.y154{bottom:573.200000pt;}
.y217{bottom:575.866667pt;}
.y1f2{bottom:576.666667pt;}
.y77{bottom:577.733333pt;}
.y107{bottom:578.000000pt;}
.y99{bottom:579.333333pt;}
.y1aa{bottom:579.600000pt;}
.y1b5{bottom:580.400000pt;}
.y11{bottom:581.466667pt;}
.ybb{bottom:583.333333pt;}
.y47{bottom:585.200000pt;}
.y34{bottom:585.733333pt;}
.y1d8{bottom:589.733333pt;}
.y12c{bottom:591.600000pt;}
.y18c{bottom:592.133333pt;}
.ye2{bottom:593.733333pt;}
.y5b{bottom:596.666667pt;}
.ycc{bottom:599.066667pt;}
.y1c1{bottom:599.866667pt;}
.y76{bottom:600.133333pt;}
.y32{bottom:601.733333pt;}
.y153{bottom:602.266667pt;}
.y170{bottom:604.133333pt;}
.y46{bottom:604.400000pt;}
.y121{bottom:605.760000pt;}
.y216{bottom:606.026667pt;}
.y1d7{bottom:612.173333pt;}
.y18b{bottom:614.840000pt;}
.ye1{bottom:616.173333pt;}
.yb9{bottom:618.560000pt;}
.y1ef{bottom:619.893333pt;}
.y12a{bottom:622.573333pt;}
.y75{bottom:622.840000pt;}
.y45{bottom:623.893333pt;}
.y98{bottom:624.173333pt;}
.y152{bottom:624.693333pt;}
.y5a{bottom:625.773333pt;}
.y16f{bottom:626.560000pt;}
.y120{bottom:628.440000pt;}
.y1c0{bottom:630.306667pt;}
.y1d6{bottom:634.573333pt;}
.y30{bottom:635.640000pt;}
.y215{bottom:636.173333pt;}
.y18a{bottom:637.226667pt;}
.ye0{bottom:638.840000pt;}
.y44{bottom:643.093333pt;}
.y74{bottom:645.240000pt;}
.y97{bottom:646.840000pt;}
.y151{bottom:647.106667pt;}
.y1a1{bottom:650.560000pt;}
.y11f{bottom:650.840000pt;}
.ycb{bottom:654.026667pt;}
.y59{bottom:654.840000pt;}
.y129{bottom:656.960000pt;}
.y189{bottom:659.626667pt;}
.ydf{bottom:661.226667pt;}
.y16e{bottom:662.306667pt;}
.y43{bottom:662.560000pt;}
.y214{bottom:666.560000pt;}
.y73{bottom:667.640000pt;}
.y96{bottom:669.240000pt;}
.y150{bottom:669.773333pt;}
.y11e{bottom:673.226667pt;}
.y10{bottom:674.306667pt;}
.yb7{bottom:674.560000pt;}
.y128{bottom:677.760000pt;}
.y1d5{bottom:679.373333pt;}
.y42{bottom:681.773333pt;}
.y188{bottom:682.026667pt;}
.yde{bottom:683.626667pt;}
.y58{bottom:683.893333pt;}
.y16d{bottom:684.706667pt;}
.y2f{bottom:687.893333pt;}
.yca{bottom:689.226667pt;}
.y1ed{bottom:690.026667pt;}
.y72{bottom:690.040000pt;}
.y95{bottom:691.626667pt;}
.y14f{bottom:692.173333pt;}
.y11d{bottom:695.626667pt;}
.y212{bottom:696.693333pt;}
.yeb{bottom:697.760000pt;}
.y41{bottom:701.226667pt;}
.y187{bottom:704.706667pt;}
.ydd{bottom:706.040000pt;}
.y16c{bottom:707.373333pt;}
.yb6{bottom:709.760000pt;}
.y185{bottom:711.626667pt;}
.yf{bottom:712.440000pt;}
.y71{bottom:712.706667pt;}
.y57{bottom:712.960000pt;}
.y94{bottom:714.040000pt;}
.y14e{bottom:714.560000pt;}
.y2e{bottom:717.240000pt;}
.y11c{bottom:718.293333pt;}
.y40{bottom:720.440000pt;}
.y1d4{bottom:723.373333pt;}
.yc8{bottom:724.440000pt;}
.y134{bottom:724.706667pt;}
.y210{bottom:726.840000pt;}
.y186{bottom:727.093333pt;}
.ydc{bottom:728.706667pt;}
.y16b{bottom:729.773333pt;}
.y2c{bottom:732.960000pt;}
.y1eb{bottom:733.506667pt;}
.y70{bottom:735.106667pt;}
.y93{bottom:736.706667pt;}
.y14d{bottom:736.960000pt;}
.y184{bottom:739.373333pt;}
.y3f{bottom:739.626667pt;}
.y11b{bottom:740.706667pt;}
.y56{bottom:742.293333pt;}
.ye{bottom:746.040000pt;}
.ydb{bottom:751.106667pt;}
.y16a{bottom:752.173333pt;}
.y1d3{bottom:754.866667pt;}
.y20e{bottom:757.000000pt;}
.y6f{bottom:757.533333pt;}
.y3e{bottom:759.133333pt;}
.y14c{bottom:759.400000pt;}
.y11a{bottom:763.133333pt;}
.y2a{bottom:764.466667pt;}
.yb4{bottom:765.533333pt;}
.y183{bottom:766.866667pt;}
.y55{bottom:771.400000pt;}
.yd{bottom:771.933333pt;}
.yda{bottom:773.533333pt;}
.y169{bottom:774.600000pt;}
.y6e{bottom:779.933333pt;}
.yc7{bottom:780.200000pt;}
.y92{bottom:781.533333pt;}
.y1ea{bottom:781.800000pt;}
.y14b{bottom:782.066667pt;}
.y119{bottom:785.533333pt;}
.y3d{bottom:787.133333pt;}
.yd9{bottom:795.933333pt;}
.y182{bottom:798.333333pt;}
.y54{bottom:800.466667pt;}
.y6d{bottom:802.333333pt;}
.y91{bottom:803.933333pt;}
.y14a{bottom:804.466667pt;}
.y1cf{bottom:805.266667pt;}
.y118{bottom:808.200000pt;}
.y168{bottom:810.333333pt;}
.yc{bottom:810.866667pt;}
.yc6{bottom:815.666667pt;}
.yd8{bottom:818.333333pt;}
.y181{bottom:819.133333pt;}
.yb3{bottom:821.533333pt;}
.y28{bottom:822.866667pt;}
.y6c{bottom:825.000000pt;}
.y3c{bottom:825.533333pt;}
.y90{bottom:826.333333pt;}
.y53{bottom:829.533333pt;}
.y117{bottom:830.600000pt;}
.y167{bottom:833.000000pt;}
.y149{bottom:838.866667pt;}
.yd7{bottom:841.000000pt;}
.y1b4{bottom:843.666667pt;}
.y3b{bottom:846.066667pt;}
.y6b{bottom:847.400000pt;}
.y8f{bottom:849.000000pt;}
.yb{bottom:851.933333pt;}
.y116{bottom:853.000000pt;}
.y25{bottom:854.600000pt;}
.y166{bottom:855.400000pt;}
.y20a{bottom:855.666667pt;}
.yb2{bottom:856.733333pt;}
.y52{bottom:858.600000pt;}
.y163{bottom:860.200000pt;}
.y1ce{bottom:861.266667pt;}
.yd6{bottom:863.400000pt;}
.y3a{bottom:865.266667pt;}
.y1b3{bottom:866.333333pt;}
.y6a{bottom:869.800000pt;}
.y8e{bottom:871.400000pt;}
.y148{bottom:873.266667pt;}
.y115{bottom:875.400000pt;}
.y106{bottom:877.800000pt;}
.y39{bottom:884.733333pt;}
.yd5{bottom:885.800000pt;}
.y51{bottom:887.666667pt;}
.y1b2{bottom:888.733333pt;}
.yb1{bottom:891.933333pt;}
.y69{bottom:892.200000pt;}
.y8d{bottom:893.800000pt;}
.ya{bottom:895.666667pt;}
.y114{bottom:897.800000pt;}
.y1cc{bottom:899.666667pt;}
.y165{bottom:900.200000pt;}
.y147{bottom:900.733333pt;}
.y38{bottom:903.960000pt;}
.yd4{bottom:908.226667pt;}
.y209{bottom:910.106667pt;}
.y1b1{bottom:911.173333pt;}
.y8c{bottom:916.226667pt;}
.y68{bottom:922.893333pt;}
.y9{bottom:923.173333pt;}
.y50{bottom:926.373333pt;}
.yaf{bottom:927.173333pt;}
.y161{bottom:929.040000pt;}
.yd3{bottom:930.893333pt;}
.y37{bottom:931.960000pt;}
.y24{bottom:933.560000pt;}
.y113{bottom:934.626667pt;}
.y208{bottom:937.840000pt;}
.y1ca{bottom:938.106667pt;}
.y8b{bottom:938.893333pt;}
.y4f{bottom:956.226667pt;}
.y36{bottom:961.293333pt;}
.y8{bottom:961.560000pt;}
.y112{bottom:965.040000pt;}
.y207{bottom:989.040000pt;}
.y5{bottom:996.506667pt;}
.y206{bottom:1006.893333pt;}
.y4{bottom:1014.373333pt;}
.y205{bottom:1024.773333pt;}
.y3{bottom:1032.226667pt;}
.h32{height:18.400000pt;}
.h20{height:20.533333pt;}
.h1f{height:20.566667pt;}
.h1c{height:20.800000pt;}
.h19{height:21.600000pt;}
.h44{height:26.666667pt;}
.h3f{height:26.700000pt;}
.h40{height:26.933333pt;}
.h36{height:27.466667pt;}
.h33{height:28.000000pt;}
.h45{height:29.333333pt;}
.h48{height:29.586667pt;}
.h46{height:29.600000pt;}
.h47{height:29.633333pt;}
.h31{height:30.666667pt;}
.h11{height:30.933333pt;}
.h13{height:30.966667pt;}
.h2e{height:32.000000pt;}
.h15{height:33.100000pt;}
.h35{height:33.366667pt;}
.h34{height:35.733333pt;}
.h28{height:36.492188pt;}
.h14{height:37.586667pt;}
.h3c{height:37.600000pt;}
.h3d{height:37.633333pt;}
.h3e{height:37.866667pt;}
.h2d{height:38.812500pt;}
.h30{height:39.200000pt;}
.hb{height:39.733333pt;}
.hc{height:40.000000pt;}
.h21{height:41.066667pt;}
.h24{height:41.086667pt;}
.h1d{height:41.100000pt;}
.h1e{height:41.333333pt;}
.h38{height:43.343750pt;}
.h18{height:44.437500pt;}
.h2{height:44.601562pt;}
.h25{height:46.593750pt;}
.h7{height:46.781250pt;}
.h1b{height:47.437500pt;}
.h29{height:48.093750pt;}
.hf{height:48.125000pt;}
.h5{height:48.656250pt;}
.h39{height:49.066667pt;}
.h3b{height:49.100000pt;}
.h3a{height:49.333333pt;}
.h17{height:51.750000pt;}
.h43{height:53.600000pt;}
.h2a{height:53.770833pt;}
.h41{height:53.866667pt;}
.h23{height:55.200000pt;}
.h12{height:57.866667pt;}
.h4{height:58.351562pt;}
.he{height:58.433333pt;}
.h3{height:60.070312pt;}
.h1a{height:61.600000pt;}
.h22{height:61.866667pt;}
.h10{height:64.300000pt;}
.h9{height:64.875000pt;}
.h16{height:65.531250pt;}
.ha{height:69.366667pt;}
.h8{height:72.984375pt;}
.hd{height:80.033333pt;}
.h42{height:107.500000pt;}
.h27{height:114.966667pt;}
.h2b{height:123.500000pt;}
.h1{height:184.333333pt;}
.h2f{height:200.066667pt;}
.h2c{height:242.200000pt;}
.h26{height:272.066667pt;}
.h37{height:298.466667pt;}
.h6{height:806.600000pt;}
.h0{height:1122.666667pt;}
.w1b{width:46.666667pt;}
.w8{width:48.833333pt;}
.w19{width:50.666667pt;}
.wa{width:84.033333pt;}
.wc{width:93.900000pt;}
.wb{width:103.233333pt;}
.w2b{width:112.033333pt;}
.w2e{width:119.233333pt;}
.w7{width:121.100000pt;}
.w1f{width:147.533333pt;}
.w20{width:147.760000pt;}
.w21{width:147.773333pt;}
.w22{width:147.800000pt;}
.w5{width:151.226667pt;}
.w1a{width:156.600000pt;}
.w18{width:161.666667pt;}
.w1c{width:162.733333pt;}
.w2d{width:167.266667pt;}
.w9{width:170.973333pt;}
.w2f{width:176.600000pt;}
.we{width:179.000000pt;}
.w26{width:192.066667pt;}
.w10{width:197.666667pt;}
.w2c{width:199.000000pt;}
.w16{width:199.266667pt;}
.w17{width:199.533333pt;}
.w13{width:200.600000pt;}
.w12{width:200.866667pt;}
.w23{width:215.266667pt;}
.wf{width:226.200000pt;}
.w2{width:243.026667pt;}
.w24{width:247.000000pt;}
.w29{width:278.506667pt;}
.w27{width:279.306667pt;}
.w1e{width:289.706667pt;}
.w1d{width:292.626667pt;}
.wd{width:320.906667pt;}
.w28{width:321.440000pt;}
.w2a{width:322.240000pt;}
.w6{width:340.906667pt;}
.w15{width:400.133333pt;}
.w30{width:443.600000pt;}
.w11{width:548.693333pt;}
.w25{width:592.200000pt;}
.w14{width:602.066667pt;}
.w4{width:793.866639pt;}
.w3{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x7{left:-32.800027pt;}
.x0{left:0.000000pt;}
.x4a{left:1.333333pt;}
.x3e{left:3.466667pt;}
.x11{left:6.666667pt;}
.x41{left:7.733333pt;}
.x3{left:9.600000pt;}
.x37{left:12.000000pt;}
.x1b{left:15.200000pt;}
.x1c{left:18.660000pt;}
.x18{left:24.526667pt;}
.xf{left:28.306667pt;}
.x1a{left:30.126667pt;}
.x2c{left:43.986667pt;}
.x36{left:103.500000pt;}
.x43{left:108.299988pt;}
.xb{left:113.366655pt;}
.x17{left:114.700000pt;}
.x32{left:116.833333pt;}
.x3d{left:121.366667pt;}
.x1d{left:122.966655pt;}
.x2{left:124.560000pt;}
.x44{left:132.299988pt;}
.x38{left:137.359988pt;}
.x16{left:142.159988pt;}
.x2d{left:145.400000pt;}
.x2e{left:149.653333pt;}
.x2b{left:151.806667pt;}
.x39{left:161.399988pt;}
.x19{left:164.866667pt;}
.x25{left:168.293333pt;}
.x42{left:181.140000pt;}
.xa{left:182.733322pt;}
.x3a{left:185.666655pt;}
.xc{left:187.000000pt;}
.x21{left:188.853333pt;}
.x1f{left:192.606667pt;}
.x12{left:199.000000pt;}
.x3b{left:209.399988pt;}
.x4b{left:227.533333pt;}
.x2f{left:244.100000pt;}
.x33{left:265.706667pt;}
.x27{left:288.373333pt;}
.x4e{left:291.573333pt;}
.x14{left:293.706667pt;}
.x13{left:302.773333pt;}
.x5{left:304.626655pt;}
.x20{left:314.240000pt;}
.x24{left:315.573333pt;}
.x31{left:318.773322pt;}
.x40{left:321.440000pt;}
.x9{left:327.839988pt;}
.x4{left:330.773322pt;}
.xd{left:338.240000pt;}
.x28{left:340.373333pt;}
.x3c{left:360.106655pt;}
.x49{left:394.000000pt;}
.x8{left:396.933322pt;}
.x6{left:408.933322pt;}
.x34{left:414.800000pt;}
.x30{left:419.333333pt;}
.x4c{left:427.600000pt;}
.xe{left:459.333333pt;}
.x29{left:498.306667pt;}
.x10{left:508.173333pt;}
.x22{left:514.840000pt;}
.x23{left:516.173333pt;}
.x15{left:520.693333pt;}
.x2a{left:546.306667pt;}
.x1{left:550.840000pt;}
.x35{left:563.906667pt;}
.x3f{left:589.806667pt;}
.x4d{left:596.200000pt;}
.x45{left:618.866655pt;}
.x26{left:667.399988pt;}
.x47{left:680.466655pt;}
.x46{left:699.439988pt;}
.x48{left:710.893322pt;}
.x1e{left:715.173322pt;}
}




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