
    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_8b68099d4db5a7d8563d5083.woff')format("woff");}.ff1{font-family:ff1;line-height:1.015625;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_f8dce2fb648954b6e957593a.woff')format("woff");}.ff2{font-family:ff2;line-height:1.022461;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_ac92f6f07bc373eaae766802.woff')format("woff");}.ff3{font-family:ff3;line-height:0.760319;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_168693d2e66fb04f043ffded.woff')format("woff");}.ff4{font-family:ff4;line-height:1.041992;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_237b698c0860d486d62a5e63.woff')format("woff");}.ff5{font-family:ff5;line-height:1.032715;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_7fcb5fdbe192a640f31a9ba6.woff')format("woff");}.ff6{font-family:ff6;line-height:1.026855;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_72999ff2d0735542e2ada460.woff')format("woff");}.ff7{font-family:ff7;line-height:1.011230;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_d24a757fc29cd37bcb0c10e9.woff')format("woff");}.ff8{font-family:ff8;line-height:0.964860;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_99001b05987329e50105dc82.woff')format("woff");}.ff9{font-family:ff9;line-height:1.031738;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_4409137b9b2d7060032eefe1.woff')format("woff");}.ffa{font-family:ffa;line-height:0.710938;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_8c0666bbfcea593cca8461fd.woff')format("woff");}.ffb{font-family:ffb;line-height:0.731489;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_151fbbbf551a506a1a063dc5.woff')format("woff");}.ffc{font-family:ffc;line-height:0.964864;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_549020307081a498645cbbba.woff')format("woff");}.ffd{font-family:ffd;line-height:0.964844;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_712b0b783de9a1c14dcfd01a.woff')format("woff");}.ffe{font-family:ffe;line-height:0.858000;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_5dcc3ecf65b3c33b64b87f25.woff')format("woff");}.fff{font-family:fff;line-height:0.689000;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_728051e2aeefe1d21b519ef3.woff')format("woff");}.ff10{font-family:ff10;line-height:0.721000;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_37197d255037687fa690357f.woff')format("woff");}.ff11{font-family:ff11;line-height:1.022461;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_cd53c8d296ae8f5c1b14d2b5.woff')format("woff");}.ff12{font-family:ff12;line-height:0.963379;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;}
.m13{transform:matrix(0.054705,-0.243941,0.243941,0.054705,0,0);-ms-transform:matrix(0.054705,-0.243941,0.243941,0.054705,0,0);-webkit-transform:matrix(0.054705,-0.243941,0.243941,0.054705,0,0);}
.m12{transform:matrix(0.070208,-0.239939,0.239939,0.070208,0,0);-ms-transform:matrix(0.070208,-0.239939,0.239939,0.070208,0,0);-webkit-transform:matrix(0.070208,-0.239939,0.239939,0.070208,0,0);}
.m11{transform:matrix(0.084766,-0.235191,0.235191,0.084766,0,0);-ms-transform:matrix(0.084766,-0.235191,0.235191,0.084766,0,0);-webkit-transform:matrix(0.084766,-0.235191,0.235191,0.084766,0,0);}
.m4{transform:matrix(0.094986,0.231252,-0.231252,0.094986,0,0);-ms-transform:matrix(0.094986,0.231252,-0.231252,0.094986,0,0);-webkit-transform:matrix(0.094986,0.231252,-0.231252,0.094986,0,0);}
.m10{transform:matrix(0.103951,-0.227363,0.227363,0.103951,0,0);-ms-transform:matrix(0.103951,-0.227363,0.227363,0.103951,0,0);-webkit-transform:matrix(0.103951,-0.227363,0.227363,0.103951,0,0);}
.m5{transform:matrix(0.108847,0.225061,-0.225061,0.108847,0,0);-ms-transform:matrix(0.108847,0.225061,-0.225061,0.108847,0,0);-webkit-transform:matrix(0.108847,0.225061,-0.225061,0.108847,0,0);}
.mf{transform:matrix(0.116133,-0.221389,0.221389,0.116133,0,0);-ms-transform:matrix(0.116133,-0.221389,0.221389,0.116133,0,0);-webkit-transform:matrix(0.116133,-0.221389,0.221389,0.116133,0,0);}
.m6{transform:matrix(0.121240,0.218634,-0.218634,0.121240,0,0);-ms-transform:matrix(0.121240,0.218634,-0.218634,0.121240,0,0);-webkit-transform:matrix(0.121240,0.218634,-0.218634,0.121240,0,0);}
.me{transform:matrix(0.124017,-0.217071,0.217071,0.124017,0,0);-ms-transform:matrix(0.124017,-0.217071,0.217071,0.124017,0,0);-webkit-transform:matrix(0.124017,-0.217071,0.217071,0.124017,0,0);}
.md{transform:matrix(0.132369,-0.212081,0.212081,0.132369,0,0);-ms-transform:matrix(0.132369,-0.212081,0.212081,0.132369,0,0);-webkit-transform:matrix(0.132369,-0.212081,0.212081,0.132369,0,0);}
.m7{transform:matrix(0.138348,0.208230,-0.208230,0.138348,0,0);-ms-transform:matrix(0.138348,0.208230,-0.208230,0.138348,0,0);-webkit-transform:matrix(0.138348,0.208230,-0.208230,0.138348,0,0);}
.mc{transform:matrix(0.142930,-0.205112,0.205112,0.142930,0,0);-ms-transform:matrix(0.142930,-0.205112,0.205112,0.142930,0,0);-webkit-transform:matrix(0.142930,-0.205112,0.205112,0.142930,0,0);}
.m8{transform:matrix(0.150419,0.199685,-0.199685,0.150419,0,0);-ms-transform:matrix(0.150419,0.199685,-0.199685,0.150419,0,0);-webkit-transform:matrix(0.150419,0.199685,-0.199685,0.150419,0,0);}
.mb{transform:matrix(0.150871,-0.199343,0.199343,0.150871,0,0);-ms-transform:matrix(0.150871,-0.199343,0.199343,0.150871,0,0);-webkit-transform:matrix(0.150871,-0.199343,0.199343,0.150871,0,0);}
.m3{transform:matrix(0.154999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154999,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.161065,-0.191201,0.191201,0.161065,0,0);-ms-transform:matrix(0.161065,-0.191201,0.191201,0.161065,0,0);-webkit-transform:matrix(0.161065,-0.191201,0.191201,0.161065,0,0);}
.m9{transform:matrix(0.162760,0.189761,-0.189761,0.162760,0,0);-ms-transform:matrix(0.162760,0.189761,-0.189761,0.162760,0,0);-webkit-transform:matrix(0.162760,0.189761,-0.189761,0.162760,0,0);}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.229126,0.100007,-0.100007,0.229126,0,0);-ms-transform:matrix(0.229126,0.100007,-0.100007,0.229126,0,0);-webkit-transform:matrix(0.229126,0.100007,-0.100007,0.229126,0,0);}
.m15{transform:matrix(0.234183,0.087512,-0.087512,0.234183,0,0);-ms-transform:matrix(0.234183,0.087512,-0.087512,0.234183,0,0);-webkit-transform:matrix(0.234183,0.087512,-0.087512,0.234183,0,0);}
.m16{transform:matrix(0.238807,0.073968,-0.073968,0.238807,0,0);-ms-transform:matrix(0.238807,0.073968,-0.073968,0.238807,0,0);-webkit-transform:matrix(0.238807,0.073968,-0.073968,0.238807,0,0);}
.m17{transform:matrix(0.241470,0.064747,-0.064747,0.241470,0,0);-ms-transform:matrix(0.241470,0.064747,-0.064747,0.241470,0,0);-webkit-transform:matrix(0.241470,0.064747,-0.064747,0.241470,0,0);}
.m18{transform:matrix(0.243553,0.056408,-0.056408,0.243553,0,0);-ms-transform:matrix(0.243553,0.056408,-0.056408,0.243553,0,0);-webkit-transform:matrix(0.243553,0.056408,-0.056408,0.243553,0,0);}
.m19{transform:matrix(0.246126,0.043842,-0.043842,0.246126,0,0);-ms-transform:matrix(0.246126,0.043842,-0.043842,0.246126,0,0);-webkit-transform:matrix(0.246126,0.043842,-0.043842,0.246126,0,0);}
.m1e{transform:matrix(0.246307,-0.042810,0.042810,0.246307,0,0);-ms-transform:matrix(0.246307,-0.042810,0.042810,0.246307,0,0);-webkit-transform:matrix(0.246307,-0.042810,0.042810,0.246307,0,0);}
.m1d{transform:matrix(0.248759,-0.024874,0.024874,0.248759,0,0);-ms-transform:matrix(0.248759,-0.024874,0.024874,0.248759,0,0);-webkit-transform:matrix(0.248759,-0.024874,0.024874,0.248759,0,0);}
.m1a{transform:matrix(0.249026,0.022050,-0.022050,0.249026,0,0);-ms-transform:matrix(0.249026,0.022050,-0.022050,0.249026,0,0);-webkit-transform:matrix(0.249026,0.022050,-0.022050,0.249026,0,0);}
.m1c{transform:matrix(0.249846,-0.008769,0.008769,0.249846,0,0);-ms-transform:matrix(0.249846,-0.008769,0.008769,0.249846,0,0);-webkit-transform:matrix(0.249846,-0.008769,0.008769,0.249846,0,0);}
.m1b{transform:matrix(0.249938,0.005585,-0.005585,0.249938,0,0);-ms-transform:matrix(0.249938,0.005585,-0.005585,0.249938,0,0);-webkit-transform:matrix(0.249938,0.005585,-0.005585,0.249938,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);}
.m2{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:21.978000px;}
.ls7{letter-spacing:-8.670000px;}
.ls17{letter-spacing:-7.236000px;}
.ls1b{letter-spacing:-6.900000px;}
.lse{letter-spacing:-6.360000px;}
.ls25{letter-spacing:-5.724000px;}
.ls28{letter-spacing:-3.540000px;}
.ls16{letter-spacing:-3.240000px;}
.ls9{letter-spacing:-2.856000px;}
.ls24{letter-spacing:-2.592000px;}
.ls1a{letter-spacing:-2.020693px;}
.ls8{letter-spacing:-1.530000px;}
.ls21{letter-spacing:-1.134000px;}
.ls6{letter-spacing:-1.122000px;}
.lsb{letter-spacing:-0.918000px;}
.ls1e{letter-spacing:-0.900000px;}
.lsa{letter-spacing:-0.691200px;}
.ls20{letter-spacing:-0.660000px;}
.lsd{letter-spacing:-0.600000px;}
.lsf{letter-spacing:-0.540000px;}
.ls23{letter-spacing:-0.432000px;}
.ls22{letter-spacing:-0.378000px;}
.ls10{letter-spacing:-0.360000px;}
.ls27{letter-spacing:-0.270000px;}
.ls15{letter-spacing:-0.180000px;}
.ls1f{letter-spacing:-0.162000px;}
.lsc{letter-spacing:-0.120000px;}
.ls29{letter-spacing:-0.108000px;}
.ls5{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.001800px;}
.ls14{letter-spacing:0.002400px;}
.ls2{letter-spacing:0.012000px;}
.ls13{letter-spacing:0.022200px;}
.ls12{letter-spacing:0.022800px;}
.ls4{letter-spacing:0.025800px;}
.ls3{letter-spacing:0.270000px;}
.ls1d{letter-spacing:0.437400px;}
.ls26{letter-spacing:0.780000px;}
.ls1c{letter-spacing:1.041000px;}
.ls18{letter-spacing:10.138200px;}
.ls1{letter-spacing:43.181364px;}
.ls0{letter-spacing:43.181964px;}
.ls19{letter-spacing:228.438756px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7d{word-spacing:-236.792665px;}
.ws8{word-spacing:-17.928000px;}
.ws0{word-spacing:-16.524000px;}
.wsbd{word-spacing:-16.434000px;}
.ws5{word-spacing:-14.940000px;}
.ws5a{word-spacing:-14.880000px;}
.ws5b{word-spacing:-14.820000px;}
.ws9{word-spacing:-14.700000px;}
.ws29{word-spacing:-14.580000px;}
.ws7c{word-spacing:-14.400000px;}
.ws47{word-spacing:-14.340000px;}
.ws48{word-spacing:-14.160000px;}
.wsb0{word-spacing:-14.040000px;}
.ws7{word-spacing:-13.662000px;}
.ws67{word-spacing:-13.446000px;}
.wsbe{word-spacing:-13.392000px;}
.ws9a{word-spacing:-13.284000px;}
.ws6{word-spacing:-13.230000px;}
.ws99{word-spacing:-13.068000px;}
.wsc4{word-spacing:-12.960000px;}
.wsc3{word-spacing:-12.798000px;}
.wsc2{word-spacing:-12.258000px;}
.wse{word-spacing:-12.150000px;}
.ws8a{word-spacing:-11.904000px;}
.wsa{word-spacing:-11.772000px;}
.wsd5{word-spacing:-11.280000px;}
.wsc{word-spacing:-11.232000px;}
.ws3{word-spacing:-10.896000px;}
.wsb{word-spacing:-10.854000px;}
.ws27{word-spacing:-10.800000px;}
.wsf{word-spacing:-10.464000px;}
.ws68{word-spacing:-10.206000px;}
.ws2{word-spacing:-9.542544px;}
.ws4{word-spacing:-9.417600px;}
.wsaf{word-spacing:-8.340000px;}
.ws69{word-spacing:-6.210000px;}
.ws70{word-spacing:-3.180000px;}
.ws71{word-spacing:-3.060000px;}
.ws33{word-spacing:-2.940000px;}
.ws55{word-spacing:-2.760000px;}
.ws80{word-spacing:-2.640000px;}
.ws32{word-spacing:-2.580000px;}
.ws5e{word-spacing:-2.520000px;}
.ws6b{word-spacing:-2.430000px;}
.wsa2{word-spacing:-2.340000px;}
.wscf{word-spacing:-2.268000px;}
.wsd6{word-spacing:-2.214000px;}
.ws18{word-spacing:-2.160000px;}
.ws19{word-spacing:-2.106000px;}
.ws35{word-spacing:-1.980000px;}
.ws3f{word-spacing:-1.860000px;}
.wsd3{word-spacing:-1.836000px;}
.ws89{word-spacing:-1.728000px;}
.wsb1{word-spacing:-1.680000px;}
.ws2f{word-spacing:-1.620000px;}
.wsc5{word-spacing:-1.566000px;}
.wscb{word-spacing:-1.512000px;}
.wsa4{word-spacing:-1.500000px;}
.ws83{word-spacing:-1.440000px;}
.ws40{word-spacing:-1.380000px;}
.wsbc{word-spacing:-1.320000px;}
.wsa9{word-spacing:-1.140000px;}
.wsae{word-spacing:-1.134000px;}
.ws5c{word-spacing:-1.080000px;}
.ws25{word-spacing:-1.026000px;}
.ws8d{word-spacing:-1.020000px;}
.ws6d{word-spacing:-0.918000px;}
.ws2c{word-spacing:-0.900000px;}
.ws1b{word-spacing:-0.864000px;}
.ws6a{word-spacing:-0.810000px;}
.ws9b{word-spacing:-0.780000px;}
.ws88{word-spacing:-0.702000px;}
.ws34{word-spacing:-0.660000px;}
.ws1d{word-spacing:-0.648000px;}
.wsbf{word-spacing:-0.600000px;}
.ws8f{word-spacing:-0.540000px;}
.ws53{word-spacing:-0.360000px;}
.ws20{word-spacing:-0.270000px;}
.ws95{word-spacing:-0.240000px;}
.ws13{word-spacing:-0.216000px;}
.ws3c{word-spacing:-0.120000px;}
.ws6c{word-spacing:-0.108000px;}
.ws37{word-spacing:-0.060000px;}
.wsd{word-spacing:-0.054000px;}
.ws28{word-spacing:-0.048000px;}
.ws10{word-spacing:0.000000px;}
.ws2d{word-spacing:0.120000px;}
.wsaa{word-spacing:0.162000px;}
.ws5d{word-spacing:0.180000px;}
.wsad{word-spacing:0.216000px;}
.ws65{word-spacing:0.240000px;}
.ws4d{word-spacing:0.360000px;}
.wsc0{word-spacing:0.378000px;}
.ws11{word-spacing:0.408000px;}
.wsca{word-spacing:0.432000px;}
.ws96{word-spacing:0.486000px;}
.ws51{word-spacing:0.540000px;}
.ws4e{word-spacing:0.600000px;}
.ws64{word-spacing:0.660000px;}
.ws14{word-spacing:0.691200px;}
.ws17{word-spacing:0.702000px;}
.wsb8{word-spacing:0.720000px;}
.ws8e{word-spacing:0.840000px;}
.wsc1{word-spacing:0.864000px;}
.ws7a{word-spacing:0.900000px;}
.ws26{word-spacing:0.918000px;}
.ws9e{word-spacing:0.960000px;}
.ws3a{word-spacing:1.020000px;}
.ws56{word-spacing:1.080000px;}
.wsc8{word-spacing:1.134000px;}
.wsb6{word-spacing:1.140000px;}
.ws36{word-spacing:1.320000px;}
.ws58{word-spacing:1.380000px;}
.ws22{word-spacing:1.440000px;}
.ws6e{word-spacing:1.458000px;}
.ws66{word-spacing:1.560000px;}
.wsab{word-spacing:1.566000px;}
.ws8b{word-spacing:1.620000px;}
.wsd7{word-spacing:1.728000px;}
.ws12{word-spacing:1.734000px;}
.ws15{word-spacing:1.836000px;}
.ws38{word-spacing:1.920000px;}
.ws24{word-spacing:1.980000px;}
.wsc7{word-spacing:1.998000px;}
.ws87{word-spacing:2.020693px;}
.ws1e{word-spacing:2.052000px;}
.ws7f{word-spacing:2.160000px;}
.ws61{word-spacing:2.220000px;}
.wsa0{word-spacing:2.340000px;}
.ws1c{word-spacing:2.376000px;}
.ws6f{word-spacing:2.460000px;}
.ws2b{word-spacing:2.580000px;}
.ws97{word-spacing:2.760000px;}
.wsbb{word-spacing:2.820000px;}
.ws79{word-spacing:2.940000px;}
.ws85{word-spacing:3.000000px;}
.ws1a{word-spacing:3.078000px;}
.ws59{word-spacing:3.120000px;}
.wsd2{word-spacing:3.132000px;}
.ws86{word-spacing:3.180000px;}
.wscd{word-spacing:3.294000px;}
.wsa1{word-spacing:3.300000px;}
.wsb2{word-spacing:3.360000px;}
.ws84{word-spacing:3.420000px;}
.ws9d{word-spacing:3.480000px;}
.wsb9{word-spacing:3.540000px;}
.ws76{word-spacing:3.600000px;}
.ws23{word-spacing:3.660000px;}
.wsba{word-spacing:3.780000px;}
.ws62{word-spacing:3.840000px;}
.wsce{word-spacing:3.942000px;}
.ws44{word-spacing:3.960000px;}
.wsa3{word-spacing:4.080000px;}
.ws41{word-spacing:4.200000px;}
.ws8c{word-spacing:4.260000px;}
.ws92{word-spacing:4.320000px;}
.wscc{word-spacing:4.374000px;}
.wsb7{word-spacing:4.380000px;}
.ws77{word-spacing:4.440000px;}
.ws94{word-spacing:4.482000px;}
.ws93{word-spacing:4.536000px;}
.ws4a{word-spacing:4.620000px;}
.wsb4{word-spacing:4.680000px;}
.ws43{word-spacing:4.740000px;}
.ws57{word-spacing:4.860000px;}
.ws78{word-spacing:4.920000px;}
.ws3d{word-spacing:5.340000px;}
.wsd1{word-spacing:5.346000px;}
.ws60{word-spacing:5.400000px;}
.ws5f{word-spacing:5.460000px;}
.ws42{word-spacing:5.520000px;}
.ws4c{word-spacing:5.580000px;}
.ws9f{word-spacing:5.700000px;}
.wsd0{word-spacing:5.724000px;}
.ws21{word-spacing:5.760000px;}
.wsc9{word-spacing:5.778000px;}
.wsa8{word-spacing:5.940000px;}
.ws2e{word-spacing:6.000000px;}
.ws4b{word-spacing:6.060000px;}
.ws45{word-spacing:6.360000px;}
.ws91{word-spacing:6.540000px;}
.ws90{word-spacing:6.600000px;}
.wsac{word-spacing:6.750000px;}
.ws7b{word-spacing:6.840000px;}
.ws3b{word-spacing:6.900000px;}
.ws2a{word-spacing:6.960000px;}
.ws63{word-spacing:7.020000px;}
.ws49{word-spacing:7.080000px;}
.ws9c{word-spacing:7.140000px;}
.ws98{word-spacing:7.200000px;}
.ws16{word-spacing:7.290000px;}
.wsc6{word-spacing:7.344000px;}
.ws39{word-spacing:7.500000px;}
.ws54{word-spacing:7.740000px;}
.ws75{word-spacing:7.920000px;}
.wsb3{word-spacing:8.040000px;}
.wsa5{word-spacing:8.100000px;}
.ws31{word-spacing:8.220000px;}
.ws30{word-spacing:8.280000px;}
.ws4f{word-spacing:8.400000px;}
.ws50{word-spacing:8.520000px;}
.ws72{word-spacing:8.580000px;}
.ws7e{word-spacing:8.640000px;}
.ws46{word-spacing:8.700000px;}
.ws1f{word-spacing:9.396000px;}
.ws74{word-spacing:10.080000px;}
.ws82{word-spacing:10.140000px;}
.ws81{word-spacing:10.200000px;}
.wsd4{word-spacing:10.260000px;}
.ws3e{word-spacing:10.620000px;}
.wsa6{word-spacing:10.800000px;}
.ws52{word-spacing:10.860000px;}
.ws73{word-spacing:12.600000px;}
.wsb5{word-spacing:13.080000px;}
.wsa7{word-spacing:16.860000px;}
.ws1{word-spacing:33.651135px;}
._11{margin-left:-228.438756px;}
._e{margin-left:-10.348800px;}
._1f{margin-left:-9.042600px;}
._4{margin-left:-7.915200px;}
._f{margin-left:-6.573000px;}
._a{margin-left:-5.517000px;}
._6{margin-left:-4.029000px;}
._1{margin-left:-2.672400px;}
._0{margin-left:-1.377000px;}
._5{width:1.173000px;}
._2{width:2.284800px;}
._d{width:3.774000px;}
._9{width:4.908000px;}
._7{width:6.707400px;}
._3{width:7.722000px;}
._c{width:9.028800px;}
._b{width:10.254000px;}
._10{width:13.290000px;}
._22{width:18.640800px;}
._23{width:23.832000px;}
._24{width:25.632000px;}
._8{width:36.624000px;}
._20{width:42.202200px;}
._21{width:43.324200px;}
._19{width:59.031600px;}
._1d{width:99.916200px;}
._1b{width:120.734400px;}
._18{width:128.085000px;}
._12{width:134.771473px;}
._1c{width:178.365600px;}
._1e{width:184.772400px;}
._1a{width:270.696600px;}
._14{width:386.017200px;}
._15{width:402.746400px;}
._13{width:706.703400px;}
._16{width:843.916200px;}
._17{width:992.677800px;}
.fc8{color:transparent;}
.fc7{color:rgb(21,25,49);}
.fc6{color:rgb(33,29,29);}
.fc5{color:rgb(16,15,13);}
.fc4{color:rgb(38,64,138);}
.fc2{color:rgb(75,119,196);}
.fc1{color:rgb(65,102,168);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fsb{font-size:24.642600px;}
.fs9{font-size:36.964200px;}
.fs3{font-size:38.478000px;}
.fsa{font-size:39.428400px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:43.200000px;}
.fs0{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs1a{font-size:65.746657px;}
.fs18{font-size:65.746710px;}
.fs14{font-size:65.746754px;}
.fs19{font-size:65.746831px;}
.fs16{font-size:65.746869px;}
.fs12{font-size:65.746920px;}
.fs15{font-size:65.746953px;}
.fs13{font-size:65.747066px;}
.fs1b{font-size:65.747168px;}
.fs17{font-size:65.747213px;}
.fs2{font-size:66.000000px;}
.fs10{font-size:69.714273px;}
.fse{font-size:69.714472px;}
.fsd{font-size:69.714490px;}
.fsf{font-size:69.714585px;}
.fs11{font-size:69.714598px;}
.fsc{font-size:69.714707px;}
.fs8{font-size:72.000000px;}
.fs22{font-size:72.375652px;}
.fs24{font-size:72.375735px;}
.fs21{font-size:72.375811px;}
.fs25{font-size:72.375941px;}
.fs20{font-size:72.375957px;}
.fs26{font-size:72.376029px;}
.fs1e{font-size:72.376036px;}
.fs1f{font-size:72.376051px;}
.fs1d{font-size:72.376069px;}
.fs1c{font-size:72.376159px;}
.fs23{font-size:72.376265px;}
.fs27{font-size:83.785800px;}
.fs1{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:68.124750px;}
.y3d{bottom:71.212050px;}
.y3e{bottom:75.036150px;}
.ye1{bottom:79.750200px;}
.ydf{bottom:79.948050px;}
.ye3{bottom:80.102100px;}
.ydd{bottom:81.007050px;}
.ye5{bottom:81.019950px;}
.ydb{bottom:83.429400px;}
.yd9{bottom:85.498800px;}
.yd7{bottom:86.694000px;}
.yd5{bottom:89.743500px;}
.yd3{bottom:93.403650px;}
.yd1{bottom:95.411400px;}
.y6e{bottom:113.078700px;}
.y9f{bottom:113.078850px;}
.y2b{bottom:117.212700px;}
.yd{bottom:117.875550px;}
.yfe{bottom:118.379550px;}
.yab{bottom:120.500700px;}
.ye9{bottom:120.500850px;}
.ya4{bottom:120.898800px;}
.yc{bottom:132.275550px;}
.yfd{bottom:133.379550px;}
.y6d{bottom:134.078700px;}
.y9e{bottom:134.078850px;}
.y2a{bottom:138.212700px;}
.yaa{bottom:140.300700px;}
.ye8{bottom:140.300850px;}
.yb{bottom:146.675550px;}
.y6c{bottom:155.078700px;}
.y9d{bottom:155.078850px;}
.yfc{bottom:155.985900px;}
.y29{bottom:159.212700px;}
.ya9{bottom:160.100700px;}
.ye7{bottom:160.100850px;}
.ya{bottom:161.075550px;}
.yfb{bottom:170.985900px;}
.y6b{bottom:176.078700px;}
.y9c{bottom:176.078850px;}
.ya8{bottom:179.900700px;}
.y28{bottom:180.212700px;}
.yb0{bottom:180.430500px;}
.yfa{bottom:193.592100px;}
.y6a{bottom:197.078700px;}
.y9b{bottom:197.078850px;}
.yae{bottom:198.475200px;}
.y3a{bottom:199.392600px;}
.y102{bottom:199.694550px;}
.ya7{bottom:199.700850px;}
.yac{bottom:200.773200px;}
.y27{bottom:201.212700px;}
.yf9{bottom:208.592100px;}
.yad{bottom:213.852300px;}
.y39{bottom:217.392600px;}
.y69{bottom:218.078700px;}
.y9a{bottom:218.078850px;}
.y101{bottom:219.494550px;}
.ya6{bottom:219.500700px;}
.y26{bottom:222.212700px;}
.yf8{bottom:223.592100px;}
.ybd{bottom:228.537900px;}
.y38{bottom:235.392600px;}
.ybf{bottom:236.516100px;}
.yf7{bottom:238.592100px;}
.y68{bottom:239.078700px;}
.y99{bottom:239.078850px;}
.y100{bottom:239.294550px;}
.ya5{bottom:239.300700px;}
.yc1{bottom:240.933300px;}
.y25{bottom:243.212700px;}
.yc3{bottom:247.716300px;}
.y37{bottom:253.392600px;}
.yc5{bottom:255.903150px;}
.yff{bottom:259.094550px;}
.y108{bottom:259.100700px;}
.yc7{bottom:259.439400px;}
.y67{bottom:260.078700px;}
.y98{bottom:260.078850px;}
.ye0{bottom:260.180700px;}
.yde{bottom:260.378550px;}
.ye2{bottom:260.532600px;}
.yf6{bottom:261.198450px;}
.ydc{bottom:261.437550px;}
.ye4{bottom:261.450450px;}
.yda{bottom:263.859900px;}
.yd8{bottom:265.929300px;}
.yc9{bottom:266.789700px;}
.yd6{bottom:267.124500px;}
.yd4{bottom:270.174000px;}
.y36{bottom:271.392600px;}
.yd2{bottom:273.834150px;}
.y24{bottom:275.596500px;}
.yd0{bottom:275.841900px;}
.yf5{bottom:276.198450px;}
.ycb{bottom:278.840100px;}
.y107{bottom:278.900700px;}
.y66{bottom:281.078700px;}
.y97{bottom:281.078850px;}
.ycd{bottom:286.953600px;}
.ybb{bottom:288.394650px;}
.y35{bottom:289.392600px;}
.ycf{bottom:295.270650px;}
.y112{bottom:295.440900px;}
.yb9{bottom:295.744950px;}
.y106{bottom:298.700850px;}
.yf4{bottom:298.804800px;}
.y65{bottom:302.078700px;}
.y96{bottom:302.078850px;}
.yb7{bottom:303.359100px;}
.y34{bottom:307.392600px;}
.yf3{bottom:313.804800px;}
.yb5{bottom:315.613350px;}
.y105{bottom:318.500700px;}
.y64{bottom:323.078700px;}
.y95{bottom:323.078850px;}
.yb3{bottom:323.856150px;}
.y33{bottom:325.392600px;}
.yb1{bottom:332.985900px;}
.yf2{bottom:336.411000px;}
.y104{bottom:338.300700px;}
.y63{bottom:344.078700px;}
.y94{bottom:344.078850px;}
.yf1{bottom:351.411000px;}
.y32{bottom:360.400350px;}
.y23{bottom:364.627950px;}
.y62{bottom:365.078700px;}
.y93{bottom:365.078850px;}
.yf0{bottom:366.411000px;}
.y31{bottom:378.400350px;}
.y22{bottom:384.427950px;}
.y61{bottom:386.078700px;}
.y92{bottom:386.078850px;}
.yef{bottom:389.017350px;}
.y111{bottom:391.529250px;}
.y30{bottom:396.400350px;}
.y60{bottom:407.078700px;}
.y91{bottom:407.078850px;}
.ybc{bottom:408.968400px;}
.yee{bottom:411.623550px;}
.ybe{bottom:416.946600px;}
.yc0{bottom:421.363800px;}
.y21{bottom:425.487900px;}
.y5f{bottom:428.078700px;}
.y90{bottom:428.078850px;}
.yc2{bottom:428.146800px;}
.y2f{bottom:431.408250px;}
.yed{bottom:434.529900px;}
.yc4{bottom:436.333650px;}
.yc6{bottom:439.869900px;}
.y20{bottom:445.287900px;}
.yc8{bottom:447.220200px;}
.ya3{bottom:449.078700px;}
.y8f{bottom:449.078850px;}
.y2e{bottom:449.408250px;}
.yca{bottom:459.270600px;}
.y5e{bottom:463.440900px;}
.yec{bottom:465.011850px;}
.y1f{bottom:465.087900px;}
.ycc{bottom:467.384100px;}
.y2d{bottom:467.408250px;}
.yba{bottom:468.825150px;}
.ya2{bottom:470.078700px;}
.y8e{bottom:470.078850px;}
.yce{bottom:475.701150px;}
.yb8{bottom:476.175450px;}
.yb6{bottom:483.789600px;}
.yeb{bottom:484.811850px;}
.y1e{bottom:484.887900px;}
.y2c{bottom:485.408250px;}
.ya1{bottom:491.078700px;}
.y8d{bottom:491.078850px;}
.yb4{bottom:496.043850px;}
.yb2{bottom:504.286650px;}
.y1d{bottom:504.687900px;}
.y5d{bottom:512.078700px;}
.y8c{bottom:512.078850px;}
.yaf{bottom:513.416400px;}
.y1c{bottom:524.487900px;}
.y5c{bottom:533.078700px;}
.y8b{bottom:533.078850px;}
.ye6{bottom:534.750900px;}
.y110{bottom:538.529250px;}
.y1b{bottom:544.287900px;}
.y5b{bottom:554.078700px;}
.y8a{bottom:554.078850px;}
.y1a{bottom:564.087900px;}
.y118{bottom:567.513600px;}
.y103{bottom:568.441050px;}
.y5a{bottom:575.078700px;}
.y89{bottom:575.078850px;}
.y19{bottom:583.887900px;}
.y117{bottom:588.513600px;}
.y59{bottom:596.078700px;}
.y88{bottom:596.078850px;}
.y18{bottom:603.687900px;}
.y116{bottom:609.513600px;}
.y58{bottom:617.078700px;}
.y87{bottom:617.078850px;}
.y17{bottom:623.487900px;}
.y57{bottom:638.078700px;}
.y86{bottom:638.078850px;}
.y115{bottom:641.811150px;}
.y16{bottom:643.287900px;}
.y56{bottom:659.078700px;}
.y85{bottom:659.078850px;}
.y15{bottom:663.087900px;}
.y10f{bottom:664.529250px;}
.y55{bottom:680.078700px;}
.y84{bottom:680.078850px;}
.y14{bottom:682.887900px;}
.y54{bottom:701.078700px;}
.y83{bottom:701.078850px;}
.y13{bottom:702.687900px;}
.y53{bottom:722.078700px;}
.y82{bottom:722.078850px;}
.y12{bottom:722.487900px;}
.y10e{bottom:727.529250px;}
.y11{bottom:742.287900px;}
.y52{bottom:743.078700px;}
.y81{bottom:743.078850px;}
.y10{bottom:762.087900px;}
.y51{bottom:764.078700px;}
.y80{bottom:764.078850px;}
.y50{bottom:785.078700px;}
.y7f{bottom:785.078850px;}
.y10d{bottom:790.529250px;}
.yf{bottom:793.185300px;}
.y4f{bottom:806.078700px;}
.y7e{bottom:806.078850px;}
.y4e{bottom:827.078700px;}
.y7d{bottom:827.078850px;}
.y4d{bottom:848.078700px;}
.y7c{bottom:848.078850px;}
.y10c{bottom:853.529250px;}
.y4c{bottom:869.078700px;}
.y7b{bottom:869.078850px;}
.y9{bottom:872.466750px;}
.y4b{bottom:890.078700px;}
.y7a{bottom:890.078850px;}
.y8{bottom:890.466750px;}
.y7{bottom:908.466750px;}
.y4a{bottom:911.078700px;}
.y79{bottom:911.078850px;}
.y10b{bottom:916.936950px;}
.y6{bottom:926.466750px;}
.y49{bottom:932.078700px;}
.y78{bottom:932.078850px;}
.y5{bottom:944.466750px;}
.y10a{bottom:946.440900px;}
.y48{bottom:953.078700px;}
.y77{bottom:953.078850px;}
.y114{bottom:966.513600px;}
.y47{bottom:974.078700px;}
.y76{bottom:974.078850px;}
.y4{bottom:979.474800px;}
.y46{bottom:995.078700px;}
.y75{bottom:995.078850px;}
.y113{bottom:998.811000px;}
.ya0{bottom:1009.440900px;}
.y45{bottom:1016.078700px;}
.y74{bottom:1016.078850px;}
.y3{bottom:1016.282550px;}
.yea{bottom:1030.441050px;}
.y44{bottom:1037.078700px;}
.y73{bottom:1037.078850px;}
.y2{bottom:1049.282550px;}
.y43{bottom:1058.078700px;}
.y72{bottom:1058.078850px;}
.y11b{bottom:1062.525300px;}
.y42{bottom:1079.078700px;}
.y71{bottom:1079.078850px;}
.y11a{bottom:1083.525300px;}
.y41{bottom:1100.078700px;}
.y70{bottom:1100.078850px;}
.ye{bottom:1109.815500px;}
.y109{bottom:1111.570800px;}
.y119{bottom:1115.822850px;}
.y40{bottom:1121.078700px;}
.y6f{bottom:1121.078850px;}
.y3c{bottom:1155.615300px;}
.y3b{bottom:1175.115300px;}
.y3f{bottom:1178.691750px;}
.h11{height:25.135656px;}
.h12{height:26.811312px;}
.h6{height:34.446094px;}
.h2{height:38.039062px;}
.h31{height:38.226562px;}
.h10{height:38.273438px;}
.h33{height:38.507812px;}
.h5{height:38.531250px;}
.h32{height:39.000000px;}
.hf{height:42.793945px;}
.h7{height:43.004883px;}
.he{height:43.057617px;}
.ha{height:43.321289px;}
.h9{height:43.875000px;}
.h22{height:46.680126px;}
.h20{height:46.680164px;}
.h1c{height:46.680195px;}
.h21{height:46.680250px;}
.h1e{height:46.680277px;}
.h1a{height:46.680313px;}
.h1d{height:46.680337px;}
.h1b{height:46.680417px;}
.h23{height:46.680489px;}
.h1f{height:46.680521px;}
.h8{height:47.343750px;}
.hd{height:48.134766px;}
.hc{height:48.750000px;}
.h18{height:49.497134px;}
.h16{height:49.497275px;}
.h15{height:49.497288px;}
.h17{height:49.497355px;}
.h19{height:49.497364px;}
.h13{height:49.497442px;}
.h34{height:50.176758px;}
.h2a{height:51.386713px;}
.h2c{height:51.386772px;}
.h29{height:51.386826px;}
.h2d{height:51.386918px;}
.h28{height:51.386929px;}
.h2e{height:51.386981px;}
.h26{height:51.386986px;}
.h27{height:51.386996px;}
.h25{height:51.387009px;}
.h24{height:51.387073px;}
.h2b{height:51.387148px;}
.h30{height:52.078125px;}
.h4{height:53.625000px;}
.hb{height:56.812500px;}
.h2f{height:56.974344px;}
.h3{height:81.231445px;}
.h14{height:376.347000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:518.703000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:68.441700px;}
.x13{left:72.229950px;}
.x2{left:73.984200px;}
.x15{left:76.209750px;}
.x17{left:83.226750px;}
.x19{left:88.291500px;}
.x3{left:90.992100px;}
.x1b{left:93.848400px;}
.xb{left:107.068950px;}
.xd{left:108.286950px;}
.x44{left:112.251900px;}
.x6{left:119.576400px;}
.x7{left:121.047600px;}
.x8{left:123.420750px;}
.x30{left:248.117850px;}
.x32{left:252.615900px;}
.x4a{left:254.818050px;}
.x34{left:262.460100px;}
.x49{left:268.882800px;}
.x36{left:272.502000px;}
.x38{left:276.839100px;}
.x1d{left:283.591200px;}
.x3a{left:285.735750px;}
.x1f{left:290.214600px;}
.x21{left:293.577750px;}
.x23{left:298.315350px;}
.x5{left:300.189000px;}
.x25{left:303.354750px;}
.x27{left:305.418600px;}
.x29{left:309.281400px;}
.x3d{left:313.113900px;}
.x2b{left:314.591850px;}
.xc{left:317.196900px;}
.x2e{left:319.920900px;}
.x3f{left:321.547800px;}
.xf{left:324.083400px;}
.x41{left:331.114800px;}
.x43{left:340.362600px;}
.x10{left:368.668200px;}
.x12{left:372.456450px;}
.x14{left:376.436250px;}
.x16{left:383.453250px;}
.x18{left:388.518000px;}
.x1a{left:394.074900px;}
.x4{left:396.050700px;}
.x48{left:540.472500px;}
.x46{left:543.563400px;}
.x4b{left:545.452950px;}
.x2f{left:548.344350px;}
.x45{left:549.504750px;}
.x31{left:552.842400px;}
.x33{left:562.686600px;}
.x35{left:572.728500px;}
.x37{left:577.065600px;}
.x1c{left:583.817700px;}
.x39{left:585.962250px;}
.x47{left:587.769450px;}
.x1e{left:590.441100px;}
.x20{left:593.804250px;}
.x22{left:598.541850px;}
.x3b{left:600.322800px;}
.x24{left:603.581250px;}
.x26{left:605.645100px;}
.x4c{left:606.876900px;}
.x28{left:609.507900px;}
.x3c{left:613.340400px;}
.x2a{left:614.818350px;}
.x2c{left:617.733000px;}
.x2d{left:620.147400px;}
.x3e{left:621.774300px;}
.x40{left:631.341300px;}
.x4d{left:639.285000px;}
.x42{left:640.589100px;}
.xa{left:652.471650px;}
.x9{left:683.848650px;}
.xe{left:727.548150px;}
.x1{left:807.210300px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.536000pt;}
.ls7{letter-spacing:-7.706667pt;}
.ls17{letter-spacing:-6.432000pt;}
.ls1b{letter-spacing:-6.133333pt;}
.lse{letter-spacing:-5.653333pt;}
.ls25{letter-spacing:-5.088000pt;}
.ls28{letter-spacing:-3.146667pt;}
.ls16{letter-spacing:-2.880000pt;}
.ls9{letter-spacing:-2.538667pt;}
.ls24{letter-spacing:-2.304000pt;}
.ls1a{letter-spacing:-1.796172pt;}
.ls8{letter-spacing:-1.360000pt;}
.ls21{letter-spacing:-1.008000pt;}
.ls6{letter-spacing:-0.997333pt;}
.lsb{letter-spacing:-0.816000pt;}
.ls1e{letter-spacing:-0.800000pt;}
.lsa{letter-spacing:-0.614400pt;}
.ls20{letter-spacing:-0.586667pt;}
.lsd{letter-spacing:-0.533333pt;}
.lsf{letter-spacing:-0.480000pt;}
.ls23{letter-spacing:-0.384000pt;}
.ls22{letter-spacing:-0.336000pt;}
.ls10{letter-spacing:-0.320000pt;}
.ls27{letter-spacing:-0.240000pt;}
.ls15{letter-spacing:-0.160000pt;}
.ls1f{letter-spacing:-0.144000pt;}
.lsc{letter-spacing:-0.106667pt;}
.ls29{letter-spacing:-0.096000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.001600pt;}
.ls14{letter-spacing:0.002133pt;}
.ls2{letter-spacing:0.010667pt;}
.ls13{letter-spacing:0.019733pt;}
.ls12{letter-spacing:0.020267pt;}
.ls4{letter-spacing:0.022933pt;}
.ls3{letter-spacing:0.240000pt;}
.ls1d{letter-spacing:0.388800pt;}
.ls26{letter-spacing:0.693333pt;}
.ls1c{letter-spacing:0.925333pt;}
.ls18{letter-spacing:9.011733pt;}
.ls1{letter-spacing:38.383435pt;}
.ls0{letter-spacing:38.383968pt;}
.ls19{letter-spacing:203.056672pt;}
.ws7d{word-spacing:-210.482369pt;}
.ws8{word-spacing:-15.936000pt;}
.ws0{word-spacing:-14.688000pt;}
.wsbd{word-spacing:-14.608000pt;}
.ws5{word-spacing:-13.280000pt;}
.ws5a{word-spacing:-13.226667pt;}
.ws5b{word-spacing:-13.173333pt;}
.ws9{word-spacing:-13.066667pt;}
.ws29{word-spacing:-12.960000pt;}
.ws7c{word-spacing:-12.800000pt;}
.ws47{word-spacing:-12.746667pt;}
.ws48{word-spacing:-12.586667pt;}
.wsb0{word-spacing:-12.480000pt;}
.ws7{word-spacing:-12.144000pt;}
.ws67{word-spacing:-11.952000pt;}
.wsbe{word-spacing:-11.904000pt;}
.ws9a{word-spacing:-11.808000pt;}
.ws6{word-spacing:-11.760000pt;}
.ws99{word-spacing:-11.616000pt;}
.wsc4{word-spacing:-11.520000pt;}
.wsc3{word-spacing:-11.376000pt;}
.wsc2{word-spacing:-10.896000pt;}
.wse{word-spacing:-10.800000pt;}
.ws8a{word-spacing:-10.581333pt;}
.wsa{word-spacing:-10.464000pt;}
.wsd5{word-spacing:-10.026667pt;}
.wsc{word-spacing:-9.984000pt;}
.ws3{word-spacing:-9.685333pt;}
.wsb{word-spacing:-9.648000pt;}
.ws27{word-spacing:-9.600000pt;}
.wsf{word-spacing:-9.301333pt;}
.ws68{word-spacing:-9.072000pt;}
.ws2{word-spacing:-8.482261pt;}
.ws4{word-spacing:-8.371200pt;}
.wsaf{word-spacing:-7.413333pt;}
.ws69{word-spacing:-5.520000pt;}
.ws70{word-spacing:-2.826667pt;}
.ws71{word-spacing:-2.720000pt;}
.ws33{word-spacing:-2.613333pt;}
.ws55{word-spacing:-2.453333pt;}
.ws80{word-spacing:-2.346667pt;}
.ws32{word-spacing:-2.293333pt;}
.ws5e{word-spacing:-2.240000pt;}
.ws6b{word-spacing:-2.160000pt;}
.wsa2{word-spacing:-2.080000pt;}
.wscf{word-spacing:-2.016000pt;}
.wsd6{word-spacing:-1.968000pt;}
.ws18{word-spacing:-1.920000pt;}
.ws19{word-spacing:-1.872000pt;}
.ws35{word-spacing:-1.760000pt;}
.ws3f{word-spacing:-1.653333pt;}
.wsd3{word-spacing:-1.632000pt;}
.ws89{word-spacing:-1.536000pt;}
.wsb1{word-spacing:-1.493333pt;}
.ws2f{word-spacing:-1.440000pt;}
.wsc5{word-spacing:-1.392000pt;}
.wscb{word-spacing:-1.344000pt;}
.wsa4{word-spacing:-1.333333pt;}
.ws83{word-spacing:-1.280000pt;}
.ws40{word-spacing:-1.226667pt;}
.wsbc{word-spacing:-1.173333pt;}
.wsa9{word-spacing:-1.013333pt;}
.wsae{word-spacing:-1.008000pt;}
.ws5c{word-spacing:-0.960000pt;}
.ws25{word-spacing:-0.912000pt;}
.ws8d{word-spacing:-0.906667pt;}
.ws6d{word-spacing:-0.816000pt;}
.ws2c{word-spacing:-0.800000pt;}
.ws1b{word-spacing:-0.768000pt;}
.ws6a{word-spacing:-0.720000pt;}
.ws9b{word-spacing:-0.693333pt;}
.ws88{word-spacing:-0.624000pt;}
.ws34{word-spacing:-0.586667pt;}
.ws1d{word-spacing:-0.576000pt;}
.wsbf{word-spacing:-0.533333pt;}
.ws8f{word-spacing:-0.480000pt;}
.ws53{word-spacing:-0.320000pt;}
.ws20{word-spacing:-0.240000pt;}
.ws95{word-spacing:-0.213333pt;}
.ws13{word-spacing:-0.192000pt;}
.ws3c{word-spacing:-0.106667pt;}
.ws6c{word-spacing:-0.096000pt;}
.ws37{word-spacing:-0.053333pt;}
.wsd{word-spacing:-0.048000pt;}
.ws28{word-spacing:-0.042667pt;}
.ws10{word-spacing:0.000000pt;}
.ws2d{word-spacing:0.106667pt;}
.wsaa{word-spacing:0.144000pt;}
.ws5d{word-spacing:0.160000pt;}
.wsad{word-spacing:0.192000pt;}
.ws65{word-spacing:0.213333pt;}
.ws4d{word-spacing:0.320000pt;}
.wsc0{word-spacing:0.336000pt;}
.ws11{word-spacing:0.362667pt;}
.wsca{word-spacing:0.384000pt;}
.ws96{word-spacing:0.432000pt;}
.ws51{word-spacing:0.480000pt;}
.ws4e{word-spacing:0.533333pt;}
.ws64{word-spacing:0.586667pt;}
.ws14{word-spacing:0.614400pt;}
.ws17{word-spacing:0.624000pt;}
.wsb8{word-spacing:0.640000pt;}
.ws8e{word-spacing:0.746667pt;}
.wsc1{word-spacing:0.768000pt;}
.ws7a{word-spacing:0.800000pt;}
.ws26{word-spacing:0.816000pt;}
.ws9e{word-spacing:0.853333pt;}
.ws3a{word-spacing:0.906667pt;}
.ws56{word-spacing:0.960000pt;}
.wsc8{word-spacing:1.008000pt;}
.wsb6{word-spacing:1.013333pt;}
.ws36{word-spacing:1.173333pt;}
.ws58{word-spacing:1.226667pt;}
.ws22{word-spacing:1.280000pt;}
.ws6e{word-spacing:1.296000pt;}
.ws66{word-spacing:1.386667pt;}
.wsab{word-spacing:1.392000pt;}
.ws8b{word-spacing:1.440000pt;}
.wsd7{word-spacing:1.536000pt;}
.ws12{word-spacing:1.541333pt;}
.ws15{word-spacing:1.632000pt;}
.ws38{word-spacing:1.706667pt;}
.ws24{word-spacing:1.760000pt;}
.wsc7{word-spacing:1.776000pt;}
.ws87{word-spacing:1.796172pt;}
.ws1e{word-spacing:1.824000pt;}
.ws7f{word-spacing:1.920000pt;}
.ws61{word-spacing:1.973333pt;}
.wsa0{word-spacing:2.080000pt;}
.ws1c{word-spacing:2.112000pt;}
.ws6f{word-spacing:2.186667pt;}
.ws2b{word-spacing:2.293333pt;}
.ws97{word-spacing:2.453333pt;}
.wsbb{word-spacing:2.506667pt;}
.ws79{word-spacing:2.613333pt;}
.ws85{word-spacing:2.666667pt;}
.ws1a{word-spacing:2.736000pt;}
.ws59{word-spacing:2.773333pt;}
.wsd2{word-spacing:2.784000pt;}
.ws86{word-spacing:2.826667pt;}
.wscd{word-spacing:2.928000pt;}
.wsa1{word-spacing:2.933333pt;}
.wsb2{word-spacing:2.986667pt;}
.ws84{word-spacing:3.040000pt;}
.ws9d{word-spacing:3.093333pt;}
.wsb9{word-spacing:3.146667pt;}
.ws76{word-spacing:3.200000pt;}
.ws23{word-spacing:3.253333pt;}
.wsba{word-spacing:3.360000pt;}
.ws62{word-spacing:3.413333pt;}
.wsce{word-spacing:3.504000pt;}
.ws44{word-spacing:3.520000pt;}
.wsa3{word-spacing:3.626667pt;}
.ws41{word-spacing:3.733333pt;}
.ws8c{word-spacing:3.786667pt;}
.ws92{word-spacing:3.840000pt;}
.wscc{word-spacing:3.888000pt;}
.wsb7{word-spacing:3.893333pt;}
.ws77{word-spacing:3.946667pt;}
.ws94{word-spacing:3.984000pt;}
.ws93{word-spacing:4.032000pt;}
.ws4a{word-spacing:4.106667pt;}
.wsb4{word-spacing:4.160000pt;}
.ws43{word-spacing:4.213333pt;}
.ws57{word-spacing:4.320000pt;}
.ws78{word-spacing:4.373333pt;}
.ws3d{word-spacing:4.746667pt;}
.wsd1{word-spacing:4.752000pt;}
.ws60{word-spacing:4.800000pt;}
.ws5f{word-spacing:4.853333pt;}
.ws42{word-spacing:4.906667pt;}
.ws4c{word-spacing:4.960000pt;}
.ws9f{word-spacing:5.066667pt;}
.wsd0{word-spacing:5.088000pt;}
.ws21{word-spacing:5.120000pt;}
.wsc9{word-spacing:5.136000pt;}
.wsa8{word-spacing:5.280000pt;}
.ws2e{word-spacing:5.333333pt;}
.ws4b{word-spacing:5.386667pt;}
.ws45{word-spacing:5.653333pt;}
.ws91{word-spacing:5.813333pt;}
.ws90{word-spacing:5.866667pt;}
.wsac{word-spacing:6.000000pt;}
.ws7b{word-spacing:6.080000pt;}
.ws3b{word-spacing:6.133333pt;}
.ws2a{word-spacing:6.186667pt;}
.ws63{word-spacing:6.240000pt;}
.ws49{word-spacing:6.293333pt;}
.ws9c{word-spacing:6.346667pt;}
.ws98{word-spacing:6.400000pt;}
.ws16{word-spacing:6.480000pt;}
.wsc6{word-spacing:6.528000pt;}
.ws39{word-spacing:6.666667pt;}
.ws54{word-spacing:6.880000pt;}
.ws75{word-spacing:7.040000pt;}
.wsb3{word-spacing:7.146667pt;}
.wsa5{word-spacing:7.200000pt;}
.ws31{word-spacing:7.306667pt;}
.ws30{word-spacing:7.360000pt;}
.ws4f{word-spacing:7.466667pt;}
.ws50{word-spacing:7.573333pt;}
.ws72{word-spacing:7.626667pt;}
.ws7e{word-spacing:7.680000pt;}
.ws46{word-spacing:7.733333pt;}
.ws1f{word-spacing:8.352000pt;}
.ws74{word-spacing:8.960000pt;}
.ws82{word-spacing:9.013333pt;}
.ws81{word-spacing:9.066667pt;}
.wsd4{word-spacing:9.120000pt;}
.ws3e{word-spacing:9.440000pt;}
.wsa6{word-spacing:9.600000pt;}
.ws52{word-spacing:9.653333pt;}
.ws73{word-spacing:11.200000pt;}
.wsb5{word-spacing:11.626667pt;}
.wsa7{word-spacing:14.986667pt;}
.ws1{word-spacing:29.912120pt;}
._11{margin-left:-203.056672pt;}
._e{margin-left:-9.198933pt;}
._1f{margin-left:-8.037867pt;}
._4{margin-left:-7.035733pt;}
._f{margin-left:-5.842667pt;}
._a{margin-left:-4.904000pt;}
._6{margin-left:-3.581333pt;}
._1{margin-left:-2.375467pt;}
._0{margin-left:-1.224000pt;}
._5{width:1.042667pt;}
._2{width:2.030933pt;}
._d{width:3.354667pt;}
._9{width:4.362667pt;}
._7{width:5.962133pt;}
._3{width:6.864000pt;}
._c{width:8.025600pt;}
._b{width:9.114667pt;}
._10{width:11.813333pt;}
._22{width:16.569600pt;}
._23{width:21.184000pt;}
._24{width:22.784000pt;}
._8{width:32.554667pt;}
._20{width:37.513067pt;}
._21{width:38.510400pt;}
._19{width:52.472533pt;}
._1d{width:88.814400pt;}
._1b{width:107.319467pt;}
._18{width:113.853333pt;}
._12{width:119.796865pt;}
._1c{width:158.547200pt;}
._1e{width:164.242133pt;}
._1a{width:240.619200pt;}
._14{width:343.126400pt;}
._15{width:357.996800pt;}
._13{width:628.180800pt;}
._16{width:750.147733pt;}
._17{width:882.380267pt;}
.fsb{font-size:21.904533pt;}
.fs9{font-size:32.857067pt;}
.fs3{font-size:34.202667pt;}
.fsa{font-size:35.047467pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:38.400000pt;}
.fs0{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs1a{font-size:58.441473pt;}
.fs18{font-size:58.441520pt;}
.fs14{font-size:58.441559pt;}
.fs19{font-size:58.441627pt;}
.fs16{font-size:58.441661pt;}
.fs12{font-size:58.441707pt;}
.fs15{font-size:58.441736pt;}
.fs13{font-size:58.441836pt;}
.fs1b{font-size:58.441927pt;}
.fs17{font-size:58.441967pt;}
.fs2{font-size:58.666667pt;}
.fs10{font-size:61.968243pt;}
.fse{font-size:61.968419pt;}
.fsd{font-size:61.968435pt;}
.fsf{font-size:61.968520pt;}
.fs11{font-size:61.968531pt;}
.fsc{font-size:61.968628pt;}
.fs8{font-size:64.000000pt;}
.fs22{font-size:64.333913pt;}
.fs24{font-size:64.333986pt;}
.fs21{font-size:64.334054pt;}
.fs25{font-size:64.334169pt;}
.fs20{font-size:64.334184pt;}
.fs26{font-size:64.334248pt;}
.fs1e{font-size:64.334254pt;}
.fs1f{font-size:64.334268pt;}
.fs1d{font-size:64.334284pt;}
.fs1c{font-size:64.334363pt;}
.fs23{font-size:64.334458pt;}
.fs27{font-size:74.476267pt;}
.fs1{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:60.555333pt;}
.y3d{bottom:63.299600pt;}
.y3e{bottom:66.698800pt;}
.ye1{bottom:70.889067pt;}
.ydf{bottom:71.064933pt;}
.ye3{bottom:71.201867pt;}
.ydd{bottom:72.006267pt;}
.ye5{bottom:72.017733pt;}
.ydb{bottom:74.159467pt;}
.yd9{bottom:75.998933pt;}
.yd7{bottom:77.061333pt;}
.yd5{bottom:79.772000pt;}
.yd3{bottom:83.025467pt;}
.yd1{bottom:84.810133pt;}
.y6e{bottom:100.514400pt;}
.y9f{bottom:100.514533pt;}
.y2b{bottom:104.189067pt;}
.yd{bottom:104.778267pt;}
.yfe{bottom:105.226267pt;}
.yab{bottom:107.111733pt;}
.ye9{bottom:107.111867pt;}
.ya4{bottom:107.465600pt;}
.yc{bottom:117.578267pt;}
.yfd{bottom:118.559600pt;}
.y6d{bottom:119.181067pt;}
.y9e{bottom:119.181200pt;}
.y2a{bottom:122.855733pt;}
.yaa{bottom:124.711733pt;}
.ye8{bottom:124.711867pt;}
.yb{bottom:130.378267pt;}
.y6c{bottom:137.847733pt;}
.y9d{bottom:137.847867pt;}
.yfc{bottom:138.654133pt;}
.y29{bottom:141.522400pt;}
.ya9{bottom:142.311733pt;}
.ye7{bottom:142.311867pt;}
.ya{bottom:143.178267pt;}
.yfb{bottom:151.987467pt;}
.y6b{bottom:156.514400pt;}
.y9c{bottom:156.514533pt;}
.ya8{bottom:159.911733pt;}
.y28{bottom:160.189067pt;}
.yb0{bottom:160.382667pt;}
.yfa{bottom:172.081867pt;}
.y6a{bottom:175.181067pt;}
.y9b{bottom:175.181200pt;}
.yae{bottom:176.422400pt;}
.y3a{bottom:177.237867pt;}
.y102{bottom:177.506267pt;}
.ya7{bottom:177.511867pt;}
.yac{bottom:178.465067pt;}
.y27{bottom:178.855733pt;}
.yf9{bottom:185.415200pt;}
.yad{bottom:190.090933pt;}
.y39{bottom:193.237867pt;}
.y69{bottom:193.847733pt;}
.y9a{bottom:193.847867pt;}
.y101{bottom:195.106267pt;}
.ya6{bottom:195.111733pt;}
.y26{bottom:197.522400pt;}
.yf8{bottom:198.748533pt;}
.ybd{bottom:203.144800pt;}
.y38{bottom:209.237867pt;}
.ybf{bottom:210.236533pt;}
.yf7{bottom:212.081867pt;}
.y68{bottom:212.514400pt;}
.y99{bottom:212.514533pt;}
.y100{bottom:212.706267pt;}
.ya5{bottom:212.711733pt;}
.yc1{bottom:214.162933pt;}
.y25{bottom:216.189067pt;}
.yc3{bottom:220.192267pt;}
.y37{bottom:225.237867pt;}
.yc5{bottom:227.469467pt;}
.yff{bottom:230.306267pt;}
.y108{bottom:230.311733pt;}
.yc7{bottom:230.612800pt;}
.y67{bottom:231.181067pt;}
.y98{bottom:231.181200pt;}
.ye0{bottom:231.271733pt;}
.yde{bottom:231.447600pt;}
.ye2{bottom:231.584533pt;}
.yf6{bottom:232.176400pt;}
.ydc{bottom:232.388933pt;}
.ye4{bottom:232.400400pt;}
.yda{bottom:234.542133pt;}
.yd8{bottom:236.381600pt;}
.yc9{bottom:237.146400pt;}
.yd6{bottom:237.444000pt;}
.yd4{bottom:240.154667pt;}
.y36{bottom:241.237867pt;}
.yd2{bottom:243.408133pt;}
.y24{bottom:244.974667pt;}
.yd0{bottom:245.192800pt;}
.yf5{bottom:245.509733pt;}
.ycb{bottom:247.857867pt;}
.y107{bottom:247.911733pt;}
.y66{bottom:249.847733pt;}
.y97{bottom:249.847867pt;}
.ycd{bottom:255.069867pt;}
.ybb{bottom:256.350800pt;}
.y35{bottom:257.237867pt;}
.ycf{bottom:262.462800pt;}
.y112{bottom:262.614133pt;}
.yb9{bottom:262.884400pt;}
.y106{bottom:265.511867pt;}
.yf4{bottom:265.604267pt;}
.y65{bottom:268.514400pt;}
.y96{bottom:268.514533pt;}
.yb7{bottom:269.652533pt;}
.y34{bottom:273.237867pt;}
.yf3{bottom:278.937600pt;}
.yb5{bottom:280.545200pt;}
.y105{bottom:283.111733pt;}
.y64{bottom:287.181067pt;}
.y95{bottom:287.181200pt;}
.yb3{bottom:287.872133pt;}
.y33{bottom:289.237867pt;}
.yb1{bottom:295.987467pt;}
.yf2{bottom:299.032000pt;}
.y104{bottom:300.711733pt;}
.y63{bottom:305.847733pt;}
.y94{bottom:305.847867pt;}
.yf1{bottom:312.365333pt;}
.y32{bottom:320.355867pt;}
.y23{bottom:324.113733pt;}
.y62{bottom:324.514400pt;}
.y93{bottom:324.514533pt;}
.yf0{bottom:325.698667pt;}
.y31{bottom:336.355867pt;}
.y22{bottom:341.713733pt;}
.y61{bottom:343.181067pt;}
.y92{bottom:343.181200pt;}
.yef{bottom:345.793200pt;}
.y111{bottom:348.026000pt;}
.y30{bottom:352.355867pt;}
.y60{bottom:361.847733pt;}
.y91{bottom:361.847867pt;}
.ybc{bottom:363.527467pt;}
.yee{bottom:365.887600pt;}
.ybe{bottom:370.619200pt;}
.yc0{bottom:374.545600pt;}
.y21{bottom:378.211467pt;}
.y5f{bottom:380.514400pt;}
.y90{bottom:380.514533pt;}
.yc2{bottom:380.574933pt;}
.y2f{bottom:383.474000pt;}
.yed{bottom:386.248800pt;}
.yc4{bottom:387.852133pt;}
.yc6{bottom:390.995467pt;}
.y20{bottom:395.811467pt;}
.yc8{bottom:397.529067pt;}
.ya3{bottom:399.181067pt;}
.y8f{bottom:399.181200pt;}
.y2e{bottom:399.474000pt;}
.yca{bottom:408.240533pt;}
.y5e{bottom:411.947467pt;}
.yec{bottom:413.343867pt;}
.y1f{bottom:413.411467pt;}
.ycc{bottom:415.452533pt;}
.y2d{bottom:415.474000pt;}
.yba{bottom:416.733467pt;}
.ya2{bottom:417.847733pt;}
.y8e{bottom:417.847867pt;}
.yce{bottom:422.845467pt;}
.yb8{bottom:423.267067pt;}
.yb6{bottom:430.035200pt;}
.yeb{bottom:430.943867pt;}
.y1e{bottom:431.011467pt;}
.y2c{bottom:431.474000pt;}
.ya1{bottom:436.514400pt;}
.y8d{bottom:436.514533pt;}
.yb4{bottom:440.927867pt;}
.yb2{bottom:448.254800pt;}
.y1d{bottom:448.611467pt;}
.y5d{bottom:455.181067pt;}
.y8c{bottom:455.181200pt;}
.yaf{bottom:456.370133pt;}
.y1c{bottom:466.211467pt;}
.y5c{bottom:473.847733pt;}
.y8b{bottom:473.847867pt;}
.ye6{bottom:475.334133pt;}
.y110{bottom:478.692667pt;}
.y1b{bottom:483.811467pt;}
.y5b{bottom:492.514400pt;}
.y8a{bottom:492.514533pt;}
.y1a{bottom:501.411467pt;}
.y118{bottom:504.456533pt;}
.y103{bottom:505.280933pt;}
.y5a{bottom:511.181067pt;}
.y89{bottom:511.181200pt;}
.y19{bottom:519.011467pt;}
.y117{bottom:523.123200pt;}
.y59{bottom:529.847733pt;}
.y88{bottom:529.847867pt;}
.y18{bottom:536.611467pt;}
.y116{bottom:541.789867pt;}
.y58{bottom:548.514400pt;}
.y87{bottom:548.514533pt;}
.y17{bottom:554.211467pt;}
.y57{bottom:567.181067pt;}
.y86{bottom:567.181200pt;}
.y115{bottom:570.498800pt;}
.y16{bottom:571.811467pt;}
.y56{bottom:585.847733pt;}
.y85{bottom:585.847867pt;}
.y15{bottom:589.411467pt;}
.y10f{bottom:590.692667pt;}
.y55{bottom:604.514400pt;}
.y84{bottom:604.514533pt;}
.y14{bottom:607.011467pt;}
.y54{bottom:623.181067pt;}
.y83{bottom:623.181200pt;}
.y13{bottom:624.611467pt;}
.y53{bottom:641.847733pt;}
.y82{bottom:641.847867pt;}
.y12{bottom:642.211467pt;}
.y10e{bottom:646.692667pt;}
.y11{bottom:659.811467pt;}
.y52{bottom:660.514400pt;}
.y81{bottom:660.514533pt;}
.y10{bottom:677.411467pt;}
.y51{bottom:679.181067pt;}
.y80{bottom:679.181200pt;}
.y50{bottom:697.847733pt;}
.y7f{bottom:697.847867pt;}
.y10d{bottom:702.692667pt;}
.yf{bottom:705.053600pt;}
.y4f{bottom:716.514400pt;}
.y7e{bottom:716.514533pt;}
.y4e{bottom:735.181067pt;}
.y7d{bottom:735.181200pt;}
.y4d{bottom:753.847733pt;}
.y7c{bottom:753.847867pt;}
.y10c{bottom:758.692667pt;}
.y4c{bottom:772.514400pt;}
.y7b{bottom:772.514533pt;}
.y9{bottom:775.526000pt;}
.y4b{bottom:791.181067pt;}
.y7a{bottom:791.181200pt;}
.y8{bottom:791.526000pt;}
.y7{bottom:807.526000pt;}
.y4a{bottom:809.847733pt;}
.y79{bottom:809.847867pt;}
.y10b{bottom:815.055067pt;}
.y6{bottom:823.526000pt;}
.y49{bottom:828.514400pt;}
.y78{bottom:828.514533pt;}
.y5{bottom:839.526000pt;}
.y10a{bottom:841.280800pt;}
.y48{bottom:847.181067pt;}
.y77{bottom:847.181200pt;}
.y114{bottom:859.123200pt;}
.y47{bottom:865.847733pt;}
.y76{bottom:865.847867pt;}
.y4{bottom:870.644267pt;}
.y46{bottom:884.514400pt;}
.y75{bottom:884.514533pt;}
.y113{bottom:887.832000pt;}
.ya0{bottom:897.280800pt;}
.y45{bottom:903.181067pt;}
.y74{bottom:903.181200pt;}
.y3{bottom:903.362267pt;}
.yea{bottom:915.947600pt;}
.y44{bottom:921.847733pt;}
.y73{bottom:921.847867pt;}
.y2{bottom:932.695600pt;}
.y43{bottom:940.514400pt;}
.y72{bottom:940.514533pt;}
.y11b{bottom:944.466933pt;}
.y42{bottom:959.181067pt;}
.y71{bottom:959.181200pt;}
.y11a{bottom:963.133600pt;}
.y41{bottom:977.847733pt;}
.y70{bottom:977.847867pt;}
.ye{bottom:986.502667pt;}
.y109{bottom:988.062933pt;}
.y119{bottom:991.842533pt;}
.y40{bottom:996.514400pt;}
.y6f{bottom:996.514533pt;}
.y3c{bottom:1027.213600pt;}
.y3b{bottom:1044.546933pt;}
.y3f{bottom:1047.726000pt;}
.h11{height:22.342805pt;}
.h12{height:23.832277pt;}
.h6{height:30.618750pt;}
.h2{height:33.812500pt;}
.h31{height:33.979167pt;}
.h10{height:34.020833pt;}
.h33{height:34.229167pt;}
.h5{height:34.250000pt;}
.h32{height:34.666667pt;}
.hf{height:38.039062pt;}
.h7{height:38.226562pt;}
.he{height:38.273438pt;}
.ha{height:38.507812pt;}
.h9{height:39.000000pt;}
.h22{height:41.493446pt;}
.h20{height:41.493479pt;}
.h1c{height:41.493507pt;}
.h21{height:41.493555pt;}
.h1e{height:41.493579pt;}
.h1a{height:41.493612pt;}
.h1d{height:41.493633pt;}
.h1b{height:41.493704pt;}
.h23{height:41.493768pt;}
.h1f{height:41.493797pt;}
.h8{height:42.083333pt;}
.hd{height:42.786458pt;}
.hc{height:43.333333pt;}
.h18{height:43.997452pt;}
.h16{height:43.997578pt;}
.h15{height:43.997589pt;}
.h17{height:43.997649pt;}
.h19{height:43.997657pt;}
.h13{height:43.997726pt;}
.h34{height:44.601562pt;}
.h2a{height:45.677078pt;}
.h2c{height:45.677130pt;}
.h29{height:45.677179pt;}
.h2d{height:45.677260pt;}
.h28{height:45.677271pt;}
.h2e{height:45.677316pt;}
.h26{height:45.677320pt;}
.h27{height:45.677330pt;}
.h25{height:45.677342pt;}
.h24{height:45.677398pt;}
.h2b{height:45.677465pt;}
.h30{height:46.291667pt;}
.h4{height:47.666667pt;}
.hb{height:50.500000pt;}
.h2f{height:50.643861pt;}
.h3{height:72.205729pt;}
.h14{height:334.530667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:461.069333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:60.837067pt;}
.x13{left:64.204400pt;}
.x2{left:65.763733pt;}
.x15{left:67.742000pt;}
.x17{left:73.979333pt;}
.x19{left:78.481333pt;}
.x3{left:80.881867pt;}
.x1b{left:83.420800pt;}
.xb{left:95.172400pt;}
.xd{left:96.255067pt;}
.x44{left:99.779467pt;}
.x6{left:106.290133pt;}
.x7{left:107.597867pt;}
.x8{left:109.707333pt;}
.x30{left:220.549200pt;}
.x32{left:224.547467pt;}
.x4a{left:226.504933pt;}
.x34{left:233.297867pt;}
.x49{left:239.006933pt;}
.x36{left:242.224000pt;}
.x38{left:246.079200pt;}
.x1d{left:252.081067pt;}
.x3a{left:253.987333pt;}
.x1f{left:257.968533pt;}
.x21{left:260.958000pt;}
.x23{left:265.169200pt;}
.x5{left:266.834667pt;}
.x25{left:269.648667pt;}
.x27{left:271.483200pt;}
.x29{left:274.916800pt;}
.x3d{left:278.323467pt;}
.x2b{left:279.637200pt;}
.xc{left:281.952800pt;}
.x2e{left:284.374133pt;}
.x3f{left:285.820267pt;}
.xf{left:288.074133pt;}
.x41{left:294.324267pt;}
.x43{left:302.544533pt;}
.x10{left:327.705067pt;}
.x12{left:331.072400pt;}
.x14{left:334.610000pt;}
.x16{left:340.847333pt;}
.x18{left:345.349333pt;}
.x1a{left:350.288800pt;}
.x4{left:352.045067pt;}
.x48{left:480.420000pt;}
.x46{left:483.167467pt;}
.x4b{left:484.847067pt;}
.x2f{left:487.417200pt;}
.x45{left:488.448667pt;}
.x31{left:491.415467pt;}
.x33{left:500.165867pt;}
.x35{left:509.092000pt;}
.x37{left:512.947200pt;}
.x1c{left:518.949067pt;}
.x39{left:520.855333pt;}
.x47{left:522.461733pt;}
.x1e{left:524.836533pt;}
.x20{left:527.826000pt;}
.x22{left:532.037200pt;}
.x3b{left:533.620267pt;}
.x24{left:536.516667pt;}
.x26{left:538.351200pt;}
.x4c{left:539.446133pt;}
.x28{left:541.784800pt;}
.x3c{left:545.191467pt;}
.x2a{left:546.505200pt;}
.x2c{left:549.096000pt;}
.x2d{left:551.242133pt;}
.x3e{left:552.688267pt;}
.x40{left:561.192267pt;}
.x4d{left:568.253333pt;}
.x42{left:569.412533pt;}
.xa{left:579.974800pt;}
.x9{left:607.865467pt;}
.xe{left:646.709467pt;}
.x1{left:717.520267pt;}
}




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