
    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_acb75b2f687f5e0aacb9b269.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_e65bb00542a42525a0aa4338.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_571dbad968fe50ea3c854fe3.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_82a244cf0333f1ff14ccc783.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_26e613be28ef0067443a602a.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_64303e65ad0ad972be344d9f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.364746;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_67520812e3f90027919180f1.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_8b959e442d1c100fb8ead0ad.woff2')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_1f8fc6264918bee8e237bf68.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_e631877fda6f0d9f19352bb3.woff2')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_9ee318b61c8083fba690952e.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_4c9eda93ff1aa0b1df01e2dd.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.364746;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_cc20ce5bbf8a450b45771a4d.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.364746;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_d6edd072a3673d7e61d78a54.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_a89e8c583e4c3a0b45eefd1a.woff2')format("woff");}.fff{font-family:fff;line-height:1.281250;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_5f73eeadb62be95996ce289e.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_93dcd09ac3bbfea3ddb418d6.woff2')format("woff");}.ff11{font-family:ff11;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;}
.m28{transform:matrix(0.102804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102804,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.142523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142523,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.173333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173333,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.175926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175926,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.179012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179012,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.201149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201149,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.206897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206897,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.212644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212644,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.216463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216463,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.220238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220238,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.221875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221875,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.224138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224138,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.227778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227778,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.228395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228395,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.228916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228916,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.231034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231034,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.234177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234177,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.234940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234940,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.237179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237179,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.237342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237342,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.240506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240506,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.241803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241803,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.243590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243590,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.243827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243827,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.246124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246124,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.246667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246667,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.m42{transform:matrix(0.253086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253086,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.256329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256329,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.256494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256494,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.256667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256667,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.259036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259036,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.259259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259259,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.261194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261194,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.261765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261765,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.262987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262987,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.266026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266026,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.266393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266393,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.267647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267647,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.272152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272152,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.276316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276316,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.278226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278226,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.278986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278986,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.291096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291096,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.296748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296748,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.298611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298611,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.304054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304054,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.305556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305556,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.311688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311688,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.318493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318493,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.328125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328125,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.336207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336207,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.346875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346875,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.356164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356164,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.360390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360390,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.366197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366197,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-1.443750px;}
.v0{vertical-align:0.000000px;}
.ls36{letter-spacing:-21.317175px;}
.ls2f{letter-spacing:-18.474300px;}
.ls3e{letter-spacing:-14.498550px;}
.ls48{letter-spacing:-11.694375px;}
.ls3a{letter-spacing:-10.233300px;}
.ls25{letter-spacing:-9.736875px;}
.ls3f{letter-spacing:-8.772225px;}
.ls4b{letter-spacing:-7.654050px;}
.ls1b{letter-spacing:-5.627250px;}
.ls18{letter-spacing:-4.922700px;}
.ls39{letter-spacing:-4.383225px;}
.ls21{letter-spacing:-3.655575px;}
.ls40{letter-spacing:-3.582750px;}
.ls1d{letter-spacing:-3.522750px;}
.ls32{letter-spacing:-3.486000px;}
.ls26{letter-spacing:-3.245625px;}
.ls33{letter-spacing:-3.085800px;}
.ls31{letter-spacing:-2.928000px;}
.ls29{letter-spacing:-2.922150px;}
.ls30{letter-spacing:-2.894625px;}
.ls22{letter-spacing:-2.819700px;}
.ls24{letter-spacing:-2.457000px;}
.ls43{letter-spacing:-2.399625px;}
.ls2a{letter-spacing:-2.194500px;}
.ls3b{letter-spacing:-2.067825px;}
.ls14{letter-spacing:-1.622025px;}
.ls2e{letter-spacing:-1.461075px;}
.ls1a{letter-spacing:-1.409100px;}
.ls1f{letter-spacing:-0.936000px;}
.ls13{letter-spacing:-0.807975px;}
.ls46{letter-spacing:-0.741150px;}
.ls27{letter-spacing:-0.733425px;}
.ls16{letter-spacing:-0.718575px;}
.ls2c{letter-spacing:-0.718200px;}
.ls34{letter-spacing:-0.710325px;}
.ls1c{letter-spacing:-0.704550px;}
.ls41{letter-spacing:-0.701250px;}
.ls11{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.704550px;}
.lsb{letter-spacing:0.733425px;}
.ls15{letter-spacing:0.789750px;}
.ls17{letter-spacing:0.796800px;}
.ls0{letter-spacing:0.807975px;}
.ls12{letter-spacing:0.867150px;}
.ls20{letter-spacing:1.032000px;}
.ls45{letter-spacing:1.356600px;}
.ls9{letter-spacing:1.409100px;}
.lsd{letter-spacing:1.461075px;}
.ls37{letter-spacing:1.530000px;}
.ls42{letter-spacing:1.536000px;}
.ls47{letter-spacing:1.581975px;}
.ls2b{letter-spacing:1.587600px;}
.ls19{letter-spacing:1.620375px;}
.ls3{letter-spacing:1.622025px;}
.ls5{letter-spacing:2.113650px;}
.lse{letter-spacing:2.194500px;}
.ls49{letter-spacing:2.399625px;}
.ls2{letter-spacing:2.430000px;}
.lsf{letter-spacing:2.922150px;}
.ls4a{letter-spacing:3.077100px;}
.ls2d{letter-spacing:3.175200px;}
.ls6{letter-spacing:3.522750px;}
.lsc{letter-spacing:3.655575px;}
.ls44{letter-spacing:4.224000px;}
.ls7{letter-spacing:4.227300px;}
.ls38{letter-spacing:4.383225px;}
.ls28{letter-spacing:4.762800px;}
.ls1{letter-spacing:4.860000px;}
.ls10{letter-spacing:5.116650px;}
.ls23{letter-spacing:5.556600px;}
.ls4{letter-spacing:6.331800px;}
.lsa{letter-spacing:6.350400px;}
.ls3d{letter-spacing:6.577725px;}
.ls3c{letter-spacing:7.311150px;}
.ls1e{letter-spacing:11.629650px;}
.ls35{letter-spacing:15.349950px;}
.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;}
}
.ws0{word-spacing:0.000000px;}
._20{margin-left:-50.366165px;}
._24{margin-left:-41.161495px;}
._1f{margin-left:-22.138028px;}
._1d{margin-left:-20.741172px;}
._21{margin-left:-19.449896px;}
._22{margin-left:-15.000020px;}
._10{margin-left:-9.468750px;}
._f{margin-left:-5.270400px;}
._12{margin-left:-3.666150px;}
._11{margin-left:-1.793400px;}
._16{width:1.801215px;}
._1b{width:3.678990px;}
._13{width:4.721400px;}
._e{width:5.785800px;}
._8{width:7.776000px;}
._18{width:9.113535px;}
._9{width:10.266750px;}
._5{width:11.931300px;}
._6{width:13.056066px;}
._14{width:14.542350px;}
._3{width:15.552000px;}
._7{width:16.827750px;}
._b{width:17.912340px;}
._a{width:19.286829px;}
._19{width:20.599761px;}
._d{width:21.620925px;}
._0{width:22.751280px;}
._1{width:24.019497px;}
._4{width:25.272000px;}
._2{width:26.968221px;}
._15{width:28.365000px;}
._1a{width:29.964403px;}
._c{width:31.993785px;}
._23{width:35.367323px;}
._17{width:40.404375px;}
._1c{width:65.199750px;}
._1e{width:72.208014px;}
.fc0{color:transparent;}
.fs16{font-size:21.750000px;}
.fs13{font-size:24.000000px;}
.fs18{font-size:27.000000px;}
.fs14{font-size:38.250000px;}
.fs19{font-size:46.500000px;}
.fs2{font-size:48.750000px;}
.fs4{font-size:50.250000px;}
.fs17{font-size:51.750000px;}
.fse{font-size:52.500000px;}
.fs1e{font-size:53.250000px;}
.fsc{font-size:54.000000px;}
.fs1d{font-size:54.750000px;}
.fs12{font-size:55.500000px;}
.fsd{font-size:56.250000px;}
.fs1b{font-size:57.000000px;}
.fsb{font-size:57.750000px;}
.fs3{font-size:58.500000px;}
.fs11{font-size:59.250000px;}
.fsa{font-size:60.000000px;}
.fs0{font-size:60.750000px;}
.fs1{font-size:61.500000px;}
.fs5{font-size:62.250000px;}
.fsf{font-size:63.000000px;}
.fs1c{font-size:63.750000px;}
.fs10{font-size:65.250000px;}
.fs1a{font-size:67.500000px;}
.fs15{font-size:80.250000px;}
.fs6{font-size:91.500000px;}
.fs9{font-size:92.250000px;}
.fs8{font-size:96.750000px;}
.fs7{font-size:108.750000px;}
.y0{bottom:0.000000px;}
.y7c{bottom:95.024460px;}
.ybc{bottom:99.343185px;}
.y35{bottom:101.865060px;}
.y7b{bottom:111.223335px;}
.ybb{bottom:115.905548px;}
.y34{bottom:118.064273px;}
.y7a{bottom:127.424235px;}
.yba{bottom:131.743485px;}
.yb9{bottom:131.747722px;}
.y33{bottom:134.624085px;}
.y79{bottom:143.623635px;}
.yb8{bottom:147.946597px;}
.y32{bottom:150.466410px;}
.y78{bottom:159.822885px;}
.yb7{bottom:163.785585px;}
.y31{bottom:166.665285px;}
.y77{bottom:176.023935px;}
.yb6{bottom:179.984460px;}
.y30{bottom:182.505285px;}
.y2f{bottom:182.508398px;}
.y76{bottom:192.227573px;}
.yb5{bottom:196.183335px;}
.y2e{bottom:198.707273px;}
.y75{bottom:208.065510px;}
.yb3{bottom:212.558010px;}
.yb4{bottom:212.563935px;}
.y2d{bottom:214.906148px;}
.y73{bottom:224.263072px;}
.y74{bottom:224.264385px;}
.yb2{bottom:228.583635px;}
.y2c{bottom:230.744085px;}
.y72{bottom:240.822885px;}
.yb1{bottom:244.784535px;}
.y2b{bottom:246.945135px;}
.y71{bottom:256.663035px;}
.yb0{bottom:260.983935px;}
.y2a{bottom:262.785135px;}
.y70{bottom:272.864085px;}
.yaf{bottom:277.183335px;}
.y29{bottom:278.984535px;}
.y6f{bottom:289.425135px;}
.yae{bottom:293.384760px;}
.y28{bottom:295.183785px;}
.y27{bottom:295.188173px;}
.y6e{bottom:305.984947px;}
.yad{bottom:309.583635px;}
.yac{bottom:309.585660px;}
.y26{bottom:311.026110px;}
.y6d{bottom:321.822885px;}
.yab{bottom:325.784535px;}
.y25{bottom:327.224985px;}
.y24{bottom:327.227047px;}
.y6c{bottom:339.823485px;}
.yaa{bottom:341.983935px;}
.y23{bottom:343.065510px;}
.y6b{bottom:355.663635px;}
.y6a{bottom:355.664010px;}
.ya9{bottom:358.183335px;}
.y22{bottom:359.264385px;}
.y69{bottom:371.862885px;}
.y68{bottom:371.865060px;}
.ya8{bottom:374.025510px;}
.y21{bottom:375.465285px;}
.y67{bottom:388.063935px;}
.y66{bottom:388.064272px;}
.ya7{bottom:390.224385px;}
.y20{bottom:391.667235px;}
.y65{bottom:404.624085px;}
.ya6{bottom:406.423635px;}
.y1f{bottom:408.227047px;}
.y64{bottom:415.784085px;}
.y63{bottom:420.825660px;}
.ya5{bottom:422.624685px;}
.ya4{bottom:422.625210px;}
.y1e{bottom:424.064985px;}
.y62{bottom:437.024535px;}
.y61{bottom:437.024910px;}
.ya3{bottom:438.824085px;}
.ya2{bottom:438.824947px;}
.y1d{bottom:440.625285px;}
.y1c{bottom:440.627347px;}
.y60{bottom:453.223785px;}
.ya1{bottom:455.384760px;}
.y1b{bottom:456.465285px;}
.y5f{bottom:464.383785px;}
.y5e{bottom:469.063935px;}
.ya0{bottom:471.583635px;}
.y1a{bottom:472.664685px;}
.y19{bottom:472.667235px;}
.y5d{bottom:485.265360px;}
.y9f{bottom:488.143785px;}
.y18{bottom:488.866110px;}
.y5c{bottom:501.464235px;}
.y9e{bottom:504.343185px;}
.y17{bottom:505.065510px;}
.y5b{bottom:512.983485px;}
.y5a{bottom:518.024535px;}
.y59{bottom:518.024910px;}
.y9d{bottom:520.544235px;}
.y9c{bottom:520.545922px;}
.y16{bottom:521.264385px;}
.y58{bottom:534.223785px;}
.y9b{bottom:537.105735px;}
.y15{bottom:537.465285px;}
.y14{bottom:537.466297px;}
.y57{bottom:545.743035px;}
.y55{bottom:549.343785px;}
.y56{bottom:550.063935px;}
.y9a{bottom:553.304610px;}
.y13{bottom:554.026110px;}
.y54{bottom:566.626785px;}
.y99{bottom:569.864423px;}
.y12{bottom:570.224985px;}
.y53{bottom:582.825660px;}
.y98{bottom:586.424235px;}
.y11{bottom:598.304385px;}
.y52{bottom:599.023223px;}
.y97{bottom:602.623635px;}
.yf{bottom:609.825135px;}
.y10{bottom:611.624685px;}
.y50{bottom:615.580973px;}
.y51{bottom:615.583035px;}
.y96{bottom:619.186485px;}
.ye{bottom:624.584235px;}
.y4f{bottom:631.779847px;}
.y95{bottom:635.385360px;}
.y4e{bottom:647.444535px;}
.y94{bottom:651.584235px;}
.y93{bottom:651.584610px;}
.yd{bottom:658.424835px;}
.y4d{bottom:664.184910px;}
.y92{bottom:667.783485px;}
.y4c{bottom:680.383785px;}
.y4b{bottom:680.386860px;}
.y91{bottom:684.343785px;}
.yb{bottom:684.701160px;}
.yc{bottom:684.704685px;}
.y4a{bottom:696.585735px;}
.y90{bottom:700.543522px;}
.ya{bottom:710.984535px;}
.y49{bottom:713.145548px;}
.y8f{bottom:717.103335px;}
.y48{bottom:728.983485px;}
.y47{bottom:728.986035px;}
.y8e{bottom:733.663635px;}
.y8d{bottom:733.665660px;}
.y8{bottom:737.621760px;}
.y9{bottom:737.625285px;}
.y46{bottom:745.545848px;}
.y8c{bottom:749.865060px;}
.y45{bottom:761.383785px;}
.y44{bottom:761.384160px;}
.y7{bottom:763.905135px;}
.y8b{bottom:766.063935px;}
.y43{bottom:777.583035px;}
.y42{bottom:777.585210px;}
.y8a{bottom:782.263185px;}
.y41{bottom:793.787498px;}
.y89{bottom:798.823485px;}
.y88{bottom:798.823973px;}
.y6{bottom:806.384235px;}
.y40{bottom:809.986373px;}
.y87{bottom:815.383785px;}
.y5{bottom:822.224385px;}
.y3f{bottom:826.185248px;}
.y86{bottom:831.943935px;}
.y3{bottom:838.419623px;}
.y4{bottom:838.425435px;}
.y3e{bottom:842.745060px;}
.y85{bottom:848.143335px;}
.y84{bottom:848.145848px;}
.y2{bottom:854.624685px;}
.y3d{bottom:858.943935px;}
.y3c{bottom:858.944422px;}
.y83{bottom:864.344722px;}
.y1{bottom:871.184985px;}
.y3b{bottom:875.505135px;}
.y82{bottom:880.904535px;}
.y81{bottom:880.905398px;}
.y3a{bottom:891.704010px;}
.y80{bottom:897.465210px;}
.y39{bottom:907.902885px;}
.y7f{bottom:913.664085px;}
.y38{bottom:919.064385px;}
.y37{bottom:924.465210px;}
.y7e{bottom:929.863485px;}
.y36{bottom:940.664085px;}
.y7d{bottom:946.423785px;}
.h23{height:21.495117px;}
.h1e{height:25.031250px;}
.h25{height:26.683594px;}
.h1f{height:37.540283px;}
.h26{height:48.498047px;}
.h4{height:50.844727px;}
.h6{height:52.409180px;}
.h2e{height:53.734131px;}
.h24{height:53.973633px;}
.h1c{height:54.470215px;}
.h12{height:54.755859px;}
.h15{height:55.206299px;}
.h2f{height:55.538086px;}
.h2c{height:55.942383px;}
.h10{height:56.320312px;}
.he{height:56.678467px;}
.h21{height:56.683717px;}
.h20{height:56.686717px;}
.h30{height:57.102539px;}
.h5{height:57.385986px;}
.h31{height:57.414551px;}
.h17{height:57.814453px;}
.h27{height:58.150635px;}
.h11{height:58.666992px;}
.hd{height:58.886719px;}
.h2{height:59.593140px;}
.h1a{height:59.622803px;}
.h19{height:59.712891px;}
.h13{height:60.231445px;}
.h3{height:60.328857px;}
.h1b{height:60.468750px;}
.hf{height:61.013672px;}
.h7{height:61.064575px;}
.h18{height:61.094971px;}
.h14{height:61.831055px;}
.h2d{height:62.567139px;}
.h2b{height:64.007446px;}
.h16{height:64.039307px;}
.h2a{height:66.247559px;}
.h22{height:83.698242px;}
.h8{height:95.431641px;}
.hc{height:95.445741px;}
.hb{height:96.213867px;}
.ha{height:100.907227px;}
.h9{height:113.422852px;}
.h1d{height:1013.627880px;}
.h1{height:1014.000000px;}
.h0{height:1014.347880px;}
.h29{height:1018.500000px;}
.h28{height:1018.667880px;}
.w3{width:669.000000px;}
.w2{width:669.252165px;}
.w5{width:672.000000px;}
.w4{width:672.132150px;}
.w1{width:675.000000px;}
.w0{width:675.012150px;}
.x4f{left:-11.261640px;}
.x0{left:0.000000px;}
.x6f{left:38.778360px;}
.xc{left:40.218660px;}
.x25{left:41.265847px;}
.x82{left:42.377460px;}
.x7f{left:44.178660px;}
.x86{left:45.617310px;}
.x70{left:52.817310px;}
.x36{left:54.977760px;}
.x3b{left:57.138210px;}
.x80{left:61.098210px;}
.x12{left:62.523210px;}
.x24{left:63.617910px;}
.x11{left:65.058210px;}
.x8b{left:66.504660px;}
.x7d{left:67.937160px;}
.x76{left:71.178660px;}
.x85{left:85.217610px;}
.x77{left:86.298660px;}
.x81{left:88.098210px;}
.x3e{left:91.338060px;}
.x4a{left:93.165135px;}
.x52{left:94.218660px;}
.x5f{left:95.656335px;}
.x69{left:96.737460px;}
.x6e{left:97.819410px;}
.x88{left:101.777760px;}
.x39{left:106.817160px;}
.xd{left:109.697910px;}
.x83{left:110.777310px;}
.x40{left:113.284560px;}
.x49{left:114.761760px;}
.x50{left:116.179260px;}
.x65{left:117.978810px;}
.x6b{left:119.421173px;}
.x3a{left:120.857760px;}
.x89{left:130.218060px;}
.x84{left:141.737310px;}
.xe{left:148.937160px;}
.x5a{left:154.698360px;}
.x5b{left:169.818360px;}
.x63{left:182.779410px;}
.x4{left:195.017160px;}
.x64{left:199.338060px;}
.x71{left:205.458510px;}
.x31{left:210.497910px;}
.x14{left:213.378510px;}
.x1{left:218.057160px;}
.x72{left:224.177610px;}
.x32{left:226.697310px;}
.x41{left:227.778360px;}
.x78{left:231.018210px;}
.x42{left:238.218060px;}
.x73{left:239.658360px;}
.x2d{left:245.057160px;}
.x79{left:246.858360px;}
.x51{left:254.778360px;}
.x2e{left:259.458510px;}
.x43{left:267.378510px;}
.x47{left:268.457910px;}
.x66{left:270.979410px;}
.x1c{left:273.858360px;}
.x5c{left:276.738960px;}
.x48{left:282.498510px;}
.x37{left:283.577910px;}
.xf{left:290.777760px;}
.x7{left:292.218060px;}
.x56{left:295.818810px;}
.x5{left:304.457460px;}
.x8{left:306.617910px;}
.x57{left:309.859410px;}
.x10{left:312.377460px;}
.x38{left:314.537910px;}
.x6{left:317.418510px;}
.x15{left:318.857160px;}
.x2a{left:321.737760px;}
.x67{left:322.818810px;}
.x3c{left:324.977610px;}
.xb{left:329.657910px;}
.x68{left:336.859410px;}
.x2b{left:337.937160px;}
.x3d{left:339.377460px;}
.x20{left:341.537910px;}
.x1d{left:345.857160px;}
.x7a{left:352.697910px;}
.x21{left:357.737310px;}
.x33{left:362.778360px;}
.x1e{left:365.298060px;}
.x3f{left:372.138660px;}
.x60{left:377.178060px;}
.x2{left:384.378060px;}
.x16{left:386.177610px;}
.x34{left:387.617910px;}
.x8a{left:391.218660px;}
.x4d{left:399.138660px;}
.x3{left:403.817310px;}
.x17{left:405.257460px;}
.x22{left:407.777310px;}
.x7b{left:409.578510px;}
.x7e{left:412.457460px;}
.x4e{left:413.538510px;}
.x4b{left:419.658960px;}
.x35{left:427.938210px;}
.x7c{left:432.618360px;}
.x4c{left:433.697910px;}
.x23{left:435.497460px;}
.x26{left:436.578510px;}
.x28{left:443.417460px;}
.x27{left:453.138660px;}
.x18{left:465.017160px;}
.x29{left:477.258060px;}
.x74{left:478.337460px;}
.x19{left:485.178060px;}
.x1f{left:491.657910px;}
.x75{left:493.818360px;}
.x6c{left:497.419110px;}
.x61{left:500.658960px;}
.x6d{left:502.099260px;}
.x53{left:503.898810px;}
.x55{left:505.339110px;}
.x87{left:509.658360px;}
.x1a{left:511.098660px;}
.x45{left:512.538960px;}
.x62{left:515.058810px;}
.x44{left:517.219260px;}
.x54{left:521.179260px;}
.x2f{left:524.058210px;}
.x13{left:531.258060px;}
.x46{left:537.378510px;}
.x1b{left:539.178060px;}
.x30{left:554.298060px;}
.xa{left:556.817760px;}
.x9{left:561.857160px;}
.x2c{left:566.898210px;}
.x58{left:572.657910px;}
.x59{left:588.858810px;}
.x5d{left:590.658360px;}
.x5e{left:605.058210px;}
.x6a{left:620.898360px;}
@media print{
.v1{vertical-align:-1.283333pt;}
.v0{vertical-align:0.000000pt;}
.ls36{letter-spacing:-18.948600pt;}
.ls2f{letter-spacing:-16.421600pt;}
.ls3e{letter-spacing:-12.887600pt;}
.ls48{letter-spacing:-10.395000pt;}
.ls3a{letter-spacing:-9.096267pt;}
.ls25{letter-spacing:-8.655000pt;}
.ls3f{letter-spacing:-7.797533pt;}
.ls4b{letter-spacing:-6.803600pt;}
.ls1b{letter-spacing:-5.002000pt;}
.ls18{letter-spacing:-4.375733pt;}
.ls39{letter-spacing:-3.896200pt;}
.ls21{letter-spacing:-3.249400pt;}
.ls40{letter-spacing:-3.184667pt;}
.ls1d{letter-spacing:-3.131333pt;}
.ls32{letter-spacing:-3.098667pt;}
.ls26{letter-spacing:-2.885000pt;}
.ls33{letter-spacing:-2.742933pt;}
.ls31{letter-spacing:-2.602667pt;}
.ls29{letter-spacing:-2.597467pt;}
.ls30{letter-spacing:-2.573000pt;}
.ls22{letter-spacing:-2.506400pt;}
.ls24{letter-spacing:-2.184000pt;}
.ls43{letter-spacing:-2.133000pt;}
.ls2a{letter-spacing:-1.950667pt;}
.ls3b{letter-spacing:-1.838067pt;}
.ls14{letter-spacing:-1.441800pt;}
.ls2e{letter-spacing:-1.298733pt;}
.ls1a{letter-spacing:-1.252533pt;}
.ls1f{letter-spacing:-0.832000pt;}
.ls13{letter-spacing:-0.718200pt;}
.ls46{letter-spacing:-0.658800pt;}
.ls27{letter-spacing:-0.651933pt;}
.ls16{letter-spacing:-0.638733pt;}
.ls2c{letter-spacing:-0.638400pt;}
.ls34{letter-spacing:-0.631400pt;}
.ls1c{letter-spacing:-0.626267pt;}
.ls41{letter-spacing:-0.623333pt;}
.ls11{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.626267pt;}
.lsb{letter-spacing:0.651933pt;}
.ls15{letter-spacing:0.702000pt;}
.ls17{letter-spacing:0.708267pt;}
.ls0{letter-spacing:0.718200pt;}
.ls12{letter-spacing:0.770800pt;}
.ls20{letter-spacing:0.917333pt;}
.ls45{letter-spacing:1.205867pt;}
.ls9{letter-spacing:1.252533pt;}
.lsd{letter-spacing:1.298733pt;}
.ls37{letter-spacing:1.360000pt;}
.ls42{letter-spacing:1.365333pt;}
.ls47{letter-spacing:1.406200pt;}
.ls2b{letter-spacing:1.411200pt;}
.ls19{letter-spacing:1.440333pt;}
.ls3{letter-spacing:1.441800pt;}
.ls5{letter-spacing:1.878800pt;}
.lse{letter-spacing:1.950667pt;}
.ls49{letter-spacing:2.133000pt;}
.ls2{letter-spacing:2.160000pt;}
.lsf{letter-spacing:2.597467pt;}
.ls4a{letter-spacing:2.735200pt;}
.ls2d{letter-spacing:2.822400pt;}
.ls6{letter-spacing:3.131333pt;}
.lsc{letter-spacing:3.249400pt;}
.ls44{letter-spacing:3.754667pt;}
.ls7{letter-spacing:3.757600pt;}
.ls38{letter-spacing:3.896200pt;}
.ls28{letter-spacing:4.233600pt;}
.ls1{letter-spacing:4.320000pt;}
.ls10{letter-spacing:4.548133pt;}
.ls23{letter-spacing:4.939200pt;}
.ls4{letter-spacing:5.628267pt;}
.lsa{letter-spacing:5.644800pt;}
.ls3d{letter-spacing:5.846867pt;}
.ls3c{letter-spacing:6.498800pt;}
.ls1e{letter-spacing:10.337467pt;}
.ls35{letter-spacing:13.644400pt;}
.ws0{word-spacing:0.000000pt;}
._20{margin-left:-44.769924pt;}
._24{margin-left:-36.587996pt;}
._1f{margin-left:-19.678247pt;}
._1d{margin-left:-18.436597pt;}
._21{margin-left:-17.288797pt;}
._22{margin-left:-13.333351pt;}
._10{margin-left:-8.416667pt;}
._f{margin-left:-4.684800pt;}
._12{margin-left:-3.258800pt;}
._11{margin-left:-1.594133pt;}
._16{width:1.601080pt;}
._1b{width:3.270214pt;}
._13{width:4.196800pt;}
._e{width:5.142933pt;}
._8{width:6.912000pt;}
._18{width:8.100920pt;}
._9{width:9.126000pt;}
._5{width:10.605600pt;}
._6{width:11.605392pt;}
._14{width:12.926533pt;}
._3{width:13.824000pt;}
._7{width:14.958000pt;}
._b{width:15.922080pt;}
._a{width:17.143848pt;}
._19{width:18.310899pt;}
._d{width:19.218600pt;}
._0{width:20.223360pt;}
._1{width:21.350664pt;}
._4{width:22.464000pt;}
._2{width:23.971752pt;}
._15{width:25.213333pt;}
._1a{width:26.635025pt;}
._c{width:28.438920pt;}
._23{width:31.437621pt;}
._17{width:35.915000pt;}
._1c{width:57.955333pt;}
._1e{width:64.184901pt;}
.fs16{font-size:19.333333pt;}
.fs13{font-size:21.333333pt;}
.fs18{font-size:24.000000pt;}
.fs14{font-size:34.000000pt;}
.fs19{font-size:41.333333pt;}
.fs2{font-size:43.333333pt;}
.fs4{font-size:44.666667pt;}
.fs17{font-size:46.000000pt;}
.fse{font-size:46.666667pt;}
.fs1e{font-size:47.333333pt;}
.fsc{font-size:48.000000pt;}
.fs1d{font-size:48.666667pt;}
.fs12{font-size:49.333333pt;}
.fsd{font-size:50.000000pt;}
.fs1b{font-size:50.666667pt;}
.fsb{font-size:51.333333pt;}
.fs3{font-size:52.000000pt;}
.fs11{font-size:52.666667pt;}
.fsa{font-size:53.333333pt;}
.fs0{font-size:54.000000pt;}
.fs1{font-size:54.666667pt;}
.fs5{font-size:55.333333pt;}
.fsf{font-size:56.000000pt;}
.fs1c{font-size:56.666667pt;}
.fs10{font-size:58.000000pt;}
.fs1a{font-size:60.000000pt;}
.fs15{font-size:71.333333pt;}
.fs6{font-size:81.333333pt;}
.fs9{font-size:82.000000pt;}
.fs8{font-size:86.000000pt;}
.fs7{font-size:96.666667pt;}
.y0{bottom:0.000000pt;}
.y7c{bottom:84.466187pt;}
.ybc{bottom:88.305053pt;}
.y35{bottom:90.546720pt;}
.y7b{bottom:98.865187pt;}
.ybb{bottom:103.027153pt;}
.y34{bottom:104.946020pt;}
.y7a{bottom:113.265987pt;}
.yba{bottom:117.105320pt;}
.yb9{bottom:117.109087pt;}
.y33{bottom:119.665853pt;}
.y79{bottom:127.665453pt;}
.yb8{bottom:131.508087pt;}
.y32{bottom:133.747920pt;}
.y78{bottom:142.064787pt;}
.yb7{bottom:145.587187pt;}
.y31{bottom:148.146920pt;}
.y77{bottom:156.465720pt;}
.yb6{bottom:159.986187pt;}
.y30{bottom:162.226920pt;}
.y2f{bottom:162.229687pt;}
.y76{bottom:170.868953pt;}
.yb5{bottom:174.385187pt;}
.y2e{bottom:176.628687pt;}
.y75{bottom:184.947120pt;}
.yb3{bottom:188.940453pt;}
.yb4{bottom:188.945720pt;}
.y2d{bottom:191.027687pt;}
.y73{bottom:199.344953pt;}
.y74{bottom:199.346120pt;}
.yb2{bottom:203.185453pt;}
.y2c{bottom:205.105853pt;}
.y72{bottom:214.064787pt;}
.yb1{bottom:217.586253pt;}
.y2b{bottom:219.506787pt;}
.y71{bottom:228.144920pt;}
.yb0{bottom:231.985720pt;}
.y2a{bottom:233.586787pt;}
.y70{bottom:242.545853pt;}
.yaf{bottom:246.385187pt;}
.y29{bottom:247.986253pt;}
.y6f{bottom:257.266787pt;}
.yae{bottom:260.786453pt;}
.y28{bottom:262.385587pt;}
.y27{bottom:262.389487pt;}
.y6e{bottom:271.986620pt;}
.yad{bottom:275.185453pt;}
.yac{bottom:275.187253pt;}
.y26{bottom:276.467653pt;}
.y6d{bottom:286.064787pt;}
.yab{bottom:289.586253pt;}
.y25{bottom:290.866653pt;}
.y24{bottom:290.868487pt;}
.y6c{bottom:302.065320pt;}
.yaa{bottom:303.985720pt;}
.y23{bottom:304.947120pt;}
.y6b{bottom:316.145453pt;}
.y6a{bottom:316.145787pt;}
.ya9{bottom:318.385187pt;}
.y22{bottom:319.346120pt;}
.y69{bottom:330.544787pt;}
.y68{bottom:330.546720pt;}
.ya8{bottom:332.467120pt;}
.y21{bottom:333.746920pt;}
.y67{bottom:344.945720pt;}
.y66{bottom:344.946020pt;}
.ya7{bottom:346.866120pt;}
.y20{bottom:348.148653pt;}
.y65{bottom:359.665853pt;}
.ya6{bottom:361.265453pt;}
.y1f{bottom:362.868487pt;}
.y64{bottom:369.585853pt;}
.y63{bottom:374.067253pt;}
.ya5{bottom:375.666387pt;}
.ya4{bottom:375.666853pt;}
.y1e{bottom:376.946653pt;}
.y62{bottom:388.466253pt;}
.y61{bottom:388.466587pt;}
.ya3{bottom:390.065853pt;}
.ya2{bottom:390.066620pt;}
.y1d{bottom:391.666920pt;}
.y1c{bottom:391.668753pt;}
.y60{bottom:402.865587pt;}
.ya1{bottom:404.786453pt;}
.y1b{bottom:405.746920pt;}
.y5f{bottom:412.785587pt;}
.y5e{bottom:416.945720pt;}
.ya0{bottom:419.185453pt;}
.y1a{bottom:420.146387pt;}
.y19{bottom:420.148653pt;}
.y5d{bottom:431.346987pt;}
.y9f{bottom:433.905587pt;}
.y18{bottom:434.547653pt;}
.y5c{bottom:445.745987pt;}
.y9e{bottom:448.305053pt;}
.y17{bottom:448.947120pt;}
.y5b{bottom:455.985320pt;}
.y5a{bottom:460.466253pt;}
.y59{bottom:460.466587pt;}
.y9d{bottom:462.705987pt;}
.y9c{bottom:462.707487pt;}
.y16{bottom:463.346120pt;}
.y58{bottom:474.865587pt;}
.y9b{bottom:477.427320pt;}
.y15{bottom:477.746920pt;}
.y14{bottom:477.747820pt;}
.y57{bottom:485.104920pt;}
.y55{bottom:488.305587pt;}
.y56{bottom:488.945720pt;}
.y9a{bottom:491.826320pt;}
.y13{bottom:492.467653pt;}
.y54{bottom:503.668253pt;}
.y99{bottom:506.546153pt;}
.y12{bottom:506.866653pt;}
.y53{bottom:518.067253pt;}
.y98{bottom:521.265987pt;}
.y11{bottom:531.826120pt;}
.y52{bottom:532.465087pt;}
.y97{bottom:535.665453pt;}
.yf{bottom:542.066787pt;}
.y10{bottom:543.666387pt;}
.y50{bottom:547.183087pt;}
.y51{bottom:547.184920pt;}
.y96{bottom:550.387987pt;}
.ye{bottom:555.185987pt;}
.y4f{bottom:561.582087pt;}
.y95{bottom:564.786987pt;}
.y4e{bottom:575.506253pt;}
.y94{bottom:579.185987pt;}
.y93{bottom:579.186320pt;}
.yd{bottom:585.266520pt;}
.y4d{bottom:590.386587pt;}
.y92{bottom:593.585320pt;}
.y4c{bottom:604.785587pt;}
.y4b{bottom:604.788320pt;}
.y91{bottom:608.305587pt;}
.yb{bottom:608.623253pt;}
.yc{bottom:608.626387pt;}
.y4a{bottom:619.187320pt;}
.y90{bottom:622.705353pt;}
.ya{bottom:631.986253pt;}
.y49{bottom:633.907153pt;}
.y8f{bottom:637.425187pt;}
.y48{bottom:647.985320pt;}
.y47{bottom:647.987587pt;}
.y8e{bottom:652.145453pt;}
.y8d{bottom:652.147253pt;}
.y8{bottom:655.663787pt;}
.y9{bottom:655.666920pt;}
.y46{bottom:662.707420pt;}
.y8c{bottom:666.546720pt;}
.y45{bottom:676.785587pt;}
.y44{bottom:676.785920pt;}
.y7{bottom:679.026787pt;}
.y8b{bottom:680.945720pt;}
.y43{bottom:691.184920pt;}
.y42{bottom:691.186853pt;}
.y8a{bottom:695.345053pt;}
.y41{bottom:705.588887pt;}
.y89{bottom:710.065320pt;}
.y88{bottom:710.065753pt;}
.y6{bottom:716.785987pt;}
.y40{bottom:719.987887pt;}
.y87{bottom:724.785587pt;}
.y5{bottom:730.866120pt;}
.y3f{bottom:734.386887pt;}
.y86{bottom:739.505720pt;}
.y3{bottom:745.261887pt;}
.y4{bottom:745.267053pt;}
.y3e{bottom:749.106720pt;}
.y85{bottom:753.905187pt;}
.y84{bottom:753.907420pt;}
.y2{bottom:759.666387pt;}
.y3d{bottom:763.505720pt;}
.y3c{bottom:763.506153pt;}
.y83{bottom:768.306420pt;}
.y1{bottom:774.386653pt;}
.y3b{bottom:778.226787pt;}
.y82{bottom:783.026253pt;}
.y81{bottom:783.027020pt;}
.y3a{bottom:792.625787pt;}
.y80{bottom:797.746853pt;}
.y39{bottom:807.024787pt;}
.y7f{bottom:812.145853pt;}
.y38{bottom:816.946120pt;}
.y37{bottom:821.746853pt;}
.y7e{bottom:826.545320pt;}
.y36{bottom:836.145853pt;}
.y7d{bottom:841.265587pt;}
.h23{height:19.106771pt;}
.h1e{height:22.250000pt;}
.h25{height:23.718750pt;}
.h1f{height:33.369141pt;}
.h26{height:43.109375pt;}
.h4{height:45.195312pt;}
.h6{height:46.585938pt;}
.h2e{height:47.763672pt;}
.h24{height:47.976562pt;}
.h1c{height:48.417969pt;}
.h12{height:48.671875pt;}
.h15{height:49.072266pt;}
.h2f{height:49.367188pt;}
.h2c{height:49.726562pt;}
.h10{height:50.062500pt;}
.he{height:50.380859pt;}
.h21{height:50.385526pt;}
.h20{height:50.388193pt;}
.h30{height:50.757812pt;}
.h5{height:51.009766pt;}
.h31{height:51.035156pt;}
.h17{height:51.390625pt;}
.h27{height:51.689453pt;}
.h11{height:52.148438pt;}
.hd{height:52.343750pt;}
.h2{height:52.971680pt;}
.h1a{height:52.998047pt;}
.h19{height:53.078125pt;}
.h13{height:53.539062pt;}
.h3{height:53.625651pt;}
.h1b{height:53.750000pt;}
.hf{height:54.234375pt;}
.h7{height:54.279622pt;}
.h18{height:54.306641pt;}
.h14{height:54.960938pt;}
.h2d{height:55.615234pt;}
.h2b{height:56.895508pt;}
.h16{height:56.923828pt;}
.h2a{height:58.886719pt;}
.h22{height:74.398438pt;}
.h8{height:84.828125pt;}
.hc{height:84.840658pt;}
.hb{height:85.523438pt;}
.ha{height:89.695312pt;}
.h9{height:100.820312pt;}
.h1d{height:901.002560pt;}
.h1{height:901.333333pt;}
.h0{height:901.642560pt;}
.h29{height:905.333333pt;}
.h28{height:905.482560pt;}
.w3{width:594.666667pt;}
.w2{width:594.890813pt;}
.w5{width:597.333333pt;}
.w4{width:597.450800pt;}
.w1{width:600.000000pt;}
.w0{width:600.010800pt;}
.x4f{left:-10.010347pt;}
.x0{left:0.000000pt;}
.x6f{left:34.469653pt;}
.xc{left:35.749920pt;}
.x25{left:36.680753pt;}
.x82{left:37.668853pt;}
.x7f{left:39.269920pt;}
.x86{left:40.548720pt;}
.x70{left:46.948720pt;}
.x36{left:48.869120pt;}
.x3b{left:50.789520pt;}
.x80{left:54.309520pt;}
.x12{left:55.576187pt;}
.x24{left:56.549253pt;}
.x11{left:57.829520pt;}
.x8b{left:59.115253pt;}
.x7d{left:60.388587pt;}
.x76{left:63.269920pt;}
.x85{left:75.748987pt;}
.x77{left:76.709920pt;}
.x81{left:78.309520pt;}
.x3e{left:81.189387pt;}
.x4a{left:82.813453pt;}
.x52{left:83.749920pt;}
.x5f{left:85.027853pt;}
.x69{left:85.988853pt;}
.x6e{left:86.950587pt;}
.x88{left:90.469120pt;}
.x39{left:94.948587pt;}
.xd{left:97.509253pt;}
.x83{left:98.468720pt;}
.x40{left:100.697387pt;}
.x49{left:102.010453pt;}
.x50{left:103.270453pt;}
.x65{left:104.870053pt;}
.x6b{left:106.152153pt;}
.x3a{left:107.429120pt;}
.x89{left:115.749387pt;}
.x84{left:125.988720pt;}
.xe{left:132.388587pt;}
.x5a{left:137.509653pt;}
.x5b{left:150.949653pt;}
.x63{left:162.470587pt;}
.x4{left:173.348587pt;}
.x64{left:177.189387pt;}
.x71{left:182.629787pt;}
.x31{left:187.109253pt;}
.x14{left:189.669787pt;}
.x1{left:193.828587pt;}
.x72{left:199.268987pt;}
.x32{left:201.508720pt;}
.x41{left:202.469653pt;}
.x78{left:205.349520pt;}
.x42{left:211.749387pt;}
.x73{left:213.029653pt;}
.x2d{left:217.828587pt;}
.x79{left:219.429653pt;}
.x51{left:226.469653pt;}
.x2e{left:230.629787pt;}
.x43{left:237.669787pt;}
.x47{left:238.629253pt;}
.x66{left:240.870587pt;}
.x1c{left:243.429653pt;}
.x5c{left:245.990187pt;}
.x48{left:251.109787pt;}
.x37{left:252.069253pt;}
.xf{left:258.469120pt;}
.x7{left:259.749387pt;}
.x56{left:262.950053pt;}
.x5{left:270.628853pt;}
.x8{left:272.549253pt;}
.x57{left:275.430587pt;}
.x10{left:277.668853pt;}
.x38{left:279.589253pt;}
.x6{left:282.149787pt;}
.x15{left:283.428587pt;}
.x2a{left:285.989120pt;}
.x67{left:286.950053pt;}
.x3c{left:288.868987pt;}
.xb{left:293.029253pt;}
.x68{left:299.430587pt;}
.x2b{left:300.388587pt;}
.x3d{left:301.668853pt;}
.x20{left:303.589253pt;}
.x1d{left:307.428587pt;}
.x7a{left:313.509253pt;}
.x21{left:317.988720pt;}
.x33{left:322.469653pt;}
.x1e{left:324.709387pt;}
.x3f{left:330.789920pt;}
.x60{left:335.269387pt;}
.x2{left:341.669387pt;}
.x16{left:343.268987pt;}
.x34{left:344.549253pt;}
.x8a{left:347.749920pt;}
.x4d{left:354.789920pt;}
.x3{left:358.948720pt;}
.x17{left:360.228853pt;}
.x22{left:362.468720pt;}
.x7b{left:364.069787pt;}
.x7e{left:366.628853pt;}
.x4e{left:367.589787pt;}
.x4b{left:373.030187pt;}
.x35{left:380.389520pt;}
.x7c{left:384.549653pt;}
.x4c{left:385.509253pt;}
.x23{left:387.108853pt;}
.x26{left:388.069787pt;}
.x28{left:394.148853pt;}
.x27{left:402.789920pt;}
.x18{left:413.348587pt;}
.x29{left:424.229387pt;}
.x74{left:425.188853pt;}
.x19{left:431.269387pt;}
.x1f{left:437.029253pt;}
.x75{left:438.949653pt;}
.x6c{left:442.150320pt;}
.x61{left:445.030187pt;}
.x6d{left:446.310453pt;}
.x53{left:447.910053pt;}
.x55{left:449.190320pt;}
.x87{left:453.029653pt;}
.x1a{left:454.309920pt;}
.x45{left:455.590187pt;}
.x62{left:457.830053pt;}
.x44{left:459.750453pt;}
.x54{left:463.270453pt;}
.x2f{left:465.829520pt;}
.x13{left:472.229387pt;}
.x46{left:477.669787pt;}
.x1b{left:479.269387pt;}
.x30{left:492.709387pt;}
.xa{left:494.949120pt;}
.x9{left:499.428587pt;}
.x2c{left:503.909520pt;}
.x58{left:509.029253pt;}
.x59{left:523.430053pt;}
.x5d{left:525.029653pt;}
.x5e{left:537.829520pt;}
.x6a{left:551.909653pt;}
}




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