
    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_f8f6105c7a490701322aee36.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_cd12523ce31d36ea146f1aec.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_313ca3c3075fbefb76fb10ad.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.919000;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_d5295656c158ba7af0c1a18b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.005371;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_f3e422970a25b51f574eafe3.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_631e25ad1f1cea52dafae578.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.734863;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_75fc8aae274a5dc8c046d6bf.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.906000;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;}
.ff9{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ffa;src:url('chunks/assets/font_0550f63aa42dc8bc2cc88f16.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.901000;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_665ab7e2871ce26c5c062a74.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000000;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_6bdfb8feae7ac238038a52e6.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910000;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;}
.ffd{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ffe;src:url('chunks/assets/font_85200e8c42da08e0ebdb120b.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.001000;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_7e1d2e1c6651298166a688e7.woff2')format("woff");}.fff{font-family:fff;line-height:0.870000;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_c6d28d46c8ad2a1c0986dab5.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.696000;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_53d1a4290c2d94658fd29f8d.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.001000;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_aaccf7b8ec3fb759df22c1b5.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.784180;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_306af62556ff9fa708c941e9.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.714046;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_1453272091463c0c89954758.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.580000;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:ff15;src:url('chunks/assets/font_d7c00878853a6d669a7bbed8.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.555000;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:ff16;src:url('chunks/assets/font_cd7a4959b0c691a870fac0df.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.923500;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:ff17;src:url('chunks/assets/font_e8d3e84af675f58bbfb103c6.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.919000;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:ff18;src:url('chunks/assets/font_5a7df0c560a6a02a4faf0091.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.913000;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:ff19;src:url('chunks/assets/font_d5295656c158ba7af0c1a18b.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.005371;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:ff1a;src:url('chunks/assets/font_b451a2f647bb5d4580065018.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.744500;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:-21.690000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:26.028000px;}
.ls0{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.000538px;}
.ls7{letter-spacing:0.001200px;}
.ls8{letter-spacing:0.002244px;}
.ls2{letter-spacing:2.984525px;}
.ls4{letter-spacing:22.448915px;}
.ls5{letter-spacing:34.520915px;}
.ls3{letter-spacing:40.202915px;}
.ls6{letter-spacing:52.682915px;}
.ls1{letter-spacing:60.290915px;}
.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;}
}
.ws2{word-spacing:-34.740000px;}
.ws56{word-spacing:-19.510886px;}
.wse8{word-spacing:-16.605662px;}
.ws1{word-spacing:-10.422000px;}
.wsaf{word-spacing:-3.801754px;}
.ws2a{word-spacing:-3.730022px;}
.ws9a{word-spacing:-3.514829px;}
.wsd6{word-spacing:-3.084442px;}
.ws96{word-spacing:-2.869248px;}
.ws50{word-spacing:-2.223667px;}
.ws93{word-spacing:-2.080205px;}
.wsf1{word-spacing:-2.008474px;}
.wsa9{word-spacing:-1.865011px;}
.ws83{word-spacing:-1.781313px;}
.wsa8{word-spacing:-1.649818px;}
.ws94{word-spacing:-1.578086px;}
.wsc1{word-spacing:-1.362893px;}
.ws5f{word-spacing:-1.147699px;}
.wsc9{word-spacing:-1.004237px;}
.ws8c{word-spacing:-0.932506px;}
.ws9b{word-spacing:-0.860774px;}
.ws88{word-spacing:-0.645581px;}
.ws65{word-spacing:-0.573850px;}
.wsb2{word-spacing:-0.358656px;}
.ws6d{word-spacing:-0.215194px;}
.ws19{word-spacing:-0.143462px;}
.ws72{word-spacing:-0.071731px;}
.wse9{word-spacing:-0.059776px;}
.ws9{word-spacing:-0.052364px;}
.wsa2{word-spacing:-0.047821px;}
.ws0{word-spacing:0.000000px;}
.ws48{word-spacing:0.071731px;}
.wsaa{word-spacing:0.286925px;}
.ws3c{word-spacing:0.358656px;}
.ws89{word-spacing:0.430387px;}
.ws51{word-spacing:0.502118px;}
.ws6{word-spacing:0.536728px;}
.ws2c{word-spacing:0.645581px;}
.ws5{word-spacing:0.667637px;}
.ws35{word-spacing:0.717312px;}
.ws4d{word-spacing:0.932506px;}
.ws80{word-spacing:0.968365px;}
.ws16{word-spacing:1.087916px;}
.ws4b{word-spacing:1.147699px;}
.wsee{word-spacing:1.219430px;}
.wsb4{word-spacing:1.291162px;}
.ws7e{word-spacing:1.434624px;}
.ws7c{word-spacing:1.578086px;}
.ws90{word-spacing:1.649818px;}
.ws24{word-spacing:1.721549px;}
.wsa{word-spacing:1.976729px;}
.ws4a{word-spacing:2.008474px;}
.ws103{word-spacing:2.044326px;}
.ws47{word-spacing:2.080205px;}
.wsb7{word-spacing:2.151936px;}
.wsb6{word-spacing:2.367130px;}
.ws3e{word-spacing:2.438861px;}
.ws41{word-spacing:2.582323px;}
.ws67{word-spacing:2.654054px;}
.wsce{word-spacing:2.725786px;}
.wsb5{word-spacing:2.797517px;}
.ws99{word-spacing:2.821408px;}
.ws53{word-spacing:2.940979px;}
.ws3b{word-spacing:3.012710px;}
.wsb1{word-spacing:3.084442px;}
.wsa3{word-spacing:3.156173px;}
.ws31{word-spacing:3.227904px;}
.ws17{word-spacing:3.299613px;}
.ws9c{word-spacing:3.299635px;}
.wsc0{word-spacing:3.443098px;}
.wsae{word-spacing:3.514829px;}
.ws1c{word-spacing:3.586560px;}
.ws11{word-spacing:3.598491px;}
.wse{word-spacing:3.613094px;}
.ws58{word-spacing:3.658291px;}
.wsad{word-spacing:3.718042px;}
.ws69{word-spacing:3.801754px;}
.wsd7{word-spacing:3.865461px;}
.ws25{word-spacing:3.873485px;}
.wsd5{word-spacing:3.892115px;}
.wsf6{word-spacing:3.899399px;}
.wsc6{word-spacing:3.926458px;}
.ws64{word-spacing:3.945216px;}
.ws4c{word-spacing:4.016947px;}
.wscd{word-spacing:4.088678px;}
.ws39{word-spacing:4.160410px;}
.wsba{word-spacing:4.303872px;}
.ws70{word-spacing:4.315798px;}
.ws15{word-spacing:4.375574px;}
.ws5c{word-spacing:4.375603px;}
.ws4e{word-spacing:4.447334px;}
.ws29{word-spacing:4.519066px;}
.ws95{word-spacing:4.590797px;}
.ws5d{word-spacing:4.662528px;}
.ws27{word-spacing:4.734259px;}
.ws84{word-spacing:4.794003px;}
.ws28{word-spacing:4.805990px;}
.ws7{word-spacing:4.856731px;}
.ws66{word-spacing:4.877722px;}
.ws43{word-spacing:4.949453px;}
.ws7d{word-spacing:5.021184px;}
.ws87{word-spacing:5.092915px;}
.ws1d{word-spacing:5.164646px;}
.ws3a{word-spacing:5.236378px;}
.ws23{word-spacing:5.379840px;}
.ws9e{word-spacing:5.523302px;}
.ws6b{word-spacing:5.595034px;}
.ws14{word-spacing:5.630862px;}
.ws22{word-spacing:5.666765px;}
.ws42{word-spacing:5.738496px;}
.ws13{word-spacing:5.869964px;}
.ws33{word-spacing:5.881958px;}
.wsc{word-spacing:5.904005px;}
.ws82{word-spacing:5.929740px;}
.ws71{word-spacing:5.989515px;}
.wsb8{word-spacing:6.025421px;}
.ws8b{word-spacing:6.097152px;}
.wsf0{word-spacing:6.168883px;}
.wsbd{word-spacing:6.240614px;}
.ws20{word-spacing:6.312346px;}
.wsa7{word-spacing:6.384077px;}
.ws1b{word-spacing:6.527539px;}
.wseb{word-spacing:6.599270px;}
.wsf{word-spacing:6.637096px;}
.ws68{word-spacing:6.671002px;}
.ws10{word-spacing:6.702551px;}
.ws4f{word-spacing:6.814464px;}
.ws81{word-spacing:6.826374px;}
.ws2b{word-spacing:6.886195px;}
.wsb0{word-spacing:6.957926px;}
.ws6f{word-spacing:7.005700px;}
.ws5a{word-spacing:7.101389px;}
.ws1f{word-spacing:7.173120px;}
.ws8{word-spacing:7.213097px;}
.ws2d{word-spacing:7.244851px;}
.wsa1{word-spacing:7.316582px;}
.ws98{word-spacing:7.388314px;}
.ws85{word-spacing:7.424130px;}
.ws7a{word-spacing:7.460045px;}
.ws97{word-spacing:7.531776px;}
.wse6{word-spacing:7.663232px;}
.ws37{word-spacing:7.675238px;}
.wsbc{word-spacing:7.818701px;}
.ws86{word-spacing:7.842559px;}
.ws75{word-spacing:7.962163px;}
.ws44{word-spacing:8.033894px;}
.ws36{word-spacing:8.105626px;}
.wsd3{word-spacing:8.177357px;}
.wsa6{word-spacing:8.320819px;}
.ws8f{word-spacing:8.464282px;}
.wsb3{word-spacing:8.536013px;}
.wse7{word-spacing:8.619642px;}
.ws91{word-spacing:8.679475px;}
.ws46{word-spacing:8.894669px;}
.ws73{word-spacing:8.966400px;}
.ws5e{word-spacing:8.978295px;}
.wsa0{word-spacing:9.038131px;}
.wsd{word-spacing:9.045826px;}
.wsc7{word-spacing:9.109862px;}
.wsa4{word-spacing:9.181594px;}
.wsd1{word-spacing:9.253325px;}
.wsb9{word-spacing:9.325056px;}
.ws8d{word-spacing:9.396787px;}
.ws6a{word-spacing:9.540250px;}
.ws7b{word-spacing:9.683712px;}
.ws38{word-spacing:9.755443px;}
.ws30{word-spacing:9.827174px;}
.ws7f{word-spacing:9.874929px;}
.ws55{word-spacing:9.898906px;}
.ws77{word-spacing:9.970637px;}
.ws8a{word-spacing:10.042368px;}
.ws76{word-spacing:10.114099px;}
.ws3d{word-spacing:10.185830px;}
.ws21{word-spacing:10.329293px;}
.ws3f{word-spacing:10.401024px;}
.ws74{word-spacing:10.616218px;}
.ws2e{word-spacing:10.687949px;}
.ws59{word-spacing:10.759680px;}
.ws1a{word-spacing:10.831411px;}
.wsb{word-spacing:10.944009px;}
.ws40{word-spacing:11.046605px;}
.ws52{word-spacing:11.190067px;}
.ws1e{word-spacing:11.261798px;}
.ws5b{word-spacing:11.333530px;}
.ws60{word-spacing:11.405261px;}
.ws9f{word-spacing:11.476992px;}
.ws6c{word-spacing:11.620454px;}
.wsbf{word-spacing:11.692186px;}
.ws102{word-spacing:11.787748px;}
.ws45{word-spacing:11.907379px;}
.ws32{word-spacing:12.122573px;}
.ws63{word-spacing:12.337766px;}
.ws57{word-spacing:12.624691px;}
.wsac{word-spacing:12.839885px;}
.ws26{word-spacing:12.983347px;}
.wsa5{word-spacing:13.055078px;}
.ws79{word-spacing:13.270272px;}
.ws12{word-spacing:13.341914px;}
.ws49{word-spacing:13.915853px;}
.ws78{word-spacing:13.987584px;}
.wsbb{word-spacing:14.059315px;}
.ws92{word-spacing:14.274509px;}
.ws2f{word-spacing:14.417971px;}
.ws6e{word-spacing:14.561434px;}
.wsab{word-spacing:14.991821px;}
.ws8e{word-spacing:15.207014px;}
.ws34{word-spacing:15.278746px;}
.ws9d{word-spacing:15.565670px;}
.wsbe{word-spacing:15.852595px;}
.wsd4{word-spacing:22.882253px;}
.wsd0{word-spacing:23.343631px;}
.wsc3{word-spacing:23.345309px;}
.wsc4{word-spacing:23.345313px;}
.wsc8{word-spacing:23.345551px;}
.wscc{word-spacing:23.346031px;}
.wsca{word-spacing:23.346513px;}
.wse5{word-spacing:23.453194px;}
.ws61{word-spacing:23.958221px;}
.wsdd{word-spacing:24.962458px;}
.ws62{word-spacing:25.034189px;}
.wsec{word-spacing:25.392845px;}
.wsd2{word-spacing:27.688243px;}
.wscb{word-spacing:28.046899px;}
.wsc2{word-spacing:28.333824px;}
.wscf{word-spacing:29.911910px;}
.ws4{word-spacing:31.091012px;}
.ws101{word-spacing:31.703194px;}
.ws54{word-spacing:32.192873px;}
.wsc5{word-spacing:33.283277px;}
.wsed{word-spacing:37.730611px;}
.wsef{word-spacing:37.802342px;}
.ws3{word-spacing:44.765503px;}
.ws18{word-spacing:48.375386px;}
.wsd9{word-spacing:52.220314px;}
.wsea{word-spacing:60.110746px;}
.wsf4{word-spacing:63.984230px;}
.wsf5{word-spacing:71.731200px;}
.wsf3{word-spacing:74.959104px;}
.wsde{word-spacing:75.676416px;}
.wsdb{word-spacing:85.360128px;}
.wsf7{word-spacing:87.296870px;}
.wsf8{word-spacing:97.124045px;}
.wsd8{word-spacing:100.144635px;}
.wsda{word-spacing:102.934272px;}
.wsfb{word-spacing:104.942746px;}
.wsfd{word-spacing:110.752973px;}
.wsff{word-spacing:114.626458px;}
.wsfa{word-spacing:114.698189px;}
.wsf9{word-spacing:116.563200px;}
.wsfe{word-spacing:126.390374px;}
.wse4{word-spacing:130.335590px;}
.wsfc{word-spacing:140.019302px;}
.ws100{word-spacing:145.901261px;}
.wse3{word-spacing:149.846477px;}
.wse2{word-spacing:184.564378px;}
.wsf2{word-spacing:196.615219px;}
.wsdc{word-spacing:200.560435px;}
.wse1{word-spacing:385.555200px;}
.wse0{word-spacing:695.362253px;}
.wsdf{word-spacing:1005.241037px;}
._15{margin-left:-32.093158px;}
._f{margin-left:-30.759511px;}
._2{margin-left:-10.080000px;}
._7{margin-left:-8.205802px;}
._28{margin-left:-6.412120px;}
._4{margin-left:-5.400000px;}
._3{margin-left:-4.350600px;}
._0{margin-left:-2.867400px;}
._1{margin-left:-1.620000px;}
._a{width:1.051038px;}
._8{width:2.703759px;}
._21{width:3.846634px;}
._6a{width:7.388314px;}
._1d{width:19.120565px;}
._19{width:21.158856px;}
._26{width:22.603728px;}
._b{width:24.300016px;}
._14{width:25.823059px;}
._9{width:27.143539px;}
._e{width:29.076074px;}
._c{width:30.145603px;}
._13{width:31.618519px;}
._12{width:33.178232px;}
._18{width:34.358006px;}
._d{width:35.869121px;}
._1a{width:37.460597px;}
._24{width:38.982316px;}
._17{width:40.919376px;}
._27{width:41.991604px;}
._20{width:43.395528px;}
._1b{width:44.570005px;}
._11{width:46.565192px;}
._1f{width:48.461464px;}
._1c{width:50.403647px;}
._16{width:52.113877px;}
._1e{width:53.506588px;}
._10{width:56.932626px;}
._23{width:58.430911px;}
._29{width:59.570499px;}
._5{width:60.865188px;}
._22{width:62.713229px;}
._25{width:65.550830px;}
._93{width:87.296870px;}
._7a{width:89.233613px;}
._70{width:94.408507px;}
._7e{width:96.765389px;}
._76{width:99.347712px;}
._7b{width:100.997530px;}
._7d{width:104.871014px;}
._92{width:106.807757px;}
._7c{width:110.752973px;}
._88{width:112.689715px;}
._7f{width:116.634931px;}
._97{width:118.930330px;}
._33{width:122.445158px;}
._2a{width:124.539687px;}
._69{width:126.462106px;}
._87{width:128.169331px;}
._82{width:130.192128px;}
._39{width:131.626752px;}
._8a{width:133.979558px;}
._81{width:136.145818px;}
._5e{width:138.154291px;}
._83{width:140.019302px;}
._8d{width:141.956045px;}
._90{width:143.243451px;}
._38{width:145.399142px;}
._9f{width:146.450539px;}
._86{width:147.838003px;}
._51{width:149.846477px;}
._8e{width:151.639757px;}
._71{width:152.941166px;}
._8b{width:154.365542px;}
._84{width:159.530189px;}
._2b{width:163.809381px;}
._31{width:166.344653px;}
._52{width:170.299994px;}
._8f{width:171.308429px;}
._9d{width:173.230848px;}
._9c{width:179.041075px;}
._2f{width:180.475699px;}
._9e{width:191.583910px;}
._2d{width:193.651972px;}
._77{width:195.280370px;}
._30{width:201.923328px;}
._53{width:205.132220px;}
._6{width:206.481508px;}
._6e{width:207.785717px;}
._32{width:211.822234px;}
._78{width:216.341299px;}
._8c{width:219.842285px;}
._74{width:221.864602px;}
._73{width:223.944806px;}
._72{width:229.755034px;}
._34{width:230.974464px;}
._2c{width:233.065476px;}
._75{width:241.518950px;}
._3d{width:269.758687px;}
._3f{width:275.447808px;}
._95{width:289.654282px;}
._9b{width:292.566562px;}
._96{width:309.591859px;}
._6f{width:331.354456px;}
._91{width:350.160053px;}
._3e{width:351.972666px;}
._89{width:376.485403px;}
._40{width:378.310349px;}
._54{width:380.078626px;}
._85{width:400.253614px;}
._3a{width:401.479526px;}
._57{width:408.939571px;}
._4a{width:420.631757px;}
._43{width:422.321640px;}
._5c{width:424.576973px;}
._66{width:436.269158px;}
._4f{width:459.653530px;}
._44{width:465.176832px;}
._41{width:482.288923px;}
._9a{width:499.751270px;}
._79{width:511.515187px;}
._80{width:517.325414px;}
._6d{width:522.346598px;}
._35{width:530.695461px;}
._98{width:531.958579px;}
._6c{width:536.950237px;}
._94{width:538.773043px;}
._99{width:551.469466px;}
._3b{width:564.923266px;}
._3c{width:602.398618px;}
._49{width:612.584448px;}
._5f{width:616.529664px;}
._47{width:620.187955px;}
._56{width:634.103808px;}
._45{width:652.395264px;}
._42{width:659.209728px;}
._46{width:671.906150px;}
._6b{width:677.971637px;}
._64{width:710.999654px;}
._36{width:717.527194px;}
._63{width:720.396442px;}
._37{width:731.156122px;}
._4c{width:737.898854px;}
._4d{width:746.147942px;}
._59{width:749.662771px;}
._2e{width:752.603750px;}
._5a{width:769.532314px;}
._58{width:1055.954995px;}
._4b{width:1061.836954px;}
._62{width:1067.718912px;}
._60{width:1079.411098px;}
._48{width:1239.211233px;}
._55{width:1242.260884px;}
._61{width:1273.012324px;}
._68{width:1280.929444px;}
._67{width:1314.002164px;}
._5b{width:1341.688408px;}
._65{width:1347.570367px;}
._5d{width:1358.097058px;}
._4e{width:1359.262552px;}
._50{width:1369.860974px;}
.fc5{color:transparent;}
.fc4{color:rgb(0,82,155);}
.fc3{color:rgb(32,30,31);}
.fc2{color:rgb(252,254,254);}
.fc1{color:rgb(144,181,224);}
.fc0{color:rgb(0,0,0);}
.fs14{font-size:36.338400px;}
.fse{font-size:41.842800px;}
.fs4{font-size:42.000000px;}
.fs11{font-size:47.820600px;}
.fs5{font-size:54.000000px;}
.fsf{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsd{font-size:65.454600px;}
.fs13{font-size:66.178876px;}
.fs12{font-size:67.369947px;}
.fsc{font-size:71.731200px;}
.fs0{font-size:72.000000px;}
.fs10{font-size:86.077200px;}
.fs2{font-size:102.000000px;}
.fsb{font-size:103.292400px;}
.fsa{font-size:123.975000px;}
.fs7{font-size:126.000000px;}
.fs6{font-size:132.000000px;}
.fs9{font-size:148.722600px;}
.fs8{font-size:180.000000px;}
.y0{bottom:0.000000px;}
.ye9{bottom:29.330121px;}
.y22{bottom:45.273450px;}
.y175{bottom:50.709660px;}
.y16c{bottom:50.871150px;}
.y174{bottom:61.611180px;}
.y60{bottom:62.349000px;}
.y5{bottom:66.525004px;}
.y16b{bottom:67.071150px;}
.ye8{bottom:67.779378px;}
.y173{bottom:72.512700px;}
.ye4{bottom:84.882411px;}
.y4{bottom:97.125005px;}
.y16a{bottom:99.471150px;}
.y42{bottom:106.309500px;}
.yb0{bottom:106.329000px;}
.ya4{bottom:106.357500px;}
.yb9{bottom:106.366500px;}
.y8a{bottom:106.368000px;}
.y146{bottom:115.507500px;}
.y169{bottom:115.671150px;}
.ybc{bottom:116.853000px;}
.y157{bottom:117.381000px;}
.y21{bottom:117.754650px;}
.yd1{bottom:119.515500px;}
.y41{bottom:124.242000px;}
.yaf{bottom:124.261500px;}
.ya3{bottom:124.290000px;}
.y5f{bottom:125.508000px;}
.y89{bottom:129.723000px;}
.y168{bottom:131.871150px;}
.y7c{bottom:134.473500px;}
.y20{bottom:139.264499px;}
.y40{bottom:142.176000px;}
.yae{bottom:142.194000px;}
.ya2{bottom:142.222500px;}
.yb8{bottom:147.655500px;}
.ybb{bottom:152.713500px;}
.yd0{bottom:155.377500px;}
.y145{bottom:158.841000px;}
.y3f{bottom:160.108500px;}
.y5e{bottom:161.370000px;}
.y167{bottom:164.271150px;}
.yad{bottom:165.550500px;}
.ya1{bottom:165.577500px;}
.y156{bottom:166.900500px;}
.y7b{bottom:170.335500px;}
.y165{bottom:172.476000px;}
.y12f{bottom:173.977500px;}
.y3e{bottom:178.041000px;}
.yac{bottom:178.060500px;}
.y166{bottom:180.471150px;}
.y88{bottom:188.575500px;}
.y164{bottom:190.410000px;}
.ye5{bottom:193.939839px;}
.y144{bottom:194.703000px;}
.y3d{bottom:195.973500px;}
.yab{bottom:195.993000px;}
.y17{bottom:196.933500px;}
.y5d{bottom:197.232000px;}
.ycf{bottom:206.184000px;}
.y7a{bottom:206.197500px;}
.yea{bottom:206.657414px;}
.y163{bottom:208.342500px;}
.y1f{bottom:209.518500px;}
.y16{bottom:209.533503px;}
.y3c{bottom:213.906000px;}
.yaa{bottom:213.925500px;}
.y155{bottom:216.418500px;}
.y12e{bottom:217.311000px;}
.y3b{bottom:219.330000px;}
.ya0{bottom:220.333500px;}
.y1e{bottom:222.118502px;}
.y15{bottom:222.133505px;}
.y87{bottom:224.437500px;}
.ya9{bottom:231.858000px;}
.y5c{bottom:233.094000px;}
.y1d{bottom:234.718504px;}
.y14{bottom:234.733496px;}
.y143{bottom:238.036500px;}
.y162{bottom:241.443000px;}
.yce{bottom:242.044500px;}
.y79{bottom:242.059500px;}
.ya8{bottom:249.790500px;}
.y12d{bottom:253.173000px;}
.y9f{bottom:256.195500px;}
.y1c{bottom:259.918497px;}
.y13{bottom:259.933500px;}
.y86{bottom:260.299500px;}
.y161{bottom:263.112000px;}
.y154{bottom:263.362500px;}
.ya7{bottom:267.723000px;}
.y5b{bottom:268.956000px;}
.y1b{bottom:272.518500px;}
.y12{bottom:272.533503px;}
.y142{bottom:273.898500px;}
.y78{bottom:277.921500px;}
.y1a{bottom:285.118502px;}
.y11{bottom:285.133499px;}
.ya6{bottom:291.079500px;}
.y9e{bottom:292.057500px;}
.ycd{bottom:292.851000px;}
.y85{bottom:296.161500px;}
.y12c{bottom:296.506500px;}
.ye6{bottom:302.997267px;}
.y5a{bottom:304.818000px;}
.y160{bottom:306.450000px;}
.ya5{bottom:309.012000px;}
.y19{bottom:310.318501px;}
.y10{bottom:310.333501px;}
.y77{bottom:313.782000px;}
.y141{bottom:317.232000px;}
.y18{bottom:322.918500px;}
.yf{bottom:322.933500px;}
.y9d{bottom:327.919500px;}
.y15f{bottom:328.117500px;}
.ycc{bottom:328.713000px;}
.y153{bottom:331.567500px;}
.y84{bottom:332.022000px;}
.yb7{bottom:332.023500px;}
.y12b{bottom:332.368500px;}
.y59{bottom:340.678500px;}
.ye{bottom:348.133500px;}
.y76{bottom:349.644000px;}
.y15e{bottom:349.786500px;}
.y9c{bottom:363.780000px;}
.ycb{bottom:364.575000px;}
.y83{bottom:367.884000px;}
.y15d{bottom:371.455500px;}
.y12a{bottom:375.702000px;}
.y58{bottom:376.540500px;}
.y152{bottom:381.085500px;}
.y75{bottom:385.506000px;}
.yd{bottom:386.785499px;}
.y11d{bottom:387.969000px;}
.ye2{bottom:388.483500px;}
.y140{bottom:389.298000px;}
.y15c{bottom:393.124500px;}
.y9b{bottom:399.642000px;}
.y82{bottom:403.746000px;}
.y11c{bottom:405.901500px;}
.yc{bottom:408.044999px;}
.y3a{bottom:409.038000px;}
.ye7{bottom:412.036085px;}
.y57{bottom:412.402500px;}
.y15b{bottom:414.793500px;}
.yca{bottom:415.380000px;}
.y74{bottom:421.368000px;}
.y11b{bottom:423.834000px;}
.ye1{bottom:424.345500px;}
.y151{bottom:428.029500px;}
.y13f{bottom:432.631500px;}
.y39{bottom:434.260500px;}
.y9a{bottom:435.504000px;}
.y15a{bottom:436.461000px;}
.y81{bottom:439.608000px;}
.y129{bottom:447.768000px;}
.y56{bottom:448.264500px;}
.yc9{bottom:451.242000px;}
.y11a{bottom:456.934500px;}
.y73{bottom:457.230000px;}
.y159{bottom:458.130000px;}
.y150{bottom:463.891500px;}
.y13e{bottom:468.493500px;}
.y99{bottom:471.366000px;}
.ye0{bottom:475.150500px;}
.y80{bottom:475.470000px;}
.y119{bottom:478.603500px;}
.y158{bottom:479.799000px;}
.y55{bottom:484.126500px;}
.y128{bottom:491.101500px;}
.y72{bottom:493.092000px;}
.y14f{bottom:499.753500px;}
.y118{bottom:500.272500px;}
.y108{bottom:501.468000px;}
.yc8{bottom:502.047000px;}
.y38{bottom:505.963500px;}
.y98{bottom:507.228000px;}
.ydf{bottom:511.012500px;}
.y7f{bottom:511.332000px;}
.y13d{bottom:511.827000px;}
.y54{bottom:519.987000px;}
.yb{bottom:520.864502px;}
.y117{bottom:521.941500px;}
.y107{bottom:523.137000px;}
.y127{bottom:526.963500px;}
.y71{bottom:528.952500px;}
.y37{bottom:531.186000px;}
.yc7{bottom:537.909000px;}
.ya{bottom:538.864499px;}
.y97{bottom:543.090000px;}
.y116{bottom:543.609000px;}
.y106{bottom:544.804500px;}
.y7e{bottom:547.192500px;}
.y13c{bottom:547.689000px;}
.y53{bottom:555.849000px;}
.y36{bottom:556.407000px;}
.y9{bottom:556.864499px;}
.yde{bottom:561.819000px;}
.y70{bottom:564.814500px;}
.y115{bottom:565.278000px;}
.y105{bottom:566.473500px;}
.y14e{bottom:567.957000px;}
.y126{bottom:570.297000px;}
.y96{bottom:578.950500px;}
.y35{bottom:581.629500px;}
.yb6{bottom:583.054500px;}
.y114{bottom:586.947000px;}
.y104{bottom:588.142500px;}
.yc6{bottom:588.715500px;}
.y13b{bottom:591.022500px;}
.y52{bottom:591.711000px;}
.y7d{bottom:592.020000px;}
.ydd{bottom:597.681000px;}
.y6f{bottom:600.676500px;}
.y125{bottom:606.159000px;}
.y34{bottom:606.850500px;}
.y113{bottom:608.616000px;}
.y103{bottom:609.811500px;}
.y95{bottom:614.812500px;}
.y14d{bottom:617.475000px;}
.yb5{bottom:618.916500px;}
.yc5{bottom:624.576000px;}
.y51{bottom:627.573000px;}
.y112{bottom:630.285000px;}
.y102{bottom:631.480500px;}
.y33{bottom:632.073000px;}
.y6e{bottom:636.538500px;}
.y8{bottom:645.510000px;}
.ydc{bottom:648.486000px;}
.y124{bottom:649.492500px;}
.y94{bottom:650.674500px;}
.y111{bottom:651.952500px;}
.y101{bottom:653.149500px;}
.yb4{bottom:654.778500px;}
.y32{bottom:657.294000px;}
.y13a{bottom:663.088500px;}
.y50{bottom:663.435000px;}
.y14c{bottom:664.420500px;}
.y7{bottom:666.771000px;}
.y6d{bottom:672.400500px;}
.y110{bottom:673.621500px;}
.y100{bottom:674.817000px;}
.yc4{bottom:675.382500px;}
.y31{bottom:682.516500px;}
.ydb{bottom:684.348000px;}
.y93{bottom:686.536500px;}
.yb3{bottom:690.640500px;}
.y10f{bottom:695.290500px;}
.yff{bottom:696.486000px;}
.y4f{bottom:699.297000px;}
.y14b{bottom:700.281000px;}
.y139{bottom:706.422000px;}
.y30{bottom:707.737500px;}
.y6c{bottom:708.262500px;}
.y123{bottom:711.159000px;}
.yc3{bottom:711.244500px;}
.yeb{bottom:712.162500px;}
.y10e{bottom:716.959500px;}
.yfe{bottom:718.155000px;}
.yda{bottom:720.210000px;}
.y92{bottom:722.398500px;}
.ye3{bottom:723.594000px;}
.y6{bottom:726.298500px;}
.yb2{bottom:726.502500px;}
.y28{bottom:728.491950px;}
.y2f{bottom:732.960000px;}
.y4e{bottom:735.157500px;}
.yba{bottom:735.468000px;}
.y10d{bottom:739.225500px;}
.yfd{bottom:739.824000px;}
.y6b{bottom:744.123000px;}
.y122{bottom:747.021000px;}
.y138{bottom:749.755500px;}
.y3{bottom:752.599495px;}
.y10c{bottom:760.894500px;}
.yfc{bottom:761.493000px;}
.yc2{bottom:762.049500px;}
.y2e{bottom:767.521500px;}
.y14a{bottom:768.486000px;}
.yd9{bottom:771.015000px;}
.y4d{bottom:771.019500px;}
.yb1{bottom:771.328500px;}
.y91{bottom:773.203500px;}
.y6a{bottom:779.985000px;}
.y27{bottom:782.491950px;}
.yfb{bottom:783.160500px;}
.y121{bottom:789.259500px;}
.y137{bottom:793.089000px;}
.yc1{bottom:797.911500px;}
.yfa{bottom:804.829500px;}
.yd8{bottom:806.877000px;}
.y4c{bottom:806.881500px;}
.y69{bottom:815.847000px;}
.y90{bottom:816.537000px;}
.y149{bottom:818.004000px;}
.y120{bottom:825.121500px;}
.yf9{bottom:826.498500px;}
.y26{bottom:836.491950px;}
.y4b{bottom:842.743500px;}
.yf8{bottom:848.167500px;}
.yc0{bottom:848.716500px;}
.y68{bottom:851.709000px;}
.y8f{bottom:852.399000px;}
.yd7{bottom:857.682000px;}
.y11f{bottom:860.983500px;}
.y136{bottom:865.155000px;}
.y2d{bottom:866.715000px;}
.y148{bottom:867.522000px;}
.yf7{bottom:869.836500px;}
.y4a{bottom:878.605500px;}
.y2{bottom:879.369000px;}
.ybf{bottom:884.578500px;}
.y67{bottom:887.571000px;}
.yf6{bottom:891.504000px;}
.yd6{bottom:893.544000px;}
.y8e{bottom:895.732500px;}
.y25{bottom:897.096300px;}
.y147{bottom:903.384000px;}
.y11e{bottom:905.811000px;}
.y135{bottom:908.488500px;}
.yf5{bottom:913.173000px;}
.y49{bottom:914.467500px;}
.y66{bottom:923.433000px;}
.y2c{bottom:925.074000px;}
.yd5{bottom:929.406000px;}
.y8d{bottom:931.594500px;}
.yf4{bottom:934.842000px;}
.y24{bottom:934.896300px;}
.ybe{bottom:935.385000px;}
.y134{bottom:944.350500px;}
.y48{bottom:950.328000px;}
.y10b{bottom:956.511000px;}
.y65{bottom:959.293500px;}
.y172{bottom:965.341950px;}
.y1{bottom:966.726000px;}
.ybd{bottom:971.247000px;}
.y23{bottom:972.696300px;}
.yf3{bottom:978.180000px;}
.yd4{bottom:980.211000px;}
.y133{bottom:980.212500px;}
.y8c{bottom:981.306000px;}
.y47{bottom:986.190000px;}
.y2a{bottom:992.212500px;}
.y64{bottom:995.155500px;}
.y171{bottom:997.741950px;}
.yf2{bottom:999.849000px;}
.y2b{bottom:1005.705000px;}
.yd3{bottom:1016.073000px;}
.y8b{bottom:1017.168000px;}
.yf1{bottom:1021.516500px;}
.y46{bottom:1022.052000px;}
.y132{bottom:1023.546000px;}
.y170{bottom:1030.141950px;}
.y63{bottom:1031.017500px;}
.yf0{bottom:1043.185500px;}
.y16f{bottom:1046.341950px;}
.y29{bottom:1047.849000px;}
.yd2{bottom:1051.935000px;}
.y45{bottom:1057.914000px;}
.y131{bottom:1059.406500px;}
.y16e{bottom:1062.541950px;}
.yef{bottom:1064.854500px;}
.y62{bottom:1066.879500px;}
.yee{bottom:1086.523500px;}
.y10a{bottom:1087.120500px;}
.y44{bottom:1093.776000px;}
.y130{bottom:1095.268500px;}
.y16d{bottom:1101.522150px;}
.y61{bottom:1102.741500px;}
.yed{bottom:1108.789500px;}
.y109{bottom:1136.137500px;}
.y43{bottom:1138.602000px;}
.yec{bottom:1145.103000px;}
.h20{height:26.763232px;}
.h19{height:28.285733px;}
.h7{height:32.130000px;}
.h1f{height:39.285000px;}
.h14{height:39.750660px;}
.h9{height:39.771000px;}
.h1e{height:40.122000px;}
.h15{height:44.831700px;}
.h6{height:45.900000px;}
.h13{height:46.145493px;}
.h3{height:48.195000px;}
.h1d{height:48.212345px;}
.h1c{height:49.080059px;}
.h12{height:49.090950px;}
.h11{height:50.211840px;}
.h17{height:53.798400px;}
.h2{height:55.080000px;}
.h18{height:58.354726px;}
.h1a{height:58.360726px;}
.h16{height:60.254040px;}
.h10{height:72.511265px;}
.h5{height:78.030000px;}
.hb{height:92.799000px;}
.hd{height:95.712891px;}
.ha{height:100.998047px;}
.he{height:104.403265px;}
.hf{height:117.776250px;}
.h4{height:119.055004px;}
.hc{height:135.270000px;}
.h1b{height:432.941760px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:595.294920px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1a{left:26.724653px;}
.x17{left:40.179196px;}
.x7{left:54.963300px;}
.x18{left:85.658563px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x10{left:113.770500px;}
.x2a{left:117.432000px;}
.x2b{left:119.163000px;}
.x11{left:123.858000px;}
.x28{left:126.855000px;}
.x31{left:128.992500px;}
.x22{left:132.085500px;}
.x30{left:137.959500px;}
.x16{left:148.819500px;}
.xf{left:150.196500px;}
.x13{left:157.611000px;}
.xe{left:166.560000px;}
.x2e{left:169.024500px;}
.x9{left:174.303000px;}
.x6{left:185.359650px;}
.x14{left:188.826000px;}
.x32{left:192.301800px;}
.x1e{left:194.100000px;}
.x4{left:203.484001px;}
.x1f{left:211.107000px;}
.x2c{left:217.510500px;}
.x19{left:238.772492px;}
.xa{left:265.113000px;}
.x1b{left:273.289500px;}
.x2f{left:300.213000px;}
.x20{left:302.232000px;}
.x23{left:316.938000px;}
.x21{left:332.545500px;}
.x1c{left:334.665000px;}
.xc{left:366.934500px;}
.x29{left:370.123500px;}
.x24{left:394.398000px;}
.x1d{left:405.421500px;}
.xd{left:407.904000px;}
.x2d{left:430.498500px;}
.x15{left:437.677500px;}
.x12{left:442.066500px;}
.x3{left:454.959000px;}
.x5{left:467.729550px;}
.x25{left:471.858000px;}
.x26{left:549.318000px;}
.x27{left:626.778000px;}
.xb{left:627.801000px;}
.x8{left:649.921350px;}
.x33{left:707.437050px;}
@media print{
.v2{vertical-align:-19.280000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.136000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.000479pt;}
.ls7{letter-spacing:0.001067pt;}
.ls8{letter-spacing:0.001995pt;}
.ls2{letter-spacing:2.652911pt;}
.ls4{letter-spacing:19.954591pt;}
.ls5{letter-spacing:30.685258pt;}
.ls3{letter-spacing:35.735925pt;}
.ls6{letter-spacing:46.829258pt;}
.ls1{letter-spacing:53.591925pt;}
.ws2{word-spacing:-30.880000pt;}
.ws56{word-spacing:-17.343010pt;}
.wse8{word-spacing:-14.760588pt;}
.ws1{word-spacing:-9.264000pt;}
.wsaf{word-spacing:-3.379337pt;}
.ws2a{word-spacing:-3.315575pt;}
.ws9a{word-spacing:-3.124292pt;}
.wsd6{word-spacing:-2.741726pt;}
.ws96{word-spacing:-2.550443pt;}
.ws50{word-spacing:-1.976593pt;}
.ws93{word-spacing:-1.849071pt;}
.wsf1{word-spacing:-1.785310pt;}
.wsa9{word-spacing:-1.657788pt;}
.ws83{word-spacing:-1.583389pt;}
.wsa8{word-spacing:-1.466505pt;}
.ws94{word-spacing:-1.402743pt;}
.wsc1{word-spacing:-1.211460pt;}
.ws5f{word-spacing:-1.020177pt;}
.wsc9{word-spacing:-0.892655pt;}
.ws8c{word-spacing:-0.828894pt;}
.ws9b{word-spacing:-0.765133pt;}
.ws88{word-spacing:-0.573850pt;}
.ws65{word-spacing:-0.510089pt;}
.wsb2{word-spacing:-0.318805pt;}
.ws6d{word-spacing:-0.191283pt;}
.ws19{word-spacing:-0.127522pt;}
.ws72{word-spacing:-0.063761pt;}
.wse9{word-spacing:-0.053134pt;}
.ws9{word-spacing:-0.046545pt;}
.wsa2{word-spacing:-0.042507pt;}
.ws0{word-spacing:0.000000pt;}
.ws48{word-spacing:0.063761pt;}
.wsaa{word-spacing:0.255044pt;}
.ws3c{word-spacing:0.318805pt;}
.ws89{word-spacing:0.382566pt;}
.ws51{word-spacing:0.446327pt;}
.ws6{word-spacing:0.477091pt;}
.ws2c{word-spacing:0.573850pt;}
.ws5{word-spacing:0.593455pt;}
.ws35{word-spacing:0.637611pt;}
.ws4d{word-spacing:0.828894pt;}
.ws80{word-spacing:0.860769pt;}
.ws16{word-spacing:0.967036pt;}
.ws4b{word-spacing:1.020177pt;}
.wsee{word-spacing:1.083938pt;}
.wsb4{word-spacing:1.147699pt;}
.ws7e{word-spacing:1.275221pt;}
.ws7c{word-spacing:1.402743pt;}
.ws90{word-spacing:1.466505pt;}
.ws24{word-spacing:1.530266pt;}
.wsa{word-spacing:1.757092pt;}
.ws4a{word-spacing:1.785310pt;}
.ws103{word-spacing:1.817178pt;}
.ws47{word-spacing:1.849071pt;}
.wsb7{word-spacing:1.912832pt;}
.wsb6{word-spacing:2.104115pt;}
.ws3e{word-spacing:2.167876pt;}
.ws41{word-spacing:2.295398pt;}
.ws67{word-spacing:2.359159pt;}
.wsce{word-spacing:2.422921pt;}
.wsb5{word-spacing:2.486682pt;}
.ws99{word-spacing:2.507919pt;}
.ws53{word-spacing:2.614204pt;}
.ws3b{word-spacing:2.677965pt;}
.wsb1{word-spacing:2.741726pt;}
.wsa3{word-spacing:2.805487pt;}
.ws31{word-spacing:2.869248pt;}
.ws17{word-spacing:2.932989pt;}
.ws9c{word-spacing:2.933009pt;}
.wsc0{word-spacing:3.060531pt;}
.wsae{word-spacing:3.124292pt;}
.ws1c{word-spacing:3.188053pt;}
.ws11{word-spacing:3.198659pt;}
.wse{word-spacing:3.211639pt;}
.ws58{word-spacing:3.251814pt;}
.wsad{word-spacing:3.304927pt;}
.ws69{word-spacing:3.379337pt;}
.wsd7{word-spacing:3.435965pt;}
.ws25{word-spacing:3.443098pt;}
.wsd5{word-spacing:3.459657pt;}
.wsf6{word-spacing:3.466132pt;}
.wsc6{word-spacing:3.490185pt;}
.ws64{word-spacing:3.506859pt;}
.ws4c{word-spacing:3.570620pt;}
.wscd{word-spacing:3.634381pt;}
.ws39{word-spacing:3.698142pt;}
.wsba{word-spacing:3.825664pt;}
.ws70{word-spacing:3.836265pt;}
.ws15{word-spacing:3.889399pt;}
.ws5c{word-spacing:3.889425pt;}
.ws4e{word-spacing:3.953186pt;}
.ws29{word-spacing:4.016947pt;}
.ws95{word-spacing:4.080708pt;}
.ws5d{word-spacing:4.144469pt;}
.ws27{word-spacing:4.208230pt;}
.ws84{word-spacing:4.261336pt;}
.ws28{word-spacing:4.271991pt;}
.ws7{word-spacing:4.317095pt;}
.ws66{word-spacing:4.335753pt;}
.ws43{word-spacing:4.399514pt;}
.ws7d{word-spacing:4.463275pt;}
.ws87{word-spacing:4.527036pt;}
.ws1d{word-spacing:4.590797pt;}
.ws3a{word-spacing:4.654558pt;}
.ws23{word-spacing:4.782080pt;}
.ws9e{word-spacing:4.909602pt;}
.ws6b{word-spacing:4.973363pt;}
.ws14{word-spacing:5.005210pt;}
.ws22{word-spacing:5.037124pt;}
.ws42{word-spacing:5.100885pt;}
.ws13{word-spacing:5.217746pt;}
.ws33{word-spacing:5.228407pt;}
.wsc{word-spacing:5.248004pt;}
.ws82{word-spacing:5.270880pt;}
.ws71{word-spacing:5.324013pt;}
.wsb8{word-spacing:5.355930pt;}
.ws8b{word-spacing:5.419691pt;}
.wsf0{word-spacing:5.483452pt;}
.wsbd{word-spacing:5.547213pt;}
.ws20{word-spacing:5.610974pt;}
.wsa7{word-spacing:5.674735pt;}
.ws1b{word-spacing:5.802257pt;}
.wseb{word-spacing:5.866018pt;}
.wsf{word-spacing:5.899641pt;}
.ws68{word-spacing:5.929779pt;}
.ws10{word-spacing:5.957823pt;}
.ws4f{word-spacing:6.057301pt;}
.ws81{word-spacing:6.067888pt;}
.ws2b{word-spacing:6.121062pt;}
.wsb0{word-spacing:6.184823pt;}
.ws6f{word-spacing:6.227289pt;}
.ws5a{word-spacing:6.312346pt;}
.ws1f{word-spacing:6.376107pt;}
.ws8{word-spacing:6.411642pt;}
.ws2d{word-spacing:6.439868pt;}
.wsa1{word-spacing:6.503629pt;}
.ws98{word-spacing:6.567390pt;}
.ws85{word-spacing:6.599226pt;}
.ws7a{word-spacing:6.631151pt;}
.ws97{word-spacing:6.694912pt;}
.wse6{word-spacing:6.811762pt;}
.ws37{word-spacing:6.822434pt;}
.wsbc{word-spacing:6.949956pt;}
.ws86{word-spacing:6.971163pt;}
.ws75{word-spacing:7.077478pt;}
.ws44{word-spacing:7.141239pt;}
.ws36{word-spacing:7.205001pt;}
.wsd3{word-spacing:7.268762pt;}
.wsa6{word-spacing:7.396284pt;}
.ws8f{word-spacing:7.523806pt;}
.wsb3{word-spacing:7.587567pt;}
.wse7{word-spacing:7.661904pt;}
.ws91{word-spacing:7.715089pt;}
.ws46{word-spacing:7.906372pt;}
.ws73{word-spacing:7.970133pt;}
.ws5e{word-spacing:7.980707pt;}
.wsa0{word-spacing:8.033894pt;}
.wsd{word-spacing:8.040734pt;}
.wsc7{word-spacing:8.097655pt;}
.wsa4{word-spacing:8.161417pt;}
.wsd1{word-spacing:8.225178pt;}
.wsb9{word-spacing:8.288939pt;}
.ws8d{word-spacing:8.352700pt;}
.ws6a{word-spacing:8.480222pt;}
.ws7b{word-spacing:8.607744pt;}
.ws38{word-spacing:8.671505pt;}
.ws30{word-spacing:8.735266pt;}
.ws7f{word-spacing:8.777715pt;}
.ws55{word-spacing:8.799027pt;}
.ws77{word-spacing:8.862788pt;}
.ws8a{word-spacing:8.926549pt;}
.ws76{word-spacing:8.990310pt;}
.ws3d{word-spacing:9.054071pt;}
.ws21{word-spacing:9.181594pt;}
.ws3f{word-spacing:9.245355pt;}
.ws74{word-spacing:9.436638pt;}
.ws2e{word-spacing:9.500399pt;}
.ws59{word-spacing:9.564160pt;}
.ws1a{word-spacing:9.627921pt;}
.wsb{word-spacing:9.728008pt;}
.ws40{word-spacing:9.819204pt;}
.ws52{word-spacing:9.946726pt;}
.ws1e{word-spacing:10.010487pt;}
.ws5b{word-spacing:10.074249pt;}
.ws60{word-spacing:10.138010pt;}
.ws9f{word-spacing:10.201771pt;}
.ws6c{word-spacing:10.329293pt;}
.wsbf{word-spacing:10.393054pt;}
.ws102{word-spacing:10.477999pt;}
.ws45{word-spacing:10.584337pt;}
.ws32{word-spacing:10.775620pt;}
.ws63{word-spacing:10.966903pt;}
.ws57{word-spacing:11.221948pt;}
.wsac{word-spacing:11.413231pt;}
.ws26{word-spacing:11.540753pt;}
.wsa5{word-spacing:11.604514pt;}
.ws79{word-spacing:11.795797pt;}
.ws12{word-spacing:11.859479pt;}
.ws49{word-spacing:12.369647pt;}
.ws78{word-spacing:12.433408pt;}
.wsbb{word-spacing:12.497169pt;}
.ws92{word-spacing:12.688452pt;}
.ws2f{word-spacing:12.815974pt;}
.ws6e{word-spacing:12.943497pt;}
.wsab{word-spacing:13.326063pt;}
.ws8e{word-spacing:13.517346pt;}
.ws34{word-spacing:13.581107pt;}
.ws9d{word-spacing:13.836151pt;}
.wsbe{word-spacing:14.091196pt;}
.wsd4{word-spacing:20.339780pt;}
.wsd0{word-spacing:20.749894pt;}
.wsc3{word-spacing:20.751386pt;}
.wsc4{word-spacing:20.751389pt;}
.wsc8{word-spacing:20.751601pt;}
.wscc{word-spacing:20.752027pt;}
.wsca{word-spacing:20.752456pt;}
.wse5{word-spacing:20.847284pt;}
.ws61{word-spacing:21.296196pt;}
.wsdd{word-spacing:22.188851pt;}
.ws62{word-spacing:22.252612pt;}
.wsec{word-spacing:22.571418pt;}
.wsd2{word-spacing:24.611772pt;}
.wscb{word-spacing:24.930577pt;}
.wsc2{word-spacing:25.185621pt;}
.wscf{word-spacing:26.588365pt;}
.ws4{word-spacing:27.636455pt;}
.ws101{word-spacing:28.180617pt;}
.ws54{word-spacing:28.615887pt;}
.wsc5{word-spacing:29.585135pt;}
.wsed{word-spacing:33.538321pt;}
.wsef{word-spacing:33.602082pt;}
.ws3{word-spacing:39.791558pt;}
.ws18{word-spacing:43.000343pt;}
.wsd9{word-spacing:46.418057pt;}
.wsea{word-spacing:53.431774pt;}
.wsf4{word-spacing:56.874871pt;}
.wsf5{word-spacing:63.761067pt;}
.wsf3{word-spacing:66.630315pt;}
.wsde{word-spacing:67.267925pt;}
.wsdb{word-spacing:75.875669pt;}
.wsf7{word-spacing:77.597218pt;}
.wsf8{word-spacing:86.332484pt;}
.wsd8{word-spacing:89.017453pt;}
.wsda{word-spacing:91.497131pt;}
.wsfb{word-spacing:93.282441pt;}
.wsfd{word-spacing:98.447087pt;}
.wsff{word-spacing:101.890185pt;}
.wsfa{word-spacing:101.953946pt;}
.wsf9{word-spacing:103.611733pt;}
.wsfe{word-spacing:112.346999pt;}
.wse4{word-spacing:115.853858pt;}
.wsfc{word-spacing:124.461602pt;}
.ws100{word-spacing:129.690010pt;}
.wse3{word-spacing:133.196868pt;}
.wse2{word-spacing:164.057225pt;}
.wsf2{word-spacing:174.769084pt;}
.wsdc{word-spacing:178.275942pt;}
.wse1{word-spacing:342.715733pt;}
.wse0{word-spacing:618.099780pt;}
.wsdf{word-spacing:893.547588pt;}
._15{margin-left:-28.527252pt;}
._f{margin-left:-27.341788pt;}
._2{margin-left:-8.960000pt;}
._7{margin-left:-7.294046pt;}
._28{margin-left:-5.699662pt;}
._4{margin-left:-4.800000pt;}
._3{margin-left:-3.867200pt;}
._0{margin-left:-2.548800pt;}
._1{margin-left:-1.440000pt;}
._a{width:0.934256pt;}
._8{width:2.403341pt;}
._21{width:3.419230pt;}
._6a{width:6.567390pt;}
._1d{width:16.996058pt;}
._19{width:18.807872pt;}
._26{width:20.092203pt;}
._b{width:21.600014pt;}
._14{width:22.953830pt;}
._9{width:24.127590pt;}
._e{width:25.845399pt;}
._c{width:26.796092pt;}
._13{width:28.105350pt;}
._12{width:29.491762pt;}
._18{width:30.540450pt;}
._d{width:31.883663pt;}
._1a{width:33.298308pt;}
._24{width:34.650948pt;}
._17{width:36.372779pt;}
._27{width:37.325870pt;}
._20{width:38.573803pt;}
._1b{width:39.617782pt;}
._11{width:41.391282pt;}
._1f{width:43.076857pt;}
._1c{width:44.803242pt;}
._16{width:46.323446pt;}
._1e{width:47.561411pt;}
._10{width:50.606779pt;}
._23{width:51.938587pt;}
._29{width:52.951555pt;}
._5{width:54.102389pt;}
._22{width:55.745092pt;}
._25{width:58.267404pt;}
._93{width:77.597218pt;}
._7a{width:79.318767pt;}
._70{width:83.918673pt;}
._7e{width:86.013679pt;}
._76{width:88.309077pt;}
._7b{width:89.775582pt;}
._7d{width:93.218679pt;}
._92{width:94.940228pt;}
._7c{width:98.447087pt;}
._88{width:100.168636pt;}
._7f{width:103.675494pt;}
._97{width:105.715849pt;}
._33{width:108.840141pt;}
._2a{width:110.701944pt;}
._69{width:112.410761pt;}
._87{width:113.928294pt;}
._82{width:115.726336pt;}
._39{width:117.001557pt;}
._8a{width:119.092941pt;}
._81{width:121.018505pt;}
._5e{width:122.803814pt;}
._83{width:124.461602pt;}
._8d{width:126.183151pt;}
._90{width:127.327512pt;}
._38{width:129.243682pt;}
._9f{width:130.178257pt;}
._86{width:131.411558pt;}
._51{width:133.196868pt;}
._8e{width:134.790895pt;}
._71{width:135.947703pt;}
._8b{width:137.213815pt;}
._84{width:141.804612pt;}
._2b{width:145.608338pt;}
._31{width:147.861914pt;}
._52{width:151.377772pt;}
._8f{width:152.274159pt;}
._9d{width:153.982976pt;}
._9c{width:159.147622pt;}
._2f{width:160.422844pt;}
._9e{width:170.296809pt;}
._2d{width:172.135086pt;}
._77{width:173.582551pt;}
._30{width:179.487403pt;}
._53{width:182.339751pt;}
._6{width:183.539118pt;}
._6e{width:184.698415pt;}
._32{width:188.286430pt;}
._78{width:192.303377pt;}
._8c{width:195.415364pt;}
._74{width:197.212979pt;}
._73{width:199.062050pt;}
._72{width:204.226697pt;}
._34{width:205.310635pt;}
._2c{width:207.169312pt;}
._75{width:214.683511pt;}
._3d{width:239.785499pt;}
._3f{width:244.842496pt;}
._95{width:257.470473pt;}
._9b{width:260.059166pt;}
._96{width:275.192764pt;}
._6f{width:294.537294pt;}
._91{width:311.253380pt;}
._3e{width:312.864592pt;}
._89{width:334.653692pt;}
._40{width:336.275866pt;}
._54{width:337.847667pt;}
._85{width:355.780990pt;}
._3a{width:356.870690pt;}
._57{width:363.501841pt;}
._4a{width:373.894895pt;}
._43{width:375.397013pt;}
._5c{width:377.401754pt;}
._66{width:387.794807pt;}
._4f{width:408.580915pt;}
._44{width:413.490517pt;}
._41{width:428.701265pt;}
._9a{width:444.223351pt;}
._79{width:454.680166pt;}
._80{width:459.844813pt;}
._6d{width:464.308087pt;}
._35{width:471.729299pt;}
._98{width:472.852070pt;}
._6c{width:477.289100pt;}
._94{width:478.909372pt;}
._99{width:490.195081pt;}
._3b{width:502.154014pt;}
._3c{width:535.465438pt;}
._49{width:544.519509pt;}
._5f{width:548.026368pt;}
._47{width:551.278182pt;}
._56{width:563.647829pt;}
._45{width:579.906901pt;}
._42{width:585.964203pt;}
._46{width:597.249911pt;}
._6b{width:602.641455pt;}
._64{width:631.999693pt;}
._36{width:637.801950pt;}
._63{width:640.352393pt;}
._37{width:649.916553pt;}
._4c{width:655.910093pt;}
._4d{width:663.242615pt;}
._59{width:666.366908pt;}
._2e{width:668.981111pt;}
._5a{width:684.028723pt;}
._58{width:938.626662pt;}
._4b{width:943.855070pt;}
._62{width:949.083477pt;}
._60{width:959.476531pt;}
._48{width:1101.521096pt;}
._55{width:1104.231897pt;}
._61{width:1131.566510pt;}
._68{width:1138.603950pt;}
._67{width:1168.001923pt;}
._5b{width:1192.611918pt;}
._65{width:1197.840326pt;}
._5d{width:1207.197385pt;}
._4e{width:1208.233380pt;}
._50{width:1217.654199pt;}
.fs14{font-size:32.300800pt;}
.fse{font-size:37.193600pt;}
.fs4{font-size:37.333333pt;}
.fs11{font-size:42.507200pt;}
.fs5{font-size:48.000000pt;}
.fsf{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsd{font-size:58.181867pt;}
.fs13{font-size:58.825668pt;}
.fs12{font-size:59.884397pt;}
.fsc{font-size:63.761067pt;}
.fs0{font-size:64.000000pt;}
.fs10{font-size:76.513067pt;}
.fs2{font-size:90.666667pt;}
.fsb{font-size:91.815467pt;}
.fsa{font-size:110.200000pt;}
.fs7{font-size:112.000000pt;}
.fs6{font-size:117.333333pt;}
.fs9{font-size:132.197867pt;}
.fs8{font-size:160.000000pt;}
.y0{bottom:0.000000pt;}
.ye9{bottom:26.071218pt;}
.y22{bottom:40.243067pt;}
.y175{bottom:45.075253pt;}
.y16c{bottom:45.218800pt;}
.y174{bottom:54.765493pt;}
.y60{bottom:55.421333pt;}
.y5{bottom:59.133337pt;}
.y16b{bottom:59.618800pt;}
.ye8{bottom:60.248336pt;}
.y173{bottom:64.455733pt;}
.ye4{bottom:75.451032pt;}
.y4{bottom:86.333337pt;}
.y16a{bottom:88.418800pt;}
.y42{bottom:94.497333pt;}
.yb0{bottom:94.514667pt;}
.ya4{bottom:94.540000pt;}
.yb9{bottom:94.548000pt;}
.y8a{bottom:94.549333pt;}
.y146{bottom:102.673333pt;}
.y169{bottom:102.818800pt;}
.ybc{bottom:103.869333pt;}
.y157{bottom:104.338667pt;}
.y21{bottom:104.670800pt;}
.yd1{bottom:106.236000pt;}
.y41{bottom:110.437333pt;}
.yaf{bottom:110.454667pt;}
.ya3{bottom:110.480000pt;}
.y5f{bottom:111.562667pt;}
.y89{bottom:115.309333pt;}
.y168{bottom:117.218800pt;}
.y7c{bottom:119.532000pt;}
.y20{bottom:123.790666pt;}
.y40{bottom:126.378667pt;}
.yae{bottom:126.394667pt;}
.ya2{bottom:126.420000pt;}
.yb8{bottom:131.249333pt;}
.ybb{bottom:135.745333pt;}
.yd0{bottom:138.113333pt;}
.y145{bottom:141.192000pt;}
.y3f{bottom:142.318667pt;}
.y5e{bottom:143.440000pt;}
.y167{bottom:146.018800pt;}
.yad{bottom:147.156000pt;}
.ya1{bottom:147.180000pt;}
.y156{bottom:148.356000pt;}
.y7b{bottom:151.409333pt;}
.y165{bottom:153.312000pt;}
.y12f{bottom:154.646667pt;}
.y3e{bottom:158.258667pt;}
.yac{bottom:158.276000pt;}
.y166{bottom:160.418800pt;}
.y88{bottom:167.622667pt;}
.y164{bottom:169.253333pt;}
.ye5{bottom:172.390968pt;}
.y144{bottom:173.069333pt;}
.y3d{bottom:174.198667pt;}
.yab{bottom:174.216000pt;}
.y17{bottom:175.052000pt;}
.y5d{bottom:175.317333pt;}
.ycf{bottom:183.274667pt;}
.y7a{bottom:183.286667pt;}
.yea{bottom:183.695479pt;}
.y163{bottom:185.193333pt;}
.y1f{bottom:186.238666pt;}
.y16{bottom:186.252002pt;}
.y3c{bottom:190.138667pt;}
.yaa{bottom:190.156000pt;}
.y155{bottom:192.372000pt;}
.y12e{bottom:193.165333pt;}
.y3b{bottom:194.960000pt;}
.ya0{bottom:195.852000pt;}
.y1e{bottom:197.438668pt;}
.y15{bottom:197.452004pt;}
.y87{bottom:199.500000pt;}
.ya9{bottom:206.096000pt;}
.y5c{bottom:207.194667pt;}
.y1d{bottom:208.638670pt;}
.y14{bottom:208.651996pt;}
.y143{bottom:211.588000pt;}
.y162{bottom:214.616000pt;}
.yce{bottom:215.150667pt;}
.y79{bottom:215.164000pt;}
.ya8{bottom:222.036000pt;}
.y12d{bottom:225.042667pt;}
.y9f{bottom:227.729333pt;}
.y1c{bottom:231.038664pt;}
.y13{bottom:231.052000pt;}
.y86{bottom:231.377333pt;}
.y161{bottom:233.877333pt;}
.y154{bottom:234.100000pt;}
.ya7{bottom:237.976000pt;}
.y5b{bottom:239.072000pt;}
.y1b{bottom:242.238666pt;}
.y12{bottom:242.252002pt;}
.y142{bottom:243.465333pt;}
.y78{bottom:247.041333pt;}
.y1a{bottom:253.438668pt;}
.y11{bottom:253.451999pt;}
.ya6{bottom:258.737333pt;}
.y9e{bottom:259.606667pt;}
.ycd{bottom:260.312000pt;}
.y85{bottom:263.254667pt;}
.y12c{bottom:263.561333pt;}
.ye6{bottom:269.330904pt;}
.y5a{bottom:270.949333pt;}
.y160{bottom:272.400000pt;}
.ya5{bottom:274.677333pt;}
.y19{bottom:275.838667pt;}
.y10{bottom:275.852001pt;}
.y77{bottom:278.917333pt;}
.y141{bottom:281.984000pt;}
.y18{bottom:287.038667pt;}
.yf{bottom:287.052000pt;}
.y9d{bottom:291.484000pt;}
.y15f{bottom:291.660000pt;}
.ycc{bottom:292.189333pt;}
.y153{bottom:294.726667pt;}
.y84{bottom:295.130667pt;}
.yb7{bottom:295.132000pt;}
.y12b{bottom:295.438667pt;}
.y59{bottom:302.825333pt;}
.ye{bottom:309.452000pt;}
.y76{bottom:310.794667pt;}
.y15e{bottom:310.921333pt;}
.y9c{bottom:323.360000pt;}
.ycb{bottom:324.066667pt;}
.y83{bottom:327.008000pt;}
.y15d{bottom:330.182667pt;}
.y12a{bottom:333.957333pt;}
.y58{bottom:334.702667pt;}
.y152{bottom:338.742667pt;}
.y75{bottom:342.672000pt;}
.yd{bottom:343.809333pt;}
.y11d{bottom:344.861333pt;}
.ye2{bottom:345.318667pt;}
.y140{bottom:346.042667pt;}
.y15c{bottom:349.444000pt;}
.y9b{bottom:355.237333pt;}
.y82{bottom:358.885333pt;}
.y11c{bottom:360.801333pt;}
.yc{bottom:362.706666pt;}
.y3a{bottom:363.589333pt;}
.ye7{bottom:366.254298pt;}
.y57{bottom:366.580000pt;}
.y15b{bottom:368.705333pt;}
.yca{bottom:369.226667pt;}
.y74{bottom:374.549333pt;}
.y11b{bottom:376.741333pt;}
.ye1{bottom:377.196000pt;}
.y151{bottom:380.470667pt;}
.y13f{bottom:384.561333pt;}
.y39{bottom:386.009333pt;}
.y9a{bottom:387.114667pt;}
.y15a{bottom:387.965333pt;}
.y81{bottom:390.762667pt;}
.y129{bottom:398.016000pt;}
.y56{bottom:398.457333pt;}
.yc9{bottom:401.104000pt;}
.y11a{bottom:406.164000pt;}
.y73{bottom:406.426667pt;}
.y159{bottom:407.226667pt;}
.y150{bottom:412.348000pt;}
.y13e{bottom:416.438667pt;}
.y99{bottom:418.992000pt;}
.ye0{bottom:422.356000pt;}
.y80{bottom:422.640000pt;}
.y119{bottom:425.425333pt;}
.y158{bottom:426.488000pt;}
.y55{bottom:430.334667pt;}
.y128{bottom:436.534667pt;}
.y72{bottom:438.304000pt;}
.y14f{bottom:444.225333pt;}
.y118{bottom:444.686667pt;}
.y108{bottom:445.749333pt;}
.yc8{bottom:446.264000pt;}
.y38{bottom:449.745333pt;}
.y98{bottom:450.869333pt;}
.ydf{bottom:454.233333pt;}
.y7f{bottom:454.517333pt;}
.y13d{bottom:454.957333pt;}
.y54{bottom:462.210667pt;}
.yb{bottom:462.990669pt;}
.y117{bottom:463.948000pt;}
.y107{bottom:465.010667pt;}
.y127{bottom:468.412000pt;}
.y71{bottom:470.180000pt;}
.y37{bottom:472.165333pt;}
.yc7{bottom:478.141333pt;}
.ya{bottom:478.990666pt;}
.y97{bottom:482.746667pt;}
.y116{bottom:483.208000pt;}
.y106{bottom:484.270667pt;}
.y7e{bottom:486.393333pt;}
.y13c{bottom:486.834667pt;}
.y53{bottom:494.088000pt;}
.y36{bottom:494.584000pt;}
.y9{bottom:494.990666pt;}
.yde{bottom:499.394667pt;}
.y70{bottom:502.057333pt;}
.y115{bottom:502.469333pt;}
.y105{bottom:503.532000pt;}
.y14e{bottom:504.850667pt;}
.y126{bottom:506.930667pt;}
.y96{bottom:514.622667pt;}
.y35{bottom:517.004000pt;}
.yb6{bottom:518.270667pt;}
.y114{bottom:521.730667pt;}
.y104{bottom:522.793333pt;}
.yc6{bottom:523.302667pt;}
.y13b{bottom:525.353333pt;}
.y52{bottom:525.965333pt;}
.y7d{bottom:526.240000pt;}
.ydd{bottom:531.272000pt;}
.y6f{bottom:533.934667pt;}
.y125{bottom:538.808000pt;}
.y34{bottom:539.422667pt;}
.y113{bottom:540.992000pt;}
.y103{bottom:542.054667pt;}
.y95{bottom:546.500000pt;}
.y14d{bottom:548.866667pt;}
.yb5{bottom:550.148000pt;}
.yc5{bottom:555.178667pt;}
.y51{bottom:557.842667pt;}
.y112{bottom:560.253333pt;}
.y102{bottom:561.316000pt;}
.y33{bottom:561.842667pt;}
.y6e{bottom:565.812000pt;}
.y8{bottom:573.786667pt;}
.ydc{bottom:576.432000pt;}
.y124{bottom:577.326667pt;}
.y94{bottom:578.377333pt;}
.y111{bottom:579.513333pt;}
.y101{bottom:580.577333pt;}
.yb4{bottom:582.025333pt;}
.y32{bottom:584.261333pt;}
.y13a{bottom:589.412000pt;}
.y50{bottom:589.720000pt;}
.y14c{bottom:590.596000pt;}
.y7{bottom:592.685334pt;}
.y6d{bottom:597.689333pt;}
.y110{bottom:598.774667pt;}
.y100{bottom:599.837333pt;}
.yc4{bottom:600.340000pt;}
.y31{bottom:606.681333pt;}
.ydb{bottom:608.309333pt;}
.y93{bottom:610.254667pt;}
.yb3{bottom:613.902667pt;}
.y10f{bottom:618.036000pt;}
.yff{bottom:619.098667pt;}
.y4f{bottom:621.597333pt;}
.y14b{bottom:622.472000pt;}
.y139{bottom:627.930667pt;}
.y30{bottom:629.100000pt;}
.y6c{bottom:629.566667pt;}
.y123{bottom:632.141333pt;}
.yc3{bottom:632.217333pt;}
.yeb{bottom:633.033333pt;}
.y10e{bottom:637.297333pt;}
.yfe{bottom:638.360000pt;}
.yda{bottom:640.186667pt;}
.y92{bottom:642.132000pt;}
.ye3{bottom:643.194667pt;}
.y6{bottom:645.598667pt;}
.yb2{bottom:645.780000pt;}
.y28{bottom:647.548400pt;}
.y2f{bottom:651.520000pt;}
.y4e{bottom:653.473333pt;}
.yba{bottom:653.749333pt;}
.y10d{bottom:657.089333pt;}
.yfd{bottom:657.621333pt;}
.y6b{bottom:661.442667pt;}
.y122{bottom:664.018667pt;}
.y138{bottom:666.449333pt;}
.y3{bottom:668.977329pt;}
.y10c{bottom:676.350667pt;}
.yfc{bottom:676.882667pt;}
.yc2{bottom:677.377333pt;}
.y2e{bottom:682.241333pt;}
.y14a{bottom:683.098667pt;}
.yd9{bottom:685.346667pt;}
.y4d{bottom:685.350667pt;}
.yb1{bottom:685.625333pt;}
.y91{bottom:687.292000pt;}
.y6a{bottom:693.320000pt;}
.y27{bottom:695.548400pt;}
.yfb{bottom:696.142667pt;}
.y121{bottom:701.564000pt;}
.y137{bottom:704.968000pt;}
.yc1{bottom:709.254667pt;}
.yfa{bottom:715.404000pt;}
.yd8{bottom:717.224000pt;}
.y4c{bottom:717.228000pt;}
.y69{bottom:725.197333pt;}
.y90{bottom:725.810667pt;}
.y149{bottom:727.114667pt;}
.y120{bottom:733.441333pt;}
.yf9{bottom:734.665333pt;}
.y26{bottom:743.548400pt;}
.y4b{bottom:749.105333pt;}
.yf8{bottom:753.926667pt;}
.yc0{bottom:754.414667pt;}
.y68{bottom:757.074667pt;}
.y8f{bottom:757.688000pt;}
.yd7{bottom:762.384000pt;}
.y11f{bottom:765.318667pt;}
.y136{bottom:769.026667pt;}
.y2d{bottom:770.413333pt;}
.y148{bottom:771.130667pt;}
.yf7{bottom:773.188000pt;}
.y4a{bottom:780.982667pt;}
.y2{bottom:781.661334pt;}
.ybf{bottom:786.292000pt;}
.y67{bottom:788.952000pt;}
.yf6{bottom:792.448000pt;}
.yd6{bottom:794.261333pt;}
.y8e{bottom:796.206667pt;}
.y25{bottom:797.418933pt;}
.y147{bottom:803.008000pt;}
.y11e{bottom:805.165333pt;}
.y135{bottom:807.545333pt;}
.yf5{bottom:811.709333pt;}
.y49{bottom:812.860000pt;}
.y66{bottom:820.829333pt;}
.y2c{bottom:822.288000pt;}
.yd5{bottom:826.138667pt;}
.y8d{bottom:828.084000pt;}
.yf4{bottom:830.970667pt;}
.y24{bottom:831.018933pt;}
.ybe{bottom:831.453333pt;}
.y134{bottom:839.422667pt;}
.y48{bottom:844.736000pt;}
.y10b{bottom:850.232000pt;}
.y65{bottom:852.705333pt;}
.y172{bottom:858.081733pt;}
.y1{bottom:859.312000pt;}
.ybd{bottom:863.330667pt;}
.y23{bottom:864.618933pt;}
.yf3{bottom:869.493333pt;}
.yd4{bottom:871.298667pt;}
.y133{bottom:871.300000pt;}
.y8c{bottom:872.272000pt;}
.y47{bottom:876.613333pt;}
.y2a{bottom:881.966667pt;}
.y64{bottom:884.582667pt;}
.y171{bottom:886.881733pt;}
.yf2{bottom:888.754667pt;}
.y2b{bottom:893.960000pt;}
.yd3{bottom:903.176000pt;}
.y8b{bottom:904.149333pt;}
.yf1{bottom:908.014667pt;}
.y46{bottom:908.490667pt;}
.y132{bottom:909.818667pt;}
.y170{bottom:915.681733pt;}
.y63{bottom:916.460000pt;}
.yf0{bottom:927.276000pt;}
.y16f{bottom:930.081733pt;}
.y29{bottom:931.421333pt;}
.yd2{bottom:935.053333pt;}
.y45{bottom:940.368000pt;}
.y131{bottom:941.694667pt;}
.y16e{bottom:944.481733pt;}
.yef{bottom:946.537333pt;}
.y62{bottom:948.337333pt;}
.yee{bottom:965.798667pt;}
.y10a{bottom:966.329333pt;}
.y44{bottom:972.245333pt;}
.y130{bottom:973.572000pt;}
.y16d{bottom:979.130800pt;}
.y61{bottom:980.214667pt;}
.yed{bottom:985.590667pt;}
.y109{bottom:1009.900000pt;}
.y43{bottom:1012.090667pt;}
.yec{bottom:1017.869333pt;}
.h20{height:23.789539pt;}
.h19{height:25.142874pt;}
.h7{height:28.560000pt;}
.h1f{height:34.920000pt;}
.h14{height:35.333920pt;}
.h9{height:35.352000pt;}
.h1e{height:35.664000pt;}
.h15{height:39.850400pt;}
.h6{height:40.800000pt;}
.h13{height:41.018216pt;}
.h3{height:42.840000pt;}
.h1d{height:42.855418pt;}
.h1c{height:43.626719pt;}
.h12{height:43.636400pt;}
.h11{height:44.632747pt;}
.h17{height:47.820800pt;}
.h2{height:48.960000pt;}
.h18{height:51.870867pt;}
.h1a{height:51.876201pt;}
.h16{height:53.559147pt;}
.h10{height:64.454458pt;}
.h5{height:69.360000pt;}
.hb{height:82.488000pt;}
.hd{height:85.078125pt;}
.ha{height:89.776042pt;}
.he{height:92.802902pt;}
.hf{height:104.690000pt;}
.h4{height:105.826671pt;}
.hc{height:120.240000pt;}
.h1b{height:384.837120pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:529.151040pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:23.755247pt;}
.x17{left:35.714841pt;}
.x7{left:48.856267pt;}
.x18{left:76.140945pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x10{left:101.129333pt;}
.x2a{left:104.384000pt;}
.x2b{left:105.922667pt;}
.x11{left:110.096000pt;}
.x28{left:112.760000pt;}
.x31{left:114.660000pt;}
.x22{left:117.409333pt;}
.x30{left:122.630667pt;}
.x16{left:132.284000pt;}
.xf{left:133.508000pt;}
.x13{left:140.098667pt;}
.xe{left:148.053333pt;}
.x2e{left:150.244000pt;}
.x9{left:154.936000pt;}
.x6{left:164.764133pt;}
.x14{left:167.845333pt;}
.x32{left:170.934933pt;}
.x1e{left:172.533333pt;}
.x4{left:180.874667pt;}
.x1f{left:187.650667pt;}
.x2c{left:193.342667pt;}
.x19{left:212.242215pt;}
.xa{left:235.656000pt;}
.x1b{left:242.924000pt;}
.x2f{left:266.856000pt;}
.x20{left:268.650667pt;}
.x23{left:281.722667pt;}
.x21{left:295.596000pt;}
.x1c{left:297.480000pt;}
.xc{left:326.164000pt;}
.x29{left:328.998667pt;}
.x24{left:350.576000pt;}
.x1d{left:360.374667pt;}
.xd{left:362.581333pt;}
.x2d{left:382.665333pt;}
.x15{left:389.046667pt;}
.x12{left:392.948000pt;}
.x3{left:404.408000pt;}
.x5{left:415.759600pt;}
.x25{left:419.429333pt;}
.x26{left:488.282667pt;}
.x27{left:557.136000pt;}
.xb{left:558.045333pt;}
.x8{left:577.707867pt;}
.x33{left:628.832933pt;}
}




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