
    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_59baaca28bd187549807ae59.woff')format("woff");}.ff1{font-family:ff1;line-height:0.963000;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_881423913092b7a0a7493634.woff')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_8823589423bbafe87dcb24ad.woff')format("woff");}.ff3{font-family:ff3;line-height:1.148000;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_97360ec499b76b0c23e79025.woff')format("woff");}.ff4{font-family:ff4;line-height:1.068000;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_b32f3dfd53b8db4ca27c749c.woff')format("woff");}.ff5{font-family:ff5;line-height:1.050000;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_31f6c35ce9892ff793cfce45.woff')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_b1a5a1de7fc7a0ede91f9518.woff')format("woff");}.ff7{font-family:ff7;line-height:0.736500;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_f6992319a65b8886d3458b75.woff')format("woff");}.ff8{font-family:ff8;line-height:0.690000;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_699d4deb18985f4d4a221f16.woff')format("woff");}.ff9{font-family:ff9;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_1ac7b6b684eacf4022766429.woff')format("woff");}.ffa{font-family:ffa;line-height:0.723500;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_88f712f32912805c698d5837.woff')format("woff");}.ffb{font-family:ffb;line-height:1.067000;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_9607750d735a9b1f7e5c1050.woff')format("woff");}.ffc{font-family:ffc;line-height:0.926000;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;}
.m1{transform:matrix(-0.147902,-0.201556,0.201556,-0.147902,0,0);-ms-transform:matrix(-0.147902,-0.201556,0.201556,-0.147902,0,0);-webkit-transform:matrix(-0.147902,-0.201556,0.201556,-0.147902,0,0);}
.m2{transform:matrix(-0.139312,-0.207587,0.207587,-0.139312,0,0);-ms-transform:matrix(-0.139312,-0.207587,0.207587,-0.139312,0,0);-webkit-transform:matrix(-0.139312,-0.207587,0.207587,-0.139312,0,0);}
.m3{transform:matrix(-0.131854,-0.212401,0.212401,-0.131854,0,0);-ms-transform:matrix(-0.131854,-0.212401,0.212401,-0.131854,0,0);-webkit-transform:matrix(-0.131854,-0.212401,0.212401,-0.131854,0,0);}
.m4{transform:matrix(-0.126598,-0.215576,0.215576,-0.126598,0,0);-ms-transform:matrix(-0.126598,-0.215576,0.215576,-0.126598,0,0);-webkit-transform:matrix(-0.126598,-0.215576,0.215576,-0.126598,0,0);}
.m5{transform:matrix(-0.121165,-0.218676,0.218676,-0.121165,0,0);-ms-transform:matrix(-0.121165,-0.218676,0.218676,-0.121165,0,0);-webkit-transform:matrix(-0.121165,-0.218676,0.218676,-0.121165,0,0);}
.m6{transform:matrix(-0.112659,-0.223177,0.223177,-0.112659,0,0);-ms-transform:matrix(-0.112659,-0.223177,0.223177,-0.112659,0,0);-webkit-transform:matrix(-0.112659,-0.223177,0.223177,-0.112659,0,0);}
.m7{transform:matrix(-0.104267,-0.227219,0.227219,-0.104267,0,0);-ms-transform:matrix(-0.104267,-0.227219,0.227219,-0.104267,0,0);-webkit-transform:matrix(-0.104267,-0.227219,0.227219,-0.104267,0,0);}
.m8{transform:matrix(-0.095996,-0.230835,0.230835,-0.095996,0,0);-ms-transform:matrix(-0.095996,-0.230835,0.230835,-0.095996,0,0);-webkit-transform:matrix(-0.095996,-0.230835,0.230835,-0.095996,0,0);}
.m3c{transform:matrix(-0.092632,0.232205,-0.232205,-0.092632,0,0);-ms-transform:matrix(-0.092632,0.232205,-0.232205,-0.092632,0,0);-webkit-transform:matrix(-0.092632,0.232205,-0.232205,-0.092632,0,0);}
.m3b{transform:matrix(-0.086365,0.234608,-0.234608,-0.086365,0,0);-ms-transform:matrix(-0.086365,0.234608,-0.234608,-0.086365,0,0);-webkit-transform:matrix(-0.086365,0.234608,-0.234608,-0.086365,0,0);}
.m9{transform:matrix(-0.082537,-0.235982,0.235982,-0.082537,0,0);-ms-transform:matrix(-0.082537,-0.235982,0.235982,-0.082537,0,0);-webkit-transform:matrix(-0.082537,-0.235982,0.235982,-0.082537,0,0);}
.m3a{transform:matrix(-0.080304,0.236751,-0.236751,-0.080304,0,0);-ms-transform:matrix(-0.080304,0.236751,-0.236751,-0.080304,0,0);-webkit-transform:matrix(-0.080304,0.236751,-0.236751,-0.080304,0,0);}
.ma{transform:matrix(-0.074363,-0.238684,0.238684,-0.074363,0,0);-ms-transform:matrix(-0.074363,-0.238684,0.238684,-0.074363,0,0);-webkit-transform:matrix(-0.074363,-0.238684,0.238684,-0.074363,0,0);}
.m39{transform:matrix(-0.070929,0.239727,-0.239727,-0.070929,0,0);-ms-transform:matrix(-0.070929,0.239727,-0.239727,-0.070929,0,0);-webkit-transform:matrix(-0.070929,0.239727,-0.239727,-0.070929,0,0);}
.mb{transform:matrix(-0.062188,-0.242142,0.242142,-0.062188,0,0);-ms-transform:matrix(-0.062188,-0.242142,0.242142,-0.062188,0,0);-webkit-transform:matrix(-0.062188,-0.242142,0.242142,-0.062188,0,0);}
.m38{transform:matrix(-0.061640,0.242282,-0.242282,-0.061640,0,0);-ms-transform:matrix(-0.061640,0.242282,-0.242282,-0.061640,0,0);-webkit-transform:matrix(-0.061640,0.242282,-0.242282,-0.061640,0,0);}
.mc{transform:matrix(-0.055811,-0.243691,0.243691,-0.055811,0,0);-ms-transform:matrix(-0.055811,-0.243691,0.243691,-0.055811,0,0);-webkit-transform:matrix(-0.055811,-0.243691,0.243691,-0.055811,0,0);}
.m37{transform:matrix(-0.054832,0.243913,-0.243913,-0.054832,0,0);-ms-transform:matrix(-0.054832,0.243913,-0.243913,-0.054832,0,0);-webkit-transform:matrix(-0.054832,0.243913,-0.243913,-0.054832,0,0);}
.m36{transform:matrix(-0.049336,0.245084,-0.245084,-0.049336,0,0);-ms-transform:matrix(-0.049336,0.245084,-0.245084,-0.049336,0,0);-webkit-transform:matrix(-0.049336,0.245084,-0.245084,-0.049336,0,0);}
.md{transform:matrix(-0.049231,-0.245105,0.245105,-0.049231,0,0);-ms-transform:matrix(-0.049231,-0.245105,0.245105,-0.049231,0,0);-webkit-transform:matrix(-0.049231,-0.245105,0.245105,-0.049231,0,0);}
.me{transform:matrix(-0.040382,-0.246717,0.246717,-0.040382,0,0);-ms-transform:matrix(-0.040382,-0.246717,0.246717,-0.040382,0,0);-webkit-transform:matrix(-0.040382,-0.246717,0.246717,-0.040382,0,0);}
.m35{transform:matrix(-0.039370,0.246881,-0.246881,-0.039370,0,0);-ms-transform:matrix(-0.039370,0.246881,-0.246881,-0.039370,0,0);-webkit-transform:matrix(-0.039370,0.246881,-0.246881,-0.039370,0,0);}
.mf{transform:matrix(-0.033674,-0.247722,0.247722,-0.033674,0,0);-ms-transform:matrix(-0.033674,-0.247722,0.247722,-0.033674,0,0);-webkit-transform:matrix(-0.033674,-0.247722,0.247722,-0.033674,0,0);}
.m34{transform:matrix(-0.028262,0.248397,-0.248397,-0.028262,0,0);-ms-transform:matrix(-0.028262,0.248397,-0.248397,-0.028262,0,0);-webkit-transform:matrix(-0.028262,0.248397,-0.248397,-0.028262,0,0);}
.m10{transform:matrix(-0.027224,-0.248513,0.248513,-0.027224,0,0);-ms-transform:matrix(-0.027224,-0.248513,0.248513,-0.027224,0,0);-webkit-transform:matrix(-0.027224,-0.248513,0.248513,-0.027224,0,0);}
.m33{transform:matrix(-0.019173,0.249264,-0.249264,-0.019173,0,0);-ms-transform:matrix(-0.019173,0.249264,-0.249264,-0.019173,0,0);-webkit-transform:matrix(-0.019173,0.249264,-0.249264,-0.019173,0,0);}
.m11{transform:matrix(-0.018202,-0.249336,0.249336,-0.018202,0,0);-ms-transform:matrix(-0.018202,-0.249336,0.249336,-0.018202,0,0);-webkit-transform:matrix(-0.018202,-0.249336,0.249336,-0.018202,0,0);}
.m32{transform:matrix(-0.009528,0.249818,-0.249818,-0.009528,0,0);-ms-transform:matrix(-0.009528,0.249818,-0.249818,-0.009528,0,0);-webkit-transform:matrix(-0.009528,0.249818,-0.249818,-0.009528,0,0);}
.m12{transform:matrix(-0.009114,-0.249834,0.249834,-0.009114,0,0);-ms-transform:matrix(-0.009114,-0.249834,0.249834,-0.009114,0,0);-webkit-transform:matrix(-0.009114,-0.249834,0.249834,-0.009114,0,0);}
.m13{transform:matrix(-0.002433,-0.249988,0.249988,-0.002433,0,0);-ms-transform:matrix(-0.002433,-0.249988,0.249988,-0.002433,0,0);-webkit-transform:matrix(-0.002433,-0.249988,0.249988,-0.002433,0,0);}
.m31{transform:matrix(-0.002227,0.249990,-0.249990,-0.002227,0,0);-ms-transform:matrix(-0.002227,0.249990,-0.249990,-0.002227,0,0);-webkit-transform:matrix(-0.002227,0.249990,-0.249990,-0.002227,0,0);}
.m3d{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m14{transform:matrix(0.004472,-0.249960,0.249960,0.004472,0,0);-ms-transform:matrix(0.004472,-0.249960,0.249960,0.004472,0,0);-webkit-transform:matrix(0.004472,-0.249960,0.249960,0.004472,0,0);}
.m30{transform:matrix(0.004855,0.249953,-0.249953,0.004855,0,0);-ms-transform:matrix(0.004855,0.249953,-0.249953,0.004855,0,0);-webkit-transform:matrix(0.004855,0.249953,-0.249953,0.004855,0,0);}
.m15{transform:matrix(0.013647,-0.249627,0.249627,0.013647,0,0);-ms-transform:matrix(0.013647,-0.249627,0.249627,0.013647,0,0);-webkit-transform:matrix(0.013647,-0.249627,0.249627,0.013647,0,0);}
.m2f{transform:matrix(0.014519,0.249578,-0.249578,0.014519,0,0);-ms-transform:matrix(0.014519,0.249578,-0.249578,0.014519,0,0);-webkit-transform:matrix(0.014519,0.249578,-0.249578,0.014519,0,0);}
.m16{transform:matrix(0.022309,-0.249003,0.249003,0.022309,0,0);-ms-transform:matrix(0.022309,-0.249003,0.249003,0.022309,0,0);-webkit-transform:matrix(0.022309,-0.249003,0.249003,0.022309,0,0);}
.m2e{transform:matrix(0.024106,0.248835,-0.248835,0.024106,0,0);-ms-transform:matrix(0.024106,0.248835,-0.248835,0.024106,0,0);-webkit-transform:matrix(0.024106,0.248835,-0.248835,0.024106,0,0);}
.m2d{transform:matrix(0.030982,0.248073,-0.248073,0.030982,0,0);-ms-transform:matrix(0.030982,0.248073,-0.248073,0.030982,0,0);-webkit-transform:matrix(0.030982,0.248073,-0.248073,0.030982,0,0);}
.m17{transform:matrix(0.032927,-0.247822,0.247822,0.032927,0,0);-ms-transform:matrix(0.032927,-0.247822,0.247822,0.032927,0,0);-webkit-transform:matrix(0.032927,-0.247822,0.247822,0.032927,0,0);}
.m2c{transform:matrix(0.038156,0.247071,-0.247071,0.038156,0,0);-ms-transform:matrix(0.038156,0.247071,-0.247071,0.038156,0,0);-webkit-transform:matrix(0.038156,0.247071,-0.247071,0.038156,0,0);}
.m18{transform:matrix(0.042515,-0.246358,0.246358,0.042515,0,0);-ms-transform:matrix(0.042515,-0.246358,0.246358,0.042515,0,0);-webkit-transform:matrix(0.042515,-0.246358,0.246358,0.042515,0,0);}
.m2b{transform:matrix(0.047585,0.245430,-0.245430,0.047585,0,0);-ms-transform:matrix(0.047585,0.245430,-0.245430,0.047585,0,0);-webkit-transform:matrix(0.047585,0.245430,-0.245430,0.047585,0,0);}
.m19{transform:matrix(0.047831,-0.245382,0.245382,0.047831,0,0);-ms-transform:matrix(0.047831,-0.245382,0.245382,0.047831,0,0);-webkit-transform:matrix(0.047831,-0.245382,0.245382,0.047831,0,0);}
.m1a{transform:matrix(0.054453,-0.243998,0.243998,0.054453,0,0);-ms-transform:matrix(0.054453,-0.243998,0.243998,0.054453,0,0);-webkit-transform:matrix(0.054453,-0.243998,0.243998,0.054453,0,0);}
.m2a{transform:matrix(0.054632,0.243958,-0.243958,0.054632,0,0);-ms-transform:matrix(0.054632,0.243958,-0.243958,0.054632,0,0);-webkit-transform:matrix(0.054632,0.243958,-0.243958,0.054632,0,0);}
.m29{transform:matrix(0.061416,0.242339,-0.242339,0.061416,0,0);-ms-transform:matrix(0.061416,0.242339,-0.242339,0.061416,0,0);-webkit-transform:matrix(0.061416,0.242339,-0.242339,0.061416,0,0);}
.m1b{transform:matrix(0.063465,-0.241810,0.241810,0.063465,0,0);-ms-transform:matrix(0.063465,-0.241810,0.241810,0.063465,0,0);-webkit-transform:matrix(0.063465,-0.241810,0.241810,0.063465,0,0);}
.m1c{transform:matrix(0.072648,-0.239212,0.239212,0.072648,0,0);-ms-transform:matrix(0.072648,-0.239212,0.239212,0.072648,0,0);-webkit-transform:matrix(0.072648,-0.239212,0.239212,0.072648,0,0);}
.m28{transform:matrix(0.074396,0.238674,-0.238674,0.074396,0,0);-ms-transform:matrix(0.074396,0.238674,-0.238674,0.074396,0,0);-webkit-transform:matrix(0.074396,0.238674,-0.238674,0.074396,0,0);}
.m1d{transform:matrix(0.078628,-0.237313,0.237313,0.078628,0,0);-ms-transform:matrix(0.078628,-0.237313,0.237313,0.078628,0,0);-webkit-transform:matrix(0.078628,-0.237313,0.237313,0.078628,0,0);}
.m27{transform:matrix(0.083105,0.235783,-0.235783,0.083105,0,0);-ms-transform:matrix(0.083105,0.235783,-0.235783,0.083105,0,0);-webkit-transform:matrix(0.083105,0.235783,-0.235783,0.083105,0,0);}
.m1e{transform:matrix(0.084788,-0.235183,0.235183,0.084788,0,0);-ms-transform:matrix(0.084788,-0.235183,0.235183,0.084788,0,0);-webkit-transform:matrix(0.084788,-0.235183,0.235183,0.084788,0,0);}
.m26{transform:matrix(0.097417,0.230239,-0.230239,0.097417,0,0);-ms-transform:matrix(0.097417,0.230239,-0.230239,0.097417,0,0);-webkit-transform:matrix(0.097417,0.230239,-0.230239,0.097417,0,0);}
.m25{transform:matrix(0.106178,0.226332,-0.226332,0.106178,0,0);-ms-transform:matrix(0.106178,0.226332,-0.226332,0.106178,0,0);-webkit-transform:matrix(0.106178,0.226332,-0.226332,0.106178,0,0);}
.m24{transform:matrix(0.115061,0.221948,-0.221948,0.115061,0,0);-ms-transform:matrix(0.115061,0.221948,-0.221948,0.115061,0,0);-webkit-transform:matrix(0.115061,0.221948,-0.221948,0.115061,0,0);}
.m23{transform:matrix(0.124005,0.217078,-0.217078,0.124005,0,0);-ms-transform:matrix(0.124005,0.217078,-0.217078,0.124005,0,0);-webkit-transform:matrix(0.124005,0.217078,-0.217078,0.124005,0,0);}
.m22{transform:matrix(0.129727,0.213708,-0.213708,0.129727,0,0);-ms-transform:matrix(0.129727,0.213708,-0.213708,0.129727,0,0);-webkit-transform:matrix(0.129727,0.213708,-0.213708,0.129727,0,0);}
.m21{transform:matrix(0.135229,0.210269,-0.210269,0.135229,0,0);-ms-transform:matrix(0.135229,0.210269,-0.210269,0.135229,0,0);-webkit-transform:matrix(0.135229,0.210269,-0.210269,0.135229,0,0);}
.m20{transform:matrix(0.142975,0.205081,-0.205081,0.142975,0,0);-ms-transform:matrix(0.142975,0.205081,-0.205081,0.142975,0,0);-webkit-transform:matrix(0.142975,0.205081,-0.205081,0.142975,0,0);}
.m1f{transform:matrix(0.151892,0.198567,-0.198567,0.151892,0,0);-ms-transform:matrix(0.151892,0.198567,-0.198567,0.151892,0,0);-webkit-transform:matrix(0.151892,0.198567,-0.198567,0.151892,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);}
.m3e{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls8{letter-spacing:-1.618345px;}
.ls6{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.000012px;}
.ls7{letter-spacing:0.102211px;}
.ls9{letter-spacing:0.113568px;}
.ls4{letter-spacing:1.391350px;}
.ls2{letter-spacing:1.533963px;}
.ls3{letter-spacing:1.565268px;}
.ls0{letter-spacing:4.431448px;}
.ls1{letter-spacing:117.426428px;}
.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;}
}
.ws1{word-spacing:-56.160000px;}
.ws4{word-spacing:-46.800000px;}
.ws0{word-spacing:-31.200000px;}
.ws5{word-spacing:-26.950442px;}
.ws2{word-spacing:-18.720000px;}
.ws3{word-spacing:-7.761002px;}
.ws9{word-spacing:-6.842477px;}
.ws7{word-spacing:-6.831121px;}
.ws8{word-spacing:-5.110564px;}
.ws6{word-spacing:-0.055270px;}
.wsa{word-spacing:0.000000px;}
._6{margin-left:-23.558400px;}
._12{margin-left:-18.000000px;}
._11{margin-left:-14.400000px;}
._7{margin-left:-12.556800px;}
._5{margin-left:-11.520000px;}
._8{margin-left:-10.483200px;}
._4{margin-left:-8.640000px;}
._1{margin-left:-6.391944px;}
._d{margin-left:-5.389920px;}
._3{margin-left:-4.320000px;}
._2{margin-left:-2.424000px;}
._0{margin-left:-1.229280px;}
._13{width:1.440000px;}
._15{width:3.081413px;}
._b{width:15.355200px;}
._9{width:140.634000px;}
._f{width:146.124000px;}
._e{width:157.905120px;}
._a{width:164.844000px;}
._10{width:222.377760px;}
._c{width:253.404000px;}
._14{width:699.267960px;}
.fc8{color:transparent;}
.fc7{color:rgb(175,49,131);}
.fc4{color:rgb(15,178,237);}
.fc3{color:rgb(27,24,26);}
.fc6{color:rgb(0,0,0);}
.fc5{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc2{color:rgb(37,34,33);}
.fc0{color:rgb(19,16,15);}
.fs30{font-size:27.826992px;}
.fs31{font-size:28.392023px;}
.fs7{font-size:31.044006px;}
.fs2e{font-size:31.305366px;}
.fs32{font-size:35.880029px;}
.fs2f{font-size:55.269624px;}
.fs8{font-size:59.131440px;}
.fsd{font-size:59.999961px;}
.fs9{font-size:59.999963px;}
.fs1c{font-size:59.999968px;}
.fs1d{font-size:59.999969px;}
.fs20{font-size:59.999972px;}
.fs2c{font-size:59.999973px;}
.fs27{font-size:59.999976px;}
.fsa{font-size:59.999977px;}
.fs19{font-size:59.999980px;}
.fs10{font-size:59.999982px;}
.fs22{font-size:59.999983px;}
.fs1e{font-size:59.999986px;}
.fs25{font-size:59.999987px;}
.fsf{font-size:59.999989px;}
.fs15{font-size:59.999991px;}
.fs16{font-size:59.999992px;}
.fs26{font-size:59.999994px;}
.fs12{font-size:59.999995px;}
.fs24{font-size:59.999998px;}
.fs2a{font-size:59.999999px;}
.fs18{font-size:60.000001px;}
.fsb{font-size:60.000003px;}
.fs23{font-size:60.000006px;}
.fs1b{font-size:60.000009px;}
.fs17{font-size:60.000010px;}
.fse{font-size:60.000012px;}
.fs1f{font-size:60.000014px;}
.fs21{font-size:60.000016px;}
.fs13{font-size:60.000018px;}
.fs2b{font-size:60.000020px;}
.fs1a{font-size:60.000021px;}
.fs14{font-size:60.000024px;}
.fs11{font-size:60.000027px;}
.fs29{font-size:60.000028px;}
.fs28{font-size:60.000029px;}
.fsc{font-size:60.000031px;}
.fs33{font-size:62.400050px;}
.fs6{font-size:72.000000px;}
.fs0{font-size:89.892000px;}
.fs2d{font-size:90.437724px;}
.fs1{font-size:120.000000px;}
.fs5{font-size:180.000000px;}
.fs2{font-size:216.000000px;}
.fs4{font-size:264.000000px;}
.fs34{font-size:288.000000px;}
.fs3{font-size:576.000000px;}
.y0{bottom:0.000000px;}
.y89{bottom:19.533853px;}
.y90{bottom:25.437784px;}
.y22{bottom:39.806136px;}
.y21{bottom:59.762997px;}
.y20{bottom:69.741428px;}
.y1f{bottom:99.676719px;}
.y1e{bottom:109.655150px;}
.y1d{bottom:119.633580px;}
.y1c{bottom:129.612011px;}
.y6{bottom:147.354450px;}
.y5{bottom:219.354000px;}
.ya1{bottom:241.998586px;}
.y25{bottom:262.187434px;}
.ya2{bottom:262.212614px;}
.y24{bottom:279.926866px;}
.y4{bottom:291.354000px;}
.y23{bottom:297.666298px;}
.y2{bottom:317.356500px;}
.y1{bottom:339.831000px;}
.ya0{bottom:372.117510px;}
.y9f{bottom:383.509419px;}
.y8a{bottom:392.954780px;}
.y88{bottom:397.389272px;}
.y8f{bottom:415.909092px;}
.y87{bottom:426.962408px;}
.y8e{bottom:428.955604px;}
.y8d{bottom:442.002115px;}
.y8c{bottom:455.048626px;}
.y86{bottom:456.535544px;}
.y9e{bottom:462.364206px;}
.y3{bottom:466.797000px;}
.y8b{bottom:468.095137px;}
.y9d{bottom:472.527693px;}
.y9c{bottom:482.692037px;}
.y9b{bottom:492.856381px;}
.y2e{bottom:583.650000px;}
.y2d{bottom:601.650000px;}
.y34{bottom:601.663500px;}
.y2c{bottom:619.650000px;}
.y33{bottom:619.663500px;}
.y2b{bottom:637.650000px;}
.y32{bottom:637.663500px;}
.y2a{bottom:655.650000px;}
.y31{bottom:655.663500px;}
.y29{bottom:673.650000px;}
.y30{bottom:673.663500px;}
.y2f{bottom:709.663500px;}
.y64{bottom:834.840000px;}
.y13{bottom:897.840000px;}
.y12{bottom:960.840000px;}
.y11{bottom:1023.840000px;}
.y10{bottom:1086.840000px;}
.y63{bottom:1149.840000px;}
.y1a{bottom:1251.076500px;}
.y19{bottom:1269.076500px;}
.y18{bottom:1287.076500px;}
.y17{bottom:1305.076500px;}
.y16{bottom:1323.076500px;}
.y15{bottom:1341.076500px;}
.y14{bottom:1359.076500px;}
.y35{bottom:1386.715217px;}
.y36{bottom:1395.454111px;}
.y37{bottom:1402.396758px;}
.y1b{bottom:1404.829500px;}
.y38{bottom:1408.791593px;}
.y39{bottom:1411.638848px;}
.y3a{bottom:1418.942054px;}
.y3b{bottom:1426.387243px;}
.y3c{bottom:1433.967344px;}
.y3d{bottom:1445.562709px;}
.y3e{bottom:1453.447288px;}
.y3f{bottom:1464.620983px;}
.y40{bottom:1471.903592px;}
.y41{bottom:1475.948687px;}
.y42{bottom:1484.136947px;}
.y43{bottom:1492.362166px;}
.y44{bottom:1495.669202px;}
.y45{bottom:1503.955762px;}
.y46{bottom:1512.281011px;}
.y47{bottom:1519.763673px;}
.y48{bottom:1523.937479px;}
.y49{bottom:1532.287409px;}
.y4a{bottom:1539.773547px;}
.y4b{bottom:1551.385137px;}
.y4c{bottom:1559.640092px;}
.y4d{bottom:1563.744145px;}
.y4e{bottom:1568.672525px;}
.y4f{bottom:1576.795053px;}
.y50{bottom:1584.871651px;}
.y57{bottom:1590.840000px;}
.y51{bottom:1592.857332px;}
.y52{bottom:1596.012924px;}
.y56{bottom:1653.840000px;}
.y55{bottom:1716.840000px;}
.y54{bottom:1779.840000px;}
.y53{bottom:1842.840000px;}
.y28{bottom:1905.840000px;}
.y27{bottom:1968.840000px;}
.y84{bottom:2017.842812px;}
.y83{bottom:2020.986113px;}
.y82{bottom:2028.870724px;}
.y26{bottom:2031.840000px;}
.y81{bottom:2036.877320px;}
.y80{bottom:2044.966872px;}
.y7f{bottom:2049.837689px;}
.y7e{bottom:2053.910698px;}
.y7d{bottom:2062.132741px;}
.y7c{bottom:2073.731064px;}
.y7b{bottom:2081.200578px;}
.y7a{bottom:2089.523199px;}
.y79{bottom:2093.708235px;}
.y78{bottom:2101.206066px;}
.y77{bottom:2109.552728px;}
.y76{bottom:2117.838608px;}
.y75{bottom:2121.154825px;}
.y74{bottom:2129.399755px;}
.y73{bottom:2137.580476px;}
.y72{bottom:2141.652792px;}
.y71{bottom:2148.919388px;}
.y70{bottom:2160.087169px;}
.y99{bottom:2161.890000px;}
.y6f{bottom:2167.975160px;}
.y6e{bottom:2179.544604px;}
.y98{bottom:2179.890000px;}
.y6d{bottom:2187.090579px;}
.y6c{bottom:2194.510428px;}
.y97{bottom:2197.890000px;}
.y6b{bottom:2201.750533px;}
.y6a{bottom:2204.583581px;}
.y69{bottom:2210.910495px;}
.y96{bottom:2215.890000px;}
.y68{bottom:2217.748179px;}
.y66{bottom:2220.840000px;}
.y67{bottom:2226.374461px;}
.y95{bottom:2233.890000px;}
.y94{bottom:2251.890000px;}
.y93{bottom:2269.890000px;}
.y65{bottom:2283.840000px;}
.y92{bottom:2287.890000px;}
.y9a{bottom:2338.395000px;}
.y85{bottom:2338.396860px;}
.ya8{bottom:2472.840000px;}
.ya7{bottom:2535.840000px;}
.ya6{bottom:2598.840000px;}
.ya5{bottom:2661.840000px;}
.ya4{bottom:2724.840000px;}
.ya3{bottom:2787.840000px;}
.y91{bottom:2913.840000px;}
.y5e{bottom:2976.840000px;}
.y5d{bottom:3039.840000px;}
.y62{bottom:3098.985000px;}
.y5c{bottom:3102.840000px;}
.y61{bottom:3116.985000px;}
.y60{bottom:3134.985000px;}
.y5f{bottom:3152.985000px;}
.y5b{bottom:3165.840000px;}
.y5a{bottom:3228.840000px;}
.y59{bottom:3291.840000px;}
.y58{bottom:3354.840000px;}
.yf{bottom:3543.840000px;}
.ye{bottom:3606.840000px;}
.yd{bottom:3669.840000px;}
.yc{bottom:3732.840000px;}
.yb{bottom:3795.840000px;}
.ya{bottom:3858.840000px;}
.y9{bottom:3921.840000px;}
.y8{bottom:4110.840000px;}
.y7{bottom:4299.840000px;}
.h2f{height:19.910213px;}
.h2c{height:22.790306px;}
.h31{height:24.956588px;}
.h32{height:24.960020px;}
.hb{height:26.232185px;}
.h33{height:26.479461px;}
.h34{height:26.495061px;}
.ha{height:26.884109px;}
.h2e{height:27.345237px;}
.h2d{height:37.583344px;}
.h13{height:43.681613px;}
.hf{height:43.681614px;}
.h21{height:43.681618px;}
.h24{height:43.681620px;}
.h29{height:43.681621px;}
.h10{height:43.681624px;}
.h1f{height:43.681626px;}
.h16{height:43.681627px;}
.h22{height:43.681631px;}
.h15{height:43.681633px;}
.h1b{height:43.681634px;}
.h1c{height:43.681635px;}
.h18{height:43.681637px;}
.h27{height:43.681639px;}
.h1e{height:43.681642px;}
.h11{height:43.681643px;}
.h26{height:43.681645px;}
.h1d{height:43.681648px;}
.h14{height:43.681649px;}
.h23{height:43.681651px;}
.h25{height:43.681652px;}
.h19{height:43.681653px;}
.h20{height:43.681656px;}
.h1a{height:43.681658px;}
.h17{height:43.681660px;}
.h28{height:43.681662px;}
.h12{height:43.681663px;}
.h35{height:46.051237px;}
.hc{height:51.207827px;}
.he{height:55.080000px;}
.h8{height:65.376000px;}
.h2b{height:65.838663px;}
.h2{height:66.520080px;}
.h3{height:91.800000px;}
.hd{height:137.700000px;}
.h7{height:163.440000px;}
.h4{height:196.128000px;}
.h6{height:201.960000px;}
.h36{height:220.320000px;}
.h9{height:439.991239px;}
.h5{height:440.640000px;}
.h2a{height:513.367140px;}
.h30{height:513.369000px;}
.h1{height:5055.750000px;}
.h0{height:5055.840000px;}
.w3{width:364.818822px;}
.w2{width:364.819500px;}
.w1{width:3576.000000px;}
.w0{width:3576.240000px;}
.x3a{left:-368.840518px;}
.x3b{left:-238.536193px;}
.xb{left:-230.217533px;}
.x39{left:-11.557680px;}
.x0{left:0.000000px;}
.x3d{left:18.793725px;}
.x7{left:106.299150px;}
.x38{left:129.802222px;}
.x1c{left:136.126673px;}
.x1b{left:137.511127px;}
.x1a{left:138.820296px;}
.x19{left:141.412727px;}
.x18{left:143.261319px;}
.x17{left:146.630971px;}
.x16{left:149.385036px;}
.x15{left:154.073339px;}
.x14{left:157.544574px;}
.x13{left:161.302174px;}
.x12{left:165.342363px;}
.x11{left:167.049034px;}
.x10{left:170.986473px;}
.xf{left:175.633301px;}
.xc{left:179.395782px;}
.xe{left:182.017236px;}
.x6{left:281.415000px;}
.x5{left:382.071000px;}
.x3{left:426.760500px;}
.x21{left:538.852500px;}
.x1e{left:551.565000px;}
.x22{left:558.090000px;}
.x20{left:579.442500px;}
.x1f{left:588.150000px;}
.x1d{left:709.402500px;}
.x26{left:731.557500px;}
.x23{left:773.347500px;}
.x27{left:790.822500px;}
.x2{left:1413.141000px;}
.x28{left:1682.495065px;}
.x29{left:1689.067859px;}
.x2a{left:1693.817766px;}
.x2b{left:1697.862972px;}
.x2c{left:1699.623791px;}
.x2d{left:1703.743583px;}
.x2e{left:1707.584686px;}
.x2f{left:1711.129702px;}
.x30{left:1715.873244px;}
.x31{left:1718.650600px;}
.x32{left:1722.011913px;}
.x33{left:1723.834542px;}
.x37{left:1724.908723px;}
.x34{left:1726.348413px;}
.x35{left:1727.588398px;}
.x36{left:1728.829389px;}
.x8{left:1819.845000px;}
.x9{left:1883.625000px;}
.xa{left:2248.575000px;}
.x24{left:2391.030000px;}
.x1{left:2507.340000px;}
.xd{left:2676.615000px;}
.x25{left:2962.200000px;}
.x4{left:3049.230000px;}
.x3c{left:3104.790000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-1.438529pt;}
.ls6{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.000011pt;}
.ls7{letter-spacing:0.090854pt;}
.ls9{letter-spacing:0.100949pt;}
.ls4{letter-spacing:1.236755pt;}
.ls2{letter-spacing:1.363523pt;}
.ls3{letter-spacing:1.391350pt;}
.ls0{letter-spacing:3.939065pt;}
.ls1{letter-spacing:104.379047pt;}
.ws1{word-spacing:-49.920000pt;}
.ws4{word-spacing:-41.600000pt;}
.ws0{word-spacing:-27.733333pt;}
.ws5{word-spacing:-23.955948pt;}
.ws2{word-spacing:-16.640000pt;}
.ws3{word-spacing:-6.898668pt;}
.ws9{word-spacing:-6.082202pt;}
.ws7{word-spacing:-6.072107pt;}
.ws8{word-spacing:-4.542724pt;}
.ws6{word-spacing:-0.049129pt;}
.wsa{word-spacing:0.000000pt;}
._6{margin-left:-20.940800pt;}
._12{margin-left:-16.000000pt;}
._11{margin-left:-12.800000pt;}
._7{margin-left:-11.161600pt;}
._5{margin-left:-10.240000pt;}
._8{margin-left:-9.318400pt;}
._4{margin-left:-7.680000pt;}
._1{margin-left:-5.681728pt;}
._d{margin-left:-4.791040pt;}
._3{margin-left:-3.840000pt;}
._2{margin-left:-2.154667pt;}
._0{margin-left:-1.092693pt;}
._13{width:1.280000pt;}
._15{width:2.739033pt;}
._b{width:13.649067pt;}
._9{width:125.008000pt;}
._f{width:129.888000pt;}
._e{width:140.360107pt;}
._a{width:146.528000pt;}
._10{width:197.669120pt;}
._c{width:225.248000pt;}
._14{width:621.571520pt;}
.fs30{font-size:24.735104pt;}
.fs31{font-size:25.237354pt;}
.fs7{font-size:27.594672pt;}
.fs2e{font-size:27.826992pt;}
.fs32{font-size:31.893359pt;}
.fs2f{font-size:49.128554pt;}
.fs8{font-size:52.561280pt;}
.fsd{font-size:53.333299pt;}
.fs9{font-size:53.333301pt;}
.fs1c{font-size:53.333305pt;}
.fs1d{font-size:53.333306pt;}
.fs20{font-size:53.333308pt;}
.fs2c{font-size:53.333310pt;}
.fs27{font-size:53.333312pt;}
.fsa{font-size:53.333313pt;}
.fs19{font-size:53.333316pt;}
.fs10{font-size:53.333317pt;}
.fs22{font-size:53.333318pt;}
.fs1e{font-size:53.333321pt;}
.fs25{font-size:53.333322pt;}
.fsf{font-size:53.333324pt;}
.fs15{font-size:53.333325pt;}
.fs16{font-size:53.333327pt;}
.fs26{font-size:53.333328pt;}
.fs12{font-size:53.333329pt;}
.fs24{font-size:53.333331pt;}
.fs2a{font-size:53.333332pt;}
.fs18{font-size:53.333335pt;}
.fsb{font-size:53.333336pt;}
.fs23{font-size:53.333338pt;}
.fs1b{font-size:53.333341pt;}
.fs17{font-size:53.333342pt;}
.fse{font-size:53.333344pt;}
.fs1f{font-size:53.333346pt;}
.fs21{font-size:53.333347pt;}
.fs13{font-size:53.333349pt;}
.fs2b{font-size:53.333351pt;}
.fs1a{font-size:53.333352pt;}
.fs14{font-size:53.333354pt;}
.fs11{font-size:53.333357pt;}
.fs29{font-size:53.333358pt;}
.fs28{font-size:53.333359pt;}
.fsc{font-size:53.333361pt;}
.fs33{font-size:55.466711pt;}
.fs6{font-size:64.000000pt;}
.fs0{font-size:79.904000pt;}
.fs2d{font-size:80.389088pt;}
.fs1{font-size:106.666667pt;}
.fs5{font-size:160.000000pt;}
.fs2{font-size:192.000000pt;}
.fs4{font-size:234.666667pt;}
.fs34{font-size:256.000000pt;}
.fs3{font-size:512.000000pt;}
.y0{bottom:0.000000pt;}
.y89{bottom:17.363425pt;}
.y90{bottom:22.611363pt;}
.y22{bottom:35.383232pt;}
.y21{bottom:53.122664pt;}
.y20{bottom:61.992380pt;}
.y1f{bottom:88.601528pt;}
.y1e{bottom:97.471244pt;}
.y1d{bottom:106.340960pt;}
.y1c{bottom:115.210676pt;}
.y6{bottom:130.981733pt;}
.y5{bottom:194.981333pt;}
.ya1{bottom:215.109854pt;}
.y25{bottom:233.055497pt;}
.ya2{bottom:233.077879pt;}
.y24{bottom:248.823881pt;}
.y4{bottom:258.981333pt;}
.y23{bottom:264.592265pt;}
.y2{bottom:282.094667pt;}
.y1{bottom:302.072000pt;}
.ya0{bottom:330.771120pt;}
.y9f{bottom:340.897262pt;}
.y8a{bottom:349.293138pt;}
.y88{bottom:353.234909pt;}
.y8f{bottom:369.696971pt;}
.y87{bottom:379.522141pt;}
.y8e{bottom:381.293870pt;}
.y8d{bottom:392.890769pt;}
.y8c{bottom:404.487668pt;}
.y86{bottom:405.809372pt;}
.y9e{bottom:410.990406pt;}
.y3{bottom:414.930667pt;}
.y8b{bottom:416.084567pt;}
.y9d{bottom:420.024616pt;}
.y9c{bottom:429.059588pt;}
.y9b{bottom:438.094561pt;}
.y2e{bottom:518.800000pt;}
.y2d{bottom:534.800000pt;}
.y34{bottom:534.812000pt;}
.y2c{bottom:550.800000pt;}
.y33{bottom:550.812000pt;}
.y2b{bottom:566.800000pt;}
.y32{bottom:566.812000pt;}
.y2a{bottom:582.800000pt;}
.y31{bottom:582.812000pt;}
.y29{bottom:598.800000pt;}
.y30{bottom:598.812000pt;}
.y2f{bottom:630.812000pt;}
.y64{bottom:742.080000pt;}
.y13{bottom:798.080000pt;}
.y12{bottom:854.080000pt;}
.y11{bottom:910.080000pt;}
.y10{bottom:966.080000pt;}
.y63{bottom:1022.080000pt;}
.y1a{bottom:1112.068000pt;}
.y19{bottom:1128.068000pt;}
.y18{bottom:1144.068000pt;}
.y17{bottom:1160.068000pt;}
.y16{bottom:1176.068000pt;}
.y15{bottom:1192.068000pt;}
.y14{bottom:1208.068000pt;}
.y35{bottom:1232.635748pt;}
.y36{bottom:1240.403654pt;}
.y37{bottom:1246.574896pt;}
.y1b{bottom:1248.737333pt;}
.y38{bottom:1252.259194pt;}
.y39{bottom:1254.790087pt;}
.y3a{bottom:1261.281826pt;}
.y3b{bottom:1267.899771pt;}
.y3c{bottom:1274.637639pt;}
.y3d{bottom:1284.944630pt;}
.y3e{bottom:1291.953145pt;}
.y3f{bottom:1301.885318pt;}
.y40{bottom:1308.358748pt;}
.y41{bottom:1311.954388pt;}
.y42{bottom:1319.232842pt;}
.y43{bottom:1326.544148pt;}
.y44{bottom:1329.483735pt;}
.y45{bottom:1336.849566pt;}
.y46{bottom:1344.249788pt;}
.y47{bottom:1350.901043pt;}
.y48{bottom:1354.611092pt;}
.y49{bottom:1362.033253pt;}
.y4a{bottom:1368.687597pt;}
.y4b{bottom:1379.009011pt;}
.y4c{bottom:1386.346749pt;}
.y4d{bottom:1389.994795pt;}
.y4e{bottom:1394.375578pt;}
.y4f{bottom:1401.595602pt;}
.y50{bottom:1408.774801pt;}
.y57{bottom:1414.080000pt;}
.y51{bottom:1415.873184pt;}
.y52{bottom:1418.678154pt;}
.y56{bottom:1470.080000pt;}
.y55{bottom:1526.080000pt;}
.y54{bottom:1582.080000pt;}
.y53{bottom:1638.080000pt;}
.y28{bottom:1694.080000pt;}
.y27{bottom:1750.080000pt;}
.y84{bottom:1793.638055pt;}
.y83{bottom:1796.432101pt;}
.y82{bottom:1803.440644pt;}
.y26{bottom:1806.080000pt;}
.y81{bottom:1810.557618pt;}
.y80{bottom:1817.748331pt;}
.y7f{bottom:1822.077946pt;}
.y7e{bottom:1825.698398pt;}
.y7d{bottom:1833.006881pt;}
.y7c{bottom:1843.316501pt;}
.y7b{bottom:1849.956070pt;}
.y7a{bottom:1857.353954pt;}
.y79{bottom:1861.073987pt;}
.y78{bottom:1867.738725pt;}
.y77{bottom:1875.157981pt;}
.y76{bottom:1882.523207pt;}
.y75{bottom:1885.470956pt;}
.y74{bottom:1892.799782pt;}
.y73{bottom:1900.071534pt;}
.y72{bottom:1903.691371pt;}
.y71{bottom:1910.150567pt;}
.y70{bottom:1920.077484pt;}
.y99{bottom:1921.680000pt;}
.y6f{bottom:1927.089031pt;}
.y6e{bottom:1937.372981pt;}
.y98{bottom:1937.680000pt;}
.y6d{bottom:1944.080515pt;}
.y6c{bottom:1950.675936pt;}
.y97{bottom:1953.680000pt;}
.y6b{bottom:1957.111585pt;}
.y6a{bottom:1959.629850pt;}
.y69{bottom:1965.253773pt;}
.y96{bottom:1969.680000pt;}
.y68{bottom:1971.331715pt;}
.y66{bottom:1974.080000pt;}
.y67{bottom:1978.999521pt;}
.y95{bottom:1985.680000pt;}
.y94{bottom:2001.680000pt;}
.y93{bottom:2017.680000pt;}
.y65{bottom:2030.080000pt;}
.y92{bottom:2033.680000pt;}
.y9a{bottom:2078.573333pt;}
.y85{bottom:2078.574986pt;}
.ya8{bottom:2198.080000pt;}
.ya7{bottom:2254.080000pt;}
.ya6{bottom:2310.080000pt;}
.ya5{bottom:2366.080000pt;}
.ya4{bottom:2422.080000pt;}
.ya3{bottom:2478.080000pt;}
.y91{bottom:2590.080000pt;}
.y5e{bottom:2646.080000pt;}
.y5d{bottom:2702.080000pt;}
.y62{bottom:2754.653333pt;}
.y5c{bottom:2758.080000pt;}
.y61{bottom:2770.653333pt;}
.y60{bottom:2786.653333pt;}
.y5f{bottom:2802.653333pt;}
.y5b{bottom:2814.080000pt;}
.y5a{bottom:2870.080000pt;}
.y59{bottom:2926.080000pt;}
.y58{bottom:2982.080000pt;}
.yf{bottom:3150.080000pt;}
.ye{bottom:3206.080000pt;}
.yd{bottom:3262.080000pt;}
.yc{bottom:3318.080000pt;}
.yb{bottom:3374.080000pt;}
.ya{bottom:3430.080000pt;}
.y9{bottom:3486.080000pt;}
.y8{bottom:3654.080000pt;}
.y7{bottom:3822.080000pt;}
.h2f{height:17.697967pt;}
.h2c{height:20.258050pt;}
.h31{height:22.183634pt;}
.h32{height:22.186684pt;}
.hb{height:23.317498pt;}
.h33{height:23.537299pt;}
.h34{height:23.551166pt;}
.ha{height:23.896986pt;}
.h2e{height:24.306878pt;}
.h2d{height:33.407417pt;}
.h13{height:38.828100pt;}
.hf{height:38.828101pt;}
.h21{height:38.828104pt;}
.h24{height:38.828107pt;}
.h29{height:38.828108pt;}
.h10{height:38.828110pt;}
.h1f{height:38.828112pt;}
.h16{height:38.828113pt;}
.h22{height:38.828116pt;}
.h15{height:38.828118pt;}
.h1b{height:38.828119pt;}
.h1c{height:38.828120pt;}
.h18{height:38.828122pt;}
.h27{height:38.828124pt;}
.h1e{height:38.828126pt;}
.h11{height:38.828127pt;}
.h26{height:38.828129pt;}
.h1d{height:38.828131pt;}
.h14{height:38.828133pt;}
.h23{height:38.828134pt;}
.h25{height:38.828135pt;}
.h19{height:38.828136pt;}
.h20{height:38.828139pt;}
.h1a{height:38.828140pt;}
.h17{height:38.828142pt;}
.h28{height:38.828144pt;}
.h12{height:38.828145pt;}
.h35{height:40.934433pt;}
.hc{height:45.518068pt;}
.he{height:48.960000pt;}
.h8{height:58.112000pt;}
.h2b{height:58.523256pt;}
.h2{height:59.128960pt;}
.h3{height:81.600000pt;}
.hd{height:122.400000pt;}
.h7{height:145.280000pt;}
.h4{height:174.336000pt;}
.h6{height:179.520000pt;}
.h36{height:195.840000pt;}
.h9{height:391.103324pt;}
.h5{height:391.680000pt;}
.h2a{height:456.326347pt;}
.h30{height:456.328000pt;}
.h1{height:4494.000000pt;}
.h0{height:4494.080000pt;}
.w3{width:324.283397pt;}
.w2{width:324.284000pt;}
.w1{width:3178.666667pt;}
.w0{width:3178.880000pt;}
.x3a{left:-327.858238pt;}
.x3b{left:-212.032171pt;}
.xb{left:-204.637808pt;}
.x39{left:-10.273494pt;}
.x0{left:0.000000pt;}
.x3d{left:16.705533pt;}
.x7{left:94.488133pt;}
.x38{left:115.379753pt;}
.x1c{left:121.001487pt;}
.x1b{left:122.232112pt;}
.x1a{left:123.395819pt;}
.x19{left:125.700202pt;}
.x18{left:127.343395pt;}
.x17{left:130.338641pt;}
.x16{left:132.786699pt;}
.x15{left:136.954079pt;}
.x14{left:140.039622pt;}
.x13{left:143.379710pt;}
.x12{left:146.970990pt;}
.x11{left:148.488030pt;}
.x10{left:151.987976pt;}
.xf{left:156.118489pt;}
.xc{left:159.462917pt;}
.xe{left:161.793099pt;}
.x6{left:250.146667pt;}
.x5{left:339.618667pt;}
.x3{left:379.342667pt;}
.x21{left:478.980000pt;}
.x1e{left:490.280000pt;}
.x22{left:496.080000pt;}
.x20{left:515.060000pt;}
.x1f{left:522.800000pt;}
.x1d{left:630.580000pt;}
.x26{left:650.273333pt;}
.x23{left:687.420000pt;}
.x27{left:702.953333pt;}
.x2{left:1256.125333pt;}
.x28{left:1495.551169pt;}
.x29{left:1501.393652pt;}
.x2a{left:1505.615792pt;}
.x2b{left:1509.211531pt;}
.x2c{left:1510.776704pt;}
.x2d{left:1514.438740pt;}
.x2e{left:1517.853054pt;}
.x2f{left:1521.004180pt;}
.x30{left:1525.220662pt;}
.x31{left:1527.689422pt;}
.x32{left:1530.677256pt;}
.x33{left:1532.297371pt;}
.x37{left:1533.252198pt;}
.x34{left:1534.531922pt;}
.x35{left:1535.634131pt;}
.x36{left:1536.737235pt;}
.x8{left:1617.640000pt;}
.x9{left:1674.333333pt;}
.xa{left:1998.733333pt;}
.x24{left:2125.360000pt;}
.x1{left:2228.746667pt;}
.xd{left:2379.213333pt;}
.x25{left:2633.066667pt;}
.x4{left:2710.426667pt;}
.x3c{left:2759.813333pt;}
}




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