
    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_cc6a27f26f02868c102240a7.woff')format("woff");}.ff1{font-family:ff1;line-height:0.950195;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_f0cb3c24e34c9756f1caada7.woff')format("woff");}.ff2{font-family:ff2;line-height:0.958008;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_75106a002116d6e72dd1371b.woff')format("woff");}.ff3{font-family:ff3;line-height:0.948730;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_8ec04b8d3b724a168724973d.woff')format("woff");}.ff4{font-family:ff4;line-height:0.958496;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_eec55c9381694f78cb9a96e5.woff')format("woff");}.ff5{font-family:ff5;line-height:0.965820;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_aea95e943d3c8e2c260a6dc9.woff')format("woff");}.ff6{font-family:ff6;line-height:0.959473;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_ae91145bea0a317d9ca0d139.woff')format("woff");}.ff7{font-family:ff7;line-height:0.939453;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_72fb9d51894085fc06a86201.woff')format("woff");}.ff8{font-family:ff8;line-height:0.966309;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_183917a5050c6d73bcf96f84.woff')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_4ecc4647bf6a2e2d343c5b14.woff')format("woff");}.ffa{font-family:ffa;line-height:0.693359;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_a601e1102d1d5e76f467922d.woff')format("woff");}.ffb{font-family:ffb;line-height:1.078000;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_58fa898235ba174f9ed47540.woff')format("woff");}.ffc{font-family:ffc;line-height:0.800000;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_750c45ed1ba6e08b4fabf29b.woff')format("woff");}.ffd{font-family:ffd;line-height:0.692871;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_fb35dccc2c0cfe63fa196076.woff')format("woff");}.ffe{font-family:ffe;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_608b4ab0014cf25f7e7a612a.woff')format("woff");}.fff{font-family:fff;line-height:0.722656;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_c945e31d2426095cbed53477.woff')format("woff");}.ff10{font-family:ff10;line-height:0.959473;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_c52de397eefbeca94af5e528.woff')format("woff");}.ff11{font-family:ff11;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_afd52c41602f24b33e68b711.woff')format("woff");}.ff12{font-family:ff12;line-height:0.958008;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_8297513c0ead54dbcced3b83.woff')format("woff");}.ff13{font-family:ff13;line-height:0.722656;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_e09187e4f97d4aa15e725c41.woff')format("woff");}.ff14{font-family:ff14;line-height:0.957031;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_a6c538844382c07995ff5909.woff')format("woff");}.ff15{font-family:ff15;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_9f730afac48cb9ba231c9dd0.woff')format("woff");}.ff16{font-family:ff16;line-height:0.958008;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_a2a2bd81de6f3fba989172ed.woff')format("woff");}.ff17{font-family:ff17;line-height:0.941895;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_cde3189c368cc6ef41060849.woff')format("woff");}.ff18{font-family:ff18;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_2ac3e477b484505a50b329d0.woff')format("woff");}.ff19{font-family:ff19;line-height:0.951660;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_cec1be172912ffcc8646e1cf.woff')format("woff");}.ff1a{font-family:ff1a;line-height:1.079000;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:ff1b;src:url('chunks/assets/font_6f28bb09f0a6af050c700011.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.825000;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:ff1c;src:url('chunks/assets/font_312128626e236d8a3127d3f0.woff')format("woff");}.ff1c{font-family:ff1c;line-height:1.078000;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:ff1d;src:url('chunks/assets/font_4fc7067cb8f3524140380925.woff')format("woff");}.ff1d{font-family:ff1d;line-height:0.800000;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:ff1e;src:url('chunks/assets/font_ef5747cd14b95f6cb9d2b212.woff')format("woff");}.ff1e{font-family:ff1e;line-height:0.722656;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:ff1f;src:url('chunks/assets/font_c4743a29e4cf4c59eb268d75.woff')format("woff");}.ff1f{font-family:ff1f;line-height:0.904297;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:ff20;src:url('chunks/assets/font_873d2bb2412949e35e02a3bd.woff')format("woff");}.ff20{font-family:ff20;line-height:0.905762;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:ff21;src:url('chunks/assets/font_97a1fd369929869310d44f67.woff')format("woff");}.ff21{font-family:ff21;line-height:0.765625;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:ff22;src:url('chunks/assets/font_eb0f85a0ba8564c32221d695.woff')format("woff");}.ff22{font-family:ff22;line-height:0.722656;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:ff23;src:url('chunks/assets/font_b96193c7ee6358b00878ea0f.woff')format("woff");}.ff23{font-family:ff23;line-height:0.956055;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:ff24;src:url('chunks/assets/font_8fddac186ba6e9440c5f3670.woff')format("woff");}.ff24{font-family:ff24;line-height:1.020996;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:ff25;src:url('chunks/assets/font_a5b67ff2667e9a150a5727cf.woff')format("woff");}.ff25{font-family:ff25;line-height:0.984375;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;}
.m5{transform:matrix(0.000000,-0.231763,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.231763,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.231763,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.000000,-0.250002,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250002,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250002,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.249998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249998,0.000000,0.000000,0.250000,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);}
.m4{transform:matrix(0.269672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269672,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);}
.v1{vertical-align:-27.360000px;}
.v2{vertical-align:-17.280000px;}
.v5{vertical-align:-10.080000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:17.280000px;}
.v4{vertical-align:28.800000px;}
.v6{vertical-align:132.480000px;}
.ls33{letter-spacing:-18.563999px;}
.ls3d{letter-spacing:-12.280804px;}
.ls31{letter-spacing:-6.982200px;}
.ls32{letter-spacing:-5.496000px;}
.ls11{letter-spacing:-0.360000px;}
.ls30{letter-spacing:-0.336000px;}
.ls8{letter-spacing:-0.302400px;}
.ls3{letter-spacing:-0.288000px;}
.ls16{letter-spacing:-0.280800px;}
.ls1c{letter-spacing:-0.273600px;}
.lsa{letter-spacing:-0.270000px;}
.ls19{letter-spacing:-0.259200px;}
.ls18{letter-spacing:-0.237600px;}
.ls38{letter-spacing:-0.216000px;}
.ls23{letter-spacing:-0.204000px;}
.lsb{letter-spacing:-0.180000px;}
.ls49{letter-spacing:-0.105600px;}
.ls2b{letter-spacing:-0.075600px;}
.ls12{letter-spacing:-0.067200px;}
.ls2{letter-spacing:-0.043200px;}
.ls2e{letter-spacing:-0.036000px;}
.ls29{letter-spacing:-0.032400px;}
.ls15{letter-spacing:-0.021600px;}
.lsf{letter-spacing:-0.016200px;}
.lse{letter-spacing:-0.010800px;}
.ls4{letter-spacing:0.000000px;}
.ls43{letter-spacing:0.010800px;}
.ls27{letter-spacing:0.021600px;}
.ls6{letter-spacing:0.023400px;}
.ls13{letter-spacing:0.030000px;}
.ls2a{letter-spacing:0.032400px;}
.ls20{letter-spacing:0.036000px;}
.ls0{letter-spacing:0.043200px;}
.ls1a{letter-spacing:0.060000px;}
.ls10{letter-spacing:0.090000px;}
.ls2f{letter-spacing:0.096000px;}
.ls3f{letter-spacing:0.105600px;}
.ls14{letter-spacing:0.120000px;}
.lsc{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.201600px;}
.ls22{letter-spacing:0.216000px;}
.ls1d{letter-spacing:0.218400px;}
.ls2c{letter-spacing:0.230400px;}
.ls41{letter-spacing:0.234000px;}
.ls17{letter-spacing:0.237600px;}
.ls5{letter-spacing:0.259200px;}
.lsd{letter-spacing:0.270000px;}
.ls2d{letter-spacing:0.288000px;}
.ls42{letter-spacing:0.290400px;}
.ls28{letter-spacing:0.305984px;}
.ls1b{letter-spacing:0.330000px;}
.ls21{letter-spacing:0.336000px;}
.ls48{letter-spacing:0.343200px;}
.ls24{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.361200px;}
.ls7{letter-spacing:2.466000px;}
.ls3b{letter-spacing:25.476008px;}
.ls36{letter-spacing:26.580004px;}
.ls35{letter-spacing:39.180004px;}
.ls3c{letter-spacing:42.900002px;}
.ls34{letter-spacing:45.384008px;}
.ls3e{letter-spacing:50.148000px;}
.ls3a{letter-spacing:57.900002px;}
.ls1e{letter-spacing:59.676008px;}
.ls47{letter-spacing:61.884002px;}
.ls1f{letter-spacing:65.400002px;}
.ls44{letter-spacing:66.647994px;}
.ls25{letter-spacing:69.203944px;}
.ls26{letter-spacing:69.599940px;}
.ls40{letter-spacing:69.600000px;}
.ls39{letter-spacing:85.776008px;}
.ls37{letter-spacing:91.500002px;}
.ls45{letter-spacing:110.400002px;}
.ls46{letter-spacing:114.600000px;}
.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;}
}
.ws38{word-spacing:-65.253600px;}
.ws25{word-spacing:-47.009997px;}
.ws0{word-spacing:-46.905613px;}
.ws39{word-spacing:-46.401613px;}
.ws31{word-spacing:-40.032000px;}
.ws32{word-spacing:-39.744000px;}
.ws18{word-spacing:-35.726400px;}
.ws27{word-spacing:-33.719999px;}
.ws1b{word-spacing:-33.539999px;}
.ws2b{word-spacing:-33.517800px;}
.ws1a{word-spacing:-33.395999px;}
.ws1c{word-spacing:-33.359999px;}
.ws1d{word-spacing:-33.155999px;}
.ws30{word-spacing:-32.999999px;}
.ws29{word-spacing:-30.359999px;}
.ws2c{word-spacing:-30.119999px;}
.ws2f{word-spacing:-30.095999px;}
.ws1e{word-spacing:-30.056400px;}
.ws1f{word-spacing:-30.045600px;}
.ws21{word-spacing:-30.024000px;}
.ws24{word-spacing:-30.002400px;}
.ws22{word-spacing:-29.991600px;}
.ws37{word-spacing:-29.980800px;}
.ws2a{word-spacing:-29.663999px;}
.ws8{word-spacing:-28.660798px;}
.ws2d{word-spacing:-24.503999px;}
.ws36{word-spacing:-20.999999px;}
.ws16{word-spacing:-20.849997px;}
.ws17{word-spacing:-20.789997px;}
.wsb{word-spacing:-20.639997px;}
.ws14{word-spacing:-20.579997px;}
.wsa{word-spacing:-20.549997px;}
.ws9{word-spacing:-20.519997px;}
.ws23{word-spacing:-20.246400px;}
.ws15{word-spacing:-20.159997px;}
.ws20{word-spacing:-20.016000px;}
.ws12{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.978400px;}
.ws10{word-spacing:-17.762400px;}
.ws13{word-spacing:-17.740800px;}
.wsd{word-spacing:-17.719200px;}
.ws5{word-spacing:-16.949997px;}
.ws4{word-spacing:-16.859997px;}
.ws7{word-spacing:-16.769997px;}
.ws3{word-spacing:-16.499997px;}
.ws2{word-spacing:-16.409997px;}
.ws11{word-spacing:-0.331200px;}
.ws19{word-spacing:-0.302400px;}
.ws28{word-spacing:-0.120000px;}
.ws6{word-spacing:-0.037800px;}
.ws1{word-spacing:0.000000px;}
.wsf{word-spacing:0.165600px;}
.ws2e{word-spacing:37.283999px;}
.ws35{word-spacing:156.898955px;}
.ws34{word-spacing:396.919551px;}
.wse{word-spacing:426.247200px;}
.ws33{word-spacing:936.652618px;}
.ws26{word-spacing:1087.311520px;}
._1b{margin-left:-21.206280px;}
._10{margin-left:-18.335999px;}
._3{margin-left:-15.984000px;}
._18{margin-left:-12.816005px;}
._9{margin-left:-9.301350px;}
._4{margin-left:-8.208000px;}
._5{margin-left:-6.120000px;}
._7{margin-left:-4.557600px;}
._2{margin-left:-2.304000px;}
._0{margin-left:-1.080000px;}
._1{width:1.296000px;}
._6{width:3.063060px;}
._13{width:4.878013px;}
._12{width:5.994000px;}
._11{width:7.290000px;}
._1a{width:11.592003px;}
._19{width:12.600004px;}
._14{width:17.279999px;}
._1d{width:31.863691px;}
._1c{width:170.472120px;}
._b{width:347.660615px;}
._f{width:366.836614px;}
._15{width:388.240124px;}
._16{width:405.651265px;}
._c{width:536.756607px;}
._a{width:559.940606px;}
._8{width:1001.025300px;}
._17{width:1113.459600px;}
._d{width:1180.892581px;}
._e{width:1190.276581px;}
.fcf{color:rgb(67,65,44);}
.fcd{color:rgb(50,65,115);}
.fc0{color:rgb(255,255,0);}
.fc1{color:rgb(255,255,255);}
.fc4{color:rgb(0,0,0);}
.fc7{color:rgb(195,0,0);}
.fc11{color:rgb(255,0,0);}
.fc2{color:rgb(3,80,204);}
.fc3{color:rgb(223,165,41);}
.fc12{color:rgb(0,176,80);}
.fca{color:rgb(0,0,128);}
.fc10{color:rgb(50,77,235);}
.fc5{color:rgb(0,128,0);}
.fc6{color:rgb(0,176,240);}
.fc8{color:transparent;}
.fc9{color:rgb(37,66,108);}
.fce{color:rgb(0,112,192);}
.fcb{color:rgb(24,117,52);}
.fcc{color:rgb(28,123,30);}
.fs5{font-size:54.000000px;}
.fs4{font-size:59.999990px;}
.fs6{font-size:72.000000px;}
.fs3{font-size:83.999995px;}
.fs7{font-size:95.999990px;}
.fse{font-size:103.025909px;}
.fsd{font-size:103.026744px;}
.fs10{font-size:104.571418px;}
.fs9{font-size:108.000000px;}
.fs11{font-size:112.799794px;}
.fsb{font-size:113.999990px;}
.fs8{font-size:119.999995px;}
.fsc{font-size:128.783430px;}
.fsf{font-size:130.714272px;}
.fs12{font-size:131.999990px;}
.fs1{font-size:144.000000px;}
.fsa{font-size:162.000000px;}
.fs2{font-size:168.000048px;}
.fs0{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.ya9{bottom:9.000107px;}
.y45{bottom:9.720000px;}
.y69{bottom:12.240000px;}
.ycc{bottom:12.600000px;}
.y3d{bottom:15.840000px;}
.y9e{bottom:17.109510px;}
.ya1{bottom:25.706031px;}
.y101{bottom:25.920000px;}
.yac{bottom:26.091440px;}
.y55{bottom:27.000000px;}
.y73{bottom:32.040000px;}
.yd9{bottom:34.560000px;}
.y9c{bottom:38.160000px;}
.yf2{bottom:41.040000px;}
.y68{bottom:48.240000px;}
.ya0{bottom:53.541496px;}
.yab{bottom:54.344241px;}
.y90{bottom:56.520000px;}
.ycb{bottom:57.600000px;}
.y100{bottom:61.920000px;}
.y10e{bottom:68.400000px;}
.y54{bottom:72.000000px;}
.yf1{bottom:75.600000px;}
.yde{bottom:78.840000px;}
.ydd{bottom:79.560000px;}
.y1f{bottom:80.280000px;}
.ye4{bottom:81.720000px;}
.y67{bottom:82.800000px;}
.y9b{bottom:83.160000px;}
.yd8{bottom:85.680000px;}
.yad{bottom:86.950807px;}
.y1e{bottom:98.280000px;}
.yff{bottom:100.800000px;}
.y8f{bottom:101.520000px;}
.yca{bottom:102.600000px;}
.ydc{bottom:103.320000px;}
.yb5{bottom:104.643637px;}
.yf0{bottom:111.600000px;}
.y10d{bottom:113.400000px;}
.y53{bottom:117.000000px;}
.y80{bottom:118.080000px;}
.y66{bottom:118.800000px;}
.y9a{bottom:129.600000px;}
.yb6{bottom:137.250203px;}
.yd7{bottom:137.880000px;}
.y8e{bottom:146.520000px;}
.yc9{bottom:147.600000px;}
.ya6{bottom:147.725970px;}
.yae{bottom:148.026397px;}
.y71{bottom:152.640000px;}
.y65{bottom:153.000000px;}
.y10c{bottom:159.840000px;}
.y52{bottom:162.000000px;}
.ye3{bottom:167.760000px;}
.yb7{bottom:172.481403px;}
.ya7{bottom:173.492851px;}
.y22{bottom:174.960000px;}
.y13{bottom:178.560000px;}
.yfe{bottom:180.360000px;}
.y99{bottom:182.160000px;}
.y16{bottom:183.600000px;}
.y81{bottom:183.960000px;}
.ya2{bottom:184.931288px;}
.y64{bottom:189.000000px;}
.yd6{bottom:190.440000px;}
.ye2{bottom:191.520000px;}
.yc8{bottom:192.600000px;}
.y21{bottom:192.960000px;}
.ya8{bottom:193.479610px;}
.y12{bottom:196.560000px;}
.y51{bottom:198.000000px;}
.y10b{bottom:212.400000px;}
.yb4{bottom:213.835478px;}
.y31{bottom:215.640000px;}
.yb8{bottom:216.389090px;}
.yaf{bottom:217.778583px;}
.yfd{bottom:220.680000px;}
.ya4{bottom:220.696379px;}
.y63{bottom:225.000000px;}
.y2c{bottom:226.080000px;}
.y98{bottom:227.160000px;}
.y50{bottom:234.000000px;}
.yc7{bottom:237.600000px;}
.yd5{bottom:243.000000px;}
.y18{bottom:243.720000px;}
.y7e{bottom:244.800000px;}
.y8d{bottom:245.520000px;}
.y70{bottom:246.240000px;}
.y2b{bottom:246.960000px;}
.y27{bottom:252.360000px;}
.yef{bottom:252.720000px;}
.y10a{bottom:253.080000px;}
.y62{bottom:259.560000px;}
.yb9{bottom:260.327603px;}
.yfc{bottom:261.360000px;}
.y17{bottom:261.720000px;}
.y97{bottom:273.600000px;}
.y4f{bottom:279.000000px;}
.yc6{bottom:282.600000px;}
.yb0{bottom:287.530659px;}
.yee{bottom:290.160000px;}
.y8c{bottom:290.520000px;}
.y79{bottom:291.600000px;}
.y109{bottom:293.400000px;}
.y61{bottom:295.560000px;}
.yfb{bottom:301.680000px;}
.yba{bottom:304.235398px;}
.y7f{bottom:310.680000px;}
.ybe{bottom:312.120000px;}
.y84{bottom:315.000000px;}
.y4e{bottom:324.000000px;}
.y96{bottom:326.160000px;}
.y78{bottom:327.600000px;}
.y60{bottom:330.120000px;}
.yed{bottom:332.280000px;}
.y108{bottom:334.080000px;}
.y8b{bottom:335.520000px;}
.ya5{bottom:337.615850px;}
.ye{bottom:337.680000px;}
.y6f{bottom:339.840000px;}
.ye0{bottom:340.200000px;}
.ybb{bottom:341.627959px;}
.ybd{bottom:341.640000px;}
.yfa{bottom:342.360000px;}
.y11{bottom:343.440000px;}
.ya{bottom:345.960000px;}
.yd4{bottom:346.680000px;}
.y83{bottom:351.000000px;}
.yd{bottom:355.680000px;}
.yb1{bottom:357.313671px;}
.y3c{bottom:358.920000px;}
.y10{bottom:360.000000px;}
.y77{bottom:363.600000px;}
.ydf{bottom:364.320000px;}
.y7c{bottom:365.040000px;}
.y5f{bottom:366.120000px;}
.yec{bottom:366.480000px;}
.y4d{bottom:369.000000px;}
.y95{bottom:371.160000px;}
.yc5{bottom:372.600000px;}
.y107{bottom:374.400000px;}
.y3b{bottom:376.920000px;}
.y38{bottom:378.000000px;}
.y8a{bottom:380.520000px;}
.y19{bottom:381.240000px;}
.y25{bottom:382.680000px;}
.y28{bottom:385.200000px;}
.y82{bottom:387.000000px;}
.ya3{bottom:391.127082px;}
.y3a{bottom:394.920000px;}
.y37{bottom:396.000000px;}
.yd3{bottom:397.440000px;}
.y76{bottom:399.600000px;}
.y5e{bottom:402.120000px;}
.yeb{bottom:402.480000px;}
.yc{bottom:408.960000px;}
.y39{bottom:412.920000px;}
.y36{bottom:414.000000px;}
.y94{bottom:417.600000px;}
.y106{bottom:419.400000px;}
.yf9{bottom:423.360000px;}
.yb{bottom:426.960000px;}
.yb2{bottom:427.065748px;}
.y7d{bottom:430.920000px;}
.y6e{bottom:433.440000px;}
.y5d{bottom:436.680000px;}
.yea{bottom:437.040000px;}
.yd2{bottom:442.440000px;}
.y4c{bottom:459.000000px;}
.ybc{bottom:459.720000px;}
.yc4{bottom:462.600000px;}
.yf8{bottom:463.680000px;}
.y105{bottom:465.840000px;}
.y93{bottom:470.160000px;}
.ye9{bottom:471.600000px;}
.y5c{bottom:472.680000px;}
.y89{bottom:479.520000px;}
.y57{bottom:481.680000px;}
.y44{bottom:483.480000px;}
.y7a{bottom:485.280000px;}
.yd1{bottom:487.440000px;}
.ye1{bottom:488.160000px;}
.yb3{bottom:490.302807px;}
.y20{bottom:498.960000px;}
.y4b{bottom:504.000000px;}
.yf7{bottom:504.360000px;}
.y92{bottom:506.160000px;}
.y15{bottom:507.240000px;}
.yc3{bottom:507.600000px;}
.yf{bottom:508.320000px;}
.y9f{bottom:510.895779px;}
.y35{bottom:512.280000px;}
.y104{bottom:514.080000px;}
.y43{bottom:515.160000px;}
.y88{bottom:515.520000px;}
.yaa{bottom:518.555608px;}
.y9d{bottom:519.480000px;}
.y14{bottom:525.240000px;}
.y6d{bottom:527.040000px;}
.y2e{bottom:527.400000px;}
.yd0{bottom:532.440000px;}
.y34{bottom:534.600000px;}
.y5b{bottom:543.240000px;}
.yf6{bottom:544.680000px;}
.ye8{bottom:545.040000px;}
.y26{bottom:546.120000px;}
.y42{bottom:548.280000px;}
.y2d{bottom:548.640000px;}
.y4a{bottom:549.000000px;}
.y7b{bottom:551.160000px;}
.yc2{bottom:552.600000px;}
.y33{bottom:555.840000px;}
.y2a{bottom:557.280000px;}
.y103{bottom:559.080000px;}
.y87{bottom:560.520000px;}
.y30{bottom:562.320000px;}
.y9{bottom:570.960000px;}
.y24{bottom:574.920000px;}
.y32{bottom:576.720000px;}
.ycf{bottom:577.440000px;}
.y29{bottom:578.520000px;}
.y5a{bottom:579.240000px;}
.y41{bottom:581.040000px;}
.y2f{bottom:583.200000px;}
.yf5{bottom:585.360000px;}
.ye7{bottom:587.160000px;}
.y8{bottom:588.960000px;}
.y23{bottom:592.920000px;}
.y49{bottom:594.000000px;}
.y91{bottom:597.600000px;}
.ybf{bottom:604.080000px;}
.y86{bottom:605.520000px;}
.y75{bottom:606.960000px;}
.y40{bottom:612.720000px;}
.y59{bottom:613.800000px;}
.y3{bottom:614.880000px;}
.y6c{bottom:617.040000px;}
.ydb{bottom:621.720000px;}
.yce{bottom:622.440000px;}
.yf4{bottom:625.680000px;}
.ye6{bottom:626.040000px;}
.y7{bottom:630.360000px;}
.y48{bottom:639.000000px;}
.yc1{bottom:642.600000px;}
.y3f{bottom:645.480000px;}
.y58{bottom:649.800000px;}
.y102{bottom:650.520000px;}
.y85{bottom:651.960000px;}
.y1d{bottom:658.440000px;}
.y1b{bottom:659.520000px;}
.ye5{bottom:666.720015px;}
.ycd{bottom:667.440015px;}
.yf3{bottom:667.800015px;}
.y6b{bottom:671.760015px;}
.y1c{bottom:676.440015px;}
.y1a{bottom:677.520015px;}
.y2{bottom:682.920015px;}
.y56{bottom:683.640015px;}
.y47{bottom:684.000015px;}
.y3e{bottom:687.240015px;}
.yc0{bottom:687.600015px;}
.y5{bottom:698.040015px;}
.y6{bottom:745.920015px;}
.y46{bottom:746.280015px;}
.y1{bottom:747.360015px;}
.y4{bottom:747.720015px;}
.y74{bottom:748.440015px;}
.yda{bottom:748.800015px;}
.y6a{bottom:749.520015px;}
.y10f{bottom:750.960015px;}
.y72{bottom:751.320015px;}
.h6{height:39.102539px;}
.h5{height:44.501946px;}
.h7{height:45.585930px;}
.h9{height:48.796875px;}
.h8{height:49.992188px;}
.h1e{height:52.382813px;}
.hb{height:56.888669px;}
.hc{height:58.324215px;}
.h4{height:64.230465px;}
.h19{height:70.629090px;}
.h18{height:70.629662px;}
.h1c{height:71.841789px;}
.h1d{height:77.494780px;}
.h10{height:79.576172px;}
.hf{height:80.103516px;}
.h11{height:81.182813px;}
.h22{height:87.222656px;}
.h21{height:87.802734px;}
.h17{height:88.287078px;}
.he{height:88.417965px;}
.hd{height:89.003903px;}
.h1b{height:89.802237px;}
.h1f{height:91.874996px;}
.h15{height:95.999996px;}
.h20{height:97.775384px;}
.h2{height:106.101563px;}
.h13{height:106.664063px;}
.ha{height:115.200000px;}
.h3{height:124.441442px;}
.h14{height:129.600000px;}
.h1{height:159.996094px;}
.h12{height:207.468281px;}
.h16{height:540.890490px;}
.h1a{height:549.000043px;}
.h0{height:810.000000px;}
.w1{width:708.491100px;}
.w2{width:791.812050px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x87{left:6.796772px;}
.x72{left:9.532440px;}
.x6f{left:10.800000px;}
.x80{left:19.706100px;}
.x41{left:21.248745px;}
.x59{left:27.157440px;}
.x7b{left:28.612320px;}
.x37{left:32.074785px;}
.x88{left:33.796770px;}
.x67{left:36.126635px;}
.x4{left:37.612440px;}
.x3a{left:39.967035px;}
.x3c{left:41.714520px;}
.x39{left:43.432035px;}
.x70{left:44.925000px;}
.x3e{left:47.504520px;}
.x38{left:48.759735px;}
.x3b{left:51.562035px;}
.x83{left:53.831100px;}
.x3d{left:56.039535px;}
.x63{left:57.485601px;}
.x5a{left:61.282440px;}
.x7c{left:62.737320px;}
.x48{left:71.006220px;}
.x6b{left:74.276340px;}
.x44{left:75.671340px;}
.x49{left:80.737440px;}
.x5d{left:82.725945px;}
.x5b{left:88.132440px;}
.x7f{left:89.512320px;}
.x89{left:94.546770px;}
.x45{left:109.796340px;}
.x66{left:148.143528px;}
.x6d{left:151.593450px;}
.x31{left:185.299200px;}
.x32{left:193.646700px;}
.x61{left:196.420761px;}
.x33{left:197.486700px;}
.x55{left:204.353850px;}
.x47{left:210.749850px;}
.x56{left:214.636350px;}
.x58{left:221.948850px;}
.x57{left:252.511350px;}
.x40{left:256.237500px;}
.x71{left:273.986100px;}
.x6a{left:276.819305px;}
.x5c{left:278.999850px;}
.x81{left:282.956100px;}
.x69{left:287.738442px;}
.x82{left:290.456100px;}
.x9{left:305.371350px;}
.x19{left:308.071950px;}
.x29{left:314.038200px;}
.x2a{left:316.406550px;}
.x18{left:319.509450px;}
.x2b{left:320.779200px;}
.x8{left:322.228050px;}
.x6e{left:324.967350px;}
.x7{left:327.103050px;}
.x62{left:329.526908px;}
.x5{left:355.237500px;}
.x7a{left:362.437500px;}
.x7e{left:373.612350px;}
.x73{left:380.805000px;}
.x68{left:385.322719px;}
.x7d{left:387.112350px;}
.x4a{left:390.399000px;}
.x84{left:393.656100px;}
.x46{left:401.718600px;}
.x1{left:439.343550px;}
.x85{left:460.218600px;}
.x64{left:476.677955px;}
.x16{left:490.978500px;}
.x65{left:497.729368px;}
.xb{left:499.978200px;}
.x15{left:502.138500px;}
.x12{left:511.603050px;}
.x13{left:514.603050px;}
.xa{left:526.978200px;}
.x2c{left:529.061100px;}
.x5f{left:530.518050px;}
.x4f{left:534.514500px;}
.x6c{left:537.300300px;}
.x54{left:544.290750px;}
.x79{left:556.192500px;}
.x51{left:563.040600px;}
.x52{left:571.991850px;}
.x78{left:576.900000px;}
.x2{left:578.843550px;}
.x77{left:581.400000px;}
.x1a{left:593.403900px;}
.x1b{left:597.341400px;}
.x3{left:620.781450px;}
.x8a{left:627.454650px;}
.x74{left:662.400000px;}
.xd{left:675.759600px;}
.x1d{left:680.112300px;}
.x22{left:691.657800px;}
.x28{left:702.130050px;}
.x27{left:703.526250px;}
.x26{left:706.623750px;}
.xc{left:707.822100px;}
.x1f{left:715.978800px;}
.x1e{left:718.041300px;}
.x60{left:720.345000px;}
.x50{left:728.634000px;}
.x53{left:729.937650px;}
.x6{left:736.415550px;}
.x75{left:770.400000px;}
.x1c{left:834.009300px;}
.x21{left:837.946950px;}
.x10{left:839.682600px;}
.x11{left:843.807600px;}
.x17{left:850.434000px;}
.x2f{left:853.228350px;}
.x24{left:866.179350px;}
.x30{left:869.165700px;}
.x2e{left:871.415700px;}
.x2d{left:873.665700px;}
.x20{left:874.981800px;}
.x5e{left:997.850250px;}
.xf{left:1002.552900px;}
.x14{left:1005.926850px;}
.x42{left:1013.499750px;}
.xe{left:1017.458100px;}
.x76{left:1018.612350px;}
.x23{left:1028.239350px;}
.x25{left:1040.158500px;}
.x4b{left:1065.149700px;}
.x4c{left:1087.664700px;}
.x4d{left:1094.977200px;}
.x4e{left:1125.539700px;}
.x36{left:1148.519400px;}
.x35{left:1152.741900px;}
.x34{left:1163.241900px;}
.x43{left:1275.681600px;}
.x86{left:1407.700050px;}
.x3f{left:1418.200050px;}
@media print{
.v1{vertical-align:-24.320000pt;}
.v2{vertical-align:-15.360000pt;}
.v5{vertical-align:-8.960000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:15.360000pt;}
.v4{vertical-align:25.600000pt;}
.v6{vertical-align:117.760000pt;}
.ls33{letter-spacing:-16.501333pt;}
.ls3d{letter-spacing:-10.916270pt;}
.ls31{letter-spacing:-6.206400pt;}
.ls32{letter-spacing:-4.885333pt;}
.ls11{letter-spacing:-0.320000pt;}
.ls30{letter-spacing:-0.298667pt;}
.ls8{letter-spacing:-0.268800pt;}
.ls3{letter-spacing:-0.256000pt;}
.ls16{letter-spacing:-0.249600pt;}
.ls1c{letter-spacing:-0.243200pt;}
.lsa{letter-spacing:-0.240000pt;}
.ls19{letter-spacing:-0.230400pt;}
.ls18{letter-spacing:-0.211200pt;}
.ls38{letter-spacing:-0.192000pt;}
.ls23{letter-spacing:-0.181333pt;}
.lsb{letter-spacing:-0.160000pt;}
.ls49{letter-spacing:-0.093867pt;}
.ls2b{letter-spacing:-0.067200pt;}
.ls12{letter-spacing:-0.059733pt;}
.ls2{letter-spacing:-0.038400pt;}
.ls2e{letter-spacing:-0.032000pt;}
.ls29{letter-spacing:-0.028800pt;}
.ls15{letter-spacing:-0.019200pt;}
.lsf{letter-spacing:-0.014400pt;}
.lse{letter-spacing:-0.009600pt;}
.ls4{letter-spacing:0.000000pt;}
.ls43{letter-spacing:0.009600pt;}
.ls27{letter-spacing:0.019200pt;}
.ls6{letter-spacing:0.020800pt;}
.ls13{letter-spacing:0.026667pt;}
.ls2a{letter-spacing:0.028800pt;}
.ls20{letter-spacing:0.032000pt;}
.ls0{letter-spacing:0.038400pt;}
.ls1a{letter-spacing:0.053333pt;}
.ls10{letter-spacing:0.080000pt;}
.ls2f{letter-spacing:0.085333pt;}
.ls3f{letter-spacing:0.093867pt;}
.ls14{letter-spacing:0.106667pt;}
.lsc{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.179200pt;}
.ls22{letter-spacing:0.192000pt;}
.ls1d{letter-spacing:0.194133pt;}
.ls2c{letter-spacing:0.204800pt;}
.ls41{letter-spacing:0.208000pt;}
.ls17{letter-spacing:0.211200pt;}
.ls5{letter-spacing:0.230400pt;}
.lsd{letter-spacing:0.240000pt;}
.ls2d{letter-spacing:0.256000pt;}
.ls42{letter-spacing:0.258133pt;}
.ls28{letter-spacing:0.271986pt;}
.ls1b{letter-spacing:0.293333pt;}
.ls21{letter-spacing:0.298667pt;}
.ls48{letter-spacing:0.305067pt;}
.ls24{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.321067pt;}
.ls7{letter-spacing:2.192000pt;}
.ls3b{letter-spacing:22.645340pt;}
.ls36{letter-spacing:23.626670pt;}
.ls35{letter-spacing:34.826670pt;}
.ls3c{letter-spacing:38.133335pt;}
.ls34{letter-spacing:40.341340pt;}
.ls3e{letter-spacing:44.576000pt;}
.ls3a{letter-spacing:51.466668pt;}
.ls1e{letter-spacing:53.045340pt;}
.ls47{letter-spacing:55.008001pt;}
.ls1f{letter-spacing:58.133335pt;}
.ls44{letter-spacing:59.242661pt;}
.ls25{letter-spacing:61.514617pt;}
.ls26{letter-spacing:61.866613pt;}
.ls40{letter-spacing:61.866667pt;}
.ls39{letter-spacing:76.245340pt;}
.ls37{letter-spacing:81.333335pt;}
.ls45{letter-spacing:98.133335pt;}
.ls46{letter-spacing:101.866667pt;}
.ws38{word-spacing:-58.003200pt;}
.ws25{word-spacing:-41.786664pt;}
.ws0{word-spacing:-41.693879pt;}
.ws39{word-spacing:-41.245878pt;}
.ws31{word-spacing:-35.584000pt;}
.ws32{word-spacing:-35.328000pt;}
.ws18{word-spacing:-31.756800pt;}
.ws27{word-spacing:-29.973332pt;}
.ws1b{word-spacing:-29.813332pt;}
.ws2b{word-spacing:-29.793600pt;}
.ws1a{word-spacing:-29.685332pt;}
.ws1c{word-spacing:-29.653332pt;}
.ws1d{word-spacing:-29.471999pt;}
.ws30{word-spacing:-29.333332pt;}
.ws29{word-spacing:-26.986666pt;}
.ws2c{word-spacing:-26.773332pt;}
.ws2f{word-spacing:-26.751999pt;}
.ws1e{word-spacing:-26.716800pt;}
.ws1f{word-spacing:-26.707200pt;}
.ws21{word-spacing:-26.688000pt;}
.ws24{word-spacing:-26.668800pt;}
.ws22{word-spacing:-26.659200pt;}
.ws37{word-spacing:-26.649600pt;}
.ws2a{word-spacing:-26.367999pt;}
.ws8{word-spacing:-25.476265pt;}
.ws2d{word-spacing:-21.781332pt;}
.ws36{word-spacing:-18.666666pt;}
.ws16{word-spacing:-18.533330pt;}
.ws17{word-spacing:-18.479997pt;}
.wsb{word-spacing:-18.346664pt;}
.ws14{word-spacing:-18.293330pt;}
.wsa{word-spacing:-18.266664pt;}
.ws9{word-spacing:-18.239997pt;}
.ws23{word-spacing:-17.996800pt;}
.ws15{word-spacing:-17.919997pt;}
.ws20{word-spacing:-17.792000pt;}
.ws12{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.980800pt;}
.ws10{word-spacing:-15.788800pt;}
.ws13{word-spacing:-15.769600pt;}
.wsd{word-spacing:-15.750400pt;}
.ws5{word-spacing:-15.066664pt;}
.ws4{word-spacing:-14.986664pt;}
.ws7{word-spacing:-14.906664pt;}
.ws3{word-spacing:-14.666664pt;}
.ws2{word-spacing:-14.586664pt;}
.ws11{word-spacing:-0.294400pt;}
.ws19{word-spacing:-0.268800pt;}
.ws28{word-spacing:-0.106667pt;}
.ws6{word-spacing:-0.033600pt;}
.ws1{word-spacing:0.000000pt;}
.wsf{word-spacing:0.147200pt;}
.ws2e{word-spacing:33.141332pt;}
.ws35{word-spacing:139.465738pt;}
.ws34{word-spacing:352.817379pt;}
.wse{word-spacing:378.886400pt;}
.ws33{word-spacing:832.580105pt;}
.ws26{word-spacing:966.499129pt;}
._1b{margin-left:-18.850027pt;}
._10{margin-left:-16.298666pt;}
._3{margin-left:-14.208000pt;}
._18{margin-left:-11.392004pt;}
._9{margin-left:-8.267866pt;}
._4{margin-left:-7.296000pt;}
._5{margin-left:-5.440000pt;}
._7{margin-left:-4.051200pt;}
._2{margin-left:-2.048000pt;}
._0{margin-left:-0.960000pt;}
._1{width:1.152000pt;}
._6{width:2.722720pt;}
._13{width:4.336011pt;}
._12{width:5.328000pt;}
._11{width:6.480000pt;}
._1a{width:10.304003pt;}
._19{width:11.200003pt;}
._14{width:15.359999pt;}
._1d{width:28.323281pt;}
._1c{width:151.530773pt;}
._b{width:309.031658pt;}
._f{width:326.076990pt;}
._15{width:345.102332pt;}
._16{width:360.578902pt;}
._c{width:477.116984pt;}
._a{width:497.724983pt;}
._8{width:889.800267pt;}
._17{width:989.741867pt;}
._d{width:1049.682295pt;}
._e{width:1058.023628pt;}
.fs5{font-size:48.000000pt;}
.fs4{font-size:53.333325pt;}
.fs6{font-size:64.000000pt;}
.fs3{font-size:74.666662pt;}
.fs7{font-size:85.333325pt;}
.fse{font-size:91.578586pt;}
.fsd{font-size:91.579328pt;}
.fs10{font-size:92.952371pt;}
.fs9{font-size:96.000000pt;}
.fs11{font-size:100.266483pt;}
.fsb{font-size:101.333325pt;}
.fs8{font-size:106.666662pt;}
.fsc{font-size:114.474160pt;}
.fsf{font-size:116.190464pt;}
.fs12{font-size:117.333325pt;}
.fs1{font-size:128.000000pt;}
.fsa{font-size:144.000000pt;}
.fs2{font-size:149.333376pt;}
.fs0{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.ya9{bottom:8.000095pt;}
.y45{bottom:8.640000pt;}
.y69{bottom:10.880000pt;}
.ycc{bottom:11.200000pt;}
.y3d{bottom:14.080000pt;}
.y9e{bottom:15.208453pt;}
.ya1{bottom:22.849805pt;}
.y101{bottom:23.040000pt;}
.yac{bottom:23.192391pt;}
.y55{bottom:24.000000pt;}
.y73{bottom:28.480000pt;}
.yd9{bottom:30.720000pt;}
.y9c{bottom:33.920000pt;}
.yf2{bottom:36.480000pt;}
.y68{bottom:42.880000pt;}
.ya0{bottom:47.592441pt;}
.yab{bottom:48.305992pt;}
.y90{bottom:50.240000pt;}
.ycb{bottom:51.200000pt;}
.y100{bottom:55.040000pt;}
.y10e{bottom:60.800000pt;}
.y54{bottom:64.000000pt;}
.yf1{bottom:67.200000pt;}
.yde{bottom:70.080000pt;}
.ydd{bottom:70.720000pt;}
.y1f{bottom:71.360000pt;}
.ye4{bottom:72.640000pt;}
.y67{bottom:73.600000pt;}
.y9b{bottom:73.920000pt;}
.yd8{bottom:76.160000pt;}
.yad{bottom:77.289606pt;}
.y1e{bottom:87.360000pt;}
.yff{bottom:89.600000pt;}
.y8f{bottom:90.240000pt;}
.yca{bottom:91.200000pt;}
.ydc{bottom:91.840000pt;}
.yb5{bottom:93.016566pt;}
.yf0{bottom:99.200000pt;}
.y10d{bottom:100.800000pt;}
.y53{bottom:104.000000pt;}
.y80{bottom:104.960000pt;}
.y66{bottom:105.600000pt;}
.y9a{bottom:115.200000pt;}
.yb6{bottom:122.000181pt;}
.yd7{bottom:122.560000pt;}
.y8e{bottom:130.240000pt;}
.yc9{bottom:131.200000pt;}
.ya6{bottom:131.311973pt;}
.yae{bottom:131.579020pt;}
.y71{bottom:135.680000pt;}
.y65{bottom:136.000000pt;}
.y10c{bottom:142.080000pt;}
.y52{bottom:144.000000pt;}
.ye3{bottom:149.120000pt;}
.yb7{bottom:153.316803pt;}
.ya7{bottom:154.215868pt;}
.y22{bottom:155.520000pt;}
.y13{bottom:158.720000pt;}
.yfe{bottom:160.320000pt;}
.y99{bottom:161.920000pt;}
.y16{bottom:163.200000pt;}
.y81{bottom:163.520000pt;}
.ya2{bottom:164.383367pt;}
.y64{bottom:168.000000pt;}
.yd6{bottom:169.280000pt;}
.ye2{bottom:170.240000pt;}
.yc8{bottom:171.200000pt;}
.y21{bottom:171.520000pt;}
.ya8{bottom:171.981876pt;}
.y12{bottom:174.720000pt;}
.y51{bottom:176.000000pt;}
.y10b{bottom:188.800000pt;}
.yb4{bottom:190.075980pt;}
.y31{bottom:191.680000pt;}
.yb8{bottom:192.345858pt;}
.yaf{bottom:193.580962pt;}
.yfd{bottom:196.160000pt;}
.ya4{bottom:196.174559pt;}
.y63{bottom:200.000000pt;}
.y2c{bottom:200.960000pt;}
.y98{bottom:201.920000pt;}
.y50{bottom:208.000000pt;}
.yc7{bottom:211.200000pt;}
.yd5{bottom:216.000000pt;}
.y18{bottom:216.640000pt;}
.y7e{bottom:217.600000pt;}
.y8d{bottom:218.240000pt;}
.y70{bottom:218.880000pt;}
.y2b{bottom:219.520000pt;}
.y27{bottom:224.320000pt;}
.yef{bottom:224.640000pt;}
.y10a{bottom:224.960000pt;}
.y62{bottom:230.720000pt;}
.yb9{bottom:231.402314pt;}
.yfc{bottom:232.320000pt;}
.y17{bottom:232.640000pt;}
.y97{bottom:243.200000pt;}
.y4f{bottom:248.000000pt;}
.yc6{bottom:251.200000pt;}
.yb0{bottom:255.582808pt;}
.yee{bottom:257.920000pt;}
.y8c{bottom:258.240000pt;}
.y79{bottom:259.200000pt;}
.y109{bottom:260.800000pt;}
.y61{bottom:262.720000pt;}
.yfb{bottom:268.160000pt;}
.yba{bottom:270.431465pt;}
.y7f{bottom:276.160000pt;}
.ybe{bottom:277.440000pt;}
.y84{bottom:280.000000pt;}
.y4e{bottom:288.000000pt;}
.y96{bottom:289.920000pt;}
.y78{bottom:291.200000pt;}
.y60{bottom:293.440000pt;}
.yed{bottom:295.360000pt;}
.y108{bottom:296.960000pt;}
.y8b{bottom:298.240000pt;}
.ya5{bottom:300.102978pt;}
.ye{bottom:300.160000pt;}
.y6f{bottom:302.080000pt;}
.ye0{bottom:302.400000pt;}
.ybb{bottom:303.669297pt;}
.ybd{bottom:303.680000pt;}
.yfa{bottom:304.320000pt;}
.y11{bottom:305.280000pt;}
.ya{bottom:307.520000pt;}
.yd4{bottom:308.160000pt;}
.y83{bottom:312.000000pt;}
.yd{bottom:316.160000pt;}
.yb1{bottom:317.612152pt;}
.y3c{bottom:319.040000pt;}
.y10{bottom:320.000000pt;}
.y77{bottom:323.200000pt;}
.ydf{bottom:323.840000pt;}
.y7c{bottom:324.480000pt;}
.y5f{bottom:325.440000pt;}
.yec{bottom:325.760000pt;}
.y4d{bottom:328.000000pt;}
.y95{bottom:329.920000pt;}
.yc5{bottom:331.200000pt;}
.y107{bottom:332.800000pt;}
.y3b{bottom:335.040000pt;}
.y38{bottom:336.000000pt;}
.y8a{bottom:338.240000pt;}
.y19{bottom:338.880000pt;}
.y25{bottom:340.160000pt;}
.y28{bottom:342.400000pt;}
.y82{bottom:344.000000pt;}
.ya3{bottom:347.668517pt;}
.y3a{bottom:351.040000pt;}
.y37{bottom:352.000000pt;}
.yd3{bottom:353.280000pt;}
.y76{bottom:355.200000pt;}
.y5e{bottom:357.440000pt;}
.yeb{bottom:357.760000pt;}
.yc{bottom:363.520000pt;}
.y39{bottom:367.040000pt;}
.y36{bottom:368.000000pt;}
.y94{bottom:371.200000pt;}
.y106{bottom:372.800000pt;}
.yf9{bottom:376.320000pt;}
.yb{bottom:379.520000pt;}
.yb2{bottom:379.613998pt;}
.y7d{bottom:383.040000pt;}
.y6e{bottom:385.280000pt;}
.y5d{bottom:388.160000pt;}
.yea{bottom:388.480000pt;}
.yd2{bottom:393.280000pt;}
.y4c{bottom:408.000000pt;}
.ybc{bottom:408.640000pt;}
.yc4{bottom:411.200000pt;}
.yf8{bottom:412.160000pt;}
.y105{bottom:414.080000pt;}
.y93{bottom:417.920000pt;}
.ye9{bottom:419.200000pt;}
.y5c{bottom:420.160000pt;}
.y89{bottom:426.240000pt;}
.y57{bottom:428.160000pt;}
.y44{bottom:429.760000pt;}
.y7a{bottom:431.360000pt;}
.yd1{bottom:433.280000pt;}
.ye1{bottom:433.920000pt;}
.yb3{bottom:435.824718pt;}
.y20{bottom:443.520000pt;}
.y4b{bottom:448.000000pt;}
.yf7{bottom:448.320000pt;}
.y92{bottom:449.920000pt;}
.y15{bottom:450.880000pt;}
.yc3{bottom:451.200000pt;}
.yf{bottom:451.840000pt;}
.y9f{bottom:454.129582pt;}
.y35{bottom:455.360000pt;}
.y104{bottom:456.960000pt;}
.y43{bottom:457.920000pt;}
.y88{bottom:458.240000pt;}
.yaa{bottom:460.938318pt;}
.y9d{bottom:461.760000pt;}
.y14{bottom:466.880000pt;}
.y6d{bottom:468.480000pt;}
.y2e{bottom:468.800000pt;}
.yd0{bottom:473.280000pt;}
.y34{bottom:475.200000pt;}
.y5b{bottom:482.880000pt;}
.yf6{bottom:484.160000pt;}
.ye8{bottom:484.480000pt;}
.y26{bottom:485.440000pt;}
.y42{bottom:487.360000pt;}
.y2d{bottom:487.680000pt;}
.y4a{bottom:488.000000pt;}
.y7b{bottom:489.920000pt;}
.yc2{bottom:491.200000pt;}
.y33{bottom:494.080000pt;}
.y2a{bottom:495.360000pt;}
.y103{bottom:496.960000pt;}
.y87{bottom:498.240000pt;}
.y30{bottom:499.840000pt;}
.y9{bottom:507.520000pt;}
.y24{bottom:511.040000pt;}
.y32{bottom:512.640000pt;}
.ycf{bottom:513.280000pt;}
.y29{bottom:514.240000pt;}
.y5a{bottom:514.880000pt;}
.y41{bottom:516.480000pt;}
.y2f{bottom:518.400000pt;}
.yf5{bottom:520.320000pt;}
.ye7{bottom:521.920000pt;}
.y8{bottom:523.520000pt;}
.y23{bottom:527.040000pt;}
.y49{bottom:528.000000pt;}
.y91{bottom:531.200000pt;}
.ybf{bottom:536.960000pt;}
.y86{bottom:538.240000pt;}
.y75{bottom:539.520000pt;}
.y40{bottom:544.640000pt;}
.y59{bottom:545.600000pt;}
.y3{bottom:546.560000pt;}
.y6c{bottom:548.480000pt;}
.ydb{bottom:552.640000pt;}
.yce{bottom:553.280000pt;}
.yf4{bottom:556.160000pt;}
.ye6{bottom:556.480000pt;}
.y7{bottom:560.320000pt;}
.y48{bottom:568.000000pt;}
.yc1{bottom:571.200000pt;}
.y3f{bottom:573.760000pt;}
.y58{bottom:577.600000pt;}
.y102{bottom:578.240000pt;}
.y85{bottom:579.520000pt;}
.y1d{bottom:585.280000pt;}
.y1b{bottom:586.240000pt;}
.ye5{bottom:592.640013pt;}
.ycd{bottom:593.280013pt;}
.yf3{bottom:593.600013pt;}
.y6b{bottom:597.120013pt;}
.y1c{bottom:601.280013pt;}
.y1a{bottom:602.240013pt;}
.y2{bottom:607.040013pt;}
.y56{bottom:607.680013pt;}
.y47{bottom:608.000013pt;}
.y3e{bottom:610.880013pt;}
.yc0{bottom:611.200013pt;}
.y5{bottom:620.480013pt;}
.y6{bottom:663.040013pt;}
.y46{bottom:663.360013pt;}
.y1{bottom:664.320013pt;}
.y4{bottom:664.640013pt;}
.y74{bottom:665.280013pt;}
.yda{bottom:665.600013pt;}
.y6a{bottom:666.240013pt;}
.y10f{bottom:667.520013pt;}
.y72{bottom:667.840013pt;}
.h6{height:34.757813pt;}
.h5{height:39.557285pt;}
.h7{height:40.520827pt;}
.h9{height:43.375000pt;}
.h8{height:44.437500pt;}
.h1e{height:46.562500pt;}
.hb{height:50.567705pt;}
.hc{height:51.843747pt;}
.h4{height:57.093747pt;}
.h19{height:62.781413pt;}
.h18{height:62.781922pt;}
.h1c{height:63.859368pt;}
.h1d{height:68.884249pt;}
.h10{height:70.734375pt;}
.hf{height:71.203125pt;}
.h11{height:72.162500pt;}
.h22{height:77.531250pt;}
.h21{height:78.046875pt;}
.h17{height:78.477403pt;}
.he{height:78.593747pt;}
.hd{height:79.114580pt;}
.h1b{height:79.824210pt;}
.h1f{height:81.666663pt;}
.h15{height:85.333330pt;}
.h20{height:86.911452pt;}
.h2{height:94.312500pt;}
.h13{height:94.812500pt;}
.ha{height:102.400000pt;}
.h3{height:110.614615pt;}
.h14{height:115.200000pt;}
.h1{height:142.218750pt;}
.h12{height:184.416250pt;}
.h16{height:480.791547pt;}
.h1a{height:488.000039pt;}
.h0{height:720.000000pt;}
.w1{width:629.769867pt;}
.w2{width:703.832933pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x87{left:6.041575pt;}
.x72{left:8.473280pt;}
.x6f{left:9.600000pt;}
.x80{left:17.516533pt;}
.x41{left:18.887773pt;}
.x59{left:24.139947pt;}
.x7b{left:25.433173pt;}
.x37{left:28.510920pt;}
.x88{left:30.041573pt;}
.x67{left:32.112565pt;}
.x4{left:33.433280pt;}
.x3a{left:35.526253pt;}
.x3c{left:37.079573pt;}
.x39{left:38.606253pt;}
.x70{left:39.933333pt;}
.x3e{left:42.226240pt;}
.x38{left:43.341987pt;}
.x3b{left:45.832920pt;}
.x83{left:47.849867pt;}
.x3d{left:49.812920pt;}
.x63{left:51.098312pt;}
.x5a{left:54.473280pt;}
.x7c{left:55.766507pt;}
.x48{left:63.116640pt;}
.x6b{left:66.023413pt;}
.x44{left:67.263413pt;}
.x49{left:71.766613pt;}
.x5d{left:73.534173pt;}
.x5b{left:78.339947pt;}
.x7f{left:79.566507pt;}
.x89{left:84.041573pt;}
.x45{left:97.596747pt;}
.x66{left:131.683136pt;}
.x6d{left:134.749733pt;}
.x31{left:164.710400pt;}
.x32{left:172.130400pt;}
.x61{left:174.596232pt;}
.x33{left:175.543733pt;}
.x55{left:181.647867pt;}
.x47{left:187.333200pt;}
.x56{left:190.787867pt;}
.x58{left:197.287867pt;}
.x57{left:224.454533pt;}
.x40{left:227.766667pt;}
.x71{left:243.543200pt;}
.x6a{left:246.061604pt;}
.x5c{left:247.999867pt;}
.x81{left:251.516533pt;}
.x69{left:255.767504pt;}
.x82{left:258.183200pt;}
.x9{left:271.441200pt;}
.x19{left:273.841733pt;}
.x29{left:279.145067pt;}
.x2a{left:281.250267pt;}
.x18{left:284.008400pt;}
.x2b{left:285.137067pt;}
.x8{left:286.424933pt;}
.x6e{left:288.859867pt;}
.x7{left:290.758267pt;}
.x62{left:292.912807pt;}
.x5{left:315.766667pt;}
.x7a{left:322.166667pt;}
.x7e{left:332.099867pt;}
.x73{left:338.493333pt;}
.x68{left:342.509083pt;}
.x7d{left:344.099867pt;}
.x4a{left:347.021333pt;}
.x84{left:349.916533pt;}
.x46{left:357.083200pt;}
.x1{left:390.527600pt;}
.x85{left:409.083200pt;}
.x64{left:423.713738pt;}
.x16{left:436.425333pt;}
.x65{left:442.426105pt;}
.xb{left:444.425067pt;}
.x15{left:446.345333pt;}
.x12{left:454.758267pt;}
.x13{left:457.424933pt;}
.xa{left:468.425067pt;}
.x2c{left:470.276533pt;}
.x5f{left:471.571600pt;}
.x4f{left:475.124000pt;}
.x6c{left:477.600267pt;}
.x54{left:483.814000pt;}
.x79{left:494.393333pt;}
.x51{left:500.480533pt;}
.x52{left:508.437200pt;}
.x78{left:512.800000pt;}
.x2{left:514.527600pt;}
.x77{left:516.800000pt;}
.x1a{left:527.470133pt;}
.x1b{left:530.970133pt;}
.x3{left:551.805733pt;}
.x8a{left:557.737467pt;}
.x74{left:588.800000pt;}
.xd{left:600.675200pt;}
.x1d{left:604.544267pt;}
.x22{left:614.806933pt;}
.x28{left:624.115600pt;}
.x27{left:625.356667pt;}
.x26{left:628.110000pt;}
.xc{left:629.175200pt;}
.x1f{left:636.425600pt;}
.x1e{left:638.258933pt;}
.x60{left:640.306667pt;}
.x50{left:647.674667pt;}
.x53{left:648.833467pt;}
.x6{left:654.591600pt;}
.x75{left:684.800000pt;}
.x1c{left:741.341600pt;}
.x21{left:744.841733pt;}
.x10{left:746.384533pt;}
.x11{left:750.051200pt;}
.x17{left:755.941333pt;}
.x2f{left:758.425200pt;}
.x24{left:769.937200pt;}
.x30{left:772.591733pt;}
.x2e{left:774.591733pt;}
.x2d{left:776.591733pt;}
.x20{left:777.761600pt;}
.x5e{left:886.978000pt;}
.xf{left:891.158133pt;}
.x14{left:894.157200pt;}
.x42{left:900.888667pt;}
.xe{left:904.407200pt;}
.x76{left:905.433200pt;}
.x23{left:913.990533pt;}
.x25{left:924.585333pt;}
.x4b{left:946.799733pt;}
.x4c{left:966.813067pt;}
.x4d{left:973.313067pt;}
.x4e{left:1000.479733pt;}
.x36{left:1020.906133pt;}
.x35{left:1024.659467pt;}
.x34{left:1033.992800pt;}
.x43{left:1133.939200pt;}
.x86{left:1251.288933pt;}
.x3f{left:1260.622267pt;}
}




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