
    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_27f4e5a7dfa57cd26d09a0e3.woff')format("woff");}.ff1{font-family:ff1;line-height:0.675293;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_06a9ef3bfc58fd7ac19398ca.woff')format("woff");}.ff2{font-family:ff2;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_5565b8890090a99f08fd4066.woff')format("woff");}.ff3{font-family:ff3;line-height:0.843750;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_369f8fe04e580848c9ecc9de.woff')format("woff");}.ff4{font-family:ff4;line-height:1.091309;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_b1f57d9a6263b79bf1528afa.woff')format("woff");}.ff5{font-family:ff5;line-height:0.895020;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_b75a2a9a4a9768bb2a607db2.woff')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_e21ea2fb0f2e45a372509702.woff')format("woff");}.ff7{font-family:ff7;line-height:1.102051;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_3e346a3367d8cbbea69b3285.woff')format("woff");}.ff8{font-family:ff8;line-height:1.093262;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_80cb71e130b10461b1815349.woff')format("woff");}.ff9{font-family:ff9;line-height:1.095703;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_76d83edf63d4b97057120079.woff')format("woff");}.ffa{font-family:ffa;line-height:1.104004;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_5c8a366871533567fa0715b9.woff')format("woff");}.ffb{font-family:ffb;line-height:1.093262;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_dc12dc8d18fae274af336543.woff')format("woff");}.ffc{font-family:ffc;line-height:0.893066;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_c6da9ae6590984765eec73f4.woff')format("woff");}.ffd{font-family:ffd;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_aba1ff272f0caee1ffd6ec5f.woff')format("woff");}.ffe{font-family:ffe;line-height:0.689453;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_b113c148b97d99ca8bc7a7d5.woff')format("woff");}.fff{font-family:fff;line-height:0.675293;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_abb251dd4c096dd39e732fd4.woff')format("woff");}.ff10{font-family:ff10;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_6968049f9e58467dbfba4f4c.woff')format("woff");}.ff11{font-family:ff11;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_35ea08728ffe0e545936b32d.woff')format("woff");}.ff12{font-family:ff12;line-height:0.687500;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_505eee013f174f9e7aad78db.woff')format("woff");}.ff13{font-family:ff13;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_8979f3c7f0949f750b7d4a74.woff')format("woff");}.ff14{font-family:ff14;line-height:0.900391;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;}
.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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-24.480000px;}
.v2{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.480000px;}
.ls9{letter-spacing:-7.391520px;}
.ls12{letter-spacing:-7.192800px;}
.lsf{letter-spacing:-5.040000px;}
.ls1d{letter-spacing:-4.672800px;}
.ls31{letter-spacing:-3.550176px;}
.ls23{letter-spacing:-2.564352px;}
.ls2f{letter-spacing:-2.467584px;}
.ls30{letter-spacing:-1.403136px;}
.ls2e{letter-spacing:-0.459648px;}
.ls2d{letter-spacing:-0.381024px;}
.ls13{letter-spacing:-0.338688px;}
.ls18{letter-spacing:-0.320544px;}
.ls17{letter-spacing:-0.302400px;}
.ls2c{letter-spacing:-0.260064px;}
.ls1c{letter-spacing:-0.241920px;}
.ls19{letter-spacing:-0.223776px;}
.ls1b{letter-spacing:-0.175392px;}
.ls1a{letter-spacing:-0.157248px;}
.ls21{letter-spacing:-0.145152px;}
.ls22{letter-spacing:-0.120960px;}
.lse{letter-spacing:-0.014400px;}
.ls0{letter-spacing:0.000000px;}
.ls29{letter-spacing:0.000576px;}
.ls2b{letter-spacing:0.001440px;}
.lsb{letter-spacing:0.014400px;}
.ls2{letter-spacing:0.120960px;}
.ls27{letter-spacing:0.155520px;}
.ls4{letter-spacing:0.161280px;}
.ls10{letter-spacing:0.181728px;}
.ls6{letter-spacing:0.186624px;}
.ls11{letter-spacing:0.239040px;}
.ls5{letter-spacing:0.242208px;}
.ls3{letter-spacing:0.274896px;}
.ls15{letter-spacing:0.280800px;}
.ls24{letter-spacing:0.312912px;}
.lsa{letter-spacing:0.317376px;}
.ls8{letter-spacing:0.359136px;}
.ls7{letter-spacing:0.370512px;}
.ls26{letter-spacing:0.493920px;}
.ls20{letter-spacing:0.619200px;}
.ls16{letter-spacing:0.720432px;}
.ls14{letter-spacing:0.959040px;}
.ls1f{letter-spacing:1.671840px;}
.ls1e{letter-spacing:2.537280px;}
.ls25{letter-spacing:4.993920px;}
.ls28{letter-spacing:11.836800px;}
.lsd{letter-spacing:33.984000px;}
.lsc{letter-spacing:72.000000px;}
.ls2a{letter-spacing:151.929216px;}
.ls1{letter-spacing:843.984000px;}
.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:-30.154896px;}
.ws2{word-spacing:-21.122208px;}
.ws3{word-spacing:-18.014400px;}
.ws4{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.985600px;}
.wsc{word-spacing:-15.120000px;}
.ws12{word-spacing:-14.962752px;}
.ws9{word-spacing:-14.944608px;}
.ws11{word-spacing:-14.896224px;}
.wsa{word-spacing:-14.878080px;}
.wsd{word-spacing:-14.859936px;}
.ws10{word-spacing:-14.799456px;}
.wse{word-spacing:-14.738976px;}
.wsf{word-spacing:-14.660352px;}
.ws6{word-spacing:-14.630400px;}
.ws14{word-spacing:-13.716864px;}
.wsb{word-spacing:-13.327200px;}
.ws13{word-spacing:-12.652416px;}
.ws15{word-spacing:-11.569824px;}
.ws7{word-spacing:-10.807200px;}
.ws8{word-spacing:-0.036000px;}
.ws0{word-spacing:0.000000px;}
._a{margin-left:-17.495712px;}
._7{margin-left:-15.802272px;}
._b{margin-left:-13.823712px;}
._9{margin-left:-9.791712px;}
._2{margin-left:-8.398080px;}
._5{margin-left:-6.693120px;}
._0{margin-left:-5.598720px;}
._13{margin-left:-4.327344px;}
._3{margin-left:-2.954880px;}
._4{margin-left:-1.026720px;}
._1{width:1.088640px;}
._f{width:2.167200px;}
._17{width:3.549600px;}
._12{width:5.097600px;}
._16{width:6.226272px;}
._6{width:7.683840px;}
._d{width:8.697600px;}
._e{width:9.725760px;}
._14{width:11.114928px;}
._1d{width:12.175632px;}
._15{width:13.177728px;}
._10{width:14.688000px;}
._11{width:15.772608px;}
._1f{width:16.872768px;}
._1b{width:19.696608px;}
._18{width:20.757600px;}
._1a{width:21.818448px;}
._1c{width:23.040000px;}
._19{width:24.120000px;}
._22{width:25.188912px;}
._1e{width:26.640000px;}
._23{width:28.111824px;}
._20{width:29.138400px;}
._30{width:30.217104px;}
._28{width:31.402080px;}
._24{width:32.951520px;}
._25{width:34.129440px;}
._21{width:36.144000px;}
._27{width:39.693600px;}
._29{width:74.931984px;}
._2e{width:83.079360px;}
._8{width:90.000000px;}
._2c{width:122.407200px;}
._31{width:134.566272px;}
._2d{width:151.927200px;}
._26{width:194.399568px;}
._2b{width:419.493600px;}
._2f{width:558.439776px;}
._c{width:846.000000px;}
._2a{width:975.614400px;}
.fc2{color:rgb(70,120,134);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs8{font-size:38.880000px;}
.fs5{font-size:47.520000px;}
.fs7{font-size:60.480000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:83.520000px;}
.fs3{font-size:96.480000px;}
.fs2{font-size:119.520000px;}
.fs1{font-size:155.520000px;}
.y11{bottom:-26.220000px;}
.y0{bottom:0.000000px;}
.y4{bottom:5.460000px;}
.y179{bottom:5.820000px;}
.y10{bottom:13.380000px;}
.y17{bottom:19.080000px;}
.y167{bottom:29.700000px;}
.y177{bottom:31.080000px;}
.yc{bottom:32.280000px;}
.y22{bottom:34.260000px;}
.y169{bottom:42.660000px;}
.y170{bottom:43.080000px;}
.y174{bottom:44.040000px;}
.y166{bottom:46.980000px;}
.yf{bottom:49.740000px;}
.y16c{bottom:52.260000px;}
.y3{bottom:52.500000px;}
.y16{bottom:55.440000px;}
.y16a{bottom:55.620000px;}
.y171{bottom:56.040000px;}
.y16d{bottom:56.580000px;}
.y175{bottom:56.640000px;}
.y161{bottom:57.960000px;}
.y2{bottom:58.320000px;}
.y21{bottom:65.220000px;}
.y168{bottom:68.580000px;}
.y16f{bottom:69.000000px;}
.y173{bottom:69.600000px;}
.yb{bottom:71.880000px;}
.y165{bottom:72.900000px;}
.ye{bottom:87.900000px;}
.y5{bottom:89.280000px;}
.y15{bottom:91.440000px;}
.y20{bottom:96.180000px;}
.y130{bottom:113.040000px;}
.ya{bottom:115.080000px;}
.y76{bottom:115.200000px;}
.y81{bottom:115.920000px;}
.yb1{bottom:122.040000px;}
.y56{bottom:126.360000px;}
.y1f{bottom:127.140000px;}
.y14{bottom:127.800000px;}
.ycf{bottom:129.600000px;}
.y87{bottom:132.120000px;}
.yaa{bottom:133.200000px;}
.y80{bottom:134.280000px;}
.y100{bottom:139.320000px;}
.ye4{bottom:140.040000px;}
.yd{bottom:142.500000px;}
.y12f{bottom:144.360000px;}
.y75{bottom:146.160000px;}
.ya9{bottom:146.880000px;}
.y7f{bottom:147.960000px;}
.yb0{bottom:153.000000px;}
.y55{bottom:157.320000px;}
.y1e{bottom:158.460000px;}
.y7e{bottom:159.120000px;}
.yff{bottom:159.480000px;}
.y86{bottom:163.440000px;}
.y13{bottom:163.800000px;}
.y11a{bottom:170.280000px;}
.ye3{bottom:171.360000px;}
.y12e{bottom:175.320000px;}
.yce{bottom:176.400000px;}
.yfe{bottom:176.760000px;}
.y74{bottom:177.120000px;}
.yfb{bottom:180.720000px;}
.ya8{bottom:183.960000px;}
.y176{bottom:186.000000px;}
.y54{bottom:188.280000px;}
.y1d{bottom:189.420000px;}
.y7d{bottom:190.440000px;}
.yfd{bottom:194.040000px;}
.y85{bottom:194.400000px;}
.y15e{bottom:198.000000px;}
.y119{bottom:201.240000px;}
.ye2{bottom:202.320000px;}
.y12d{bottom:206.280000px;}
.ycd{bottom:207.360000px;}
.y180{bottom:208.080000px;}
.y73{bottom:208.440000px;}
.y15f{bottom:208.800000px;}
.yfc{bottom:211.320000px;}
.yfa{bottom:211.680000px;}
.ya7{bottom:215.280000px;}
.y53{bottom:219.240000px;}
.y1c{bottom:220.380000px;}
.y7c{bottom:221.400000px;}
.y15d{bottom:228.960000px;}
.y84{bottom:231.120000px;}
.y118{bottom:232.560000px;}
.ye1{bottom:233.280000px;}
.y12c{bottom:237.240000px;}
.ycc{bottom:238.680000px;}
.y72{bottom:239.400000px;}
.yf9{bottom:242.640000px;}
.ya6{bottom:246.240000px;}
.y172{bottom:249.000000px;}
.y52{bottom:250.560000px;}
.y1b{bottom:251.340000px;}
.y7b{bottom:252.360000px;}
.y15c{bottom:259.920000px;}
.y117{bottom:263.520000px;}
.ye0{bottom:264.240000px;}
.y12b{bottom:268.560000px;}
.ycb{bottom:269.640000px;}
.y71{bottom:270.360000px;}
.yf8{bottom:273.960000px;}
.y83{bottom:274.320000px;}
.ya5{bottom:277.200000px;}
.y51{bottom:281.520000px;}
.y1a{bottom:282.660000px;}
.y7a{bottom:283.320000px;}
.y15b{bottom:290.880000px;}
.y116{bottom:294.480000px;}
.ydf{bottom:295.560000px;}
.y12a{bottom:299.520000px;}
.yca{bottom:300.600000px;}
.y70{bottom:301.320000px;}
.yf7{bottom:304.920000px;}
.y82{bottom:305.280000px;}
.ya4{bottom:308.160000px;}
.y50{bottom:312.480000px;}
.y19{bottom:313.620000px;}
.y79{bottom:314.280000px;}
.y15a{bottom:322.200000px;}
.y115{bottom:325.440000px;}
.yde{bottom:326.520000px;}
.y129{bottom:330.480000px;}
.yc9{bottom:331.560000px;}
.y6f{bottom:332.280000px;}
.yf6{bottom:335.880000px;}
.ya3{bottom:339.480000px;}
.y4f{bottom:343.440000px;}
.y78{bottom:345.600000px;}
.y159{bottom:353.160000px;}
.y114{bottom:356.760000px;}
.ydd{bottom:357.480000px;}
.y37{bottom:358.920000px;}
.y128{bottom:361.440000px;}
.yc8{bottom:362.880000px;}
.y16e{bottom:363.000000px;}
.y6e{bottom:363.600000px;}
.yf5{bottom:366.840000px;}
.ya2{bottom:370.440000px;}
.y4e{bottom:374.760000px;}
.y146{bottom:376.560000px;}
.y77{bottom:382.680000px;}
.y158{bottom:384.120000px;}
.y113{bottom:387.720000px;}
.ydc{bottom:388.440000px;}
.y36{bottom:389.520000px;}
.y127{bottom:392.760000px;}
.yc7{bottom:393.840000px;}
.y6d{bottom:394.560000px;}
.yf4{bottom:398.160000px;}
.ya1{bottom:401.400000px;}
.y4d{bottom:405.720000px;}
.y145{bottom:407.520000px;}
.y9{bottom:408.000000px;}
.y157{bottom:415.080000px;}
.y112{bottom:418.680000px;}
.ydb{bottom:419.760000px;}
.y35{bottom:420.480000px;}
.y126{bottom:423.720000px;}
.yc6{bottom:424.800000px;}
.y6c{bottom:425.520000px;}
.yf3{bottom:429.120000px;}
.ya0{bottom:432.360000px;}
.y4c{bottom:436.680000px;}
.y144{bottom:438.480000px;}
.y156{bottom:446.400000px;}
.y111{bottom:449.640000px;}
.yda{bottom:450.720000px;}
.y125{bottom:454.680000px;}
.yc5{bottom:455.760000px;}
.y6b{bottom:456.480000px;}
.yf2{bottom:460.080000px;}
.y34{bottom:461.880000px;}
.y9f{bottom:463.680000px;}
.y4b{bottom:467.640000px;}
.y143{bottom:469.800000px;}
.y16b{bottom:475.500000px;}
.y155{bottom:477.360000px;}
.y110{bottom:480.960000px;}
.yd9{bottom:481.680000px;}
.yaf{bottom:483.840000px;}
.y124{bottom:485.640000px;}
.yc4{bottom:487.080000px;}
.y17f{bottom:487.440000px;}
.y6a{bottom:487.800000px;}
.yf1{bottom:491.040000px;}
.y9e{bottom:494.640000px;}
.y33{bottom:495.000000px;}
.y4a{bottom:498.960000px;}
.y142{bottom:500.760000px;}
.yae{bottom:501.120000px;}
.y154{bottom:508.320000px;}
.y10f{bottom:511.920000px;}
.yd8{bottom:512.640000px;}
.y123{bottom:516.960000px;}
.yad{bottom:518.040000px;}
.y69{bottom:518.760000px;}
.yf0{bottom:522.360000px;}
.y9d{bottom:525.600000px;}
.y32{bottom:525.960000px;}
.y49{bottom:529.920000px;}
.y141{bottom:531.720000px;}
.yac{bottom:535.320000px;}
.y153{bottom:539.280000px;}
.y10e{bottom:542.880000px;}
.yd7{bottom:543.960000px;}
.y122{bottom:547.920000px;}
.yc3{bottom:549.000000px;}
.y68{bottom:549.720000px;}
.yab{bottom:552.600000px;}
.yef{bottom:553.320000px;}
.y9c{bottom:556.560000px;}
.y48{bottom:560.880000px;}
.y140{bottom:562.680000px;}
.y31{bottom:565.920000px;}
.y152{bottom:570.600000px;}
.y10d{bottom:573.840000px;}
.yd6{bottom:574.920000px;}
.y121{bottom:578.880000px;}
.yc2{bottom:579.960000px;}
.y67{bottom:580.680000px;}
.yee{bottom:584.280000px;}
.y9b{bottom:587.880000px;}
.y164{bottom:589.500000px;}
.y47{bottom:591.840000px;}
.y13f{bottom:594.000000px;}
.y18{bottom:601.500000px;}
.y151{bottom:601.560000px;}
.y10c{bottom:605.160000px;}
.y30{bottom:605.880000px;}
.y120{bottom:609.840000px;}
.yc1{bottom:611.280000px;}
.y17e{bottom:611.640000px;}
.y66{bottom:612.000000px;}
.yed{bottom:615.240000px;}
.y9a{bottom:618.840000px;}
.y46{bottom:622.800000px;}
.y13e{bottom:624.960000px;}
.y150{bottom:632.520000px;}
.y10b{bottom:636.120000px;}
.yd5{bottom:636.840000px;}
.y11f{bottom:640.800000px;}
.yc0{bottom:642.240000px;}
.y65{bottom:642.960000px;}
.y2f{bottom:646.200000px;}
.y99{bottom:649.800000px;}
.y45{bottom:654.120000px;}
.y13d{bottom:655.920000px;}
.y14f{bottom:663.480000px;}
.y10a{bottom:667.080000px;}
.yd4{bottom:667.800000px;}
.y11e{bottom:672.120000px;}
.y64{bottom:673.920000px;}
.y12{bottom:675.000000px;}
.yec{bottom:677.520000px;}
.ybf{bottom:679.320000px;}
.y98{bottom:680.760000px;}
.y44{bottom:685.080000px;}
.y2e{bottom:686.160000px;}
.y13c{bottom:686.880000px;}
.y14e{bottom:694.800000px;}
.y109{bottom:698.040000px;}
.yd3{bottom:699.120000px;}
.y11d{bottom:703.080000px;}
.y63{bottom:704.880000px;}
.yeb{bottom:708.480000px;}
.y97{bottom:712.080000px;}
.y163{bottom:717.120000px;}
.y13b{bottom:718.200000px;}
.y43{bottom:722.160000px;}
.y14d{bottom:725.760000px;}
.y2d{bottom:726.120000px;}
.y108{bottom:729.000000px;}
.yd2{bottom:730.080000px;}
.y11c{bottom:734.040000px;}
.y17d{bottom:735.840000px;}
.y62{bottom:736.200000px;}
.yea{bottom:739.440000px;}
.y96{bottom:743.040000px;}
.y162{bottom:748.440000px;}
.y13a{bottom:749.160000px;}
.ybe{bottom:753.480000px;}
.y14c{bottom:756.720000px;}
.y2c{bottom:757.080000px;}
.y107{bottom:760.320000px;}
.yd1{bottom:761.040000px;}
.y42{bottom:765.000000px;}
.y61{bottom:767.160000px;}
.ye9{bottom:770.400000px;}
.y11b{bottom:771.120000px;}
.y95{bottom:774.000000px;}
.y139{bottom:780.120000px;}
.ybd{bottom:784.440000px;}
.y14b{bottom:787.680000px;}
.y106{bottom:791.280000px;}
.yd0{bottom:792.000000px;}
.y2b{bottom:797.400000px;}
.y60{bottom:798.120000px;}
.ye8{bottom:801.720000px;}
.y94{bottom:804.960000px;}
.y138{bottom:811.080000px;}
.ybc{bottom:815.400000px;}
.y14a{bottom:819.000000px;}
.y105{bottom:822.240000px;}
.y160{bottom:822.600000px;}
.y41{bottom:823.320000px;}
.y5f{bottom:829.080000px;}
.ye7{bottom:832.680000px;}
.y93{bottom:836.280000px;}
.y2a{bottom:837.360000px;}
.y137{bottom:842.400000px;}
.ybb{bottom:846.360000px;}
.y149{bottom:849.960000px;}
.y104{bottom:853.200000px;}
.y40{bottom:854.280000px;}
.y17c{bottom:860.040000px;}
.y5e{bottom:860.400000px;}
.ye6{bottom:863.640000px;}
.y92{bottom:867.240000px;}
.y148{bottom:870.840000px;}
.y136{bottom:873.360000px;}
.y29{bottom:877.320000px;}
.yba{bottom:877.680000px;}
.y103{bottom:884.520000px;}
.y3f{bottom:885.240000px;}
.y5d{bottom:891.360000px;}
.y147{bottom:891.720000px;}
.ye5{bottom:894.600000px;}
.yb9{bottom:897.840000px;}
.y91{bottom:898.200000px;}
.y135{bottom:904.320000px;}
.y28{bottom:908.280000px;}
.yb8{bottom:914.760000px;}
.y102{bottom:915.480000px;}
.y3e{bottom:916.200000px;}
.y5c{bottom:922.320000px;}
.y90{bottom:929.160000px;}
.yb7{bottom:932.040000px;}
.y134{bottom:935.280000px;}
.y101{bottom:946.440000px;}
.y3d{bottom:947.520000px;}
.y27{bottom:948.600000px;}
.yb6{bottom:949.320000px;}
.y5b{bottom:953.280000px;}
.y8f{bottom:960.480000px;}
.yb5{bottom:966.600000px;}
.y3c{bottom:978.480000px;}
.yb4{bottom:983.880000px;}
.y17b{bottom:984.240000px;}
.y5a{bottom:984.600000px;}
.y26{bottom:988.560000px;}
.y8e{bottom:991.440000px;}
.y133{bottom:997.560000px;}
.yb3{bottom:1001.160000px;}
.y3b{bottom:1009.440000px;}
.y59{bottom:1015.560000px;}
.yb2{bottom:1018.440000px;}
.y8d{bottom:1022.400000px;}
.y25{bottom:1028.520000px;}
.y3a{bottom:1040.400000px;}
.y8c{bottom:1042.560000px;}
.y58{bottom:1046.520000px;}
.y132{bottom:1059.480000px;}
.y8b{bottom:1059.840000px;}
.y24{bottom:1068.480000px;}
.y39{bottom:1071.720000px;}
.y8a{bottom:1077.120000px;}
.y57{bottom:1077.480000px;}
.y89{bottom:1094.400000px;}
.y8{bottom:1095.840000px;}
.y131{bottom:1096.560000px;}
.y38{bottom:1102.680000px;}
.y17a{bottom:1108.440000px;}
.y23{bottom:1108.800000px;}
.y88{bottom:1111.680000px;}
.y7{bottom:1117.800000px;}
.y6{bottom:1139.760000px;}
.y178{bottom:1192.680000px;}
.y1{bottom:1193.040000px;}
.h3{height:22.500000px;}
.h10{height:23.994141px;}
.h19{height:24.000000px;}
.h12{height:26.274375px;}
.h16{height:41.402813px;}
.h11{height:42.022969px;}
.h2{height:47.988281px;}
.hf{height:63.175781px;}
.hd{height:63.351563px;}
.he{height:63.949219px;}
.h9{height:64.304297px;}
.h18{height:64.500000px;}
.ha{height:74.181094px;}
.h6{height:104.871797px;}
.h7{height:105.163594px;}
.h5{height:105.325313px;}
.h8{height:111.000000px;}
.h15{height:114.000000px;}
.h17{height:115.500000px;}
.h4{height:151.500000px;}
.hb{height:184.500000px;}
.hc{height:331.500000px;}
.h14{height:892.500000px;}
.h13{height:892.800000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:10.500000px;}
.w3{width:12.000000px;}
.w8{width:21.000000px;}
.we{width:93.000000px;}
.wd{width:96.000000px;}
.w12{width:106.500000px;}
.w11{width:108.000000px;}
.wc{width:115.500000px;}
.wf{width:120.000000px;}
.w13{width:127.500000px;}
.wb{width:142.500000px;}
.w10{width:150.000000px;}
.w7{width:280.500000px;}
.w5{width:448.500000px;}
.w6{width:606.000000px;}
.w4{width:727.500000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.w9{width:1262.880000px;}
.wa{width:1263.000000px;}
.x0{left:0.000000px;}
.x3{left:10.335240px;}
.x5{left:13.056864px;}
.x2e{left:14.491320px;}
.x6{left:16.467036px;}
.x16{left:17.538720px;}
.x32{left:18.666132px;}
.x27{left:20.207400px;}
.x13{left:22.232040px;}
.x29{left:27.852600px;}
.x18{left:28.902840px;}
.x1a{left:30.880320px;}
.x33{left:34.702512px;}
.xd{left:36.036636px;}
.x24{left:37.205964px;}
.x30{left:39.652224px;}
.x31{left:42.974880px;}
.x34{left:45.384900px;}
.x2f{left:50.122188px;}
.x17{left:51.771840px;}
.x14{left:59.409600px;}
.x35{left:66.936960px;}
.xa{left:69.618180px;}
.x9{left:71.571504px;}
.x4{left:84.000000px;}
.x21{left:106.200072px;}
.xc{left:121.743924px;}
.x1{left:127.439928px;}
.xb{left:142.500000px;}
.x1c{left:145.439928px;}
.x1d{left:154.439928px;}
.x19{left:156.203520px;}
.xf{left:172.510980px;}
.x1e{left:180.539820px;}
.x23{left:193.500000px;}
.x7{left:213.000000px;}
.x8{left:224.062320px;}
.x10{left:226.769640px;}
.x15{left:268.694880px;}
.xe{left:302.309880px;}
.x25{left:309.000000px;}
.x20{left:343.439928px;}
.x26{left:403.500000px;}
.x1b{left:413.833320px;}
.x1f{left:436.500000px;}
.x2{left:441.000000px;}
.x28{left:496.500000px;}
.x12{left:502.500000px;}
.x2a{left:616.500000px;}
.x22{left:621.000000px;}
.x11{left:765.239760px;}
.x2b{left:871.500000px;}
.x2c{left:978.000000px;}
.x2d{left:1084.500000px;}
@media print{
.v3{vertical-align:-21.760000pt;}
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.ls9{letter-spacing:-6.570240pt;}
.ls12{letter-spacing:-6.393600pt;}
.lsf{letter-spacing:-4.480000pt;}
.ls1d{letter-spacing:-4.153600pt;}
.ls31{letter-spacing:-3.155712pt;}
.ls23{letter-spacing:-2.279424pt;}
.ls2f{letter-spacing:-2.193408pt;}
.ls30{letter-spacing:-1.247232pt;}
.ls2e{letter-spacing:-0.408576pt;}
.ls2d{letter-spacing:-0.338688pt;}
.ls13{letter-spacing:-0.301056pt;}
.ls18{letter-spacing:-0.284928pt;}
.ls17{letter-spacing:-0.268800pt;}
.ls2c{letter-spacing:-0.231168pt;}
.ls1c{letter-spacing:-0.215040pt;}
.ls19{letter-spacing:-0.198912pt;}
.ls1b{letter-spacing:-0.155904pt;}
.ls1a{letter-spacing:-0.139776pt;}
.ls21{letter-spacing:-0.129024pt;}
.ls22{letter-spacing:-0.107520pt;}
.lse{letter-spacing:-0.012800pt;}
.ls0{letter-spacing:0.000000pt;}
.ls29{letter-spacing:0.000512pt;}
.ls2b{letter-spacing:0.001280pt;}
.lsb{letter-spacing:0.012800pt;}
.ls2{letter-spacing:0.107520pt;}
.ls27{letter-spacing:0.138240pt;}
.ls4{letter-spacing:0.143360pt;}
.ls10{letter-spacing:0.161536pt;}
.ls6{letter-spacing:0.165888pt;}
.ls11{letter-spacing:0.212480pt;}
.ls5{letter-spacing:0.215296pt;}
.ls3{letter-spacing:0.244352pt;}
.ls15{letter-spacing:0.249600pt;}
.ls24{letter-spacing:0.278144pt;}
.lsa{letter-spacing:0.282112pt;}
.ls8{letter-spacing:0.319232pt;}
.ls7{letter-spacing:0.329344pt;}
.ls26{letter-spacing:0.439040pt;}
.ls20{letter-spacing:0.550400pt;}
.ls16{letter-spacing:0.640384pt;}
.ls14{letter-spacing:0.852480pt;}
.ls1f{letter-spacing:1.486080pt;}
.ls1e{letter-spacing:2.255360pt;}
.ls25{letter-spacing:4.439040pt;}
.ls28{letter-spacing:10.521600pt;}
.lsd{letter-spacing:30.208000pt;}
.lsc{letter-spacing:64.000000pt;}
.ls2a{letter-spacing:135.048192pt;}
.ls1{letter-spacing:750.208000pt;}
.ws1{word-spacing:-26.804352pt;}
.ws2{word-spacing:-18.775296pt;}
.ws3{word-spacing:-16.012800pt;}
.ws4{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.987200pt;}
.wsc{word-spacing:-13.440000pt;}
.ws12{word-spacing:-13.300224pt;}
.ws9{word-spacing:-13.284096pt;}
.ws11{word-spacing:-13.241088pt;}
.wsa{word-spacing:-13.224960pt;}
.wsd{word-spacing:-13.208832pt;}
.ws10{word-spacing:-13.155072pt;}
.wse{word-spacing:-13.101312pt;}
.wsf{word-spacing:-13.031424pt;}
.ws6{word-spacing:-13.004800pt;}
.ws14{word-spacing:-12.192768pt;}
.wsb{word-spacing:-11.846400pt;}
.ws13{word-spacing:-11.246592pt;}
.ws15{word-spacing:-10.284288pt;}
.ws7{word-spacing:-9.606400pt;}
.ws8{word-spacing:-0.032000pt;}
.ws0{word-spacing:0.000000pt;}
._a{margin-left:-15.551744pt;}
._7{margin-left:-14.046464pt;}
._b{margin-left:-12.287744pt;}
._9{margin-left:-8.703744pt;}
._2{margin-left:-7.464960pt;}
._5{margin-left:-5.949440pt;}
._0{margin-left:-4.976640pt;}
._13{margin-left:-3.846528pt;}
._3{margin-left:-2.626560pt;}
._4{margin-left:-0.912640pt;}
._1{width:0.967680pt;}
._f{width:1.926400pt;}
._17{width:3.155200pt;}
._12{width:4.531200pt;}
._16{width:5.534464pt;}
._6{width:6.830080pt;}
._d{width:7.731200pt;}
._e{width:8.645120pt;}
._14{width:9.879936pt;}
._1d{width:10.822784pt;}
._15{width:11.713536pt;}
._10{width:13.056000pt;}
._11{width:14.020096pt;}
._1f{width:14.998016pt;}
._1b{width:17.508096pt;}
._18{width:18.451200pt;}
._1a{width:19.394176pt;}
._1c{width:20.480000pt;}
._19{width:21.440000pt;}
._22{width:22.390144pt;}
._1e{width:23.680000pt;}
._23{width:24.988288pt;}
._20{width:25.900800pt;}
._30{width:26.859648pt;}
._28{width:27.912960pt;}
._24{width:29.290240pt;}
._25{width:30.337280pt;}
._21{width:32.128000pt;}
._27{width:35.283200pt;}
._29{width:66.606208pt;}
._2e{width:73.848320pt;}
._8{width:80.000000pt;}
._2c{width:108.806400pt;}
._31{width:119.614464pt;}
._2d{width:135.046400pt;}
._26{width:172.799616pt;}
._2b{width:372.883200pt;}
._2f{width:496.390912pt;}
._c{width:752.000000pt;}
._2a{width:867.212800pt;}
.fs6{font-size:32.000000pt;}
.fs8{font-size:34.560000pt;}
.fs5{font-size:42.240000pt;}
.fs7{font-size:53.760000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:74.240000pt;}
.fs3{font-size:85.760000pt;}
.fs2{font-size:106.240000pt;}
.fs1{font-size:138.240000pt;}
.y11{bottom:-23.306667pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:4.853333pt;}
.y179{bottom:5.173333pt;}
.y10{bottom:11.893333pt;}
.y17{bottom:16.960000pt;}
.y167{bottom:26.400000pt;}
.y177{bottom:27.626667pt;}
.yc{bottom:28.693333pt;}
.y22{bottom:30.453333pt;}
.y169{bottom:37.920000pt;}
.y170{bottom:38.293333pt;}
.y174{bottom:39.146667pt;}
.y166{bottom:41.760000pt;}
.yf{bottom:44.213333pt;}
.y16c{bottom:46.453333pt;}
.y3{bottom:46.666667pt;}
.y16{bottom:49.280000pt;}
.y16a{bottom:49.440000pt;}
.y171{bottom:49.813333pt;}
.y16d{bottom:50.293333pt;}
.y175{bottom:50.346667pt;}
.y161{bottom:51.520000pt;}
.y2{bottom:51.840000pt;}
.y21{bottom:57.973333pt;}
.y168{bottom:60.960000pt;}
.y16f{bottom:61.333333pt;}
.y173{bottom:61.866667pt;}
.yb{bottom:63.893333pt;}
.y165{bottom:64.800000pt;}
.ye{bottom:78.133333pt;}
.y5{bottom:79.360000pt;}
.y15{bottom:81.280000pt;}
.y20{bottom:85.493333pt;}
.y130{bottom:100.480000pt;}
.ya{bottom:102.293333pt;}
.y76{bottom:102.400000pt;}
.y81{bottom:103.040000pt;}
.yb1{bottom:108.480000pt;}
.y56{bottom:112.320000pt;}
.y1f{bottom:113.013333pt;}
.y14{bottom:113.600000pt;}
.ycf{bottom:115.200000pt;}
.y87{bottom:117.440000pt;}
.yaa{bottom:118.400000pt;}
.y80{bottom:119.360000pt;}
.y100{bottom:123.840000pt;}
.ye4{bottom:124.480000pt;}
.yd{bottom:126.666667pt;}
.y12f{bottom:128.320000pt;}
.y75{bottom:129.920000pt;}
.ya9{bottom:130.560000pt;}
.y7f{bottom:131.520000pt;}
.yb0{bottom:136.000000pt;}
.y55{bottom:139.840000pt;}
.y1e{bottom:140.853333pt;}
.y7e{bottom:141.440000pt;}
.yff{bottom:141.760000pt;}
.y86{bottom:145.280000pt;}
.y13{bottom:145.600000pt;}
.y11a{bottom:151.360000pt;}
.ye3{bottom:152.320000pt;}
.y12e{bottom:155.840000pt;}
.yce{bottom:156.800000pt;}
.yfe{bottom:157.120000pt;}
.y74{bottom:157.440000pt;}
.yfb{bottom:160.640000pt;}
.ya8{bottom:163.520000pt;}
.y176{bottom:165.333333pt;}
.y54{bottom:167.360000pt;}
.y1d{bottom:168.373333pt;}
.y7d{bottom:169.280000pt;}
.yfd{bottom:172.480000pt;}
.y85{bottom:172.800000pt;}
.y15e{bottom:176.000000pt;}
.y119{bottom:178.880000pt;}
.ye2{bottom:179.840000pt;}
.y12d{bottom:183.360000pt;}
.ycd{bottom:184.320000pt;}
.y180{bottom:184.960000pt;}
.y73{bottom:185.280000pt;}
.y15f{bottom:185.600000pt;}
.yfc{bottom:187.840000pt;}
.yfa{bottom:188.160000pt;}
.ya7{bottom:191.360000pt;}
.y53{bottom:194.880000pt;}
.y1c{bottom:195.893333pt;}
.y7c{bottom:196.800000pt;}
.y15d{bottom:203.520000pt;}
.y84{bottom:205.440000pt;}
.y118{bottom:206.720000pt;}
.ye1{bottom:207.360000pt;}
.y12c{bottom:210.880000pt;}
.ycc{bottom:212.160000pt;}
.y72{bottom:212.800000pt;}
.yf9{bottom:215.680000pt;}
.ya6{bottom:218.880000pt;}
.y172{bottom:221.333333pt;}
.y52{bottom:222.720000pt;}
.y1b{bottom:223.413333pt;}
.y7b{bottom:224.320000pt;}
.y15c{bottom:231.040000pt;}
.y117{bottom:234.240000pt;}
.ye0{bottom:234.880000pt;}
.y12b{bottom:238.720000pt;}
.ycb{bottom:239.680000pt;}
.y71{bottom:240.320000pt;}
.yf8{bottom:243.520000pt;}
.y83{bottom:243.840000pt;}
.ya5{bottom:246.400000pt;}
.y51{bottom:250.240000pt;}
.y1a{bottom:251.253333pt;}
.y7a{bottom:251.840000pt;}
.y15b{bottom:258.560000pt;}
.y116{bottom:261.760000pt;}
.ydf{bottom:262.720000pt;}
.y12a{bottom:266.240000pt;}
.yca{bottom:267.200000pt;}
.y70{bottom:267.840000pt;}
.yf7{bottom:271.040000pt;}
.y82{bottom:271.360000pt;}
.ya4{bottom:273.920000pt;}
.y50{bottom:277.760000pt;}
.y19{bottom:278.773333pt;}
.y79{bottom:279.360000pt;}
.y15a{bottom:286.400000pt;}
.y115{bottom:289.280000pt;}
.yde{bottom:290.240000pt;}
.y129{bottom:293.760000pt;}
.yc9{bottom:294.720000pt;}
.y6f{bottom:295.360000pt;}
.yf6{bottom:298.560000pt;}
.ya3{bottom:301.760000pt;}
.y4f{bottom:305.280000pt;}
.y78{bottom:307.200000pt;}
.y159{bottom:313.920000pt;}
.y114{bottom:317.120000pt;}
.ydd{bottom:317.760000pt;}
.y37{bottom:319.040000pt;}
.y128{bottom:321.280000pt;}
.yc8{bottom:322.560000pt;}
.y16e{bottom:322.666667pt;}
.y6e{bottom:323.200000pt;}
.yf5{bottom:326.080000pt;}
.ya2{bottom:329.280000pt;}
.y4e{bottom:333.120000pt;}
.y146{bottom:334.720000pt;}
.y77{bottom:340.160000pt;}
.y158{bottom:341.440000pt;}
.y113{bottom:344.640000pt;}
.ydc{bottom:345.280000pt;}
.y36{bottom:346.240000pt;}
.y127{bottom:349.120000pt;}
.yc7{bottom:350.080000pt;}
.y6d{bottom:350.720000pt;}
.yf4{bottom:353.920000pt;}
.ya1{bottom:356.800000pt;}
.y4d{bottom:360.640000pt;}
.y145{bottom:362.240000pt;}
.y9{bottom:362.666667pt;}
.y157{bottom:368.960000pt;}
.y112{bottom:372.160000pt;}
.ydb{bottom:373.120000pt;}
.y35{bottom:373.760000pt;}
.y126{bottom:376.640000pt;}
.yc6{bottom:377.600000pt;}
.y6c{bottom:378.240000pt;}
.yf3{bottom:381.440000pt;}
.ya0{bottom:384.320000pt;}
.y4c{bottom:388.160000pt;}
.y144{bottom:389.760000pt;}
.y156{bottom:396.800000pt;}
.y111{bottom:399.680000pt;}
.yda{bottom:400.640000pt;}
.y125{bottom:404.160000pt;}
.yc5{bottom:405.120000pt;}
.y6b{bottom:405.760000pt;}
.yf2{bottom:408.960000pt;}
.y34{bottom:410.560000pt;}
.y9f{bottom:412.160000pt;}
.y4b{bottom:415.680000pt;}
.y143{bottom:417.600000pt;}
.y16b{bottom:422.666667pt;}
.y155{bottom:424.320000pt;}
.y110{bottom:427.520000pt;}
.yd9{bottom:428.160000pt;}
.yaf{bottom:430.080000pt;}
.y124{bottom:431.680000pt;}
.yc4{bottom:432.960000pt;}
.y17f{bottom:433.280000pt;}
.y6a{bottom:433.600000pt;}
.yf1{bottom:436.480000pt;}
.y9e{bottom:439.680000pt;}
.y33{bottom:440.000000pt;}
.y4a{bottom:443.520000pt;}
.y142{bottom:445.120000pt;}
.yae{bottom:445.440000pt;}
.y154{bottom:451.840000pt;}
.y10f{bottom:455.040000pt;}
.yd8{bottom:455.680000pt;}
.y123{bottom:459.520000pt;}
.yad{bottom:460.480000pt;}
.y69{bottom:461.120000pt;}
.yf0{bottom:464.320000pt;}
.y9d{bottom:467.200000pt;}
.y32{bottom:467.520000pt;}
.y49{bottom:471.040000pt;}
.y141{bottom:472.640000pt;}
.yac{bottom:475.840000pt;}
.y153{bottom:479.360000pt;}
.y10e{bottom:482.560000pt;}
.yd7{bottom:483.520000pt;}
.y122{bottom:487.040000pt;}
.yc3{bottom:488.000000pt;}
.y68{bottom:488.640000pt;}
.yab{bottom:491.200000pt;}
.yef{bottom:491.840000pt;}
.y9c{bottom:494.720000pt;}
.y48{bottom:498.560000pt;}
.y140{bottom:500.160000pt;}
.y31{bottom:503.040000pt;}
.y152{bottom:507.200000pt;}
.y10d{bottom:510.080000pt;}
.yd6{bottom:511.040000pt;}
.y121{bottom:514.560000pt;}
.yc2{bottom:515.520000pt;}
.y67{bottom:516.160000pt;}
.yee{bottom:519.360000pt;}
.y9b{bottom:522.560000pt;}
.y164{bottom:524.000000pt;}
.y47{bottom:526.080000pt;}
.y13f{bottom:528.000000pt;}
.y18{bottom:534.666667pt;}
.y151{bottom:534.720000pt;}
.y10c{bottom:537.920000pt;}
.y30{bottom:538.560000pt;}
.y120{bottom:542.080000pt;}
.yc1{bottom:543.360000pt;}
.y17e{bottom:543.680000pt;}
.y66{bottom:544.000000pt;}
.yed{bottom:546.880000pt;}
.y9a{bottom:550.080000pt;}
.y46{bottom:553.600000pt;}
.y13e{bottom:555.520000pt;}
.y150{bottom:562.240000pt;}
.y10b{bottom:565.440000pt;}
.yd5{bottom:566.080000pt;}
.y11f{bottom:569.600000pt;}
.yc0{bottom:570.880000pt;}
.y65{bottom:571.520000pt;}
.y2f{bottom:574.400000pt;}
.y99{bottom:577.600000pt;}
.y45{bottom:581.440000pt;}
.y13d{bottom:583.040000pt;}
.y14f{bottom:589.760000pt;}
.y10a{bottom:592.960000pt;}
.yd4{bottom:593.600000pt;}
.y11e{bottom:597.440000pt;}
.y64{bottom:599.040000pt;}
.y12{bottom:600.000000pt;}
.yec{bottom:602.240000pt;}
.ybf{bottom:603.840000pt;}
.y98{bottom:605.120000pt;}
.y44{bottom:608.960000pt;}
.y2e{bottom:609.920000pt;}
.y13c{bottom:610.560000pt;}
.y14e{bottom:617.600000pt;}
.y109{bottom:620.480000pt;}
.yd3{bottom:621.440000pt;}
.y11d{bottom:624.960000pt;}
.y63{bottom:626.560000pt;}
.yeb{bottom:629.760000pt;}
.y97{bottom:632.960000pt;}
.y163{bottom:637.440000pt;}
.y13b{bottom:638.400000pt;}
.y43{bottom:641.920000pt;}
.y14d{bottom:645.120000pt;}
.y2d{bottom:645.440000pt;}
.y108{bottom:648.000000pt;}
.yd2{bottom:648.960000pt;}
.y11c{bottom:652.480000pt;}
.y17d{bottom:654.080000pt;}
.y62{bottom:654.400000pt;}
.yea{bottom:657.280000pt;}
.y96{bottom:660.480000pt;}
.y162{bottom:665.280000pt;}
.y13a{bottom:665.920000pt;}
.ybe{bottom:669.760000pt;}
.y14c{bottom:672.640000pt;}
.y2c{bottom:672.960000pt;}
.y107{bottom:675.840000pt;}
.yd1{bottom:676.480000pt;}
.y42{bottom:680.000000pt;}
.y61{bottom:681.920000pt;}
.ye9{bottom:684.800000pt;}
.y11b{bottom:685.440000pt;}
.y95{bottom:688.000000pt;}
.y139{bottom:693.440000pt;}
.ybd{bottom:697.280000pt;}
.y14b{bottom:700.160000pt;}
.y106{bottom:703.360000pt;}
.yd0{bottom:704.000000pt;}
.y2b{bottom:708.800000pt;}
.y60{bottom:709.440000pt;}
.ye8{bottom:712.640000pt;}
.y94{bottom:715.520000pt;}
.y138{bottom:720.960000pt;}
.ybc{bottom:724.800000pt;}
.y14a{bottom:728.000000pt;}
.y105{bottom:730.880000pt;}
.y160{bottom:731.200000pt;}
.y41{bottom:731.840000pt;}
.y5f{bottom:736.960000pt;}
.ye7{bottom:740.160000pt;}
.y93{bottom:743.360000pt;}
.y2a{bottom:744.320000pt;}
.y137{bottom:748.800000pt;}
.ybb{bottom:752.320000pt;}
.y149{bottom:755.520000pt;}
.y104{bottom:758.400000pt;}
.y40{bottom:759.360000pt;}
.y17c{bottom:764.480000pt;}
.y5e{bottom:764.800000pt;}
.ye6{bottom:767.680000pt;}
.y92{bottom:770.880000pt;}
.y148{bottom:774.080000pt;}
.y136{bottom:776.320000pt;}
.y29{bottom:779.840000pt;}
.yba{bottom:780.160000pt;}
.y103{bottom:786.240000pt;}
.y3f{bottom:786.880000pt;}
.y5d{bottom:792.320000pt;}
.y147{bottom:792.640000pt;}
.ye5{bottom:795.200000pt;}
.yb9{bottom:798.080000pt;}
.y91{bottom:798.400000pt;}
.y135{bottom:803.840000pt;}
.y28{bottom:807.360000pt;}
.yb8{bottom:813.120000pt;}
.y102{bottom:813.760000pt;}
.y3e{bottom:814.400000pt;}
.y5c{bottom:819.840000pt;}
.y90{bottom:825.920000pt;}
.yb7{bottom:828.480000pt;}
.y134{bottom:831.360000pt;}
.y101{bottom:841.280000pt;}
.y3d{bottom:842.240000pt;}
.y27{bottom:843.200000pt;}
.yb6{bottom:843.840000pt;}
.y5b{bottom:847.360000pt;}
.y8f{bottom:853.760000pt;}
.yb5{bottom:859.200000pt;}
.y3c{bottom:869.760000pt;}
.yb4{bottom:874.560000pt;}
.y17b{bottom:874.880000pt;}
.y5a{bottom:875.200000pt;}
.y26{bottom:878.720000pt;}
.y8e{bottom:881.280000pt;}
.y133{bottom:886.720000pt;}
.yb3{bottom:889.920000pt;}
.y3b{bottom:897.280000pt;}
.y59{bottom:902.720000pt;}
.yb2{bottom:905.280000pt;}
.y8d{bottom:908.800000pt;}
.y25{bottom:914.240000pt;}
.y3a{bottom:924.800000pt;}
.y8c{bottom:926.720000pt;}
.y58{bottom:930.240000pt;}
.y132{bottom:941.760000pt;}
.y8b{bottom:942.080000pt;}
.y24{bottom:949.760000pt;}
.y39{bottom:952.640000pt;}
.y8a{bottom:957.440000pt;}
.y57{bottom:957.760000pt;}
.y89{bottom:972.800000pt;}
.y8{bottom:974.080000pt;}
.y131{bottom:974.720000pt;}
.y38{bottom:980.160000pt;}
.y17a{bottom:985.280000pt;}
.y23{bottom:985.600000pt;}
.y88{bottom:988.160000pt;}
.y7{bottom:993.600000pt;}
.y6{bottom:1013.120000pt;}
.y178{bottom:1060.160000pt;}
.y1{bottom:1060.480000pt;}
.h3{height:20.000000pt;}
.h10{height:21.328125pt;}
.h19{height:21.333333pt;}
.h12{height:23.355000pt;}
.h16{height:36.802500pt;}
.h11{height:37.353750pt;}
.h2{height:42.656250pt;}
.hf{height:56.156250pt;}
.hd{height:56.312500pt;}
.he{height:56.843750pt;}
.h9{height:57.159375pt;}
.h18{height:57.333333pt;}
.ha{height:65.938750pt;}
.h6{height:93.219375pt;}
.h7{height:93.478750pt;}
.h5{height:93.622500pt;}
.h8{height:98.666667pt;}
.h15{height:101.333333pt;}
.h17{height:102.666667pt;}
.h4{height:134.666667pt;}
.hb{height:164.000000pt;}
.hc{height:294.666667pt;}
.h14{height:793.333333pt;}
.h13{height:793.600000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:9.333333pt;}
.w3{width:10.666667pt;}
.w8{width:18.666667pt;}
.we{width:82.666667pt;}
.wd{width:85.333333pt;}
.w12{width:94.666667pt;}
.w11{width:96.000000pt;}
.wc{width:102.666667pt;}
.wf{width:106.666667pt;}
.w13{width:113.333333pt;}
.wb{width:126.666667pt;}
.w10{width:133.333333pt;}
.w7{width:249.333333pt;}
.w5{width:398.666667pt;}
.w6{width:538.666667pt;}
.w4{width:646.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.w9{width:1122.560000pt;}
.wa{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x3{left:9.186880pt;}
.x5{left:11.606101pt;}
.x2e{left:12.881173pt;}
.x6{left:14.637365pt;}
.x16{left:15.589973pt;}
.x32{left:16.592117pt;}
.x27{left:17.962133pt;}
.x13{left:19.761813pt;}
.x29{left:24.757867pt;}
.x18{left:25.691413pt;}
.x1a{left:27.449173pt;}
.x33{left:30.846677pt;}
.xd{left:32.032565pt;}
.x24{left:33.071968pt;}
.x30{left:35.246421pt;}
.x31{left:38.199893pt;}
.x34{left:40.342133pt;}
.x2f{left:44.553056pt;}
.x17{left:46.019413pt;}
.x14{left:52.808533pt;}
.x35{left:59.499520pt;}
.xa{left:61.882827pt;}
.x9{left:63.619115pt;}
.x4{left:74.666667pt;}
.x21{left:94.400064pt;}
.xc{left:108.216821pt;}
.x1{left:113.279936pt;}
.xb{left:126.666667pt;}
.x1c{left:129.279936pt;}
.x1d{left:137.279936pt;}
.x19{left:138.847573pt;}
.xf{left:153.343093pt;}
.x1e{left:160.479840pt;}
.x23{left:172.000000pt;}
.x7{left:189.333333pt;}
.x8{left:199.166507pt;}
.x10{left:201.573013pt;}
.x15{left:238.839893pt;}
.xe{left:268.719893pt;}
.x25{left:274.666667pt;}
.x20{left:305.279936pt;}
.x26{left:358.666667pt;}
.x1b{left:367.851840pt;}
.x1f{left:388.000000pt;}
.x2{left:392.000000pt;}
.x28{left:441.333333pt;}
.x12{left:446.666667pt;}
.x2a{left:548.000000pt;}
.x22{left:552.000000pt;}
.x11{left:680.213120pt;}
.x2b{left:774.666667pt;}
.x2c{left:869.333333pt;}
.x2d{left:964.000000pt;}
}

