
    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_ee5b685c61936308c27a6830.woff')format("woff");}.ff1{font-family:ff1;line-height:1.084961;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_c7526f9c88d6dfa9e359b3d2.woff')format("woff");}.ff2{font-family:ff2;line-height:0.854980;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_922ee72709b205fa1ecb52d3.woff')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_71b78eff0421902d47dc9016.woff')format("woff");}.ff4{font-family:ff4;line-height:1.106934;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_7457c76339e540abd984d552.woff')format("woff");}.ff5{font-family:ff5;line-height:0.929199;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_5d4efae3d092b7a53979aa4f.woff')format("woff");}.ff6{font-family:ff6;line-height:0.691406;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_43ff6f987a9771b4c9701a34.woff')format("woff");}.ff7{font-family:ff7;line-height:0.691406;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_fbc7bb4311e73924ad0e0b7a.woff')format("woff");}.ff8{font-family:ff8;line-height:1.284668;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_e5230c93823b6929478f45bf.woff')format("woff");}.ff9{font-family:ff9;line-height:1.339355;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_81dab7151b9217666352e7f2.woff')format("woff");}.ffa{font-family:ffa;line-height:1.284180;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_97f50f3475f9324d6241a07b.woff')format("woff");}.ffb{font-family:ffb;line-height:0.774902;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_3579031dcbe346125305bb72.woff')format("woff");}.ffc{font-family:ffc;line-height:0.708008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_0e1f426a30150151feb35243.woff')format("woff");}.ffd{font-family:ffd;line-height:0.956543;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_2a02242e56592e75010d7718.woff')format("woff");}.ffe{font-family:ffe;line-height:1.284180;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_25945ec4ff79155a53908452.woff')format("woff");}.fff{font-family:fff;line-height:0.831000;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_6298b7c28008e923e2eef84a.woff')format("woff");}.ff10{font-family:ff10;line-height:1.402354;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_5bcc3e36e0f238b43064390f.woff')format("woff");}.ff11{font-family:ff11;line-height:1.049805;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_98aed3b5601f3db8041b8e6b.woff')format("woff");}.ff12{font-family:ff12;line-height:0.909668;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_747e8424d83d5bd4a3c6f2c7.woff')format("woff");}.ff13{font-family:ff13;line-height:1.432129;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_509a9936ab88e4f4cee7b73f.woff')format("woff");}.ff14{font-family:ff14;line-height:1.402354;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;}
.m30{transform:matrix(0.000000,-0.259449,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.259449,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.259449,0.250000,0.000000,0,0);}
.m2e{transform:matrix(0.000000,-0.266547,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.266547,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.266547,0.250000,0.000000,0,0);}
.m2c{transform:matrix(0.000000,-0.309295,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.309295,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.309295,0.250000,0.000000,0,0);}
.m23{transform:matrix(0.154692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154692,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.156679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156679,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.158492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158492,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.159395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159395,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.159694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159694,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.160150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160150,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.162926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162926,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.166817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166817,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.170280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170280,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.178891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178891,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.181208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181208,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.182514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182514,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.182955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182955,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.183023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183023,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.183324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183324,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.185365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185365,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.186717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186717,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.186983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186983,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.189120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189120,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.189184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189184,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.189647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189647,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.189959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189959,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.196031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196031,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.202072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202072,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.234480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234480,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.235671,0.000000,-0.078549,0.237340,0,0);-ms-transform:matrix(0.235671,0.000000,-0.078549,0.237340,0,0);-webkit-transform:matrix(0.235671,0.000000,-0.078549,0.237340,0,0);}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m26{transform:matrix(0.238417,0.000000,-0.079464,0.237035,0,0);-ms-transform:matrix(0.238417,0.000000,-0.079464,0.237035,0,0);-webkit-transform:matrix(0.238417,0.000000,-0.079464,0.237035,0,0);}
.m14{transform:matrix(0.239960,0.000000,-0.079979,0.236862,0,0);-ms-transform:matrix(0.239960,0.000000,-0.079979,0.236862,0,0);-webkit-transform:matrix(0.239960,0.000000,-0.079979,0.236862,0,0);}
.md{transform:matrix(0.240560,0.000000,-0.080179,0.236794,0,0);-ms-transform:matrix(0.240560,0.000000,-0.080179,0.236794,0,0);-webkit-transform:matrix(0.240560,0.000000,-0.080179,0.236794,0,0);}
.m2f{transform:matrix(0.240895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240895,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.245909,0.000000,-0.081962,0.236183,0,0);-ms-transform:matrix(0.245909,0.000000,-0.081962,0.236183,0,0);-webkit-transform:matrix(0.245909,0.000000,-0.081962,0.236183,0,0);}
.m8{transform:matrix(0.248242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248242,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);}
.m29{transform:matrix(0.251438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251438,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.251458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251458,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.253270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253270,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.253976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253976,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.254394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254394,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.254688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254688,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.259103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259103,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.260296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260296,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.262526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262526,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.267859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267859,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.271906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271906,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.275217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275217,0.000000,0.000000,0.250000,0,0);}
.v7{vertical-align:-57.097637px;}
.vb{vertical-align:-51.405488px;}
.v15{vertical-align:-43.995448px;}
.v1a{vertical-align:-39.885888px;}
.vf{vertical-align:-38.832753px;}
.vc{vertical-align:-37.358124px;}
.v14{vertical-align:-34.599435px;}
.v19{vertical-align:-31.367545px;}
.v2{vertical-align:-25.200000px;}
.v4{vertical-align:-19.024243px;}
.v9{vertical-align:-17.121818px;}
.v16{vertical-align:-14.400000px;}
.v10{vertical-align:-9.360000px;}
.v1b{vertical-align:-5.380445px;}
.v12{vertical-align:-1.215955px;}
.v0{vertical-align:0.000000px;}
.v18{vertical-align:1.102374px;}
.v11{vertical-align:2.542451px;}
.v13{vertical-align:3.758405px;}
.v6{vertical-align:9.360000px;}
.v17{vertical-align:14.400000px;}
.v8{vertical-align:17.121818px;}
.v5{vertical-align:19.024243px;}
.v3{vertical-align:20.240819px;}
.v1{vertical-align:30.240000px;}
.ve{vertical-align:32.790006px;}
.vd{vertical-align:46.909364px;}
.va{vertical-align:50.138974px;}
.ls23{letter-spacing:-3.824730px;}
.ls24{letter-spacing:-3.762827px;}
.ls25{letter-spacing:-3.652285px;}
.ls38{letter-spacing:-3.467467px;}
.ls36{letter-spacing:-3.411346px;}
.ls37{letter-spacing:-3.367251px;}
.ls35{letter-spacing:-3.311130px;}
.ls40{letter-spacing:-3.213164px;}
.ls19{letter-spacing:-1.156630px;}
.ls22{letter-spacing:-0.879909px;}
.ls45{letter-spacing:-0.720000px;}
.ls34{letter-spacing:-0.697502px;}
.ls3f{letter-spacing:-0.656981px;}
.ls39{letter-spacing:-0.548928px;}
.ls41{letter-spacing:-0.531184px;}
.ls26{letter-spacing:-0.521800px;}
.ls3{letter-spacing:-0.288000px;}
.ls4{letter-spacing:-0.216000px;}
.lsc{letter-spacing:-0.072000px;}
.ls2{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.072000px;}
.ls6{letter-spacing:0.144000px;}
.ls3e{letter-spacing:0.256200px;}
.ls46{letter-spacing:0.269400px;}
.ls2b{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.432000px;}
.ls2a{letter-spacing:0.468000px;}
.ls9{letter-spacing:0.504000px;}
.ls17{letter-spacing:0.576000px;}
.ls8{letter-spacing:0.792000px;}
.ls27{letter-spacing:1.080000px;}
.ls43{letter-spacing:3.744000px;}
.ls14{letter-spacing:10.800000px;}
.ls5{letter-spacing:18.720000px;}
.ls42{letter-spacing:19.656000px;}
.ls29{letter-spacing:20.376000px;}
.ls2c{letter-spacing:20.556000px;}
.ls28{letter-spacing:22.241520px;}
.ls1{letter-spacing:26.640000px;}
.ls16{letter-spacing:33.984000px;}
.lsb{letter-spacing:48.751910px;}
.ls44{letter-spacing:55.584000px;}
.lsf{letter-spacing:87.847980px;}
.ls12{letter-spacing:100.095738px;}
.lsd{letter-spacing:103.362861px;}
.ls32{letter-spacing:112.438520px;}
.ls13{letter-spacing:112.611593px;}
.ls1f{letter-spacing:124.023389px;}
.lse{letter-spacing:140.304762px;}
.ls21{letter-spacing:146.465375px;}
.ls11{letter-spacing:147.472078px;}
.ls1a{letter-spacing:153.110310px;}
.ls18{letter-spacing:161.470110px;}
.ls33{letter-spacing:188.722787px;}
.ls20{letter-spacing:199.103059px;}
.ls30{letter-spacing:226.347807px;}
.ls2e{letter-spacing:233.307193px;}
.ls1e{letter-spacing:238.393868px;}
.ls31{letter-spacing:245.854211px;}
.ls1c{letter-spacing:257.345515px;}
.ls3d{letter-spacing:268.641285px;}
.ls2f{letter-spacing:299.064392px;}
.ls1d{letter-spacing:329.860626px;}
.ls10{letter-spacing:422.581880px;}
.ls3c{letter-spacing:474.970974px;}
.ls3a{letter-spacing:502.670260px;}
.ls3b{letter-spacing:521.964348px;}
.ls2d{letter-spacing:533.673989px;}
.ls1b{letter-spacing:588.809875px;}
.lsa{letter-spacing:830.279224px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws53{word-spacing:-161.542188px;}
.ws55{word-spacing:-153.182388px;}
.ws58{word-spacing:-146.533597px;}
.ws9{word-spacing:-72.000000px;}
.ws13{word-spacing:-71.949298px;}
.ws63{word-spacing:-66.496200px;}
.ws2{word-spacing:-66.240000px;}
.ws23{word-spacing:-40.110614px;}
.ws5f{word-spacing:-39.528000px;}
.ws3a{word-spacing:-39.013550px;}
.ws17{word-spacing:-25.509072px;}
.wsf{word-spacing:-23.809707px;}
.ws39{word-spacing:-22.745367px;}
.ws18{word-spacing:-19.096225px;}
.ws51{word-spacing:-18.576000px;}
.wsb{word-spacing:-18.144000px;}
.ws8{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.928000px;}
.ws6{word-spacing:-17.784000px;}
.ws24{word-spacing:-17.712000px;}
.ws4{word-spacing:-16.560000px;}
.ws5a{word-spacing:-15.840000px;}
.ws60{word-spacing:-15.552000px;}
.ws1{word-spacing:-13.860000px;}
.ws0{word-spacing:-13.500000px;}
.ws56{word-spacing:-12.420000px;}
.ws66{word-spacing:-12.329400px;}
.ws50{word-spacing:-12.060000px;}
.ws5d{word-spacing:-12.046352px;}
.ws5c{word-spacing:-11.166443px;}
.ws61{word-spacing:-10.921117px;}
.ws3{word-spacing:-10.440000px;}
.ws64{word-spacing:-10.286656px;}
.ws32{word-spacing:-9.943638px;}
.ws46{word-spacing:-7.055233px;}
.ws3e{word-spacing:-6.551721px;}
.ws1b{word-spacing:-0.076385px;}
.ws2e{word-spacing:-0.073060px;}
.ws7{word-spacing:-0.072000px;}
.ws41{word-spacing:-0.071063px;}
.ws1c{word-spacing:-0.048240px;}
.ws21{word-spacing:-0.042571px;}
.ws5{word-spacing:0.000000px;}
.ws35{word-spacing:12.642709px;}
.ws4b{word-spacing:13.224137px;}
.wse{word-spacing:18.222901px;}
.ws14{word-spacing:18.845869px;}
.ws1e{word-spacing:20.611440px;}
.ws26{word-spacing:21.003639px;}
.ws34{word-spacing:22.460467px;}
.ws4f{word-spacing:23.075520px;}
.ws4a{word-spacing:26.818298px;}
.ws4c{word-spacing:26.827881px;}
.ws47{word-spacing:27.029127px;}
.ws45{word-spacing:27.057876px;}
.ws3d{word-spacing:27.565938px;}
.ws15{word-spacing:35.390914px;}
.ws2c{word-spacing:37.442839px;}
.ws27{word-spacing:37.600737px;}
.ws2a{word-spacing:37.648107px;}
.wsc{word-spacing:37.650378px;}
.ws25{word-spacing:37.837585px;}
.ws16{word-spacing:39.359452px;}
.ws20{word-spacing:40.128035px;}
.ws1d{word-spacing:40.151721px;}
.ws1f{word-spacing:40.605425px;}
.ws2b{word-spacing:41.168961px;}
.ws31{word-spacing:45.335563px;}
.ws59{word-spacing:52.053951px;}
.ws33{word-spacing:77.970369px;}
.ws42{word-spacing:81.986469px;}
.ws3c{word-spacing:95.069378px;}
.ws44{word-spacing:95.370687px;}
.ws12{word-spacing:106.356224px;}
.wsd{word-spacing:106.973432px;}
.ws57{word-spacing:132.977844px;}
.ws52{word-spacing:146.935796px;}
.ws54{word-spacing:152.551177px;}
.ws29{word-spacing:154.328119px;}
.ws62{word-spacing:156.720475px;}
.ws5e{word-spacing:173.243684px;}
.ws49{word-spacing:204.215445px;}
.ws5b{word-spacing:237.995477px;}
.ws4e{word-spacing:252.543268px;}
.ws30{word-spacing:257.084555px;}
.ws38{word-spacing:266.113283px;}
.ws3f{word-spacing:278.335140px;}
.ws65{word-spacing:282.609864px;}
.ws2f{word-spacing:286.678478px;}
.ws1a{word-spacing:341.906360px;}
.ws11{word-spacing:410.111912px;}
.ws3b{word-spacing:412.967802px;}
.ws10{word-spacing:415.713831px;}
.ws43{word-spacing:430.670209px;}
.ws19{word-spacing:454.047664px;}
.ws28{word-spacing:454.706143px;}
.ws48{word-spacing:504.762285px;}
.ws37{word-spacing:507.888524px;}
.ws2d{word-spacing:541.521513px;}
.ws4d{word-spacing:556.358979px;}
.ws22{word-spacing:796.268105px;}
.ws40{word-spacing:858.969466px;}
.ws36{word-spacing:929.292151px;}
._17{margin-left:-1963.735440px;}
._1e{margin-left:-1939.861920px;}
._29{margin-left:-1593.819360px;}
._28{margin-left:-1413.420000px;}
._24{margin-left:-1065.395520px;}
._25{margin-left:-914.844000px;}
._2c{margin-left:-737.116560px;}
._6{margin-left:-701.951760px;}
._c{margin-left:-609.496560px;}
._8d{margin-left:-590.867547px;}
._a{margin-left:-582.939120px;}
._27{margin-left:-571.884480px;}
._8f{margin-left:-556.541165px;}
._d{margin-left:-525.175200px;}
._72{margin-left:-490.713454px;}
._5d{margin-left:-484.788922px;}
._b{margin-left:-459.988560px;}
._74{margin-left:-448.557315px;}
._7b{margin-left:-421.833618px;}
._78{margin-left:-408.072563px;}
._2{margin-left:-406.740000px;}
._7d{margin-left:-405.228828px;}
._75{margin-left:-395.054338px;}
._88{margin-left:-393.681737px;}
._66{margin-left:-387.270147px;}
._5a{margin-left:-371.913340px;}
._79{margin-left:-367.927156px;}
._2b{margin-left:-358.320000px;}
._0{margin-left:-355.998000px;}
._8a{margin-left:-349.043525px;}
._3{margin-left:-345.564000px;}
._82{margin-left:-342.870745px;}
._8b{margin-left:-337.808989px;}
._41{margin-left:-326.673498px;}
._7c{margin-left:-322.547279px;}
._61{margin-left:-321.454588px;}
._73{margin-left:-312.720284px;}
._1{margin-left:-305.802000px;}
._5{margin-left:-298.617120px;}
._7e{margin-left:-288.155900px;}
._87{margin-left:-285.670652px;}
._76{margin-left:-278.041061px;}
._52{margin-left:-268.978383px;}
._50{margin-left:-263.625077px;}
._f{margin-left:-253.116000px;}
._70{margin-left:-251.807877px;}
._5f{margin-left:-250.264245px;}
._42{margin-left:-244.778114px;}
._44{margin-left:-235.390240px;}
._58{margin-left:-232.769343px;}
._59{margin-left:-227.999084px;}
._84{margin-left:-226.682629px;}
._65{margin-left:-224.521915px;}
._6b{margin-left:-220.357153px;}
._63{margin-left:-218.914200px;}
._5c{margin-left:-217.292043px;}
._4f{margin-left:-214.494159px;}
._6c{margin-left:-212.224781px;}
._51{margin-left:-209.929301px;}
._53{margin-left:-204.314420px;}
._85{margin-left:-202.459563px;}
._47{margin-left:-197.298755px;}
._48{margin-left:-190.316104px;}
._54{margin-left:-188.676053px;}
._6d{margin-left:-184.714135px;}
._81{margin-left:-181.868938px;}
._46{margin-left:-178.377215px;}
._40{margin-left:-173.383544px;}
._43{margin-left:-168.818875px;}
._64{margin-left:-161.916822px;}
._6a{margin-left:-159.239498px;}
._68{margin-left:-157.181465px;}
._71{margin-left:-152.421469px;}
._5b{margin-left:-146.232969px;}
._80{margin-left:-144.965221px;}
._7a{margin-left:-141.303574px;}
._2a{margin-left:-128.539440px;}
._4e{margin-left:-118.092470px;}
._57{margin-left:-114.776859px;}
._83{margin-left:-112.059097px;}
._8e{margin-left:-105.119760px;}
._45{margin-left:-94.161792px;}
._e{margin-left:-71.023680px;}
._60{margin-left:-52.656219px;}
._6f{margin-left:-50.387190px;}
._69{margin-left:-48.663202px;}
._1f{margin-left:-45.185760px;}
._49{margin-left:-38.933162px;}
._12{margin-left:-17.318880px;}
._23{margin-left:-13.032000px;}
._13{margin-left:-11.971440px;}
._15{margin-left:-10.500480px;}
._8{margin-left:-8.964000px;}
._14{margin-left:-6.408000px;}
._19{margin-left:-5.256000px;}
._9{margin-left:-4.123440px;}
._89{margin-left:-2.763533px;}
._4{margin-left:-1.398960px;}
._7{width:1.314720px;}
._2f{width:2.494560px;}
._22{width:3.744000px;}
._16{width:5.680080px;}
._10{width:7.291440px;}
._11{width:8.332560px;}
._31{width:9.739440px;}
._18{width:10.819440px;}
._1a{width:11.880000px;}
._21{width:13.262400px;}
._20{width:14.810400px;}
._1d{width:15.909840px;}
._1c{width:16.992000px;}
._1b{width:19.716480px;}
._26{width:21.395520px;}
._4b{width:22.584960px;}
._3d{width:24.438960px;}
._2e{width:25.829040px;}
._2d{width:27.534960px;}
._35{width:28.560000px;}
._90{width:29.706960px;}
._39{width:30.900240px;}
._38{width:32.184000px;}
._3b{width:33.840000px;}
._3c{width:34.973280px;}
._3a{width:37.614960px;}
._8c{width:40.073040px;}
._30{width:41.214960px;}
._92{width:42.300000px;}
._33{width:44.928000px;}
._34{width:46.348080px;}
._91{width:49.464000px;}
._37{width:52.971120px;}
._36{width:54.246960px;}
._32{width:56.808000px;}
._86{width:61.050960px;}
._94{width:62.748000px;}
._95{width:64.020240px;}
._93{width:68.472000px;}
._96{width:72.000000px;}
._97{width:73.428480px;}
._3f{width:78.781388px;}
._67{width:81.480000px;}
._4d{width:82.865310px;}
._4c{width:90.753951px;}
._77{width:108.720000px;}
._7f{width:126.000000px;}
._6e{width:130.320000px;}
._3e{width:143.332667px;}
._5e{width:157.680000px;}
._62{width:162.120000px;}
._4a{width:197.352000px;}
._55{width:198.648000px;}
._56{width:241.582750px;}
.fc3{color:rgb(255,0,0);}
.fc4{color:rgb(63,63,63);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(148,54,52);}
.fc0{color:rgb(0,0,255);}
.fs44{font-size:31.244339px;}
.fs43{font-size:31.338733px;}
.fs3d{font-size:33.171430px;}
.fs3e{font-size:33.271646px;}
.fs38{font-size:34.846249px;}
.fs45{font-size:35.472872px;}
.fs37{font-size:36.589179px;}
.fs3f{font-size:36.657848px;}
.fs36{font-size:36.699721px;}
.fs42{font-size:36.907966px;}
.fs40{font-size:37.002360px;}
.fs3c{font-size:39.184378px;}
.fs3a{font-size:39.284594px;}
.fs1d{font-size:39.774554px;}
.fs2e{font-size:39.906281px;}
.fs22{font-size:41.430541px;}
.fs5{font-size:41.760000px;}
.fs1a{font-size:42.570027px;}
.fs15{font-size:42.571002px;}
.fs35{font-size:43.221659px;}
.fs33{font-size:43.332200px;}
.fs32{font-size:44.252194px;}
.fs10{font-size:44.486676px;}
.fs41{font-size:45.497799px;}
.fs30{font-size:46.794840px;}
.fs1{font-size:48.240000px;}
.fs3b{font-size:48.304016px;}
.fs8{font-size:50.848916px;}
.fs39{font-size:51.120000px;}
.fs34{font-size:53.280920px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs1e{font-size:68.222740px;}
.fs2f{font-size:68.352308px;}
.fs23{font-size:71.062932px;}
.fsc{font-size:71.949298px;}
.fs6{font-size:72.000000px;}
.fs31{font-size:72.077509px;}
.fs1b{font-size:73.059555px;}
.fs16{font-size:73.061227px;}
.fs25{font-size:75.220276px;}
.fs12{font-size:75.893905px;}
.fsf{font-size:76.384899px;}
.fs2c{font-size:77.057558px;}
.fs1c{font-size:77.112081px;}
.fs17{font-size:77.135866px;}
.fs11{font-size:80.459529px;}
.fs7{font-size:81.360000px;}
.fs4{font-size:84.240000px;}
.fsb{font-size:95.100821px;}
.fs18{font-size:96.498979px;}
.fs13{font-size:96.501189px;}
.fs28{font-size:97.187655px;}
.fs21{font-size:97.607908px;}
.fs9{font-size:98.430913px;}
.fs19{font-size:99.953583px;}
.fs14{font-size:99.955871px;}
.fs2b{font-size:100.386232px;}
.fse{font-size:100.828787px;}
.fsd{font-size:104.337909px;}
.fs24{font-size:106.738320px;}
.fs1f{font-size:107.296737px;}
.fs2d{font-size:109.840933px;}
.fs26{font-size:111.510774px;}
.fs27{font-size:113.899879px;}
.fs20{font-size:114.320131px;}
.fs29{font-size:114.623533px;}
.fs2a{font-size:117.070108px;}
.fsa{font-size:117.422663px;}
.y0{bottom:0.000000px;}
.y2{bottom:2.520000px;}
.yb3{bottom:3.424364px;}
.y75{bottom:3.847314px;}
.y88{bottom:3.955108px;}
.y9b{bottom:4.213461px;}
.yb5{bottom:4.214591px;}
.y9a{bottom:5.196448px;}
.ydd{bottom:5.498795px;}
.y8d{bottom:5.663454px;}
.yd0{bottom:5.762250px;}
.y141{bottom:7.150328px;}
.y61{bottom:7.486455px;}
.y5e{bottom:7.555784px;}
.y60{bottom:7.590449px;}
.y124{bottom:7.591347px;}
.y5f{bottom:7.625114px;}
.y68{bottom:7.902424px;}
.y66{bottom:7.975606px;}
.y67{bottom:8.012196px;}
.yf2{bottom:8.380359px;}
.yb6{bottom:8.495046px;}
.yb2{bottom:8.527977px;}
.yde{bottom:9.943908px;}
.yab{bottom:10.463237px;}
.yd1{bottom:10.476805px;}
.ya7{bottom:12.800453px;}
.y81{bottom:13.663074px;}
.y72{bottom:13.663387px;}
.ya9{bottom:13.843195px;}
.yb4{bottom:16.133866px;}
.y94{bottom:16.923789px;}
.y96{bottom:17.731192px;}
.y97{bottom:17.941318px;}
.y7{bottom:18.000000px;}
.ya2{bottom:18.047820px;}
.y87{bottom:18.229517px;}
.y74{bottom:18.229935px;}
.y80{bottom:18.301734px;}
.y71{bottom:18.302153px;}
.y7f{bottom:18.337105px;}
.y70{bottom:18.337525px;}
.ya6{bottom:18.481961px;}
.y9c{bottom:22.189896px;}
.y93{bottom:22.225876px;}
.y92{bottom:22.296398px;}
.ya1{bottom:22.471983px;}
.y4{bottom:24.660000px;}
.ya8{bottom:26.427436px;}
.y82{bottom:27.757679px;}
.y73{bottom:27.758314px;}
.y83{bottom:29.770899px;}
.yac{bottom:29.771581px;}
.y76{bottom:29.806953px;}
.yaa{bottom:30.095825px;}
.y95{bottom:30.160297px;}
.y9d{bottom:33.286283px;}
.ya3{bottom:33.391346px;}
.y98{bottom:33.706535px;}
.y142{bottom:33.934562px;}
.yb{bottom:35.806500px;}
.y125{bottom:36.027580px;}
.y147{bottom:37.686715px;}
.y14a{bottom:37.804707px;}
.yf3{bottom:39.746240px;}
.y99{bottom:40.237716px;}
.y6{bottom:40.320000px;}
.y12d{bottom:40.612453px;}
.y130{bottom:41.163640px;}
.y12b{bottom:41.188694px;}
.y12f{bottom:41.464287px;}
.y3{bottom:42.480000px;}
.yfc{bottom:44.803505px;}
.y100{bottom:45.411483px;}
.yfa{bottom:45.466753px;}
.yff{bottom:45.743107px;}
.y144{bottom:50.949040px;}
.yd{bottom:51.106500px;}
.yc{bottom:52.726500px;}
.ya{bottom:52.906500px;}
.y128{bottom:54.091478px;}
.y127{bottom:54.667719px;}
.y5{bottom:56.160000px;}
.yf6{bottom:59.671314px;}
.yf5{bottom:60.306926px;}
.y14c{bottom:74.287901px;}
.y132{bottom:78.869835px;}
.y148{bottom:86.606288px;}
.y103{bottom:87.002657px;}
.yf{bottom:87.876000px;}
.y14b{bottom:87.951400px;}
.y12c{bottom:91.947997px;}
.yfe{bottom:92.004652px;}
.y131{bottom:93.376072px;}
.yfb{bottom:101.428300px;}
.y102{bottom:103.003514px;}
.ye{bottom:108.216000px;}
.y146{bottom:121.362076px;}
.y149{bottom:123.391542px;}
.y9{bottom:123.703500px;}
.y145{bottom:124.052299px;}
.y12a{bottom:128.847454px;}
.y12e{bottom:131.002094px;}
.y129{bottom:131.703604px;}
.yf9{bottom:142.134038px;}
.yf8{bottom:143.714779px;}
.yfd{bottom:143.935862px;}
.y101{bottom:144.543839px;}
.yf7{bottom:145.284466px;}
.y143{bottom:149.491421px;}
.y126{bottom:158.711763px;}
.yf4{bottom:175.075354px;}
.yf0{bottom:203.970000px;}
.y13f{bottom:204.510000px;}
.yd6{bottom:205.410000px;}
.y28{bottom:207.930000px;}
.y16c{bottom:210.450000px;}
.y115{bottom:211.890000px;}
.y4a{bottom:215.670000px;}
.y58{bottom:216.210000px;}
.y122{bottom:217.290000px;}
.y13e{bottom:223.590000px;}
.yef{bottom:224.850000px;}
.y84{bottom:226.110000px;}
.y16b{bottom:231.150000px;}
.y49{bottom:236.370000px;}
.y57{bottom:236.910000px;}
.y121{bottom:237.990000px;}
.y167{bottom:242.130000px;}
.yd5{bottom:242.385000px;}
.ybd{bottom:245.910000px;}
.y114{bottom:247.530000px;}
.y16a{bottom:251.850000px;}
.yd4{bottom:252.750000px;}
.y13d{bottom:253.470000px;}
.y27{bottom:255.270000px;}
.y48{bottom:257.070000px;}
.y56{bottom:257.610000px;}
.y120{bottom:258.690000px;}
.yee{bottom:260.130000px;}
.y7d{bottom:261.750000px;}
.y7e{bottom:261.810000px;}
.y166{bottom:262.830000px;}
.ybc{bottom:266.790000px;}
.y169{bottom:272.550000px;}
.yed{bottom:275.250000px;}
.yf1{bottom:275.265000px;}
.y47{bottom:277.770000px;}
.y55{bottom:278.310000px;}
.y11f{bottom:279.390000px;}
.y165{bottom:283.530000px;}
.y113{bottom:283.710000px;}
.y26{bottom:285.330000px;}
.ybb{bottom:287.490000px;}
.yd3{bottom:293.115000px;}
.y168{bottom:293.295000px;}
.y46{bottom:298.515000px;}
.y164{bottom:304.275000px;}
.y112{bottom:304.635000px;}
.yba{bottom:308.235000px;}
.y54{bottom:313.815000px;}
.yd2{bottom:313.995000px;}
.y11e{bottom:314.715000px;}
.y25{bottom:315.075000px;}
.y45{bottom:319.215000px;}
.y163{bottom:324.975000px;}
.y7c{bottom:328.035000px;}
.yb9{bottom:328.935000px;}
.y11d{bottom:333.615000px;}
.y53{bottom:334.695000px;}
.y44{bottom:339.915000px;}
.y111{bottom:340.095000px;}
.y24{bottom:344.955000px;}
.y162{bottom:345.675000px;}
.y7b{bottom:348.915000px;}
.yb8{bottom:349.635000px;}
.y52{bottom:355.395000px;}
.y43{bottom:360.615000px;}
.y110{bottom:360.975000px;}
.y11c{bottom:363.495000px;}
.y161{bottom:366.375000px;}
.y7a{bottom:369.615000px;}
.ycf{bottom:371.610000px;}
.y23{bottom:374.835000px;}
.y51{bottom:376.095000px;}
.y42{bottom:381.315000px;}
.y10f{bottom:381.675000px;}
.yce{bottom:382.035000px;}
.yb7{bottom:385.095000px;}
.y160{bottom:387.075000px;}
.y79{bottom:390.315000px;}
.y50{bottom:396.795000px;}
.y41{bottom:402.015000px;}
.y10e{bottom:402.375000px;}
.y22{bottom:404.715000px;}
.yb1{bottom:405.960000px;}
.yb0{bottom:405.975000px;}
.y15f{bottom:407.775000px;}
.y78{bottom:411.015000px;}
.y4f{bottom:417.495000px;}
.ycd{bottom:422.535000px;}
.y40{bottom:422.715000px;}
.y10d{bottom:423.075000px;}
.y15e{bottom:428.115000px;}
.y21{bottom:434.415000px;}
.yaf{bottom:436.935000px;}
.y4e{bottom:438.195000px;}
.ycc{bottom:443.415000px;}
.y3f{bottom:444.135000px;}
.y6f{bottom:446.460000px;}
.y77{bottom:446.475000px;}
.yae{bottom:453.135000px;}
.y10c{bottom:458.355000px;}
.y4d{bottom:458.895000px;}
.ycb{bottom:464.115000px;}
.y20{bottom:464.295000px;}
.y3e{bottom:467.175000px;}
.yad{bottom:471.135000px;}
.yec{bottom:472.035000px;}
.y10b{bottom:477.255000px;}
.y4c{bottom:479.595000px;}
.yca{bottom:484.635000px;}
.y15d{bottom:484.995000px;}
.yeb{bottom:492.735000px;}
.y13c{bottom:493.275000px;}
.y1f{bottom:494.175000px;}
.y3d{bottom:500.295000px;}
.ya5{bottom:500.460000px;}
.yc9{bottom:505.335000px;}
.y15c{bottom:505.695000px;}
.y10a{bottom:507.315000px;}
.y6e{bottom:512.535000px;}
.yea{bottom:513.255000px;}
.y13b{bottom:514.155000px;}
.ya4{bottom:518.475000px;}
.y3c{bottom:520.995000px;}
.y1e{bottom:524.055000px;}
.yc8{bottom:526.035000px;}
.y15b{bottom:526.395000px;}
.y6d{bottom:533.445000px;}
.ye9{bottom:534.525000px;}
.y13a{bottom:534.885000px;}
.y3b{bottom:541.725000px;}
.yc7{bottom:546.765000px;}
.y15a{bottom:547.125000px;}
.y1d{bottom:553.785000px;}
.ye8{bottom:555.225000px;}
.y3a{bottom:562.425000px;}
.ya0{bottom:566.910000px;}
.y9f{bottom:566.925000px;}
.y159{bottom:567.825000px;}
.y6c{bottom:569.085000px;}
.y139{bottom:570.525000px;}
.ye7{bottom:575.925000px;}
.yc6{bottom:582.405000px;}
.y39{bottom:583.125000px;}
.y1c{bottom:583.665000px;}
.y6b{bottom:587.445000px;}
.y158{bottom:588.525000px;}
.y6a{bottom:589.785000px;}
.ye6{bottom:596.265000px;}
.yc5{bottom:603.285000px;}
.y38{bottom:603.825000px;}
.y138{bottom:606.525000px;}
.y157{bottom:609.225000px;}
.y1b{bottom:613.545000px;}
.yc4{bottom:623.985000px;}
.y37{bottom:624.525000px;}
.y65{bottom:626.835000px;}
.y69{bottom:626.865000px;}
.y137{bottom:627.405000px;}
.ye5{bottom:629.385000px;}
.y156{bottom:629.925000px;}
.y11b{bottom:630.465000px;}
.y9e{bottom:633.345000px;}
.y91{bottom:633.360000px;}
.y1a{bottom:643.425000px;}
.y36{bottom:645.225000px;}
.ye4{bottom:650.085000px;}
.y155{bottom:650.625000px;}
.y11a{bottom:651.345000px;}
.yc3{bottom:659.445000px;}
.y136{bottom:662.685000px;}
.y35{bottom:665.925000px;}
.ye3{bottom:670.785000px;}
.y154{bottom:671.325000px;}
.y119{bottom:672.045000px;}
.y64{bottom:672.585000px;}
.y19{bottom:673.305000px;}
.yc2{bottom:680.325000px;}
.y135{bottom:681.585000px;}
.y34{bottom:686.625000px;}
.ye2{bottom:691.485000px;}
.y153{bottom:692.025000px;}
.y63{bottom:693.465000px;}
.yc1{bottom:701.025000px;}
.y18{bottom:703.005000px;}
.y90{bottom:704.265000px;}
.y118{bottom:707.145000px;}
.y33{bottom:707.325000px;}
.y134{bottom:711.645000px;}
.y140{bottom:711.675000px;}
.ye1{bottom:712.185000px;}
.y152{bottom:712.545000px;}
.y8f{bottom:725.145000px;}
.y117{bottom:726.225000px;}
.y32{bottom:728.025000px;}
.y5d{bottom:729.060000px;}
.y62{bottom:729.105000px;}
.ye0{bottom:732.885000px;}
.yc0{bottom:736.485000px;}
.y8e{bottom:745.845000px;}
.y17{bottom:746.205000px;}
.y31{bottom:748.725000px;}
.y116{bottom:756.105000px;}
.y123{bottom:756.225000px;}
.ybf{bottom:757.365000px;}
.y16{bottom:765.285000px;}
.ydf{bottom:768.345000px;}
.y151{bottom:768.885000px;}
.y30{bottom:769.425000px;}
.y5c{bottom:775.050000px;}
.ybe{bottom:777.750000px;}
.y8c{bottom:781.485000px;}
.y8b{bottom:781.530000px;}
.y15{bottom:784.230000px;}
.ydc{bottom:784.860000px;}
.y150{bottom:789.810000px;}
.y2f{bottom:790.170000px;}
.y109{bottom:794.310000px;}
.ydb{bottom:795.390000px;}
.y5b{bottom:795.930000px;}
.y14{bottom:802.770000px;}
.y14f{bottom:810.510000px;}
.y2e{bottom:810.870000px;}
.y108{bottom:815.190000px;}
.y5a{bottom:816.270000px;}
.yda{bottom:816.630000px;}
.y13{bottom:821.850000px;}
.y8a{bottom:827.430000px;}
.y14e{bottom:831.210000px;}
.y2d{bottom:831.570000px;}
.y107{bottom:835.890000px;}
.yd9{bottom:837.330000px;}
.y89{bottom:848.310000px;}
.y14d{bottom:851.730000px;}
.y59{bottom:852.090000px;}
.y2c{bottom:852.270000px;}
.y106{bottom:856.590000px;}
.yd8{bottom:858.030000px;}
.y12{bottom:863.070000px;}
.y2b{bottom:872.970000px;}
.y105{bottom:877.290000px;}
.y86{bottom:883.710000px;}
.y85{bottom:883.770000px;}
.y11{bottom:887.010000px;}
.yd7{bottom:893.490000px;}
.y2a{bottom:893.670000px;}
.y133{bottom:894.930000px;}
.y10{bottom:911.130000px;}
.y104{bottom:912.930000px;}
.y29{bottom:914.010000px;}
.y4b{bottom:914.370000px;}
.y8{bottom:934.170000px;}
.y1{bottom:952.890000px;}
.h1c{height:26.999249px;}
.h32{height:26.999998px;}
.h17{height:27.000166px;}
.h52{height:31.499555px;}
.h6a{height:32.586870px;}
.h69{height:32.685319px;}
.h62{height:34.596765px;}
.h63{height:34.701287px;}
.h5d{height:36.343549px;}
.h6b{height:36.997097px;}
.h5c{height:38.161371px;}
.h64{height:38.232989px;}
.h5b{height:38.276662px;}
.h66{height:38.592305px;}
.h16{height:38.633259px;}
.h4e{height:39.146347px;}
.h38{height:40.641581px;}
.h3c{height:40.661811px;}
.h5f{height:40.972604px;}
.h2d{height:41.759368px;}
.h26{height:41.760324px;}
.h4a{height:41.781110px;}
.h68{height:42.745631px;}
.h55{height:43.409501px;}
.ha{height:45.184219px;}
.h58{height:45.194131px;}
.h61{height:45.382099px;}
.h53{height:45.903727px;}
.h2{height:47.144531px;}
.h2a{height:47.173611px;}
.h23{height:47.174691px;}
.h67{height:47.452783px;}
.h6{height:47.610000px;}
.h5{height:48.175664px;}
.h4{height:48.616875px;}
.h5a{height:48.837245px;}
.h60{height:50.379579px;}
.h34{height:51.824877px;}
.h8{height:52.173281px;}
.h3b{height:52.637924px;}
.h4c{height:54.118106px;}
.h3{height:54.421875px;}
.h59{height:55.570334px;}
.h3f{height:55.717363px;}
.h21{height:56.216335px;}
.h4b{height:57.078279px;}
.h31{height:57.118665px;}
.h28{height:57.136284px;}
.h10{height:58.042969px;}
.h20{height:59.598196px;}
.h9{height:60.226875px;}
.hf{height:65.010937px;}
.h12{height:65.588555px;}
.h7{height:66.592500px;}
.hd{height:66.757500px;}
.h56{height:66.923577px;}
.h4f{height:67.050677px;}
.h3e{height:69.744381px;}
.h1a{height:70.443333px;}
.h15{height:70.628906px;}
.h14{height:70.664062px;}
.h54{height:70.704939px;}
.h2b{height:71.478980px;}
.h24{height:71.480617px;}
.h2f{height:71.703957px;}
.h29{height:71.705599px;}
.h42{height:71.989098px;}
.h37{height:72.300389px;}
.hc{height:72.326250px;}
.h30{height:72.382640px;}
.h48{height:72.384297px;}
.h13{height:72.562500px;}
.h18{height:72.910007px;}
.h50{height:74.004654px;}
.h2c{height:74.037883px;}
.h25{height:74.039578px;}
.h11{height:74.074219px;}
.h47{height:74.358357px;}
.h1{height:74.370000px;}
.h1e{height:74.686167px;}
.h1f{height:74.967601px;}
.h1b{height:74.994235px;}
.h1d{height:77.285453px;}
.h43{height:79.063492px;}
.h35{height:79.477124px;}
.h51{height:80.464922px;}
.h4d{height:81.361668px;}
.h22{height:81.922500px;}
.h40{height:82.598557px;}
.he{height:82.676953px;}
.h33{height:84.045395px;}
.h41{height:84.368221px;}
.h36{height:84.679511px;}
.hb{height:84.898125px;}
.h45{height:84.904248px;}
.h46{height:86.716482px;}
.h19{height:86.977627px;}
.h44{height:87.550945px;}
.h2e{height:89.934057px;}
.h27{height:89.936116px;}
.h39{height:90.780555px;}
.h3d{height:90.800785px;}
.h49{height:92.837308px;}
.h3a{height:137.683473px;}
.h65{height:164.205000px;}
.h5e{height:174.375000px;}
.h57{height:192.352963px;}
.h0{height:1134.000000px;}
.w11{width:38.174872px;}
.w12{width:72.001197px;}
.w6{width:79.729500px;}
.w13{width:80.997553px;}
.wc{width:120.376610px;}
.w2{width:148.716000px;}
.wa{width:166.498004px;}
.wf{width:183.225463px;}
.w1{width:185.055000px;}
.wb{width:186.680660px;}
.w10{width:186.831637px;}
.w5{width:187.575000px;}
.w3{width:191.539500px;}
.w8{width:211.494249px;}
.w7{width:214.874283px;}
.w4{width:234.255000px;}
.we{width:278.993213px;}
.w9{width:280.051601px;}
.wd{width:292.265606px;}
.w14{width:463.053039px;}
.w16{width:471.388989px;}
.w15{width:487.135796px;}
.w0{width:783.000000px;}
.x0{left:0.000000px;}
.x2{left:1.785000px;}
.x38{left:4.237158px;}
.x10{left:8.269500px;}
.x78{left:9.799223px;}
.x8{left:11.689500px;}
.x7a{left:13.440833px;}
.x2f{left:16.473095px;}
.xe{left:18.705000px;}
.x46{left:21.163014px;}
.x3f{left:22.573662px;}
.x9{left:26.983500px;}
.x74{left:31.681178px;}
.x28{left:34.801324px;}
.x36{left:35.942251px;}
.x24{left:38.760319px;}
.x8e{left:40.582117px;}
.xc{left:42.870000px;}
.x99{left:43.886309px;}
.x8f{left:45.352337px;}
.x73{left:47.483965px;}
.x35{left:50.042155px;}
.x45{left:52.378983px;}
.x3e{left:53.671686px;}
.x56{left:55.712382px;}
.x7f{left:57.049564px;}
.x65{left:58.331419px;}
.x30{left:59.684650px;}
.x7{left:61.903500px;}
.x3a{left:65.855345px;}
.x6e{left:67.141629px;}
.x4a{left:71.687790px;}
.x5d{left:74.087435px;}
.x69{left:79.558859px;}
.x41{left:82.064538px;}
.x2c{left:83.370697px;}
.x3d{left:85.173132px;}
.x7e{left:90.850425px;}
.x9b{left:92.484144px;}
.x6d{left:95.054121px;}
.x25{left:96.665828px;}
.x4{left:98.850000px;}
.x29{left:100.699138px;}
.x5{left:101.910000px;}
.x55{left:106.013714px;}
.x3b{left:108.186210px;}
.x6c{left:109.192046px;}
.x64{left:110.841032px;}
.x48{left:112.654903px;}
.x44{left:114.775086px;}
.x57{left:117.565578px;}
.x70{left:119.524513px;}
.x61{left:123.030578px;}
.x42{left:124.135248px;}
.x80{left:126.295315px;}
.x6{left:128.926500px;}
.x3c{left:131.674696px;}
.x5a{left:133.467560px;}
.x37{left:135.222520px;}
.x2a{left:137.171212px;}
.x67{left:139.114751px;}
.xf{left:140.806500px;}
.x18{left:143.316000px;}
.x6a{left:145.236547px;}
.x20{left:148.896000px;}
.x12{left:150.690000px;}
.x54{left:152.621267px;}
.x63{left:154.218928px;}
.x87{left:156.630000px;}
.x62{left:157.962902px;}
.x58{left:159.244596px;}
.x14{left:161.670000px;}
.x66{left:164.764705px;}
.x72{left:166.433292px;}
.x5b{left:167.756022px;}
.x43{left:170.361220px;}
.x5e{left:173.207292px;}
.x6b{left:174.907270px;}
.x71{left:179.226731px;}
.xa0{left:180.930000px;}
.x59{left:182.201471px;}
.x34{left:183.551785px;}
.x11{left:186.330000px;}
.x4b{left:189.214407px;}
.x2b{left:193.521035px;}
.x26{left:197.195603px;}
.x91{left:198.779528px;}
.x23{left:202.965000px;}
.x53{left:204.199313px;}
.x52{left:205.368136px;}
.x31{left:207.283702px;}
.x5f{left:211.780669px;}
.x2e{left:212.970000px;}
.x97{left:214.592684px;}
.x51{left:217.116302px;}
.xd{left:220.545000px;}
.x8c{left:221.761179px;}
.x21{left:226.830000px;}
.x22{left:231.870000px;}
.x60{left:238.853632px;}
.x32{left:245.030178px;}
.x50{left:249.423760px;}
.x81{left:251.947315px;}
.x16{left:253.515000px;}
.x4c{left:255.972163px;}
.x9c{left:258.315272px;}
.x1d{left:259.455000px;}
.x1a{left:262.116000px;}
.x33{left:264.524788px;}
.x4f{left:270.957069px;}
.x4e{left:272.125892px;}
.x4d{left:284.293636px;}
.x82{left:287.329660px;}
.x9d{left:292.405611px;}
.x8a{left:296.715000px;}
.x92{left:300.237171px;}
.x84{left:309.014749px;}
.x15{left:310.575000px;}
.x83{left:313.955768px;}
.x9f{left:316.418017px;}
.x3{left:320.475000px;}
.x49{left:323.355000px;}
.x94{left:325.061113px;}
.x93{left:330.249608px;}
.x88{left:333.615000px;}
.x7d{left:342.225904px;}
.x13{left:344.235000px;}
.x9e{left:349.425979px;}
.x9a{left:350.681173px;}
.x90{left:362.395721px;}
.x40{left:369.435000px;}
.x1b{left:371.955000px;}
.x85{left:378.510678px;}
.x79{left:381.165000px;}
.x47{left:389.595000px;}
.x95{left:391.768996px;}
.x6f{left:398.640000px;}
.x76{left:404.940000px;}
.xb{left:408.135000px;}
.x2d{left:414.465000px;}
.x27{left:417.885000px;}
.x19{left:438.405000px;}
.x7c{left:450.838982px;}
.x98{left:458.946197px;}
.x1e{left:460.365000px;}
.x7b{left:464.145000px;}
.x1{left:469.200000px;}
.x8d{left:474.277351px;}
.x77{left:476.925000px;}
.x68{left:481.965000px;}
.x39{left:483.045000px;}
.x5c{left:495.285000px;}
.x1c{left:499.785000px;}
.x17{left:580.470000px;}
.x75{left:587.130000px;}
.x86{left:606.390000px;}
.x8b{left:607.650000px;}
.x1f{left:624.030000px;}
.xa{left:625.470000px;}
.x96{left:627.270000px;}
.x89{left:637.170000px;}
@media print{
.v7{vertical-align:-50.753455pt;}
.vb{vertical-align:-45.693767pt;}
.v15{vertical-align:-39.107065pt;}
.v1a{vertical-align:-35.454123pt;}
.vf{vertical-align:-34.518002pt;}
.vc{vertical-align:-33.207221pt;}
.v14{vertical-align:-30.755054pt;}
.v19{vertical-align:-27.882263pt;}
.v2{vertical-align:-22.400000pt;}
.v4{vertical-align:-16.910438pt;}
.v9{vertical-align:-15.219394pt;}
.v16{vertical-align:-12.800000pt;}
.v10{vertical-align:-8.320000pt;}
.v1b{vertical-align:-4.782618pt;}
.v12{vertical-align:-1.080849pt;}
.v0{vertical-align:0.000000pt;}
.v18{vertical-align:0.979888pt;}
.v11{vertical-align:2.259956pt;}
.v13{vertical-align:3.340805pt;}
.v6{vertical-align:8.320000pt;}
.v17{vertical-align:12.800000pt;}
.v8{vertical-align:15.219394pt;}
.v5{vertical-align:16.910438pt;}
.v3{vertical-align:17.991839pt;}
.v1{vertical-align:26.880000pt;}
.ve{vertical-align:29.146672pt;}
.vd{vertical-align:41.697213pt;}
.va{vertical-align:44.567977pt;}
.ls23{letter-spacing:-3.399760pt;}
.ls24{letter-spacing:-3.344735pt;}
.ls25{letter-spacing:-3.246476pt;}
.ls38{letter-spacing:-3.082193pt;}
.ls36{letter-spacing:-3.032307pt;}
.ls37{letter-spacing:-2.993112pt;}
.ls35{letter-spacing:-2.943227pt;}
.ls40{letter-spacing:-2.856146pt;}
.ls19{letter-spacing:-1.028115pt;}
.ls22{letter-spacing:-0.782141pt;}
.ls45{letter-spacing:-0.640000pt;}
.ls34{letter-spacing:-0.620002pt;}
.ls3f{letter-spacing:-0.583983pt;}
.ls39{letter-spacing:-0.487936pt;}
.ls41{letter-spacing:-0.472163pt;}
.ls26{letter-spacing:-0.463822pt;}
.ls3{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:-0.192000pt;}
.lsc{letter-spacing:-0.064000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.064000pt;}
.ls6{letter-spacing:0.128000pt;}
.ls3e{letter-spacing:0.227733pt;}
.ls46{letter-spacing:0.239467pt;}
.ls2b{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.384000pt;}
.ls2a{letter-spacing:0.416000pt;}
.ls9{letter-spacing:0.448000pt;}
.ls17{letter-spacing:0.512000pt;}
.ls8{letter-spacing:0.704000pt;}
.ls27{letter-spacing:0.960000pt;}
.ls43{letter-spacing:3.328000pt;}
.ls14{letter-spacing:9.600000pt;}
.ls5{letter-spacing:16.640000pt;}
.ls42{letter-spacing:17.472000pt;}
.ls29{letter-spacing:18.112000pt;}
.ls2c{letter-spacing:18.272000pt;}
.ls28{letter-spacing:19.770240pt;}
.ls1{letter-spacing:23.680000pt;}
.ls16{letter-spacing:30.208000pt;}
.lsb{letter-spacing:43.335031pt;}
.ls44{letter-spacing:49.408000pt;}
.lsf{letter-spacing:78.087094pt;}
.ls12{letter-spacing:88.973990pt;}
.lsd{letter-spacing:91.878098pt;}
.ls32{letter-spacing:99.945351pt;}
.ls13{letter-spacing:100.099194pt;}
.ls1f{letter-spacing:110.243013pt;}
.lse{letter-spacing:124.715344pt;}
.ls21{letter-spacing:130.191444pt;}
.ls11{letter-spacing:131.086292pt;}
.ls1a{letter-spacing:136.098054pt;}
.ls18{letter-spacing:143.528987pt;}
.ls33{letter-spacing:167.753588pt;}
.ls20{letter-spacing:176.980497pt;}
.ls30{letter-spacing:201.198051pt;}
.ls2e{letter-spacing:207.384172pt;}
.ls1e{letter-spacing:211.905660pt;}
.ls31{letter-spacing:218.537077pt;}
.ls1c{letter-spacing:228.751569pt;}
.ls3d{letter-spacing:238.792253pt;}
.ls2f{letter-spacing:265.835015pt;}
.ls1d{letter-spacing:293.209445pt;}
.ls10{letter-spacing:375.628338pt;}
.ls3c{letter-spacing:422.196421pt;}
.ls3a{letter-spacing:446.818009pt;}
.ls3b{letter-spacing:463.968309pt;}
.ls2d{letter-spacing:474.376879pt;}
.ls1b{letter-spacing:523.386555pt;}
.lsa{letter-spacing:738.025977pt;}
.ws53{word-spacing:-143.593056pt;}
.ws55{word-spacing:-136.162123pt;}
.ws58{word-spacing:-130.252086pt;}
.ws9{word-spacing:-64.000000pt;}
.ws13{word-spacing:-63.954931pt;}
.ws63{word-spacing:-59.107733pt;}
.ws2{word-spacing:-58.880000pt;}
.ws23{word-spacing:-35.653879pt;}
.ws5f{word-spacing:-35.136000pt;}
.ws3a{word-spacing:-34.678711pt;}
.ws17{word-spacing:-22.674731pt;}
.wsf{word-spacing:-21.164184pt;}
.ws39{word-spacing:-20.218104pt;}
.ws18{word-spacing:-16.974422pt;}
.ws51{word-spacing:-16.512000pt;}
.wsb{word-spacing:-16.128000pt;}
.ws8{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.936000pt;}
.ws6{word-spacing:-15.808000pt;}
.ws24{word-spacing:-15.744000pt;}
.ws4{word-spacing:-14.720000pt;}
.ws5a{word-spacing:-14.080000pt;}
.ws60{word-spacing:-13.824000pt;}
.ws1{word-spacing:-12.320000pt;}
.ws0{word-spacing:-12.000000pt;}
.ws56{word-spacing:-11.040000pt;}
.ws66{word-spacing:-10.959467pt;}
.ws50{word-spacing:-10.720000pt;}
.ws5d{word-spacing:-10.707868pt;}
.ws5c{word-spacing:-9.925727pt;}
.ws61{word-spacing:-9.707660pt;}
.ws3{word-spacing:-9.280000pt;}
.ws64{word-spacing:-9.143694pt;}
.ws32{word-spacing:-8.838790pt;}
.ws46{word-spacing:-6.271318pt;}
.ws3e{word-spacing:-5.823752pt;}
.ws1b{word-spacing:-0.067898pt;}
.ws2e{word-spacing:-0.064942pt;}
.ws7{word-spacing:-0.064000pt;}
.ws41{word-spacing:-0.063167pt;}
.ws1c{word-spacing:-0.042880pt;}
.ws21{word-spacing:-0.037841pt;}
.ws5{word-spacing:0.000000pt;}
.ws35{word-spacing:11.237964pt;}
.ws4b{word-spacing:11.754788pt;}
.wse{word-spacing:16.198134pt;}
.ws14{word-spacing:16.751883pt;}
.ws1e{word-spacing:18.321280pt;}
.ws26{word-spacing:18.669902pt;}
.ws34{word-spacing:19.964860pt;}
.ws4f{word-spacing:20.511573pt;}
.ws4a{word-spacing:23.838487pt;}
.ws4c{word-spacing:23.847005pt;}
.ws47{word-spacing:24.025891pt;}
.ws45{word-spacing:24.051446pt;}
.ws3d{word-spacing:24.503056pt;}
.ws15{word-spacing:31.458590pt;}
.ws2c{word-spacing:33.282523pt;}
.ws27{word-spacing:33.422878pt;}
.ws2a{word-spacing:33.464984pt;}
.wsc{word-spacing:33.467003pt;}
.ws25{word-spacing:33.633409pt;}
.ws16{word-spacing:34.986180pt;}
.ws20{word-spacing:35.669365pt;}
.ws1d{word-spacing:35.690418pt;}
.ws1f{word-spacing:36.093712pt;}
.ws2b{word-spacing:36.594632pt;}
.ws31{word-spacing:40.298278pt;}
.ws59{word-spacing:46.270178pt;}
.ws33{word-spacing:69.306994pt;}
.ws42{word-spacing:72.876861pt;}
.ws3c{word-spacing:84.506114pt;}
.ws44{word-spacing:84.773944pt;}
.ws12{word-spacing:94.538865pt;}
.wsd{word-spacing:95.087495pt;}
.ws57{word-spacing:118.202528pt;}
.ws52{word-spacing:130.609597pt;}
.ws54{word-spacing:135.601046pt;}
.ws29{word-spacing:137.180550pt;}
.ws62{word-spacing:139.307089pt;}
.ws5e{word-spacing:153.994386pt;}
.ws49{word-spacing:181.524840pt;}
.ws5b{word-spacing:211.551535pt;}
.ws4e{word-spacing:224.482905pt;}
.ws30{word-spacing:228.519605pt;}
.ws38{word-spacing:236.545140pt;}
.ws3f{word-spacing:247.409013pt;}
.ws65{word-spacing:251.208768pt;}
.ws2f{word-spacing:254.825314pt;}
.ws1a{word-spacing:303.916764pt;}
.ws11{word-spacing:364.543922pt;}
.ws3b{word-spacing:367.082491pt;}
.ws10{word-spacing:369.523405pt;}
.ws43{word-spacing:382.817964pt;}
.ws19{word-spacing:403.597923pt;}
.ws28{word-spacing:404.183238pt;}
.ws48{word-spacing:448.677587pt;}
.ws37{word-spacing:451.456466pt;}
.ws2d{word-spacing:481.352456pt;}
.ws4d{word-spacing:494.541315pt;}
.ws22{word-spacing:707.793871pt;}
.ws40{word-spacing:763.528415pt;}
.ws36{word-spacing:826.037468pt;}
._17{margin-left:-1745.542613pt;}
._1e{margin-left:-1724.321707pt;}
._29{margin-left:-1416.728320pt;}
._28{margin-left:-1256.373333pt;}
._24{margin-left:-947.018240pt;}
._25{margin-left:-813.194667pt;}
._2c{margin-left:-655.214720pt;}
._6{margin-left:-623.957120pt;}
._c{margin-left:-541.774720pt;}
._8d{margin-left:-525.215597pt;}
._a{margin-left:-518.168107pt;}
._27{margin-left:-508.341760pt;}
._8f{margin-left:-494.703258pt;}
._d{margin-left:-466.822400pt;}
._72{margin-left:-436.189737pt;}
._5d{margin-left:-430.923486pt;}
._b{margin-left:-408.878720pt;}
._74{margin-left:-398.717613pt;}
._7b{margin-left:-374.963216pt;}
._78{margin-left:-362.731168pt;}
._2{margin-left:-361.546667pt;}
._7d{margin-left:-360.203402pt;}
._75{margin-left:-351.159411pt;}
._88{margin-left:-349.939322pt;}
._66{margin-left:-344.240131pt;}
._5a{margin-left:-330.589636pt;}
._79{margin-left:-327.046360pt;}
._2b{margin-left:-318.506667pt;}
._0{margin-left:-316.442667pt;}
._8a{margin-left:-310.260912pt;}
._3{margin-left:-307.168000pt;}
._82{margin-left:-304.773995pt;}
._8b{margin-left:-300.274657pt;}
._41{margin-left:-290.376442pt;}
._7c{margin-left:-286.708693pt;}
._61{margin-left:-285.737411pt;}
._73{margin-left:-277.973586pt;}
._1{margin-left:-271.824000pt;}
._5{margin-left:-265.437440pt;}
._7e{margin-left:-256.138578pt;}
._87{margin-left:-253.929468pt;}
._76{margin-left:-247.147610pt;}
._52{margin-left:-239.091896pt;}
._50{margin-left:-234.333402pt;}
._f{margin-left:-224.992000pt;}
._70{margin-left:-223.829224pt;}
._5f{margin-left:-222.457107pt;}
._42{margin-left:-217.580546pt;}
._44{margin-left:-209.235769pt;}
._58{margin-left:-206.906083pt;}
._59{margin-left:-202.665852pt;}
._84{margin-left:-201.495671pt;}
._65{margin-left:-199.575036pt;}
._6b{margin-left:-195.873025pt;}
._63{margin-left:-194.590400pt;}
._5c{margin-left:-193.148482pt;}
._4f{margin-left:-190.661475pt;}
._6c{margin-left:-188.644250pt;}
._51{margin-left:-186.603823pt;}
._53{margin-left:-181.612818pt;}
._85{margin-left:-179.964056pt;}
._47{margin-left:-175.376671pt;}
._48{margin-left:-169.169871pt;}
._54{margin-left:-167.712047pt;}
._6d{margin-left:-164.190342pt;}
._81{margin-left:-161.661278pt;}
._46{margin-left:-158.557524pt;}
._40{margin-left:-154.118706pt;}
._43{margin-left:-150.061222pt;}
._64{margin-left:-143.926064pt;}
._6a{margin-left:-141.546221pt;}
._68{margin-left:-139.716858pt;}
._71{margin-left:-135.485750pt;}
._5b{margin-left:-129.984861pt;}
._80{margin-left:-128.857974pt;}
._7a{margin-left:-125.603177pt;}
._2a{margin-left:-114.257280pt;}
._4e{margin-left:-104.971084pt;}
._57{margin-left:-102.023874pt;}
._83{margin-left:-99.608086pt;}
._8e{margin-left:-93.439787pt;}
._45{margin-left:-83.699371pt;}
._e{margin-left:-63.132160pt;}
._60{margin-left:-46.805528pt;}
._6f{margin-left:-44.788613pt;}
._69{margin-left:-43.256179pt;}
._1f{margin-left:-40.165120pt;}
._49{margin-left:-34.607255pt;}
._12{margin-left:-15.394560pt;}
._23{margin-left:-11.584000pt;}
._13{margin-left:-10.641280pt;}
._15{margin-left:-9.333760pt;}
._8{margin-left:-7.968000pt;}
._14{margin-left:-5.696000pt;}
._19{margin-left:-4.672000pt;}
._9{margin-left:-3.665280pt;}
._89{margin-left:-2.456474pt;}
._4{margin-left:-1.243520pt;}
._7{width:1.168640pt;}
._2f{width:2.217387pt;}
._22{width:3.328000pt;}
._16{width:5.048960pt;}
._10{width:6.481280pt;}
._11{width:7.406720pt;}
._31{width:8.657280pt;}
._18{width:9.617280pt;}
._1a{width:10.560000pt;}
._21{width:11.788800pt;}
._20{width:13.164800pt;}
._1d{width:14.142080pt;}
._1c{width:15.104000pt;}
._1b{width:17.525760pt;}
._26{width:19.018240pt;}
._4b{width:20.075520pt;}
._3d{width:21.723520pt;}
._2e{width:22.959147pt;}
._2d{width:24.475520pt;}
._35{width:25.386667pt;}
._90{width:26.406187pt;}
._39{width:27.466880pt;}
._38{width:28.608000pt;}
._3b{width:30.080000pt;}
._3c{width:31.087360pt;}
._3a{width:33.435520pt;}
._8c{width:35.620480pt;}
._30{width:36.635520pt;}
._92{width:37.600000pt;}
._33{width:39.936000pt;}
._34{width:41.198293pt;}
._91{width:43.968000pt;}
._37{width:47.085440pt;}
._36{width:48.219520pt;}
._32{width:50.496000pt;}
._86{width:54.267520pt;}
._94{width:55.776000pt;}
._95{width:56.906880pt;}
._93{width:60.864000pt;}
._96{width:64.000000pt;}
._97{width:65.269760pt;}
._3f{width:70.027900pt;}
._67{width:72.426667pt;}
._4d{width:73.658053pt;}
._4c{width:80.670179pt;}
._77{width:96.640000pt;}
._7f{width:112.000000pt;}
._6e{width:115.840000pt;}
._3e{width:127.406815pt;}
._5e{width:140.160000pt;}
._62{width:144.106667pt;}
._4a{width:175.424000pt;}
._55{width:176.576000pt;}
._56{width:214.740222pt;}
.fs44{font-size:27.772746pt;}
.fs43{font-size:27.856652pt;}
.fs3d{font-size:29.485715pt;}
.fs3e{font-size:29.574796pt;}
.fs38{font-size:30.974444pt;}
.fs45{font-size:31.531442pt;}
.fs37{font-size:32.523715pt;}
.fs3f{font-size:32.584753pt;}
.fs36{font-size:32.621974pt;}
.fs42{font-size:32.807081pt;}
.fs40{font-size:32.890986pt;}
.fs3c{font-size:34.830558pt;}
.fs3a{font-size:34.919639pt;}
.fs1d{font-size:35.355159pt;}
.fs2e{font-size:35.472250pt;}
.fs22{font-size:36.827148pt;}
.fs5{font-size:37.120000pt;}
.fs1a{font-size:37.840024pt;}
.fs15{font-size:37.840891pt;}
.fs35{font-size:38.419252pt;}
.fs33{font-size:38.517511pt;}
.fs32{font-size:39.335284pt;}
.fs10{font-size:39.543712pt;}
.fs41{font-size:40.442488pt;}
.fs30{font-size:41.595413pt;}
.fs1{font-size:42.880000pt;}
.fs3b{font-size:42.936903pt;}
.fs8{font-size:45.199037pt;}
.fs39{font-size:45.440000pt;}
.fs34{font-size:47.360817pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs1e{font-size:60.642436pt;}
.fs2f{font-size:60.757607pt;}
.fs23{font-size:63.167051pt;}
.fsc{font-size:63.954931pt;}
.fs6{font-size:64.000000pt;}
.fs31{font-size:64.068897pt;}
.fs1b{font-size:64.941826pt;}
.fs16{font-size:64.943313pt;}
.fs25{font-size:66.862468pt;}
.fs12{font-size:67.461249pt;}
.fsf{font-size:67.897688pt;}
.fs2c{font-size:68.495607pt;}
.fs1c{font-size:68.544072pt;}
.fs17{font-size:68.565214pt;}
.fs11{font-size:71.519581pt;}
.fs7{font-size:72.320000pt;}
.fs4{font-size:74.880000pt;}
.fsb{font-size:84.534063pt;}
.fs18{font-size:85.776870pt;}
.fs13{font-size:85.778834pt;}
.fs28{font-size:86.389027pt;}
.fs21{font-size:86.762584pt;}
.fs9{font-size:87.494145pt;}
.fs19{font-size:88.847629pt;}
.fs14{font-size:88.849663pt;}
.fs2b{font-size:89.232207pt;}
.fse{font-size:89.625588pt;}
.fsd{font-size:92.744808pt;}
.fs24{font-size:94.878507pt;}
.fs1f{font-size:95.374878pt;}
.fs2d{font-size:97.636385pt;}
.fs26{font-size:99.120688pt;}
.fs27{font-size:101.244337pt;}
.fs20{font-size:101.617895pt;}
.fs29{font-size:101.887585pt;}
.fs2a{font-size:104.062318pt;}
.fsa{font-size:104.375701pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:2.240000pt;}
.yb3{bottom:3.043879pt;}
.y75{bottom:3.419834pt;}
.y88{bottom:3.515652pt;}
.y9b{bottom:3.745298pt;}
.yb5{bottom:3.746303pt;}
.y9a{bottom:4.619065pt;}
.ydd{bottom:4.887818pt;}
.y8d{bottom:5.034181pt;}
.yd0{bottom:5.122000pt;}
.y141{bottom:6.355848pt;}
.y61{bottom:6.654627pt;}
.y5e{bottom:6.716253pt;}
.y60{bottom:6.747066pt;}
.y124{bottom:6.747864pt;}
.y5f{bottom:6.777879pt;}
.y68{bottom:7.024377pt;}
.y66{bottom:7.089427pt;}
.y67{bottom:7.121952pt;}
.yf2{bottom:7.449208pt;}
.yb6{bottom:7.551152pt;}
.yb2{bottom:7.580424pt;}
.yde{bottom:8.839030pt;}
.yab{bottom:9.300655pt;}
.yd1{bottom:9.312715pt;}
.ya7{bottom:11.378181pt;}
.y81{bottom:12.144955pt;}
.y72{bottom:12.145233pt;}
.ya9{bottom:12.305063pt;}
.yb4{bottom:14.341214pt;}
.y94{bottom:15.043368pt;}
.y96{bottom:15.761059pt;}
.y97{bottom:15.947838pt;}
.y7{bottom:16.000000pt;}
.ya2{bottom:16.042507pt;}
.y87{bottom:16.204015pt;}
.y74{bottom:16.204386pt;}
.y80{bottom:16.268208pt;}
.y71{bottom:16.268580pt;}
.y7f{bottom:16.299649pt;}
.y70{bottom:16.300022pt;}
.ya6{bottom:16.428410pt;}
.y9c{bottom:19.724352pt;}
.y93{bottom:19.756334pt;}
.y92{bottom:19.819020pt;}
.ya1{bottom:19.975096pt;}
.y4{bottom:21.920000pt;}
.ya8{bottom:23.491054pt;}
.y82{bottom:24.673492pt;}
.y73{bottom:24.674057pt;}
.y83{bottom:26.463021pt;}
.yac{bottom:26.463627pt;}
.y76{bottom:26.495069pt;}
.yaa{bottom:26.751845pt;}
.y95{bottom:26.809152pt;}
.y9d{bottom:29.587807pt;}
.ya3{bottom:29.681196pt;}
.y98{bottom:29.961364pt;}
.y142{bottom:30.164055pt;}
.yb{bottom:31.828000pt;}
.y125{bottom:32.024516pt;}
.y147{bottom:33.499302pt;}
.y14a{bottom:33.604184pt;}
.yf3{bottom:35.329991pt;}
.y99{bottom:35.766858pt;}
.y6{bottom:35.840000pt;}
.y12d{bottom:36.099958pt;}
.y130{bottom:36.589902pt;}
.y12b{bottom:36.612172pt;}
.y12f{bottom:36.857144pt;}
.y3{bottom:37.760000pt;}
.yfc{bottom:39.825338pt;}
.y100{bottom:40.365762pt;}
.yfa{bottom:40.414892pt;}
.yff{bottom:40.660539pt;}
.y144{bottom:45.288036pt;}
.yd{bottom:45.428000pt;}
.yc{bottom:46.868000pt;}
.ya{bottom:47.028000pt;}
.y128{bottom:48.081314pt;}
.y127{bottom:48.593528pt;}
.y5{bottom:49.920000pt;}
.yf6{bottom:53.041168pt;}
.yf5{bottom:53.606157pt;}
.y14c{bottom:66.033690pt;}
.y132{bottom:70.106520pt;}
.y148{bottom:76.983367pt;}
.y103{bottom:77.335695pt;}
.yf{bottom:78.112000pt;}
.y14b{bottom:78.179022pt;}
.y12c{bottom:81.731553pt;}
.yfe{bottom:81.781913pt;}
.y131{bottom:83.000953pt;}
.yfb{bottom:90.158489pt;}
.y102{bottom:91.558679pt;}
.ye{bottom:96.192000pt;}
.y146{bottom:107.877401pt;}
.y149{bottom:109.681371pt;}
.y9{bottom:109.958667pt;}
.y145{bottom:110.268710pt;}
.y12a{bottom:114.531070pt;}
.y12e{bottom:116.446306pt;}
.y129{bottom:117.069871pt;}
.yf9{bottom:126.341367pt;}
.yf8{bottom:127.746470pt;}
.yfd{bottom:127.942988pt;}
.y101{bottom:128.483413pt;}
.yf7{bottom:129.141748pt;}
.y143{bottom:132.881263pt;}
.y126{bottom:141.077122pt;}
.yf4{bottom:155.622537pt;}
.yf0{bottom:181.306667pt;}
.y13f{bottom:181.786667pt;}
.yd6{bottom:182.586667pt;}
.y28{bottom:184.826667pt;}
.y16c{bottom:187.066667pt;}
.y115{bottom:188.346667pt;}
.y4a{bottom:191.706667pt;}
.y58{bottom:192.186667pt;}
.y122{bottom:193.146667pt;}
.y13e{bottom:198.746667pt;}
.yef{bottom:199.866667pt;}
.y84{bottom:200.986667pt;}
.y16b{bottom:205.466667pt;}
.y49{bottom:210.106667pt;}
.y57{bottom:210.586667pt;}
.y121{bottom:211.546667pt;}
.y167{bottom:215.226667pt;}
.yd5{bottom:215.453333pt;}
.ybd{bottom:218.586667pt;}
.y114{bottom:220.026667pt;}
.y16a{bottom:223.866667pt;}
.yd4{bottom:224.666667pt;}
.y13d{bottom:225.306667pt;}
.y27{bottom:226.906667pt;}
.y48{bottom:228.506667pt;}
.y56{bottom:228.986667pt;}
.y120{bottom:229.946667pt;}
.yee{bottom:231.226667pt;}
.y7d{bottom:232.666667pt;}
.y7e{bottom:232.720000pt;}
.y166{bottom:233.626667pt;}
.ybc{bottom:237.146667pt;}
.y169{bottom:242.266667pt;}
.yed{bottom:244.666667pt;}
.yf1{bottom:244.680000pt;}
.y47{bottom:246.906667pt;}
.y55{bottom:247.386667pt;}
.y11f{bottom:248.346667pt;}
.y165{bottom:252.026667pt;}
.y113{bottom:252.186667pt;}
.y26{bottom:253.626667pt;}
.ybb{bottom:255.546667pt;}
.yd3{bottom:260.546667pt;}
.y168{bottom:260.706667pt;}
.y46{bottom:265.346667pt;}
.y164{bottom:270.466667pt;}
.y112{bottom:270.786667pt;}
.yba{bottom:273.986667pt;}
.y54{bottom:278.946667pt;}
.yd2{bottom:279.106667pt;}
.y11e{bottom:279.746667pt;}
.y25{bottom:280.066667pt;}
.y45{bottom:283.746667pt;}
.y163{bottom:288.866667pt;}
.y7c{bottom:291.586667pt;}
.yb9{bottom:292.386667pt;}
.y11d{bottom:296.546667pt;}
.y53{bottom:297.506667pt;}
.y44{bottom:302.146667pt;}
.y111{bottom:302.306667pt;}
.y24{bottom:306.626667pt;}
.y162{bottom:307.266667pt;}
.y7b{bottom:310.146667pt;}
.yb8{bottom:310.786667pt;}
.y52{bottom:315.906667pt;}
.y43{bottom:320.546667pt;}
.y110{bottom:320.866667pt;}
.y11c{bottom:323.106667pt;}
.y161{bottom:325.666667pt;}
.y7a{bottom:328.546667pt;}
.ycf{bottom:330.320000pt;}
.y23{bottom:333.186667pt;}
.y51{bottom:334.306667pt;}
.y42{bottom:338.946667pt;}
.y10f{bottom:339.266667pt;}
.yce{bottom:339.586667pt;}
.yb7{bottom:342.306667pt;}
.y160{bottom:344.066667pt;}
.y79{bottom:346.946667pt;}
.y50{bottom:352.706667pt;}
.y41{bottom:357.346667pt;}
.y10e{bottom:357.666667pt;}
.y22{bottom:359.746667pt;}
.yb1{bottom:360.853333pt;}
.yb0{bottom:360.866667pt;}
.y15f{bottom:362.466667pt;}
.y78{bottom:365.346667pt;}
.y4f{bottom:371.106667pt;}
.ycd{bottom:375.586667pt;}
.y40{bottom:375.746667pt;}
.y10d{bottom:376.066667pt;}
.y15e{bottom:380.546667pt;}
.y21{bottom:386.146667pt;}
.yaf{bottom:388.386667pt;}
.y4e{bottom:389.506667pt;}
.ycc{bottom:394.146667pt;}
.y3f{bottom:394.786667pt;}
.y6f{bottom:396.853333pt;}
.y77{bottom:396.866667pt;}
.yae{bottom:402.786667pt;}
.y10c{bottom:407.426667pt;}
.y4d{bottom:407.906667pt;}
.ycb{bottom:412.546667pt;}
.y20{bottom:412.706667pt;}
.y3e{bottom:415.266667pt;}
.yad{bottom:418.786667pt;}
.yec{bottom:419.586667pt;}
.y10b{bottom:424.226667pt;}
.y4c{bottom:426.306667pt;}
.yca{bottom:430.786667pt;}
.y15d{bottom:431.106667pt;}
.yeb{bottom:437.986667pt;}
.y13c{bottom:438.466667pt;}
.y1f{bottom:439.266667pt;}
.y3d{bottom:444.706667pt;}
.ya5{bottom:444.853333pt;}
.yc9{bottom:449.186667pt;}
.y15c{bottom:449.506667pt;}
.y10a{bottom:450.946667pt;}
.y6e{bottom:455.586667pt;}
.yea{bottom:456.226667pt;}
.y13b{bottom:457.026667pt;}
.ya4{bottom:460.866667pt;}
.y3c{bottom:463.106667pt;}
.y1e{bottom:465.826667pt;}
.yc8{bottom:467.586667pt;}
.y15b{bottom:467.906667pt;}
.y6d{bottom:474.173333pt;}
.ye9{bottom:475.133333pt;}
.y13a{bottom:475.453333pt;}
.y3b{bottom:481.533333pt;}
.yc7{bottom:486.013333pt;}
.y15a{bottom:486.333333pt;}
.y1d{bottom:492.253333pt;}
.ye8{bottom:493.533333pt;}
.y3a{bottom:499.933333pt;}
.ya0{bottom:503.920000pt;}
.y9f{bottom:503.933333pt;}
.y159{bottom:504.733333pt;}
.y6c{bottom:505.853333pt;}
.y139{bottom:507.133333pt;}
.ye7{bottom:511.933333pt;}
.yc6{bottom:517.693333pt;}
.y39{bottom:518.333333pt;}
.y1c{bottom:518.813333pt;}
.y6b{bottom:522.173333pt;}
.y158{bottom:523.133333pt;}
.y6a{bottom:524.253333pt;}
.ye6{bottom:530.013333pt;}
.yc5{bottom:536.253333pt;}
.y38{bottom:536.733333pt;}
.y138{bottom:539.133333pt;}
.y157{bottom:541.533333pt;}
.y1b{bottom:545.373333pt;}
.yc4{bottom:554.653333pt;}
.y37{bottom:555.133333pt;}
.y65{bottom:557.186667pt;}
.y69{bottom:557.213333pt;}
.y137{bottom:557.693333pt;}
.ye5{bottom:559.453333pt;}
.y156{bottom:559.933333pt;}
.y11b{bottom:560.413333pt;}
.y9e{bottom:562.973333pt;}
.y91{bottom:562.986667pt;}
.y1a{bottom:571.933333pt;}
.y36{bottom:573.533333pt;}
.ye4{bottom:577.853333pt;}
.y155{bottom:578.333333pt;}
.y11a{bottom:578.973333pt;}
.yc3{bottom:586.173333pt;}
.y136{bottom:589.053333pt;}
.y35{bottom:591.933333pt;}
.ye3{bottom:596.253333pt;}
.y154{bottom:596.733333pt;}
.y119{bottom:597.373333pt;}
.y64{bottom:597.853333pt;}
.y19{bottom:598.493333pt;}
.yc2{bottom:604.733333pt;}
.y135{bottom:605.853333pt;}
.y34{bottom:610.333333pt;}
.ye2{bottom:614.653333pt;}
.y153{bottom:615.133333pt;}
.y63{bottom:616.413333pt;}
.yc1{bottom:623.133333pt;}
.y18{bottom:624.893333pt;}
.y90{bottom:626.013333pt;}
.y118{bottom:628.573333pt;}
.y33{bottom:628.733333pt;}
.y134{bottom:632.573333pt;}
.y140{bottom:632.600000pt;}
.ye1{bottom:633.053333pt;}
.y152{bottom:633.373333pt;}
.y8f{bottom:644.573333pt;}
.y117{bottom:645.533333pt;}
.y32{bottom:647.133333pt;}
.y5d{bottom:648.053333pt;}
.y62{bottom:648.093333pt;}
.ye0{bottom:651.453333pt;}
.yc0{bottom:654.653333pt;}
.y8e{bottom:662.973333pt;}
.y17{bottom:663.293333pt;}
.y31{bottom:665.533333pt;}
.y116{bottom:672.093333pt;}
.y123{bottom:672.200000pt;}
.ybf{bottom:673.213333pt;}
.y16{bottom:680.253333pt;}
.ydf{bottom:682.973333pt;}
.y151{bottom:683.453333pt;}
.y30{bottom:683.933333pt;}
.y5c{bottom:688.933333pt;}
.ybe{bottom:691.333333pt;}
.y8c{bottom:694.653333pt;}
.y8b{bottom:694.693333pt;}
.y15{bottom:697.093333pt;}
.ydc{bottom:697.653333pt;}
.y150{bottom:702.053333pt;}
.y2f{bottom:702.373333pt;}
.y109{bottom:706.053333pt;}
.ydb{bottom:707.013333pt;}
.y5b{bottom:707.493333pt;}
.y14{bottom:713.573333pt;}
.y14f{bottom:720.453333pt;}
.y2e{bottom:720.773333pt;}
.y108{bottom:724.613333pt;}
.y5a{bottom:725.573333pt;}
.yda{bottom:725.893333pt;}
.y13{bottom:730.533333pt;}
.y8a{bottom:735.493333pt;}
.y14e{bottom:738.853333pt;}
.y2d{bottom:739.173333pt;}
.y107{bottom:743.013333pt;}
.yd9{bottom:744.293333pt;}
.y89{bottom:754.053333pt;}
.y14d{bottom:757.093333pt;}
.y59{bottom:757.413333pt;}
.y2c{bottom:757.573333pt;}
.y106{bottom:761.413333pt;}
.yd8{bottom:762.693333pt;}
.y12{bottom:767.173333pt;}
.y2b{bottom:775.973333pt;}
.y105{bottom:779.813333pt;}
.y86{bottom:785.520000pt;}
.y85{bottom:785.573333pt;}
.y11{bottom:788.453333pt;}
.yd7{bottom:794.213333pt;}
.y2a{bottom:794.373333pt;}
.y133{bottom:795.493333pt;}
.y10{bottom:809.893333pt;}
.y104{bottom:811.493333pt;}
.y29{bottom:812.453333pt;}
.y4b{bottom:812.773333pt;}
.y8{bottom:830.373333pt;}
.y1{bottom:847.013333pt;}
.h1c{height:23.999332pt;}
.h32{height:23.999998pt;}
.h17{height:24.000148pt;}
.h52{height:27.999604pt;}
.h6a{height:28.966106pt;}
.h69{height:29.053617pt;}
.h62{height:30.752680pt;}
.h63{height:30.845588pt;}
.h5d{height:32.305377pt;}
.h6b{height:32.886308pt;}
.h5c{height:33.921218pt;}
.h64{height:33.984879pt;}
.h5b{height:34.023699pt;}
.h66{height:34.304271pt;}
.h16{height:34.340674pt;}
.h4e{height:34.796753pt;}
.h38{height:36.125850pt;}
.h3c{height:36.143832pt;}
.h5f{height:36.420092pt;}
.h2d{height:37.119438pt;}
.h26{height:37.120288pt;}
.h4a{height:37.138765pt;}
.h68{height:37.996116pt;}
.h55{height:38.586223pt;}
.ha{height:40.163750pt;}
.h58{height:40.172561pt;}
.h61{height:40.339643pt;}
.h53{height:40.803313pt;}
.h2{height:41.906250pt;}
.h2a{height:41.932098pt;}
.h23{height:41.933058pt;}
.h67{height:42.180252pt;}
.h6{height:42.320000pt;}
.h5{height:42.822813pt;}
.h4{height:43.215000pt;}
.h5a{height:43.410884pt;}
.h60{height:44.781848pt;}
.h34{height:46.066557pt;}
.h8{height:46.376250pt;}
.h3b{height:46.789265pt;}
.h4c{height:48.104983pt;}
.h3{height:48.375000pt;}
.h59{height:49.395853pt;}
.h3f{height:49.526545pt;}
.h21{height:49.970075pt;}
.h4b{height:50.736248pt;}
.h31{height:50.772147pt;}
.h28{height:50.787808pt;}
.h10{height:51.593750pt;}
.h20{height:52.976174pt;}
.h9{height:53.535000pt;}
.hf{height:57.787500pt;}
.h12{height:58.300937pt;}
.h7{height:59.193333pt;}
.hd{height:59.340000pt;}
.h56{height:59.487624pt;}
.h4f{height:59.600602pt;}
.h3e{height:61.995006pt;}
.h1a{height:62.616296pt;}
.h15{height:62.781250pt;}
.h14{height:62.812500pt;}
.h54{height:62.848835pt;}
.h2b{height:63.536871pt;}
.h24{height:63.538326pt;}
.h2f{height:63.736851pt;}
.h29{height:63.738310pt;}
.h42{height:63.990309pt;}
.h37{height:64.267012pt;}
.hc{height:64.290000pt;}
.h30{height:64.340125pt;}
.h48{height:64.341598pt;}
.h13{height:64.500000pt;}
.h18{height:64.808895pt;}
.h50{height:65.781915pt;}
.h2c{height:65.811452pt;}
.h25{height:65.812958pt;}
.h11{height:65.843750pt;}
.h47{height:66.096317pt;}
.h1{height:66.106667pt;}
.h1e{height:66.387704pt;}
.h1f{height:66.637868pt;}
.h1b{height:66.661542pt;}
.h1d{height:68.698181pt;}
.h43{height:70.278659pt;}
.h35{height:70.646333pt;}
.h51{height:71.524375pt;}
.h4d{height:72.321482pt;}
.h22{height:72.820000pt;}
.h40{height:73.420939pt;}
.he{height:73.490625pt;}
.h33{height:74.707018pt;}
.h41{height:74.993974pt;}
.h36{height:75.270677pt;}
.hb{height:75.465000pt;}
.h45{height:75.470442pt;}
.h46{height:77.081317pt;}
.h19{height:77.313446pt;}
.h44{height:77.823062pt;}
.h2e{height:79.941384pt;}
.h27{height:79.943214pt;}
.h39{height:80.693827pt;}
.h3d{height:80.711809pt;}
.h49{height:82.522051pt;}
.h3a{height:122.385309pt;}
.h65{height:145.960000pt;}
.h5e{height:155.000000pt;}
.h57{height:170.980412pt;}
.h0{height:1008.000000pt;}
.w11{width:33.933220pt;}
.w12{width:64.001064pt;}
.w6{width:70.870667pt;}
.w13{width:71.997825pt;}
.wc{width:107.001431pt;}
.w2{width:132.192000pt;}
.wa{width:147.998226pt;}
.wf{width:162.867078pt;}
.w1{width:164.493333pt;}
.wb{width:165.938365pt;}
.w10{width:166.072566pt;}
.w5{width:166.733333pt;}
.w3{width:170.257333pt;}
.w8{width:187.994888pt;}
.w7{width:190.999363pt;}
.w4{width:208.226667pt;}
.we{width:247.993967pt;}
.w9{width:248.934757pt;}
.wd{width:259.791649pt;}
.w14{width:411.602701pt;}
.w16{width:419.012435pt;}
.w15{width:433.009597pt;}
.w0{width:696.000000pt;}
.x0{left:0.000000pt;}
.x2{left:1.586667pt;}
.x38{left:3.766363pt;}
.x10{left:7.350667pt;}
.x78{left:8.710421pt;}
.x8{left:10.390667pt;}
.x7a{left:11.947407pt;}
.x2f{left:14.642751pt;}
.xe{left:16.626667pt;}
.x46{left:18.811568pt;}
.x3f{left:20.065477pt;}
.x9{left:23.985333pt;}
.x74{left:28.161047pt;}
.x28{left:30.934511pt;}
.x36{left:31.948668pt;}
.x24{left:34.453617pt;}
.x8e{left:36.072993pt;}
.xc{left:38.106667pt;}
.x99{left:39.010053pt;}
.x8f{left:40.313188pt;}
.x73{left:42.207969pt;}
.x35{left:44.481915pt;}
.x45{left:46.559096pt;}
.x3e{left:47.708165pt;}
.x56{left:49.522117pt;}
.x7f{left:50.710724pt;}
.x65{left:51.850150pt;}
.x30{left:53.053022pt;}
.x7{left:55.025333pt;}
.x3a{left:58.538084pt;}
.x6e{left:59.681448pt;}
.x4a{left:63.722480pt;}
.x5d{left:65.855498pt;}
.x69{left:70.718986pt;}
.x41{left:72.946256pt;}
.x2c{left:74.107286pt;}
.x3d{left:75.709451pt;}
.x7e{left:80.755934pt;}
.x9b{left:82.208128pt;}
.x6d{left:84.492552pt;}
.x25{left:85.925180pt;}
.x4{left:87.866667pt;}
.x29{left:89.510345pt;}
.x5{left:90.586667pt;}
.x55{left:94.234413pt;}
.x3b{left:96.165520pt;}
.x6c{left:97.059596pt;}
.x64{left:98.525362pt;}
.x48{left:100.137692pt;}
.x44{left:102.022299pt;}
.x57{left:104.502736pt;}
.x70{left:106.244011pt;}
.x61{left:109.360513pt;}
.x42{left:110.342443pt;}
.x80{left:112.262502pt;}
.x6{left:114.601333pt;}
.x3c{left:117.044174pt;}
.x5a{left:118.637831pt;}
.x37{left:120.197796pt;}
.x2a{left:121.929966pt;}
.x67{left:123.657557pt;}
.xf{left:125.161333pt;}
.x18{left:127.392000pt;}
.x6a{left:129.099153pt;}
.x20{left:132.352000pt;}
.x12{left:133.946667pt;}
.x54{left:135.663349pt;}
.x63{left:137.083492pt;}
.x87{left:139.226667pt;}
.x62{left:140.411469pt;}
.x58{left:141.550752pt;}
.x14{left:143.706667pt;}
.x66{left:146.457515pt;}
.x72{left:147.940704pt;}
.x5b{left:149.116464pt;}
.x43{left:151.432196pt;}
.x5e{left:153.962037pt;}
.x6b{left:155.473129pt;}
.x71{left:159.312649pt;}
.xa0{left:160.826667pt;}
.x59{left:161.956864pt;}
.x34{left:163.157142pt;}
.x11{left:165.626667pt;}
.x4b{left:168.190584pt;}
.x2b{left:172.018698pt;}
.x26{left:175.284981pt;}
.x91{left:176.692914pt;}
.x23{left:180.413333pt;}
.x53{left:181.510501pt;}
.x52{left:182.549454pt;}
.x31{left:184.252180pt;}
.x5f{left:188.249484pt;}
.x2e{left:189.306667pt;}
.x97{left:190.749052pt;}
.x51{left:192.992269pt;}
.xd{left:196.040000pt;}
.x8c{left:197.121048pt;}
.x21{left:201.626667pt;}
.x22{left:206.106667pt;}
.x60{left:212.314339pt;}
.x32{left:217.804603pt;}
.x50{left:221.710008pt;}
.x81{left:223.953169pt;}
.x16{left:225.346667pt;}
.x4c{left:227.530812pt;}
.x9c{left:229.613575pt;}
.x1d{left:230.626667pt;}
.x1a{left:232.992000pt;}
.x33{left:235.133145pt;}
.x4f{left:240.850728pt;}
.x4e{left:241.889682pt;}
.x4d{left:252.705454pt;}
.x82{left:255.404142pt;}
.x9d{left:259.916099pt;}
.x8a{left:263.746667pt;}
.x92{left:266.877485pt;}
.x84{left:274.679777pt;}
.x15{left:276.066667pt;}
.x83{left:279.071794pt;}
.x9f{left:281.260460pt;}
.x3{left:284.866667pt;}
.x49{left:287.426667pt;}
.x94{left:288.943212pt;}
.x93{left:293.555207pt;}
.x88{left:296.546667pt;}
.x7d{left:304.200804pt;}
.x13{left:305.986667pt;}
.x9e{left:310.600870pt;}
.x9a{left:311.716598pt;}
.x90{left:322.129530pt;}
.x40{left:328.386667pt;}
.x1b{left:330.626667pt;}
.x85{left:336.453936pt;}
.x79{left:338.813333pt;}
.x47{left:346.306667pt;}
.x95{left:348.239108pt;}
.x6f{left:354.346667pt;}
.x76{left:359.946667pt;}
.xb{left:362.786667pt;}
.x2d{left:368.413333pt;}
.x27{left:371.453333pt;}
.x19{left:389.693333pt;}
.x7c{left:400.745762pt;}
.x98{left:407.952175pt;}
.x1e{left:409.213333pt;}
.x7b{left:412.573333pt;}
.x1{left:417.066667pt;}
.x8d{left:421.579868pt;}
.x77{left:423.933333pt;}
.x68{left:428.413333pt;}
.x39{left:429.373333pt;}
.x5c{left:440.253333pt;}
.x1c{left:444.253333pt;}
.x17{left:515.973333pt;}
.x75{left:521.893333pt;}
.x86{left:539.013333pt;}
.x8b{left:540.133333pt;}
.x1f{left:554.693333pt;}
.xa{left:555.973333pt;}
.x96{left:557.573333pt;}
.x89{left:566.373333pt;}
}




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